* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B35;
    --secondary: #004E89;
    --accent: #00D9FF;
    --dark: #1A1A2E;
    --light: #F7F9FC;
    --cream: #f5f0e8;
    --text-dark: #2d2a26;
    --accent-gold: #c5a35d;
    --orange: #FF6B35;
    --violet: #8B5CF6;
    --blue: #3B82F6;
    --success: #10b981;
    --warning: #f59e0b;
    --bronze: #CD7F32;
    --silver: #C0C0C0;
    --gold: #FFD700;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==================== NAVIGATION ==================== */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    min-height: 70px; /* Fixed height to prevent navbar from growing */
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 60%, rgba(255,255,255,0.95) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.8s ease-out;
    backdrop-filter: blur(10px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem; /* Space between logo image and text */
}

/* Logo image container */
.logo-img {
    width: 45px;
    height: 45px;
    max-height: 45px; /* Prevent logo from growing beyond this */
    object-fit: contain; /* Maintain aspect ratio */
    display: block;
}

/* For when logo is just text without image */
.logo:not(:has(.logo-img)) {
    gap: 0;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--violet));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover {
    color: var(--orange);
}

.logo:hover::after {
    transform: scaleX(1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 1.2rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
    left: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

    /* ================= HERO PRICING - MODERN ================= */

.hero-pricing {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    margin-top: 80px;
    overflow: hidden;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Professional Overlay */
.hero-pricing::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(94, 115, 235, 0.767) 0%,
        rgba(34, 52, 117, 0.401) 50%,
        rgba(35, 64, 136, 0.822) 100%
    );
    z-index: 2;
}

/* Soft Accent Glow (Subtle) */
.hero-pricing::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(255, 107, 53, 0.25), transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(139, 92, 246, 0.25), transparent 50%);
    z-index: 3;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Content */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

/* Gradient Highlight Word */
.hero-title span {
    background: linear-gradient(90deg, #FF6B35, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* Pricing Tags */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.7rem 1.4rem;
    border-radius: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    font-size: 0.9rem;
    color: white;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}




/* ==================== PRICING SECTION ==================== */
.pricing-section {
    padding: 120px 5%;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInDown 0.8s ease-out;
}

.maintenance-header {
    margin-top: 120px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--dark), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== PRICING CARDS ==================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: popIn 0.6s ease-out backwards;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--bronze), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card.silver::before {
    background: linear-gradient(90deg, var(--silver), var(--blue));
}

.pricing-card.gold::before {
    background: linear-gradient(90deg, var(--gold), var(--warning));
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    transform: scale(1.08);
    border-color: var(--blue);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25);
}

.pricing-card.popular:hover {
    transform: translateY(-15px) scale(1.11);
    box-shadow: 0 30px 70px rgba(59, 130, 246, 0.3);
}

.popular-badge,
.recommended-badge {
    position: absolute;
    top: 18px;
    right: -35px;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    color: white;
    padding: 6px 38px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    z-index: 10;
    letter-spacing: 0.5px;
}

.recommended-badge {
    background: linear-gradient(135deg, var(--warning), var(--orange));
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.card-header {
    padding: 35px 30px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.02), transparent);
}

.package-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--orange), var(--violet));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.pricing-card:hover .package-icon {
    transform: scale(1.1) rotate(5deg);
}

.package-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.4rem;
    font-family: 'Outfit', sans-serif;
}

.package-tagline {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.price-section {
    padding: 20px 30px;
    background: rgba(0,0,0,0.02);
}

.package-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.4rem;
    line-height: 1;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    vertical-align: top;
}

.period {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
}

.price-note {
    font-size: 0.85rem;
    color: #999;
}

.features-list {
    list-style: none;
    padding: 30px 30px 20px;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    padding: 12px 0;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:hover {
    padding-left: 8px;
    color: var(--dark);
}

.features-list li i {
    font-size: 1.1rem;
    color: var(--success);
    flex-shrink: 0;
}

.select-btn {
    margin: 20px 30px 30px;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--dark), var(--secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 60px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.select-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.select-btn:hover::before {
    width: 400px;
    height: 400px;
}

.select-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.select-btn i {
    transition: transform 0.3s ease;
}

.select-btn:hover i {
    transform: translateX(5px);
}

/* ==================== COMPARISON TABLE ==================== */
.comparison-section {
    margin: 80px 0;
    padding: 40px 50px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2.5rem;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--dark), var(--secondary));
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-table th {
    font-weight: 700;
    font-size: 1rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: rgba(0,0,0,0.02);
}

.text-success {
    color: var(--success);
    font-size: 1.3rem;
}

.text-muted {
    color: #ccc;
    font-size: 1.3rem;
}

/* ==================== MAINTENANCE CARDS ==================== */
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 900px;
    margin: 0 auto 80px;
}

