:root {
    --bg-color: #05060f;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-primary: #8b5cf6; /* Electric Purple */
    --accent-secondary: #ec4899; /* Pink */
    --accent-glow: rgba(139, 92, 246, 0.3);
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --gradient: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Cairo', sans-serif;
    line-height: 1.5;
}

/* Background Blobs for WOW factor */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    filter: blur(100px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.blob-1 { top: 0; right: -100px; background: var(--accent-primary); }
.blob-2 { top: 100%; transform: translateY(-100%); left: -100px; background: var(--accent-secondary); }

@media (max-width: 768px) {
    .blob {
        width: 300px;
        height: 300px;
        filter: blur(70px);
        opacity: 0.3;
    }
    .blob-1 { top: 0; right: -50px; }
    .blob-2 { top: 100%; transform: translateY(-100%); left: -50px; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Preloader */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.brain-logo-anim {
    width: 50px;
    height: 50px;
    border: 3px solid var(--accent-primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Navigation - Mobile App Feel */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(5, 6, 15, 0.7);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-text span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-primary);
}

.btn-nav {
    background: var(--gradient);
    padding: 8px 24px;
    border-radius: 12px;
    font-weight: 700 !important;
    opacity: 1 !important;
}

.menu-toggle {
    display: none;
    padding: 8px;
    border-radius: 12px;
    background: var(--card-bg);
}

/* Hero - Ultra Dynamic */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem; /* Reduced from 5rem for better fitting */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-text .subtitle {
    font-size: 1.4rem;
    color: var(--text-dim);
    margin-bottom: 48px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-main {
    background: var(--text-main);
    color: var(--bg-color);
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.btn-main:hover {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.05);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    background: var(--card-bg);
    color: white;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.main-logo-img {
    width: 100%;
    max-width: 450px;
    z-index: 1;
    filter: drop-shadow(0 0 50px var(--accent-glow));
}

.glow-circle {
    position: absolute;
    width: 120%;
    height: 120%;
    background: var(--gradient);
    filter: blur(100px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); opacity: 0.1; }
    to { transform: scale(1.1); opacity: 0.2; }
}

/* Sections */
.section {
    padding: 120px 0;
}

#about {
    position: relative;
    overflow: hidden;
}

.badge {
    padding: 6px 14px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 24px;
    display: inline-block;
}

h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
}

h2 span {
    color: var(--accent-primary);
}

/* About Grid - Premium Cards */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.about-card.color-1:hover, .about-card.color-1.active { border-color: #8b5cf6; }
.about-card.color-2:hover, .about-card.color-2.active { border-color: #ec4899; }
.about-card.color-3:hover, .about-card.color-3.active { border-color: #3b82f6; }

.about-card:hover, .about-card.active {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.icon-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    flex-shrink: 0;
}

/* The 'Dala3' Circle with Blur */
.icon-wrapper::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: var(--bg);
    filter: blur(18px);
    opacity: 0.4;
    border-radius: 50%;
    transition: var(--transition);
}

.about-card.color-1 { --bg: #8b5cf6; }
.about-card.color-2 { --bg: #ec4899; }
.about-card.color-3 { --bg: #3b82f6; }

.about-card:hover .icon-wrapper::before,
.about-card.active .icon-wrapper::before {
    opacity: 0.8;
    filter: blur(25px);
}

.about-card i {
    position: relative;
    color: white;
    width: 24px;
    height: 24px;
}

.about-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.7;
}

/* Bento Style Grid for Environment - Premium Redesign */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 24px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden; /* Prevent child overflow */
    backdrop-filter: blur(10px);
}

.bento-item:hover, .bento-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    transform: scale(1.02);
    box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.1);
}

.bento-item.active i {
    color: var(--accent-secondary);
    transform: scale(1.1);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
    border: none;
}

.bento-item.large::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    top: -50%;
    left: -50%;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bento-item.wide {
    grid-column: span 2;
}

.bento-item i {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.bento-item.large i { color: white; opacity: 0.8; }

.bento-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.bento-item p {
    font-size: 1rem;
    opacity: 0.7;
    line-height: 1.6;
}

.bento-item.large p { opacity: 0.9; }

/* Cinematic Stats 2.0 - Matched with Design Concept V2 */
.stats-cinematic {
    position: relative;
    height: 550px;
    border-radius: 48px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.stats-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(1.2);
    transform: scale(1.1);
    transition: transform 1s ease-out;
}

.stats-large-num {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, #fff, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.6;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.3));
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
}

.stats-glass-card {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 35px;
    padding: 30px;
    z-index: 3;
}

.stats-card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.mini-num {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.4));
}



.stats-glass-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
}

.stats-footer-tags {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.stats-footer-tags span {
    background: rgba(139, 92, 246, 0.2);
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .stats-cinematic { height: 550px; border-radius: 40px;}
    .stats-large-num { font-size: 12rem; top: 25%; }
    .stats-glass-card { padding: 20px; bottom: 20px; left: 20px; right: 20px; border-radius: 32px;}
    .stats-glass-card h3 { font-size: 1.4rem; }
    .mini-num { font-size: 2.5rem; }

    .stats-glass-card p{
        font-size: 15px;
    }
}

.stat-number {
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

/* Form Section - Clean & Premium */
.form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 60px;
    backdrop-filter: blur(40px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    transition: all 0.6s ease;
}

.form-card.active {
    border-color: var(--accent-primary);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.form-group { margin-bottom: 32px; }
.form-group label { display: block; margin-bottom: 12px; font-weight: 700; opacity: 0.6; font-size: 0.9rem; }

.form-input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    padding: 18px 24px;
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
    font-family: 'Cairo', sans-serif;
}

.form-input:focus {
    background: rgba(255,255,255,0.06);
    border-color: var(--accent-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

/* Fix select dropdown options */
.form-input option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 12px;
    font-family: 'Cairo', sans-serif;
}

.form-input option:disabled {
    color: rgba(255, 255, 255, 0.4);
}

/* Field Error State */
.form-input.error-state {
    border-color: #f43f5e !important;
    background: rgba(244, 63, 94, 0.05) !important;
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15) !important;
}

/* Field Success State */
.form-input.valid-state {
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.04) !important;
}

/* Error Message Text */
.field-error {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #f43f5e;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(244, 63, 94, 0.08);
    border-radius: 10px;
    border-right: 3px solid #f43f5e;
    animation: slideDown 0.25s ease;
}

.field-error::before {
    content: '⚠';
    font-size: 0.9rem;
    flex-shrink: 0;
}

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

/* Success Popup Overlay */
.success-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 6, 15, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.success-popup-overlay.hide {
    animation: fadeOut 0.3s ease forwards;
}

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

.success-popup {
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(139,92,246,0.1));
    border: 1px solid rgba(16,185,129,0.4);
    border-radius: 28px;
    padding: 48px 56px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(16,185,129,0.1);
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.7); }
    to   { opacity: 1; transform: scale(1); }
}

