/* 
   ==========================================================================
   PREMIUM CINEMATIC 3D PORTFOLIO - COMPLETE STYLES
   Md. Wali Khan | System Architect & Full-Stack Engineer
   Features: Glassmorphism, Premium Animation, Add-ons Grid
   ========================================================================== 
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   DESIGN TOKENS - LIGHT MODE
======================================== */
:root {
    /* Colors - Light Mode */
    --color-bg: #ffffff;
    --color-surface: #f8fafc;
    --color-surface-hover: #f1f5f9;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-glass: rgba(255, 255, 255, 0.7);
    --color-glass-border: rgba(255, 255, 255, 0.3);

    /* Text */
    --color-text: #0f172a;
    --color-text-soft: #475569;
    --color-text-muted: #94a3b8;

    /* Accents */
    --color-accent: #06b6d4;
    --color-accent-secondary: #8b5cf6;
    --color-accent-pink: #ec4899;
    --color-accent-gradient: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 50%, #ec4899 100%);
    --color-whatsapp: #25D366;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --section-padding: max(5vw, 2rem);

    /* Typography */
    --font: 'Outfit', sans-serif;

    /* Z-Index */
    --z-cursor: 10000;
    --z-nav: 1000;
    --z-drawer: 1500;
    --z-loader: 9999;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   DARK MODE TOKENS
======================================== */
.dark {
    --color-bg: #0a0f1a;
    --color-surface: rgba(30, 41, 59, 0.8);
    --color-surface-hover: rgba(51, 65, 85, 0.8);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-glass: rgba(15, 23, 42, 0.7);
    --color-glass-border: rgba(255, 255, 255, 0.1);

    --color-text: #f8fafc;
    --color-text-soft: #cbd5e1;
    --color-text-muted: #94a3b8;
}

/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    transition: background-color 0.5s, color 0.3s;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: none;
    border: none;
    background: none;
}

strong {
    color: var(--color-accent);
    font-weight: 600;
}

/* ========================================
   LOADER
======================================== */
#loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: var(--z-loader);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-text {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--color-text-muted);
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--color-surface);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--color-accent-gradient);
    animation: loadProgress 1.5s ease-out forwards;
}

@keyframes loadProgress {
    to {
        width: 100%;
    }
}

/* ========================================
   CUSTOM CURSOR
======================================== */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: var(--z-cursor);
    mix-blend-mode: difference;
}

.cursor-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-circle {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

#cursor.hover .cursor-circle {
    width: 80px;
    height: 80px;
    border-color: var(--color-accent);
}

@media (pointer: coarse),
(max-width: 1024px) {
    #cursor {
        display: none;
    }

    body {
        cursor: auto;
    }
}

/* ========================================
   CANVAS - 3D Layer
======================================== */
#webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}



/* ========================================
   MOBILE HEADER
======================================== */
#mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-glass-border);
}

.mobile-logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.mobile-actions {
    display: flex;
    gap: var(--space-sm);
}

.mobile-actions button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-text);
    transition: background 0.3s;
}

.mobile-actions button:hover {
    background: var(--color-surface);
}

#mobile-mode-toggle .ph-sun,
#desktop-mode-toggle .ph-sun {
    display: block;
}

#mobile-mode-toggle .ph-moon,
#desktop-mode-toggle .ph-moon {
    display: none;
}

.dark #mobile-mode-toggle .ph-sun,
.dark #desktop-mode-toggle .ph-sun {
    display: none;
}

.dark #mobile-mode-toggle .ph-moon,
.dark #desktop-mode-toggle .ph-moon {
    display: block;
}

@media (min-width: 1024px) {
    #mobile-header {
        display: none;
    }
}

/* ========================================
   MOBILE DRAWER
======================================== */
#mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg);
    z-index: var(--z-drawer);
    padding: var(--space-lg);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-out);
    overflow-y: auto;
}

#mobile-drawer.drawer-open {
    transform: translateX(0);
}

#drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: calc(var(--z-drawer) - 1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(5px);
}

#drawer-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.drawer-title {
    font-size: 1.25rem;
    font-weight: 700;
}

#close-drawer-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-text);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.drawer-link {
    padding: var(--space-sm);
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.3s;
}

.drawer-link:hover {
    background: var(--color-surface);
}