.maintenance-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: slideUp 0.8s ease-out backwards;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.maintenance-card:nth-child(1) { animation-delay: 0.1s; }
.maintenance-card:nth-child(2) { animation-delay: 0.2s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.maintenance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--success), var(--blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.maintenance-card.pro::before {
    background: linear-gradient(90deg, var(--warning), var(--orange));
}

.maintenance-card:hover::before {
    opacity: 1;
}

.maintenance-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.15);
}

.maintenance-card .package-icon {
    background: linear-gradient(135deg, var(--success), var(--blue));
}

.maintenance-card.pro .package-icon {
    background: linear-gradient(135deg, var(--warning), var(--orange));
}

/* ==================== INFO SECTION ==================== */
.info-section {
    margin: 100px 0;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.info-content {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.08) 0%,
        rgba(139, 92, 246, 0.08) 50%,
        rgba(59, 130, 246, 0.08) 100%
    );
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.info-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.info-content h3 i {
    color: var(--blue);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background: white;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--orange);
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
    line-height: 1.7;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    margin: 100px 0;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0,0,0,0.02);
}

.faq-question i:first-child {
    color: var(--orange);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h4 {
    flex-grow: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.faq-toggle {
    color: #999;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgb(25, 29, 61) 0%, transparent 0%),
        radial-gradient(circle at 70% 50%, rgb(25, 29, 61) 0%, transparent 100%);
    animation: pulse 8s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta-button {
            display: inline-block;
            padding: 1.3rem 3.5rem;
            background: linear-gradient(135deg, var(--light), var(--cream), var(--light));
            color: rgb(20, 25, 49);
            font-size: 1.2rem;
            font-weight: 800;
            text-decoration: none;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
            font-family: 'Outfit', sans-serif;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(127, 151, 247, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 400px;
            height: 400px;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 60px rgba(53, 93, 255, 0.5);
        }
        

        @media (max-width: 768px) {
        .cta-content h2 {
                font-size: 2.2rem;
            }

            .cta-content p {
                font-size: 1.1rem;
            }
        }   


/* ==================== FOOTER ==================== */
.main-footer {
    padding: 30px 5% 30px;
    background: var(--cream);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

/* Update 1: Align Logo and Text on the same line */
.footer-brand h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    display: flex;          
    align-items: center;    
    left: 2%;              
}


.footer-brand h2 span {
    color: var(--accent-gold);
}

.footer-brand p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--orange);
    transform: translateY(-5px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--orange);
}

.footer-links ul li a:hover::before {
    width: 100%;
}

.footer-contact p {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--orange);
    width: 20px;
}

.footer-contact a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--orange);
}


.footer-bottom {
    padding-top: 30px;     
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column; 
    align-items: center;    
    text-align: center;     
    gap: 20px;      
    margin-top: -30px;        
}

/* --- Scroll Animation States --- */
.reveal, 
.reveal-left, 
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

/* Active states with proper specificity */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-15px) scale(1.03);
    }

    .maintenance-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .comparison-section {
        padding: 40px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 5%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .hero-pricing {
        margin-top: 100px;
        min-height: 60vh;
        padding: 3rem 5%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .package-price {
        font-size: 3rem;
    }

    .info-content {
        padding: 40px 30px;
    }

    .info-content h3 {
        font-size: 2rem;
    }

    .comparison-title {
        font-size: 1.8rem;
    }

    .faq-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .pricing-card,
    .maintenance-card {
        border-radius: 20px;
    }

    .card-header {
        padding: 40px 30px 20px;
    }

    .features-list {
        padding: 30px 30px 20px;
    }

    .select-btn {
        margin: 20px 30px 30px;
        width: calc(100% - 60px);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .info-content h3 {
        font-size: 1.6rem;
        flex-direction: column;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}




/* POPUP STYLES */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6); /* Deeper, more modern overlay */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
  padding: 20px;
}

.popup-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  width: 100%;
  max-width: 360px;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  /* Animation */
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Show state for animation trigger via JS */
.popup-overlay.active .popup-box {
  transform: scale(1);
}

/* Header & Icon */
.icon-circle {
  width: 60px;
  height: 60px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #6366f1;
  font-size: 24px;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #1e293b;
  font-weight: 700;
}

.highlight-text {
  color: #6366f1;
  font-weight: 600;
}

.sub-text {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 25px;
}

/* Buttons */
.popup-buttons {
  display: flex;
  flex-direction: column; /* Stacked usually converts better on mobile */
  gap: 12px;
}

.popup-buttons button {
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
}

#whatsappBtn {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

#whatsappBtn:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

#emailBtn {
  background: #0e61a1;
  color: #ffffff;
  border: 1px solid #e2e8f0;
}

#emailBtn:hover {
  background: #1d70b0;
  transform: translateY(-2px);
}

/* Close Icon */
.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #94a3b8;
  cursor: pointer;
  transition: background 0.2s;
}

.close-popup:hover {
  background: #e2e8f0;
  color: #475569;
}