.success-popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.2rem;
    box-shadow: 0 15px 40px rgba(16,185,129,0.4);
    animation: bounceIn 0.5s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes bounceIn {
    from { transform: scale(0); }
    to   { transform: scale(1); }
}

.success-popup h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.success-popup p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.success-popup-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16,185,129,0.35);
}

.success-popup-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(16,185,129,0.5);
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: var(--gradient);
    border: none;
    border-radius: 20px;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 20px 40px var(--accent-glow);
    transition: var(--transition);
}



/* 1. Services Universe */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 32px;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}


/* 5. FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover { background: rgba(255, 255, 255, 0.05); }

.faq-question h3 { font-size: 1.1rem; margin: 0; }

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    max-height: 200px;
    opacity: 1;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--accent-primary);
}

/* Mobile WOW Factor (The Fix) */
@media (max-width: 768px) {
    .container { padding: 0 6vw; }
    .section { padding: 15vw 0; }
    .hero { padding-top: 80px; padding-bottom: 20px; }
    
    .bg-blobs .blob { width: 40vw; height: 40vw; opacity: 0.3;}
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 8vw;
    }
    
    .hero-text h1 {
        font-size: 11vw;
        letter-spacing: -0.5vw;
        line-height: 1.2;
    }
    
    .hero-text .subtitle {
        font-size: 4.2vw;
        margin: 0 auto 8vw;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 3vw;
    }

    .btn-main, .btn-outline {
        font-size: 4.5vw;
        padding: 4vw 8vw;
        border-radius: 4vw;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 8vw;
    }
    
    .main-logo-img {
        max-width: 60vw;
    }
    
    .badge { font-size: 3.2vw; padding: 1.5vw 4vw; margin-bottom: 4vw; }
    h2 { font-size: 9vw; margin-bottom: 8vw; line-height: 1.3; }
    
    .about-grid { 
        display: grid;
        grid-template-columns: 1fr; 
        gap: 4vw; 
    }
    .about-card { padding: 8vw; border-radius: 6vw; }
    .about-card h3 { font-size: 6vw; margin-bottom: 3vw; }
    .about-card p { font-size: 3.8vw; line-height: 1.6; }
    
    .bento-grid { 
        display: flex;
        flex-direction: column;
        gap: 4vw; 
        overflow: hidden;
    }
    .bento-item { 
        padding: 8vw 6vw; 
        min-height: 50vw; 
        border-radius: 6vw; 
        width: 100%;
        overflow: hidden;
    }
    .bento-item.large::before {
        display: none;
    }
    .bento-item h3 { font-size: 5.5vw; margin-bottom: 2.5vw; }
    .bento-item p { font-size: 3.8vw; line-height: 1.6; }
    
    .stats-cinematic { height: 140vw; border-radius: 10vw; }
    .stats-large-num { font-size: 35vw; top: 25%; }
    .stats-glass-card { padding: 6vw; bottom: 5vw; left: 5vw; right: 5vw; border-radius: 8vw; }
    .stats-glass-card h3 { font-size: 5.5vw; margin-bottom: 3vw; }
    .stats-glass-card p { font-size: 3.8vw; line-height: 1.6; }
    .mini-num { font-size: 10vw; margin-bottom: 2vw; }
    .stats-footer-tags span { font-size: 3.2vw; padding: 1.5vw 4vw; }
    
    .form-card { padding: 10vw 6vw; border-radius: 8vw; }
    .form-header { margin-bottom: 8vw !important; }
    .form-header h2 { font-size: 8vw; }
    .form-header p { font-size: 3.8vw; }
    .form-group { margin-bottom: 6vw; }
    .form-group label { font-size: 3.5vw; margin-bottom: 2vw; }
    .form-input { font-size: 4vw; padding: 4vw 5vw; border-radius: 3vw; }
    .btn-submit { font-size: 4.5vw; padding: 5vw; border-radius: 4vw; margin-top: 4vw; }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(3, 3, 3, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10vw;
        gap: 10vw;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(-20px);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: flex;
    }
    
    .nav-links a { font-size: 8vw; font-weight: 800; }
    .nav-links .btn-nav { font-size: 5vw; padding: 4vw 10vw; border-radius: 4vw; }
    
    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 2001;
        padding: 2vw;
    }

    .mobile-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    footer { padding: 12vw 0; }
    footer .logo-text { font-size: 6vw; }
    footer p { font-size: 3.2vw; margin-top: 3vw; }

    .services-grid { grid-template-columns: 1fr; gap: 4vw; }
    .service-card { padding: 8vw 6vw; border-radius: 6vw; }
    .service-icon { font-size: 8vw; margin-bottom: 4vw; }
    .service-card h3 { font-size: 5.5vw; margin-bottom: 3vw; }
    .service-card p { font-size: 3.8vw; line-height: 1.6; }
    
    
    .faq-question { padding: 5vw 6vw; }
    .faq-question h3 { font-size: 4.2vw; }
    .faq-answer { padding: 0 6vw; }
    .faq-answer p { font-size: 3.8vw; padding-bottom: 5vw; }
}

/* Animations */
[data-reveal] {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
}

/* Legacy - kept for safety, replaced by .field-error system */

.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-1vw); }
    50% { transform: translateX(1vw); }
    75% { transform: translateX(-1vw); }
}