.drawer-cta {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--color-accent-gradient);
    color: #fff;
    text-align: center;
    font-weight: 700;
    border-radius: 8px;
}

@media (min-width: 1024px) {

    #mobile-drawer,
    #drawer-overlay {
        display: none;
    }
}

/* ========================================
   DESKTOP NAVIGATION
======================================== */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--section-padding);
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-glass-border);
    transition: background 0.3s;
}

@media (min-width: 1024px) {
    #nav {
        display: flex;
    }
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-soft);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-gradient);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: var(--space-xs) var(--space-md);
    background: var(--color-accent-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 100px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(6, 182, 212, 0.4);
}





/* ========================================
   SCROLL PROGRESS
======================================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--color-accent-gradient);
    z-index: 9998;
}

/* ========================================
   SCENES (SECTIONS)
======================================== */
.scene {
    min-height: 100vh;
    padding: var(--space-2xl) var(--section-padding);
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    position: relative;
}

.scene-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.scene-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    background: rgba(6, 182, 212, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 100px;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.scene-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.scene-text {
    font-size: 1.1rem;
    color: var(--color-text-soft);
    max-width: 600px;
    margin-bottom: var(--space-md);
}

/* Glass Card Effect */
.glass-card {
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: 24px;
    padding: var(--space-xl);
}

/* ========================================
   HERO
======================================== */
#hero {
    padding-top: 120px;
}

.hero-content {
    max-width: 750px;
}

.hero-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--color-accent-pink);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: var(--space-lg);
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--color-text);
    max-width: 550px;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--color-text);
    -webkit-text-fill-color: var(--color-text);
}

/* Specialty Tags */
.hero-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.specialty-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
}

.specialty-tag i {
    color: var(--color-accent);
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

/* Trust Indicators */
.trust-row {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Hosting Banner */
.hero-hosting-banner {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-accent);
    border-radius: 100px;
    font-size: 0.9rem;
}

.hero-hosting-banner i {
    font-size: 1.25rem;
    color: var(--color-accent-pink);
}

/* ========================================
   ABOUT
======================================== */
.about-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.about-point {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    font-weight: 500;
}

.about-point i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s ease;
    cursor: none;
    text-align: center;
}

.btn-primary {
    background: var(--color-accent-gradient);
    color: #fff;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.btn-outline {
    border: 2px solid var(--color-border);
    color: var(--color-text);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-surface);
    border-color: var(--color-accent);
}

/* ========================================
   SERVICES
======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.service-card {
    padding: var(--space-lg);
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-glass-border);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.service-card:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-md);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-soft);
}

/* ========================================
   PROJECTS CAROUSEL
======================================== */
#projects {
    flex-direction: column;
    align-items: flex-start;
}

.carousel-container {
    width: 100vw;
    margin-left: calc(-1 * var(--section-padding));
    overflow: hidden;
    touch-action: pan-y;
}

.carousel-track {
    display: flex;
    will-change: transform;
    transition: transform 0.3s ease-out;
}

.carousel-card {
    flex-shrink: 0;
    padding: var(--space-sm);
    width: 100vw;
}

@media (min-width: 640px) {
    .carousel-card {
        width: 50vw;
    }
}

@media (min-width: 1024px) {
    .carousel-card {
        width: calc(100vw / 3);
        max-width: 400px;
    }
}

.project-card {
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-glass-border);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-info {
    padding: var(--space-md);
}

.project-info h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.project-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.project-info a {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    transition: color 0.3s;
}

.project-info a:hover {
    color: var(--color-accent-pink);
}

/* ========================================
   PRICING
======================================== */
.hosting-highlight {
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-accent);
    border-radius: 16px;
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.hosting-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.hosting-badge i {
    font-size: 1.5rem;
    color: var(--color-accent-pink);
}

.hosting-breakdown {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hosting-item {
    font-size: 0.9rem;
    color: var(--color-text-soft);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-surface);
    border-radius: 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    align-items: start;
}

.price-card {
    padding: var(--space-xl);
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-glass-border);
    border-radius: 20px;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border: 2px solid var(--color-accent-pink);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.15);
}

@media (min-width: 768px) {
    .price-card.featured {
        transform: scale(1.05);
    }

    .price-card.featured:hover {
        transform: scale(1.08);
    }
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: var(--space-xs) var(--space-md);
    border-radius: 100px;
    letter-spacing: 0.1em;
}

