
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0d0d0d;
    color: #ffffff;
    line-height: 1.6;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10%;
    background: #0d0d0d;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span {
    color: #FF66C4;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FF66C4;
}


.hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
     margin-top: 5rem;
     margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight {
    color: #FF66C4;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: #FF66C4;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
}


.services {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px 10%;
    flex-wrap: wrap;
}

.card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    border: 1px solid #333;
    transition: border 0.3s;
}

.card:hover {
    border-color: #FF66C4;
}

.card h3 {
    margin-bottom: 15px;
    color: #FF66C4;
}


footer {
    text-align: center;
    padding: 40px;
    font-size: 0.9rem;
    color: #555;
}


.container {
    padding: 60px 10%;
    max-width: 1200px;
    margin: auto;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}


.services-detailed {
    display: grid;
    gap: 30px;
}

.service-item {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid #FF66C4;
}

.service-item h3 {
    color: #FF66C4;
    margin-bottom: 10px;
    font-size: 1.5rem;
}


.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contact-info {
    text-align: center;
    max-width: 600px;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FF66C4;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: #0d0d0d;
    border: 1px solid #333;
    color: white;
    border-radius: 5px;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #FF66C4;
    outline: none;
}


.nav-links a.active {
    color: #FF66C4;
    font-weight: bold;
}


.cta {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 15px;
}


.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #FF66C4;
}

.blog-card h3 {
    color: #FF66C4;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.blog-card p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.read-more {
    color: #FF66C4;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.read-more:hover {
    text-decoration: underline;
}

.loading {
    text-align: center;
    color: #555;
}


.blog-link {
    text-decoration: none;
    color: inherit;
    display: block; 
}

.blog-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.blog-card:hover {
    border-color: #FF66C4;
    background: #252525;
    transform: translateY(-5px);
}

.blog-card h3 {
    color: #FF66C4;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.blog-card p {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #FF66C4;
    font-weight: bold;
    font-size: 0.85rem;
}


.post-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.8;
}

.post-header h1 {
    color: #FF66C4;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.post-content {
    color: #ddd;
    font-size: 1.1rem;
}


.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #333;
}


.post-content h2, .post-content h3 {
    color: #FF66C4;
    margin-top: 40px;
    margin-bottom: 15px;
}


.post-content a {
    color: #FF66C4;
    text-decoration: underline;
}

.post-content blockquote {
    border-left: 4px solid #FF66C4;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    background: #1a1a1a;
    padding: 20px;
}


.post-content * {
    background-color: transparent !important;
    color: inherit !important;
    font-family: inherit !important;
}


.post-content h1, .post-content h2, .post-content h3, .post-content a {
    color: #FF66C4 !important;
}


.post-content {
    color: #ddd !important;
}


@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .services-detailed, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .post-content img {
        width: 100% !important;
        height: auto !important;
    }
}

.icon-feature {
    font-size: 2.5rem;
    color: #FF66C4;
    margin-bottom: 20px;
    display: block;
}


.card:hover .icon-feature {
    text-shadow: 0 0 10px #000;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bg-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;

    background: rgba(13, 13, 13, 0.7); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


body {
    padding-top: 80px; 
}


.thanks-content {
    text-align: center;
    padding: 80px 20px;
    max-width: 700px;
    margin: auto;
}

.success-icon {
    font-size: 5rem;
    color: #FF66C4;
    margin-bottom: 30px;
    animation: scaleUp 0.5s ease-out;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-content p {
    color: #aaa;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}


.btn-secondary {
    background: transparent;
    color: #FF66C4;
    border: 2px solid #FF66C4;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #FF66C4;
    color: white;
}


@keyframes scaleUp {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.trust-bar {
    text-align: center;
    padding: 40px 0;
    background: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
}
.trust-bar p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 20px;
}
.logo-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    font-size: 2rem;
    color: #333;
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
    background: #FF66C4;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF66C4;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.newsletter { 
    background: #111; 
    padding: 60px 10%; 
    text-align: center; 
    border-top: 1px solid #222; 
}
.newsletter-form { 
    margin-top: 30px; 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
}
.newsletter-form input { 
    padding: 12px; 
    width: 300px; 
    border-radius: 5px; 
    border: 1px solid #333; 
    background: #000; 
    color: white; 
}


.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #FF66C4;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}


.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}


.whatsapp-float .tooltip {
    position: absolute;
    right: 75px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    border: 1px solid #333;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d0d0d;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; 
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader-content {
    text-align: center;
}


.loader-content p {
    color: #fff;
    font-family: 'Inter', sans-serif;
    letter-spacing: 3px;
    font-size: 0.8rem;
    text-transform: uppercase;
}


@keyframes breathe {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 15px rgba(247, 147, 26, 0.7)); }
    100% { transform: scale(1); opacity: 0.8; }
}


.custom-spin-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;

    animation: breathe 2.5s ease-in-out infinite;
}


.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

.main-footer {
    background: #050505;
    padding: 60px 10% 20px;
    border-top: 1px solid #1a1a1a;
    color: #888;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-about p { margin-top: 15px; line-height: 1.6; }
.footer-links h4, .footer-social h4 { color: #fff; margin-bottom: 20px; font-size: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #888; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: #FF66C4; }
.social-icons { display: flex; gap: 20px; font-size: 1.5rem; }
.social-icons a { color: #FF66C4; transition: 0.3s; }
.social-icons a:hover { transform: translateY(-5px); color: #fff; }
.footer-bottom { text-align: center; border-top: 1px solid #111; padding-top: 20px; font-size: 0.8rem; }


.error-container {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.error-visual {
    position: relative;
    margin-bottom: 30px;
}

.dragon-404 {
    font-size: 8rem;
    color: #FF66C4;
    filter: drop-shadow(0 0 20px rgba(247, 147, 26, 0.4));
    animation: float 3s ease-in-out infinite;
}

.error-content h1 {
    font-size: 10rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.1;
    color: #fff;
    margin: 0;
}

.error-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.error-content p {
    color: #888;
    max-width: 500px;
    margin: 0 auto 30px;
}

.error-actions {
    margin-top: 40px;
}



.pricing-section {
    padding: 0px 10%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}


.pricing-card:hover {
    border-color: #FF66C4;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(247, 147, 26, 0.1);
}


.pricing-card.featured {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid #FF66C4;
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF66C4;
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.card-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF66C4;
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    color: #555;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    padding: 0;
}

.features li {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features i.fa-check { color: #FF66C4; }
.features i.fa-xmark { color: #444; }
.features li.disabled { color: #444; text-decoration: line-through; }


.btn-secondary {
    display: inline-block;
    border: 1px solid #444;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    width: 100%;
}


.privacy-trust-section {
    background: #080808;
    padding: 80px 10%;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.privacy-header {
    margin-bottom: 60px;
}

.privacy-main-icon {
    font-size: 3rem;
    color: #FF66C4;
    margin-bottom: 20px;
    opacity: 0.8;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.privacy-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #111;
    transition: all 0.3s ease;
    text-align: left;
}

.privacy-item:hover {
    border-color: #FF66C4;
    background: rgba(247, 147, 26, 0.05);
    transform: translateY(-5px);
}

.privacy-item i {
    font-size: 2rem;
    color: #FF66C4;
    margin-bottom: 20px;
}

.privacy-title {
    display: block;
    font-weight: bold;
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.privacy-desc {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
}