.price-card h3 {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.price-subtitle {
    font-size: 0.8rem;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.price-card ul {
    margin-bottom: var(--space-lg);
}

.price-card li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.price-card li .ph-check {
    color: var(--color-accent);
}

.price-card li .ph-x {
    color: #ef4444;
}

.price-card li.disabled {
    color: var(--color-text-muted);
}

/* ========================================
   ADD-ONS
======================================== */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-md);
}

.addon-card {
    padding: var(--space-lg);
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-glass-border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.addon-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.1);
}

.addon-card i {
    font-size: 2rem;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-sm);
}

.addon-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.addon-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* ========================================
   TESTIMONIALS + FAQ
======================================== */
.two-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 900px) {
    .two-column-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.testimonial {
    padding: var(--space-lg);
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 16px 16px 0;
}

.testimonial p {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text-soft);
    margin-bottom: var(--space-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}

/* FAQ Accordion */
.faq-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-glass-border);
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    transition: background 0.3s;
}

.faq-toggle:hover {
    background: var(--color-surface-hover);
}

.faq-toggle i {
    font-size: 1.25rem;
    transition: transform 0.3s;
}

.faq-toggle.active i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
}

.faq-content.open {
    max-height: 200px;
    padding: 0 var(--space-md) var(--space-md);
}

.faq-content p {
    font-size: 0.9rem;
    color: var(--color-text-soft);
}

/* ========================================
   CONTACT
======================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    border-color: var(--color-accent);
    transform: translateX(10px);
}

.contact-link i {
    font-size: 2rem;
    color: var(--color-accent);
}

.contact-link.whatsapp i {
    color: var(--color-whatsapp);
}

.contact-link div {
    display: flex;
    flex-direction: column;
}

.contact-link strong {
    font-size: 0.9rem;
    color: var(--color-text);
}

.contact-link span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-glass-border);
    border-radius: 20px;
}

.contact-form h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--color-text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-text-muted);
}

#form-message {
    font-size: 0.9rem;
    text-align: center;
}

#form-message.success {
    color: #22c55e;
}

#form-message.error {
    color: #ef4444;
}

/* ========================================
   FOOTER
======================================== */
#footer {
    padding: var(--space-xl) var(--section-padding);
    padding-bottom: 100px;
    text-align: center;
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-glass-border);
}

.footer-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--color-surface);
    border-radius: 50%;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--color-accent-gradient);
    color: #fff;
    transform: translateY(-3px);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-host {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.footer-host i {
    color: var(--color-accent);
}

.footer-host a {
    color: var(--color-accent);
    font-weight: 600;
}

/* ========================================
   MOBILE BOTTOM NAV
======================================== */
#bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    display: flex;
    justify-content: space-around;
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-glass-border);
    padding: var(--space-sm) 0;
}

@media (min-width: 1024px) {
    #bottom-nav {
        display: none;
    }
}

.bottom-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.bottom-link i {
    font-size: 1.35rem;
}

.bottom-link.active,
.bottom-link:hover {
    color: var(--color-accent);
}

/* ========================================
   REVEAL ANIMATIONS
======================================== */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   REDUCED MOTION
======================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-item {
        opacity: 1;
        transform: none;
    }
}

/* ========================================
   MOBILE RESPONSIVE
======================================== */
@media (max-width: 600px) {
    :root {
        --section-padding: 1rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
    }

    .scene {
        min-height: auto;
        padding: var(--space-xl) var(--section-padding);
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .scene-title {
        font-size: 1.75rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .trust-row {
        gap: var(--space-md);
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .trust-value {
        font-size: 1.5rem;
    }

    .trust-label {
        font-size: 0.65rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }

    .price {
        font-size: 2rem;
    }

    .btn {
        padding: var(--space-sm) var(--space-lg);
    }

    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .addon-card {
        padding: var(--space-md);
    }

    .addon-card i {
        font-size: 1.5rem;
    }

    .addon-card h4 {
        font-size: 0.85rem;
    }

    .hosting-breakdown {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* Highlighted items in pricing list */
.price-card ul li.highlight {
    color: var(--color-primary);
    background: rgba(6, 182, 212, 0.1);
    border-radius: 4px;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    padding: 0.25rem 0.5rem;
    font-weight: 500;
}

.price-card ul li.highlight i {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}