/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Launch Events service page styles */
.hero-service {
    padding: 96px 24px;
    text-align: center;
    background: var(--background-secondary);
    border-bottom: 1px solid var(--glass-border);
}
.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text);
    margin: 0 0 12px 0;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 1400px;
    margin: 0 auto 20px auto;
}

.service-overview {
    padding: 56px 24px;
    background: var(--background);
}
.service-content {
    max-width: 1400px;
    margin: 0 auto;
}
.service-content h2 {
    color: var(--text);
    margin-bottom: 12px;
}
.service-content p {
    color: var(--text-secondary);
}
.service-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.feature {
    background: var(--background-glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 18px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    position: relative;
    overflow: hidden;
    transition: transform var(--duration-normal) var(--ease-smooth), 
                box-shadow var(--duration-normal) var(--ease-smooth),
                border-color var(--duration-normal) var(--ease-smooth);
}

/* Glass refraction highlight */
.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%
    );
    opacity: 0.6;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow), var(--glass-glow);
    border-color: rgba(255, 51, 51, 0.2);
}
.feature h3 {
    color: var(--text);
    font-size: 1.1rem;
    margin: 0 0 8px 0;
}
.feature p {
    color: var(--text-secondary);
    margin: 0;
}

.service-pricing {
    padding: 56px 24px;
    background: var(--background-secondary);
    border-top: 1px solid var(--glass-border);
}
.service-pricing h2 {
    color: var(--text);
    text-align: center;
    margin-bottom: 8px;
}
.service-pricing p {
    color: var(--text-secondary);
    text-align: center;
}
.pricing-note {
    max-width: 900px;
    margin: 16px auto 0 auto;
    background: var(--accent-glass);
    border-left: 3px solid var(--accent);
    padding: 12px 14px;
    border-radius: 8px;
}

.service-cta {
    padding: 56px 24px;
    background: var(--background);
    text-align: center;
}
.service-cta h2 {
    color: var(--text);
    margin-bottom: 8px;
}
.service-cta p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.btn-primary,
.btn-get-started {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    border-radius: 16px;
    padding: 12px 16px;
    text-decoration: none;
    font-size: 0.875rem; /* 14px */
    border: none;
    outline: none;
    min-height: 44px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    
    /* Liquid Glass Enhancements */
    box-shadow: var(--elevation-2), 0 0 0 rgba(255, 51, 51, 0);
    transition: transform var(--duration-fast) var(--ease-pop),
                box-shadow var(--duration-normal) var(--ease-smooth),
                background var(--duration-normal) var(--ease-smooth);
}

/* Glass Glow Effect on Buttons */
.btn-primary::before,
.btn-get-started::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 50%
    );
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.btn-primary:hover,
.btn-get-started:hover {
    background: var(--primary-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--elevation-3), var(--glass-glow);
}

.btn-primary:hover::before,
.btn-get-started:hover::before {
    opacity: 1;
}

.btn-primary:active,
.btn-get-started:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    font-weight: 700;
    font-size: 0.875rem; /* 14px */
    min-height: 44px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    
    /* Liquid Glass Enhancements */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all var(--duration-fast) var(--ease-pop),
                box-shadow var(--duration-normal) var(--ease-smooth);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
    z-index: -1;
}

.btn-secondary:hover {
    color: #000;
    border-color: var(--accent);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--elevation-2), var(--glass-glow);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

@media (max-width: 900px) {
    .service-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .service-features {
        grid-template-columns: 1fr;
    }
}
/* Infinity Studio Footer Flash Animation */
.footer-infinity-flash {
    position: relative;
    color: #fff !important;
    animation: footerInfinityFlash 2s infinite;
    text-shadow: 0 0 24px #fff, 0 0 8px #ffe066, 0 2px 8px #000;
    font-weight: 800;
    letter-spacing: 1px;
}

@keyframes footerInfinityFlash {
    0%, 80% {
        color: #fff;
        text-shadow: 0 0 8px #ffe066, 0 2px 8px #000;
    }
    90% {
        color: #ffe066;
        text-shadow: 0 0 48px #fff, 0 0 24px #ffe066, 0 2px 8px #000;
    }
    100% {
        color: #fff;
        text-shadow: 0 0 8px #ffe066, 0 2px 8px #000;
    }
}
/* SDG Footer Flash Glow Animation */
.footer-sdg-flash {
    position: relative;
    color: #2196f3 !important;
    animation: footerSDGFlash 1.2s infinite alternate;
    text-shadow: 0 0 16px #2196f3, 0 2px 8px #000;
    font-weight: 700;
}

@keyframes footerSDGFlash {
    0% {
        color: #2196f3;
        text-shadow: 0 0 8px #2196f3;
    }
    100% {
        color: #0d47a1;
        text-shadow: 0 0 24px #2196f3, 0 0 12px #2196f3;
    }
}
/* --- Begin Services Section Redesign Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   LIQUID GLASS DESIGN TOKENS - 2026
   ============================================ */
@layer tokens {
    :root {
        /* Brand Colors */
        --primary: #ff3333;
        --primary-dark: #b71c1c;
        --accent: #ff3333;
        --accent-dark: #cc0000;
        --accent-glass: rgba(255, 51, 51, 0.18);
        
        /* Dark Palette (OLED-Friendly) */
        --background: #0d1117;
        --background-secondary: #121212;
        --background-tertiary: #1a1a1a;
        
        /* Light Sky Palette (Alt Sections) */
        --sky-100: #e6f4ff;
        --sky-200: #d6eeff;
        --sky-300: #bfe4ff;
        --ink-900: #0b1b2b;
        
        /* Typography */
        --text: #f5f6fa;
        --text-secondary: #9ba2b1;
        --text-muted: #6e7681;
        
        /* Liquid Glass Tokens */
        --background-glass: rgba(24, 26, 32, 0.85);
        --glass-border: rgba(255, 255, 255, 0.08);
        --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
        --glass-glow: 0 0 24px rgba(255, 51, 51, 0.2);
        --glass-backdrop: blur(16px) saturate(180%);
        
        /* Elevation Levels */
        --elevation-1: 0 2px 8px rgba(0, 0, 0, 0.2);
        --elevation-2: 0 4px 16px rgba(0, 0, 0, 0.3);
        --elevation-3: 0 8px 24px rgba(0, 0, 0, 0.4);
        
        /* Motion & Easing */
        --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
        --ease-pop: cubic-bezier(0.175, 0.885, 0.32, 1.275);
        --duration-fast: 150ms;
        --duration-normal: 250ms;
        --duration-slow: 350ms;
    }
    
    /* Reduced Motion Preference */
    @media (prefers-reduced-motion: reduce) {
        :root {
            --duration-fast: 0ms;
            --duration-normal: 0ms;
            --duration-slow: 0ms;
        }
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }
}

/* ============================================
   LIQUID GLASS COMPONENTS & MOTION
   ============================================ */

/* Glass Card Base */
.glass-card {
    background: var(--background-glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    position: relative;
    overflow: hidden;
    transition: transform var(--duration-normal) var(--ease-smooth),
                box-shadow var(--duration-normal) var(--ease-smooth);
}

/* Glass Card with Refraction Highlight */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%
    );
    opacity: 0.6;
}

/* Glass Card Hover State */
.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow), var(--glass-glow);
    border-color: rgba(255, 51, 51, 0.2);
}

/* Glass Panel (lighter variant for nested content) */
.glass-panel {
    background: rgba(30, 32, 38, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Focus Visible Ring (Accessibility) */
.glass-card:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Scroll-Linked Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp var(--duration-slow) var(--ease-smooth) backwards;
}

.fade-in-up.delay-1 { animation-delay: 100ms; }
.fade-in-up.delay-2 { animation-delay: 200ms; }
.fade-in-up.delay-3 { animation-delay: 300ms; }

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
    z-index: 9999;
    transform-origin: left;
    transition: transform 50ms linear;
}

/* Parallax Container */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-layer {
    will-change: transform;
    transition: transform 100ms linear;
}

/* Liquid Glass Glow on Hover (CTAs, Cards) */
.glow-on-hover {
    position: relative;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.glow-on-hover::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(255, 51, 51, 0.3) 0%, 
        transparent 50%,
        rgba(255, 51, 51, 0.1) 100%
    );
    opacity: 0;
    z-index: -1;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.glow-on-hover:hover::after {
    opacity: 1;
}

/* Micro-interaction: Button Lift */
.btn-lift {
    transition: transform var(--duration-fast) var(--ease-pop),
                box-shadow var(--duration-fast) var(--ease-smooth);
}

.btn-lift:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--elevation-3), var(--glass-glow);
}

.btn-lift:active {
    transform: translateY(0) scale(0.98);
}

body, .services-redesign, .service-card, .category-toggle, .section-title, .section-description, .category-description, .service-card ul li {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}
.services-redesign {
    padding: 60px 0 60px 0;
    margin-top: 0;
    margin-bottom: 0;
    min-height: 60vh;
    background: transparent;
}

@media (max-width: 768px) {
    .services-redesign {
        padding: 2rem 0;
        min-height: auto;
    }
}

/* Utility: light sky section theme */
.light-sky {
    background: linear-gradient(180deg, var(--sky-100) 0%, #f7fbff 100%);
}
.light-sky .section-title {
    color: var(--ink-900);
    text-shadow: none;
}
.light-sky .section-description {
    color: #335268;
}
.light-sky .sdg-card,
.light-sky .about-card,
.light-sky .service-category {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(11,27,43,0.08);
    box-shadow: 0 8px 24px rgba(11,27,43,0.08);
}
.light-sky .sdg-card h3,
.light-sky .about-card h3,
.light-sky .category-toggle {
    color: var(--ink-900);
    text-shadow: none;
}
.light-sky .category-toggle .toggle-icon,
.light-sky .category-toggle.attention-text {
    color: var(--primary);
    text-shadow: 0 0 8px rgba(255,51,51,0.25);
}
.light-sky .footnote,
.light-sky .attribution,
.light-sky .section-description,
.light-sky p,
.light-sky li {
    color: #335268;
}
.light-sky .iso-badge {
    background: rgba(255,51,51,0.08);
    border-color: rgba(11,27,43,0.12);
    color: var(--ink-900);
}

/* --- SDG Section Styles --- */
.sdg-section { padding: 60px 0; }
.sdg-container { max-width: var(--container-width); margin: 0 auto; padding: 0 var(--container-padding); }
.sdg-hero { margin-bottom: 2rem; }
.sdg-hero.glass-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-2xl);
    align-items: center;
    padding: var(--spacing-2xl);
    border-radius: 20px;
    background: var(--glass-panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
}
.sdg-hero .copy { max-width: var(--container-width); margin: 0 auto; padding: 0 var(--container-padding); }
.sdg-hero h1.section-title, .sdg-hero h2.section-title { margin-bottom: 0.25rem; }
.sdg-banner { margin-top: 0.5rem; }
.sdg-banner img { width: 100%; max-width: 100%; height: auto; border-radius: 12px; display: block; margin: 0; box-shadow: var(--shadow-lg); }
.sdg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; align-items: stretch; max-width: var(--container-width); margin: 0 auto; padding: 0 var(--container-padding); }
.sdg-grid + .sdg-grid { margin-top: 2rem; }
.sdg-card { background: var(--background-glass); border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow); border-radius: 16px; padding: 1.5rem; height: 100%; display: flex; flex-direction: column; }
.sdg-card h3, .sdg-card h2 { color: var(--accent); margin-top: 0; margin-bottom: 0; text-shadow: 0 0 8px var(--accent), 0 1px 4px #000; }
.sdg-card > * + * { margin-top: 0.75rem; }
.sdg-card ul { margin: 0.25rem 0 0; padding-left: 1.2rem; }
.sdg-card li { margin: 0.35rem 0; }
.sdg-card p { margin: 0.6rem 0; }
.sdg-card p + p { margin-top: 0.9rem; }
.sdg-card p .btn-get-started { display: inline-flex; }
.sdg-card .metric { font-size: 1.6rem; font-weight: 800; color: var(--accent); margin-bottom: 0.5rem; }
.chart-wrap { display: flex; justify-content: center; align-items: center; padding: 0.5rem 0; }
.chart-legend { margin-top: 0.5rem; color: var(--text-secondary); text-align: center; font-size: 0.95rem; }
.footnote { margin-top: 0.75rem; font-size: 0.9rem; color: var(--text-secondary); }
.attribution { margin-top: 0.5rem; font-size: 0.8rem; color: var(--text-secondary); text-align: center; }
@media (max-width: 900px) {
    .sdg-section { padding: 40px 0; }
    .sdg-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .sdg-hero { text-align: center; }
    .sdg-hero.glass-card { grid-template-columns: 1fr; padding: var(--spacing-xl); }
    .sdg-hero .sdg-banner { order: -1; }
}

@media (max-width: 480px) {
    .sdg-container { padding: 0 4%; }
    .sdg-hero .copy { padding: 0 4%; }
    .sdg-grid { padding: 0 4%; gap: 1rem; }
    .sdg-card { padding: 1rem; margin: 0; box-sizing: border-box; }
    .sdg-section { padding: 30px 0; overflow-x: hidden; }
}

@media (max-width: 390px) {
    .sdg-container { padding: 0 3%; }
    .sdg-hero .copy { padding: 0 3%; }
    .sdg-grid { padding: 0 3%; gap: 0.75rem; }
    .sdg-card { padding: 0.75rem; }
}

/* Lead Gen page scope */
.lead-page .sdg-container {
    max-width: 1100px;
}

.lead-page .lead-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    margin-bottom: 1.5rem;
}

.lead-page .lead-meta-title {
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.lead-page .lead-meta-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    color: var(--text);
}

.lead-page .lead-meta a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.lead-page .lead-meta .dot {
    color: var(--text-light);
}

.lead-page .lead-grid {
    gap: 1.25rem;
    align-items: stretch;
}

.lead-page .sdg-card h2 {
    margin-bottom: 0.5rem;
}

.lead-page .sdg-card ul li {
    margin-bottom: 0.45rem;
}

@media (max-width: 768px) {
    .lead-page .lead-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* sdg-container uses site-wide container padding variables; no extra overrides needed */

/* Utility: dark themed section background */
.dark-section {
    background: radial-gradient(ellipse at center, rgba(255, 51, 51, 0.08) 0%, transparent 50%),
                            linear-gradient(135deg, var(--background) 0%, #0f0f0f 100%);
}

/* --- Mobile polish for new pages (events, public sector, film case study, blog tabs) --- */
.events-grid,
.event-section .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.event-card-image { height: 240px; object-fit: cover; }

@media (max-width: 640px) {
    .events-grid,
    .event-section .events-grid { grid-template-columns: 1fr; gap: 16px; }
    .event-card-image { height: 200px; }
    .event-card { margin: 0; }
}

.case-study-grid img { width: 100%; height: auto; display: block; }
@media (max-width: 640px) {
    .case-study-card { padding: 1.25rem; }
    .case-study-grid { grid-template-columns: 1fr; gap: 1rem; }
}

.blog-topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0;
}
.blog-topic-grid .service-card {
    position: relative;
    min-height: 150px;
    border: 1px solid rgba(255, 51, 51, 0.25);
    color: #e6edf3;
    overflow: hidden;
}
.blog-topic-grid .service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.65));
    z-index: 0;
}
.blog-topic-grid .service-card h4,
.blog-topic-grid .service-card p { position: relative; z-index: 1; }

@media (max-width: 640px) {
    .blog-topic-grid { grid-template-columns: 1fr; }
    .blog-topic-grid .service-card { min-height: 170px; }
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .section-header {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
}
.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 24px var(--accent), 0 2px 8px #000;
}

/* Prevent UA H1 font-size fallback (H1UserAgentFontSizeInSection deprecation).
   Ensure section-level headings use author-defined sizes so the browser doesn't apply
   the user-agent H1 font-size inside sectioning contexts. */
section h1,
h1.section-title,
section h2,
h2.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.section-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.service-categories {
    max-width: 1100px;
    margin: 0 auto;
}
.service-category {
    margin-bottom: 2.5rem;
    border-radius: 18px;
    background: var(--background-glass);
    box-shadow: var(--glass-shadow);
    border: 1.5px solid var(--glass-border);
    overflow: hidden;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.3s, border-color 0.3s;
}
.category-toggle {
    width: 100%;
    text-align: left;
    background: transparent;
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
    /* Extra right padding to accommodate right-aligned + icon */
    padding: 1.5rem 3.5rem;
    border: none;
    outline: none;
    cursor: pointer;
    letter-spacing: 1px;
    transition: color 0.2s;
    border-bottom: 1px solid var(--glass-border);
    text-shadow: 0 0 12px var(--accent), 0 1px 4px #000;
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}
.toggle-icon {
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
    /* Place the + icon at the right end of the button */
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    transition: transform 0.2s, color 0.2s;
}
.toggle-icon.attention {
    animation: pulseAttention 1.2s infinite alternate;
}
@keyframes pulseAttention {
    0% {
        color: var(--accent);
        transform: translateY(-50%) scale(1);
        text-shadow: 0 0 8px var(--accent);
    }
    100% {
        color: #fff;
        transform: translateY(-50%) scale(1.25);
        text-shadow: 0 0 24px var(--accent);
    }
}
.category-toggle.attention-text {
    color: #fff;
    /* Make glow fully red (remove white glow) */
    text-shadow: 0 0 24px var(--accent), 0 2px 8px #000, 0 0 8px var(--accent);
    animation: glowText 1.2s infinite alternate;
}
@keyframes glowText {
    0% {
        color: var(--accent);
        text-shadow: 0 0 8px var(--accent);
    }
    100% {
        color: #fff;
        /* Use red accent for secondary glow instead of white */
        text-shadow: 0 0 24px var(--accent), 0 0 12px var(--accent);
    }
}
.category-toggle.flash {
    color: #fff;
    /* Remove white flash glow; keep red-only */
    text-shadow: 0 0 32px var(--accent), 0 0 12px var(--accent);
    animation: flashSeq 0.5s linear;
}
@keyframes flashSeq {
    0% {
        color: var(--accent);
        text-shadow: 0 0 8px var(--accent);
    }
    50% {
        color: #fff;
        /* Red-only flash mid-state */
        text-shadow: 0 0 32px var(--accent), 0 0 12px var(--accent);
    }
    100% {
        color: var(--accent);
        text-shadow: 0 0 8px var(--accent);
    }
}
.category-content {
    padding: 2.5rem;
    border-top: 1px solid var(--glass-border);
    animation: fadeIn 0.4s;
}
.category-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.service-card {
    background: rgba(36, 39, 54, 0.85);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(255,51,51,0.08), var(--glass-shadow);
    border: 1px solid var(--glass-border);
    padding: 2rem 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
.service-card:hover {
    box-shadow: 0 12px 48px rgba(255,51,51,0.18), 0 8px 32px rgba(0,0,0,0.45);
    transform: translateY(-6px) scale(1.03);
    border-color: var(--accent);
}
.service-card h4 {
    font-size: 1.35rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 0 8px var(--accent), 0 1px 2px #000;
}
.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-card ul li {
    position: relative;
    padding: 0.7rem 0 0.7rem 2rem;
    color: var(--text);
    border-bottom: 1px solid var(--glass-border);
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.service-card ul li:last-child {
    border-bottom: none;
}
.service-card ul li::before {
    content: '\2022';
    position: absolute;
    left: 0.5rem;
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: bold;
    filter: blur(0.5px);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 700px) {
    .sdg-section { padding: 40px 0; }
    .sdg-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .sdg-grid + .sdg-grid { margin-top: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .category-content { padding: 1.2rem 1rem; }
    .category-toggle { padding: 1.2rem 1.2rem; font-size: 1.2rem; }
    .section-title { font-size: 2rem; }
}
/* --- End Services Section Redesign Styles --- */
.collapsible, .studio-title {
    border-radius: 20px !important;
    overflow: hidden;
    padding: 0.35em 0.9em !important;
    min-width: 140px;
    box-sizing: border-box;
    transition: padding 0.2s;
    margin-bottom: 0.5rem !important;
}
.collapsible.active {
    padding: 0.75em 1.5em !important;
}
@media (max-width: 600px) {
    .policy-container {
        padding: 1rem !important;
        margin: 1.5rem auto !important;
        border-radius: 16px !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.12);
        max-width: 98vw !important;
    }
    .policy-title {
        font-size: 1.3em !important;
        margin-bottom: 1rem !important;
        padding: 0 0.5rem;
    }
    .policy-section {
        margin-bottom: 1.2rem !important;
    }
    .policy-country {
        font-size: 1em !important;
        margin-bottom: 0.5em !important;
    }
    .policy-text {
        font-size: 1em !important;
        padding: 0 0.5rem;
        word-break: break-word;
    }
    .whatsapp-button {
        width: 48px;
        height: 48px;
        bottom: 1.2rem;
        right: 1.2rem;
    }
    .behance-button {
        width: 48px;
        height: 48px;
        bottom: 1.2rem;
        right: calc(1.2rem + 48px + 0.5rem); /* 0.5rem gap to WhatsApp */
    }
    .behance-icon {
        font-size: 28px;
    }
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}
@media (max-width: 768px) {
    .showcase-image {
        border-radius: 20px !important;
        box-shadow: 0 10px 25px rgba(255, 51, 51, 0.18);
        border: 2px solid rgba(255, 51, 51, 0.2);
        object-fit: cover;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }
}
.studio-rates {
    font-size: 1.15em;
    margin-top: 0.5em;
    color: var(--primary);
    font-weight: 600;
}
.studio-rates span {
    color: #FF3333;
    font-weight: bold;
}
.studio-hero {
    background: radial-gradient(ellipse at center, rgba(255,51,51,0.07) 0%, transparent 55%),
                linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 72px 0;
}
.studio-hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}
.studio-hero-text .studio-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.studio-hero-text .studio-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
}
.studio-hero-image .hero-studio-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 12px 36px rgba(0,0,0,0.45);
}
@media (max-width: 900px) {
    .studio-hero-content { grid-template-columns: 1fr; }
    .studio-hero-image { order: -1; }
}

.studio-section {
    padding: 60px 0;
}
.studio-section .section-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}
.spec-card {
    background: var(--background-glass);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
    padding: 1.25rem;
}
.spec-title { color: var(--text); margin: 0.25rem 0; }
.spec-detail { color: var(--text-secondary); }
.spec-description { color: var(--text-secondary); }
@media (max-width: 900px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .specs-grid { grid-template-columns: 1fr; } }

.services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
}
.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--background-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.9rem 1rem;
}
.service-icon { color: var(--accent); }
@media (max-width: 700px) { .services-list { grid-template-columns: 1fr; } }

.book-studio-section {
    background: linear-gradient(135deg, #121212, #1a1a1a);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.book-content { text-align: center; }
.book-title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900; }
.book-description { color: var(--text-secondary); max-width: 720px; margin: 0.5rem auto 1.25rem; }
.book-actions { display: flex; gap: 0.75rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.book-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; border-radius: 999px; font-weight: 700; border: 1px solid transparent; text-decoration: none; }
.book-btn.primary { background: var(--accent); color: #fff; }
.book-btn.primary:hover { background: #ff4444; }
.book-btn.secondary { background: var(--background-tertiary); color: var(--text); border-color: var(--glass-border); }
.book-btn.secondary:hover { background: #333; }
.book-btn.whatsapp { background: #25d366; color: #000; font-weight: 700; }
.book-btn.whatsapp:hover { filter: brightness(1.05); }
.footer-bottom hr {
    width: 60%;
    margin: 0 auto 1rem auto;
    border: 0;
    border-top: 1px solid #333;
}
@media (max-width: 600px) {
    .footer-bottom hr {
        width: 90%;
    }
}

/* Keep only logo styling from original footer styles */
.footer-saba-logo, .footer-iso-logo {
    border-radius: 8px;
    background: #181818;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 28px;
    width: auto;
    object-fit: contain;
    margin: 0 8px;
}
/* Get Started Button Colors */
/* Button text always white, icons keep accent color */
.booking-btn .btn-content span,
.modeling-btn .btn-content span,
.whatsapp-btn .btn-content span,
.email-btn .btn-content span {
    color: #fff !important;
}
.booking-btn,
.booking-btn .btn-icon {
    color: #ff3333 !important;
}
.modeling-btn,
.modeling-btn .btn-icon {
    color: #3399ff !important;
}
.whatsapp-btn,
.whatsapp-btn .btn-icon {
    color: #25d366 !important;
}
.email-btn,
.email-btn .btn-icon {
    color: #ff3333 !important;
}
/* IMJD Website Styles 2024 - Enhanced Version */

:root {
    /* Dark Theme Color Variables */
    --primary: #FF3333;
    --primary-dark: #CC0000;
    --primary-light: #FF6666;
    --primary-glass: rgba(255, 51, 51, 0.15);
    --secondary: #ffffff;
    --background: #000000;
    --background-secondary: #1a1a1a;
    --background-tertiary: #2a2a2a;
    --dark: #0d1117;
    --text: #ffffff;
    --text-light: #b8b8b8;
    --text-secondary: #b0b0b0;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #1a1a1a;
    --gray-100: #2a2a2a;
    --gray-200: #3a3a3a;
    --gray-300: #4a4a4a;
    --gray-400: #9a9a9a;
    --gray-500: #b0b0b0;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --container-padding: 5%;
    --container-width: 1200px;
    --border-radius: 20px;
    --transition: all 0.3s ease;
    --font-size-lg: 1.5rem;
    --font-size-md: 1.25rem;

    /* Infinity Studio Styles - merged for global use */
    --studio-bg: #1a1a1a;
    --studio-text: #ffffff;
    --studio-text-light: #b3b3b3;
    --studio-accent: #FF3333;
    --studio-accent-dark: #CC0000;
    --studio-section-bg: #2a2a2a;
    --studio-card-bg: #333333;
}

/* Global Styles */
/* Consistent button sizing for Get in Touch section */
.contact-options .book-btn {
    min-width: 220px;
    max-width: 320px;
    width: 100%;
    box-sizing: border-box;
}
/* Collapsible content hidden by default */
.collapse-content {
    display: none;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Accounts for fixed header */
    overflow-x: hidden;
    max-width: 100%;
}
/* Global Heading Styles to match Infinity Studio */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
    min-height: 100vh;
}

/* Accessibility: Red focus ring aligned with brand accent */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Scroll Progress Bar (accent red on black, OLED friendly) */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(255, 51, 51, 0.6);
    z-index: 9999;
    transition: width 0.15s ease-out;
}
@media (prefers-reduced-motion: reduce) {
    .scroll-progress { transition: none; }
}

/* Bento Grid (homepage overview) */
.bento {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    min-height: 350px;
}
.tile {
    background: var(--background-glass);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
    padding: 1.2rem;
    transition: transform 0.2s var(--ease-smooth), box-shadow 0.2s var(--ease-smooth);
}
.tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255,51,51,0.12);
}
.tile h3 { color: var(--text); margin: 0 0 0.5rem; font-size: 1.3rem; }
.tile p { color: var(--text-secondary); margin: 0 0 0.75rem; line-height: 1.5; }
.tile .metrics { color: var(--text-secondary); padding: 0; margin: 0 0 0.75rem; list-style: none; display: flex; gap: 0.75rem; flex-wrap: wrap; font-size: 0.9rem; }
.tile .cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,51,51,0.25);
    color: #ffffff;
    border-radius: 12px;
    padding: 0.5rem 0.9rem;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(255,51,51,0.18);
    font-weight: 600;
    transition: all 0.2s ease;
}
.tile .cta:hover { background: rgba(255,51,51,0.35); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,51,51,0.25); }
.tile.case p { font-size: 0.95rem; }
.tile.trust { display: flex; align-items: center; justify-content: space-around; }
.tile.trust img { height: 28px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6)); }

@media (max-width: 900px) {
    .bento { margin: 3rem auto 2rem; padding: 0 1rem; }
    .bento-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* Command Bar (Spotlight-style) */
.cmdbar-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center; z-index: 10000;
}
.cmdbar-overlay.active { display: flex; }
.cmdbar-dialog {
    width: min(720px, 92vw);
    background: var(--background-glass);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px; padding: 1rem;
}
.cmdbar-input {
    width: 100%; padding: 0.8rem 1rem; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.5);
    color: var(--text);
}
.cmdbar-list { list-style: none; padding: 0.5rem 0 0; margin: 0; }
.cmdbar-item { padding: 0.6rem 0.8rem; border-radius: 8px; color: var(--text); display: flex; justify-content: space-between; }
.cmdbar-item:hover, .cmdbar-item.active { background: rgba(255,51,51,0.18); color: var(--accent); }

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 1024px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Header */
.header {
    position: relative;
    width: 100%;
    height: 80px;
    background: rgba(20, 20, 20, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-brand .brand-logo {
    height: 32px; /* reduced for tighter header */
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1) grayscale(1) contrast(2); /* sharp white */
    transition: filter 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-right: 1.25rem; /* tighter spacing next to nav */
}

.nav-brand .brand-logo:hover {
    filter: none; /* reveal original color on hover */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* tighter gap for compact header */
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem; /* 14px */
    padding: 12px; /* requested padding */
    border-radius: 14px; /* smaller pill */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap; /* prevent multi-line labels */
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(255, 51, 51, 0.12);
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Reset dropdown toggle button appearance and make it match header links */
.nav-dropdown-toggle {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 6px 8px;
    font-size: 0.9rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}
.nav-dropdown-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,51,51,0.08);
    border-radius: 8px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(13,17,23,0.98);
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0.5rem 0;
    border-radius: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-link {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 12px 20px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-link:hover {
    color: var(--primary);
    background: rgba(255, 51, 51, 0.12);
    padding-left: 24px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-goodfirms-badge {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
    opacity: 0.9;
}

.header-goodfirms-badge:hover {
    transform: scale(1.1);
    opacity: 1;
}

.header-goodfirms-badge img {
    width: 32px;
    height: 32px;
    display: block;
}

.btn-get-started {
    display: flex;
    align-items: center;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 16px; /* more compact chip */
    padding: 12px; /* requested padding */
    text-decoration: none;
    font-size: 0.875rem; /* 14px */
    transition: background 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    outline: none;
    box-shadow: 0 2px 8px rgba(255, 51, 51, 0.15);
    white-space: nowrap; /* keep CTA on one line */
}

.btn-get-started:hover {
    background: var(--primary-dark);
}

.btn-icon {
    margin-left: 0.5rem;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1rem;
    }
    .nav-menu {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .header {
        height: 64px;
    }
    .nav-container {
        height: 64px;
        padding: 0 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .nav-brand {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .nav-brand .brand-logo {
        height: 32px;
        max-width: 140px;
        margin: 0 auto;
    }
    .nav-menu,
    .nav-actions,
    .mobile-toggle,
    .mobile-menu {
        display: none !important;
    }
}

/* Additional mobile breakpoints for troubleshooting */
@media (max-width: 480px) {
    .mobile-toggle {
        display: flex !important;
        background-color: rgba(255, 51, 51, 0.5) !important; /* Even more visible on smaller screens */
    }
}

/* Remove hamburger/mobile menu styles and center logo on mobile */
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 64px;
        padding: 0 1rem;
        position: relative;
    }
    .nav-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .nav-brand .brand-logo {
        height: 32px;
        max-width: 140px;
    }
    .nav-menu,
    .nav-actions {
        display: none !important;
    }
}

/* Mobile Hamburger Button */
.mobile-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--background);
    border-right: 1px solid var(--glass-border);
    z-index: 1001;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-drawer.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.mobile-menu-logo {
    height: 32px;
    width: auto;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--accent);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.mobile-menu-close svg {
    width: 20px;
    height: 20px;
}

.mobile-menu-list {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    flex: 1;
}

.mobile-menu-heading {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 1.5rem 0.5rem;
    margin: 0;
    border-top: 1px solid var(--glass-border);
}

.mobile-menu-heading:first-of-type {
    border-top: none;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus {
    background: rgba(255,51,51,0.1);
    border-left-color: var(--accent);
    color: var(--accent);
}

.mobile-menu-footer {
    padding: 1.5rem 1rem;
    border-top: 1px solid var(--glass-border);
}

.mobile-cta-btn {
    display: block;
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--accent);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

/* Recommended Reading Tabs */
.reading-tabs-wrap { 
    display: block; 
    margin-top: 0.75rem; 
}
.reading-label { 
    color: var(--text-secondary); 
}
.reading-tabs { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 0.5rem; 
    margin-top: 0.5rem; 
}
.reading-tab { 
    display: inline-flex; 
    align-items: center; 
    padding: 8px 12px; 
    border-radius: 12px; 
    border: 1px solid var(--glass-border); 
    background: rgba(255,255,255,0.04); 
    color: var(--text); 
    text-decoration: none; 
    transition: all 0.2s ease; 
}
.reading-tab:hover, 
.reading-tab:focus { 
    border-color: var(--accent); 
    color: var(--accent); 
    background: rgba(255,51,51,0.12); 
}

.mobile-cta-btn:hover {
    background: #ff4444;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,51,51,0.3);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Audio player and floating button */
.audio-overview-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--elevation-3);
    border: none;
    z-index: 1100;
    cursor: pointer;
}
.audio-overview-btn .fa-headphones { font-size: 1.1rem; }
.simple-audio-player {
    position: fixed;
    right: 18px;
    bottom: 80px;
    width: 320px;
    max-width: calc(100% - 36px);
    background: var(--background);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--elevation-4);
    z-index: 1100;
}
.simple-audio-player .close-audio {
    position: absolute;
    top: 6px;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--text-secondary);
    cursor: pointer;
}
@media (max-width: 480px) {
    .simple-audio-player { width: calc(100% - 36px); right: 18px; left: 18px; }
}

.audio-actions { margin-top: 8px; }
.audio-download { font-size: 0.85rem; color: var(--accent); text-decoration: none; }
.audio-download:hover { text-decoration: underline; }
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 64px;
        padding: 0 1rem;
        position: relative;
    }
    .nav-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .nav-brand .brand-logo {
        height: 32px;
        max-width: 140px;
    }
    .nav-menu,
    .nav-actions {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: var(--background);
    z-index: 1;
}

.hero-background {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0;
    border-radius: 0;
}

/* Lottie overlay inside hero */
.hero-lottie {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.25;
}
@media (max-width: 768px) {
    .hero-lottie { display: none; }
}

/* Compact spacing overrides for Infinity Studio page */
.page-infinity-studio .studio-hero {
    padding: 20px 0; /* reduce hero vertical padding */
}
.page-infinity-studio .studio-hero-content {
    gap: 1rem; /* reduce grid gap */
    padding: 0 12px; /* tighter horizontal padding */
}
.page-infinity-studio .studio-hero-text .studio-title {
    margin-bottom: 0.25rem;
}
.page-infinity-studio .studio-section {
    padding: 16px 0; /* reduced section spacing */
}
.page-infinity-studio .studio-section .section-content {
    padding: 0 12px;
}
.page-infinity-studio .studio-hero-image .hero-studio-img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.page-infinity-studio .spec-card {
    padding: 1rem;
}
@media (max-width: 900px) {
    .page-infinity-studio .studio-hero { padding: 16px 0; }
    .page-infinity-studio .studio-section { padding: 12px 0; }
}

@media (max-width: 1024px) {
    .hero {
        padding: 0;
    }
    .hero-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0;
    }
    .hero-background {
        width: 100%;
    }
    .hero-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0;
    }
    .hero-background {
        width: 100%;
    }
    .hero-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.animate-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.animate-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Updated service card design to match Infinity Studio */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    background: rgba(255, 51, 51, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 51, 51, 0.2);
}

.service-category {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.category-icon {
    font-size: 2.2rem;
    display: block;
    margin: 0 auto 0.5rem auto;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.category-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0 auto;
    max-width: 500px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
}

/* Countries Section */
.countries {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .countries {
        padding: 2rem 0;
        min-height: auto;
    }
}

.countries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 51, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 51, 51, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.countries .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1000px;
    justify-content: center;
    align-items: stretch;
}

.country-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 51, 51, 0.15);
    border-color: var(--primary);
}

.country-flag-container {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.country-flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.country-flag:hover {
    transform: scale(1.1);
}

/* Additional flag styling for better presentation */
.country-flag-container:hover {
    box-shadow: 0 12px 32px rgba(255, 51, 51, 0.2);
    transform: translateY(-2px);
}

.country-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.country-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials {
    min-height: 100vh;
    padding: var(--spacing-3xl) 0;
    background: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 2rem 0;
        min-height: auto;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.testimonial-card {
    background: var(--gray-50);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: var(--spacing-md);
}

.testimonial-info h4 {
    color: var(--text);
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-md);
}

.testimonial-info p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.testimonial-text {
    color: var(--text);
    font-size: var(--font-size-md);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-flag {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness for testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        max-width: 600px;
        padding: 0 1.5rem;
    }
    
    .testimonial-card {
        padding: var(--spacing-md);
    }
    
    .testimonial-avatar {
        width: 48px;
        height: 48px;
    }
    
    .testimonial-info h4 {
        font-size: var(--font-size-sm);
    }
    
    .testimonial-info p {
        font-size: 0.75rem;
    }
    
    .testimonial-text {
        font-size: var(--font-size-sm);
    }
    
    .testimonial-flag {
        width: 16px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    .testimonial-card {
        padding: var(--spacing-sm);
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: var(--spacing-xs);
    }
}

/* Portfolio Section */
.portfolio {
    padding: var(--spacing-3xl) 0;
    background: var(--background-secondary);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem var(--container-padding);
}

.brand-logo {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* SABA Section */
.saba-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #222;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 600px) {
    .saba-section {
        padding: 2rem 0 1.5rem 0;
    }
    .saba-section .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.25rem;
    }
    .saba-section .section-header p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    .saba-logo {
        height: 44px;
        margin-bottom: 0.5rem;
    }
    .saba-pricing {
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .saba-features .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.2rem;
    }
    .feature-card {
        padding: 1.2rem 1rem;
        font-size: 0.98rem;
    }
    .feature-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }
    .feature-card p {
        font-size: 0.98rem;
    }
    .saba-cta .btn-primary {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

.saba-section .section-header h2 {
    color: #1a73e8;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.saba-section .section-header p {
    color: #222;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.saba-features .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-card {
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(26,115,232,0.08);
    padding: 2.5rem 2rem;
    text-align: left;
    border: 1px solid #e3eafc;
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 16px 48px rgba(26,115,232,0.15);
}

.feature-card h3 {
    color: #1a73e8;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #222;
    font-size: 1.1rem;
}

.saba-cta {
    text-align: center;
    margin-top: 2rem;
}

.saba-cta .btn-primary {
    background: linear-gradient(90deg, #1a73e8 0%, #4285f4 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(26,115,232,0.12);
    transition: background 0.3s, box-shadow 0.3s;
    border: none;
    display: inline-block;
}

.saba-cta .btn-primary:hover {
    background: linear-gradient(90deg, #4285f4 0%, #1a73e8 100%);
    box-shadow: 0 8px 32px rgba(26,115,232,0.18);
}

@media (max-width: 900px) {
    .saba-features .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Educational Resources Section */
.education-section {
    background: var(--gray-50);
    padding: var(--spacing-3xl) 0;
}

.education-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .education-content {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xl);
        padding: 0 1rem;
    }
    .video-container {
        width: 100%;
        padding-bottom: 56.25%;
        height: 0;
        border-radius: 8px;
        box-shadow: var(--shadow-md);
        margin-bottom: 1rem;
    }
    .video-container iframe {
        border-radius: 8px;
    }
    .course-info {
        padding: 1rem;
        text-align: center;
    }
    .course-info h3 {
        font-size: 1.4rem;
    }
    .course-info p {
        font-size: 1rem;
    }
    .btn-primary {
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem 0;
    }
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.course-info {
    padding: var(--spacing-xl);
}

.course-info h3 {
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
    color: var(--text);
}

.course-info p {
    margin-bottom: var(--spacing-xl);
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.yt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff0000, #d60000);
    color: #fff;
    box-shadow: 0 10px 30px rgba(214, 0, 0, 0.35);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    animation: footerInfinityFlash 2.2s infinite;
}

.yt-btn i {
    font-size: 1.1rem;
}

.yt-btn:hover {
    transform: translateY(-2px) scale(1.01);
    background: linear-gradient(135deg, #ff2d2d, #e00000);
    box-shadow: 0 14px 36px rgba(214, 0, 0, 0.45);
}

.yt-btn:focus-visible {
    outline: 2px solid rgba(255, 0, 0, 0.6);
    outline-offset: 3px;
}

/* SABA Section (shared styles) */
.saba-page {
    background: linear-gradient(135deg, #181a20 0%, #23263a 100%);
    min-height: 100vh;
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
}

.saba-poster-bg {
    width: 100%;
    min-height: auto;
    background: transparent;
    overflow: visible;
    padding: 4rem 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.saba-poster-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: rgba(24, 26, 32, 0.92);
    border-radius: 40px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.55), 0 0 64px #3399ff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.saba-poster-logo { display: block; margin: 0 auto 1.25rem; }

.saba-poster-title { margin: 0 0 0.4rem; color: var(--accent); text-shadow: 0 0 12px var(--accent), 0 2px 6px #000; }
.saba-poster-tagline { color: var(--text-secondary); margin-bottom: 1rem; font-weight: 600; }

.saba-poster-pricing { position: relative; color: var(--text); margin: 1rem 0 1.5rem; padding: 0.6rem 1rem; border-radius: 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.saba-pricing-shimmer { position: absolute; inset: 0; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%); filter: blur(6px); opacity: 0.8; animation: shimmer 3s infinite; pointer-events: none; }

@keyframes shimmer { 0% { transform: translateX(-100%); } 50% { transform: translateX(100%); } 100% { transform: translateX(100%); } }

.saba-poster-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 1rem 0 2rem; }
.saba-poster-feature { padding: 1rem; border-radius: 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.saba-poster-feature h4 { margin: 0 0 0.35rem; color: var(--accent); text-shadow: 0 0 8px var(--accent), 0 1px 4px #000; }
.saba-poster-feature p { margin: 0; color: var(--text-secondary); }

.saba-poster-cta { margin-top: 1.5rem; display: flex; justify-content: center; }
/* .saba-poster-btn styles removed - now using standard btn class */

@media (max-width: 900px) {
    .saba-poster-content { padding: 2rem 0.75rem; border-radius: 24px; }
}
@media (max-width: 600px) {
    .saba-poster-content { border-radius: 18px; padding: 1.25rem 0.75rem; }
    .saba-poster-logo { width: 120px; }
}

/* Certifications Section - continued theme styling */
.certifications {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 0;
}
.certifications .section-header h2 {
    color: #1a73e8;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.certifications .section-header p {
    color: #222;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.certificate-card {
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(26,115,232,0.08);
    padding: 2rem;
    text-align: center;
    border: 1px solid #e3eafc;
    transition: box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    flex-direction: column;
}
.certificate-card:hover {
    box-shadow: 0 16px 48px rgba(26,115,232,0.15);
}
.certificate-card img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .certificate-card {
        padding: 1.5rem;
        min-height: 200px;
    }
    .certificate-card img {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .certificate-card {
        padding: 2rem;
        min-height: 220px;
    }
    .certificate-card img {
        width: 180px;
        height: 180px;
    }
}

/* Contact Section */
.contact {
    padding: var(--spacing-3xl) 0;
    background: var(--background-secondary);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-300);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Blog Articles */
.blog-article {
    background: radial-gradient(circle at 20% 20%, rgba(255, 51, 51, 0.07), transparent 42%),
                radial-gradient(circle at 80% 0%, rgba(33, 150, 243, 0.08), transparent 40%),
                #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 3.5rem 1.5rem 3rem;
    max-width: 1080px;
    margin: 2.5rem auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.blog-article .blog-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1.75rem;
}

.blog-article .blog-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.65rem;
}

.blog-article .blog-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    margin: 0;
}

.blog-article .blog-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    line-height: 1.7;
    color: var(--text);
}

.blog-article .blog-content h2 {
    margin-top: 1.6rem;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.blog-article .blog-content h3 {
    margin-top: 1.1rem;
    margin-bottom: 0.35rem;
    font-size: 1.15rem;
    color: var(--text);
}

.blog-article .blog-content ul {
    padding-left: 1.1rem;
    margin: 0.25rem 0 0.75rem;
}

.blog-article .blog-content ul li {
    margin-bottom: 0.45rem;
    color: var(--text);
}

.blog-article .blog-content code,
.blog-article .blog-content pre {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: block;
    overflow-x: auto;
    color: var(--white);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .blog-article {
        padding: 2.5rem 1.1rem 2.25rem;
        margin: 1.75rem auto;
    }

    .blog-article .blog-content {
        padding: 1.5rem;
    }
}

/* Related Services Section in Blog Posts */
.blog-related-services {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, rgba(33, 150, 243, 0.08) 100%);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    max-width: 900px;
    margin: 2.5rem auto 0;
    position: relative;
    overflow: hidden;
}

.blog-related-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.blog-related-services h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.blog-related-services > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.blog-related-services .service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 51, 51, 0.15);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-related-services .service-card:hover {
    border-color: var(--primary);
    background: rgba(255, 51, 51, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255, 51, 51, 0.15);
}

.blog-related-services .service-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
}

.blog-related-services .service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    flex-grow: 1;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.service-link:hover {
    color: var(--white);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .blog-related-services {
        padding: 1.75rem 1.25rem;
    }

    .related-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .blog-related-services .service-card {
        padding: 1.25rem;
    }
}

/* Breadcrumb styles for blog posts */
.breadcrumb {
    max-width: 900px;
    margin: 1rem auto 0;
    color: var(--text-light);
    font-size: 0.95rem;
}
.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--white); font-weight: 600; }

/* Case Study Layout */
.case-article .sdg-container {
    max-width: 1080px;
    padding: 0 1.25rem;
}

.case-article .sdg-hero .copy {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.case-article .sdg-hero .section-title {
    margin-bottom: 0.75rem;
}

.case-article .sdg-card {
    padding: 1.35rem 1.5rem;
}

.case-article .sdg-card h2 {
    margin-bottom: 0.35rem;
}

.case-article .sdg-card h3 {
    margin-top: 0.85rem;
}

.case-article .tight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.case-article .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.case-article .results-grid h3 {
    font-size: 2.6rem;
    margin: 0;
}

@media (max-width: 768px) {
    .case-article .sdg-card {
        padding: 1.15rem 1.1rem;
    }

    .case-article .sdg-hero .copy {
        padding: 0 0.5rem;
    }
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 2.5rem 0 1.25rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    gap: 1.25rem;
}

.footer-brand .footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-brand .footer-iso-logo {
    height: 30px;
    width: auto;
    margin-top: var(--spacing-lg);
}

.footer-sections {
    display: flex;
    flex-direction: row;
    gap: 1.75rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.footer-section {
    min-width: 200px;
    text-align: left;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 0.65rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.35rem;
}

.footer-section ul a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--white);
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info {
    color: var(--gray-400);
}

.contact-info p {
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

.contact-info i {
    color: var(--primary);
    margin-right: 0.5rem;
    width: 16px;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    width: 100%;
}

.footer-social .social-link {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.8;
    text-decoration: none;
}

.footer-social .social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: var(--primary);
}

.footer-social .social-link.goodfirms-footer img {
    width: 48px;
    height: 48px;
    vertical-align: middle;
}

.footer-bottom {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.footer-divider {
    width: 100%;
    max-width: 600px;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0.75rem 0;
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        padding: 0 1rem;
    }
    
    .footer-sections {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
        width: 100%;
    }
    
    .footer-section {
        text-align: center;
        min-width: 0;
        width: 100%;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .footer-social {
        gap: 1.1rem;
    }
    
    .footer-social .social-link {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 0.75rem;
    }
    
    .footer-content {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .footer-sections {
        gap: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.3rem;
    }
    
    .footer-social .social-link {
        font-size: 1.5rem;
    }
    
    .footer-section ul a,
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .footer-social {
        gap: 0.75rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
    }
}

/* WhatsApp Floating Button */

.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: transform 0.2s, box-shadow 0.2s;
}


.behance-button {
    position: fixed;
    bottom: 2rem;
    right: 6.5rem;
    background: #1769ff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(23, 105, 255, 0.3);
    z-index: 1000;
    transition: transform 0.2s, box-shadow 0.2s;
    padding: 0;
}

.behance-button:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(23, 105, 255, 0.4);
}

.behance-icon {
    font-size: 32px;
    color: #fff;
    margin: 0;
}

/* Goodfirms Button */
.goodfirms-button {
    position: fixed;
    bottom: 2rem;
    right: 11rem;
    background: transparent;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    z-index: 1000;
    transition: transform 0.2s;
    padding: 0;
}

@media (max-width: 768px) {
    .goodfirms-button {
        display: none;
    }
}

.goodfirms-button:hover {
    transform: scale(1.08);
}

.goodfirms-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Audio Overview Button */
.audio-overview-btn {
    position: fixed;
    bottom: 6.5rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #FF3333;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.audio-overview-btn i {
    font-size: 24px;
    color: #fff;
}

.audio-overview-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.6);
}

.audio-overview-btn.playing {
    background: #CC0000;
    animation: pulse-btn 1.5s infinite;
}

@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 51, 51, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 51, 51, 0.8);
    }
}

/* Audio Player Widget */
.audio-player-widget {
    position: fixed;
    bottom: 11rem;
    right: 2rem;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    z-index: 1001;
}

.audio-controls {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.audio-play-pause {
    width: 48px;
    height: 48px;
    background: #FF3333;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.audio-play-pause:hover {
    background: #CC0000;
    transform: scale(1.05);
}

.audio-progress-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.audio-progress-fill {
    height: 100%;
    background: #FF3333;
    width: 0%;
    transition: width 0.1s;
}

.audio-time {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.audio-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: transparent;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-close:hover {
    color: #FF3333;
}

.whatsapp-button:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: #fff;
    display: block;
}

@media (max-width: 768px) {
    .audio-overview-btn {
        bottom: 5.5rem;
        right: 1rem;
        width: 48px;
        height: 48px;
    }
    .audio-overview-btn i {
        font-size: 22px;
    }
    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
    .behance-button {
        bottom: 1rem;
        right: calc(1rem + 44px + 0.5rem); /* 0.5rem gap to WhatsApp */
        width: 44px;
        height: 44px;
    }
    .behance-icon {
        font-size: 24px;
    }
}

/* Infinity Studio Styles - merged for global use */
.studio-hero {
    background: linear-gradient(135deg, var(--studio-bg) 0%, #2d2d2d 100%);
    padding: 120px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.studio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 51, 51, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 51, 51, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.studio-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.studio-hero-text {
    color: var(--studio-text);
}

.studio-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--studio-text) 0%, var(--studio-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.studio-subtitle {
    font-size: 1.25rem;
    color: var(--studio-text-light);
    font-weight: 400;
    line-height: 1.6;
}

.studio-hero-image {
    position: relative;
}

.hero-studio-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 51, 51, 0.2);
}

.studio-content {
    background: var(--studio-bg);
    color: var(--studio-text);
    padding: 80px 0;
}

.forms-section {
    margin-bottom: 100px;
    text-align: center;
    position: relative;
}

.forms-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--studio-accent) 50%, transparent 100%);
}

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

.forms-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--studio-text);
    background: linear-gradient(135deg, var(--studio-text) 0%, var(--studio-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.forms-description {
    font-size: 1.125rem;
    color: var(--studio-text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking-instructions {
    margin-top: 3rem;
}

.instruction-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.instruction-card:hover {
    border-color: var(--studio-accent);
    background: rgba(255, 51, 51, 0.05);
}

.instruction-icon {
    font-size: 2rem;
    color: var(--studio-accent);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.instruction-content {
    flex: 1;
}

.instruction-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--studio-text);
    margin-bottom: 0.5rem;
}

.instruction-text {
    font-size: 1rem;
    color: var(--studio-text-light);
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-option {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-option:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateX(5px);
}

.email-option {
    background: rgba(255, 51, 51, 0.1);
    color: var(--studio-accent);
    border-color: rgba(255, 51, 51, 0.2);
}

.email-option:hover {
    background: rgba(255, 51, 51, 0.2);
    transform: translateX(5px);
}

.contact-option i {
    font-size: 1.125rem;
}

.specifications-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.spec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.1), transparent);
    transition: left 0.6s ease;
}

.spec-card:hover::before {
    left: 100%;
}

.spec-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--studio-accent);
    background: rgba(255, 51, 51, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 51, 51, 0.2);
}

.spec-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--studio-accent) 0%, var(--studio-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.spec-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--studio-accent), transparent, var(--studio-accent));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 3s linear infinite;
}

.spec-card:hover .spec-icon-wrapper::before {
    opacity: 1;
}

.spec-card:hover .spec-icon-wrapper {
    transform: scale(1.1);
}

.spec-card .spec-icon {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

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

.spec-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--studio-text);
    margin-bottom: 0.5rem;
}

.spec-detail {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--studio-accent);
    margin-bottom: 1rem;
}

.spec-description {
    font-size: 0.95rem;
    color: var(--studio-text-light);
    line-height: 1.5;
}

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

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

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

.spec-card:nth-child(3) {
    animation-delay: 0.3s;
}

.spec-card:nth-child(4) {
    animation-delay: 0.4s;
}

.forms-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.form-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    text-decoration: none;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform: translateY(0);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.form-btn:hover::before {
    left: 100%;
}

.form-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--studio-accent);
}

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

.modeling-btn:hover {
    background: rgba(51, 153, 255, 0.1);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-icon {
    font-size: 1.35rem;
    color: var(--studio-accent);
    transition: all 0.3s ease;
}

.modeling-btn .btn-icon {
    color: #3399ff;
}

.btn-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.btn-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--studio-text);
    transition: color 0.3s ease;
}

.btn-subtitle {
    font-size: 0.875rem;
    color: var(--studio-text-light);
    transition: color 0.3s ease;
}

.download-icon {
    font-size: 1.5rem;
    color: var(--studio-text-light);
    transition: all 0.3s ease;
}

.form-btn:hover .btn-icon {
    transform: scale(1.1);
}

.form-btn:hover .download-icon {
    color: var(--studio-accent);
    transform: translateX(5px);
}

.studio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.studio-section {
    margin-bottom: 80px;
    min-height: 400px;
    display: flex;
    align-items: center;
    opacity: 1 !important; /* Force visibility */
    visibility: visible !important; /* Force visibility */
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    min-height: 300px;
}

.section-content.single-column {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
}

.studio-section:nth-child(even) .section-content {
    direction: rtl;
}

.studio-section:nth-child(even) .section-content > * {
    direction: ltr;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--studio-text);
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--studio-text-light);
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.125rem;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--studio-accent);
    font-size: 1.25rem;
    min-width: 20px;
}

.specs-list {
    list-style: none;
    margin-top: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.125rem;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-icon {
    color: var(--studio-accent);
    font-size: 1.25rem;
    min-width: 20px;
}

.services-list {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--studio-card-bg);
    border-radius: 15px;
    font-size: 1.125rem;
    font-weight: 500;
    border: 1px solid rgba(255, 51, 51, 0.2);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 51, 51, 0.1);
    border-color: var(--studio-accent);
    transform: translateY(-2px);
}

.service-icon {
    color: var(--studio-accent);
    font-size: 1.5rem;
    min-width: 24px;
}

.section-image {
    position: relative;
}

.studio-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.book-studio-section {
    background: linear-gradient(135deg, var(--studio-section-bg) 0%, #3d3d3d 100%);
    padding: 80px 0;
    margin-top: 80px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.book-studio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 51, 51, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.book-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.book-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--studio-text);
}

.book-description {
    font-size: 1.25rem;
    color: var(--studio-text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.book-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.book-btn.primary {
    background: var(--studio-accent);
    color: white;
}

.book-btn.primary:hover {
    background: var(--studio-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 51, 51, 0.3);
}

.book-btn.secondary {
    background: transparent;
    color: var(--studio-text);
    border-color: rgba(255, 255, 255, 0.3);
}

.book-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--studio-accent);
}

.book-btn.whatsapp {
    background: #25d366;
    color: white;
}

.book-btn.whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.nav-link.active {
    color: var(--studio-accent) !important;
    font-weight: 600;
}

.footer {
    background: #0d0d0d;
    color: var(--studio-text);
}

.footer-links a:hover {
    color: var(--studio-accent);
}

.footer-links a.active {
    color: var(--studio-accent);
    font-weight: 600;
}

@media (max-width: 768px) {
    .studio-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .studio-title {
        font-size: 2.5rem;
    }
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .section-content.single-column {
        text-align: left;
    }
    .forms-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .forms-title {
        font-size: 2rem;
    }
    .form-btn {
        padding: 1.5rem;
    }
    .btn-content {
        gap: 1rem;
    }
    .btn-icon {
        font-size: 1.5rem;
    }
    .instruction-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .instruction-icon {
        font-size: 1.75rem;
    }
    .contact-options {
        gap: 0.5rem;
    }
    .contact-option {
        justify-content: center;
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    .services-list {
        grid-template-columns: 1fr;
    }
    .book-actions {
        flex-direction: column;
        align-items: center;
    }
    .book-btn {
        min-width: 200px;
        justify-content: center;
    }
    .hero-studio-img {
        max-height: 350px;
    }
    .showcase-image {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .studio-hero {
        padding: 100px 0 60px;
    }
    .studio-title {
        font-size: 2rem;
    }
    .studio-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .book-title {
        font-size: 2rem;
    }
    .spec-item,
    .service-item {
        font-size: 1rem;
    }
    .forms-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .btn-title {
        font-size: 1.125rem;
    }
    .btn-subtitle {
        font-size: 0.8rem;
    }
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .spec-card {
        padding: 2rem 1.5rem;
    }
    .spec-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    .spec-card .spec-icon {
        font-size: 1.75rem;
    }
    .spec-title {
        font-size: 1.25rem;
    }
}

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

.studio-section {
    animation: fadeInUp 0.8s ease-out;
    opacity: 1;
}

.studio-section:nth-child(even) {
    animation-delay: 0.2s;
}

.calendar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.calendar-modal.active {
    display: flex;
}

/* Calendar funnels: default hidden, show when active */
.calendar-funnel { display: none; }
.calendar-funnel.active { display: block; }

.calendar-modal-content {
    background: var(--studio-section-bg);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--studio-text);
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: var(--studio-text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: var(--studio-accent);
    background: rgba(255, 51, 51, 0.1);
}

.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--studio-text);
    padding: 0.75rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 51, 51, 0.1);
    border-color: var(--studio-accent);
    color: var(--studio-accent);
}

.current-month {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--studio-text);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: var(--studio-text-light);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid transparent;
}

.calendar-day.current-month {
    color: var(--studio-text);
    background: rgba(255, 255, 255, 0.03);
}

.calendar-day.other-month {
    color: var(--studio-text-light);
    opacity: 0.5;
}

.calendar-day.today {
    background: rgba(255, 51, 51, 0.2);
    border-color: var(--studio-accent);
    color: var(--studio-accent);
    font-weight: 700;
}

.calendar-day:hover:not(.other-month) {
    background: rgba(255, 51, 51, 0.1);
    border-color: var(--studio-accent);
    transform: scale(1.05);
}

.calendar-day.selected {
    background: var(--studio-accent);
    color: white;
    font-weight: 700;
}

.calendar-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-note {
    color: var(--studio-text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.calendar-note i {
    color: var(--studio-accent);
}

/* Improved Calendar Modal Styles */
.calendar-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--studio-text);
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.calendar-modal-subtitle {
    font-size: 0.95rem;
    color: var(--studio-text-light);
    text-align: center;
    margin: 0 0 1.5rem 0;
}

.calendar-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--studio-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.calendar-close:hover {
    color: var(--studio-accent);
    background: rgba(255, 51, 51, 0.1);
    transform: rotate(90deg);
}

.calendar-funnel-switch {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: 12px;
}

.calendar-funnel-btn {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--studio-text-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.calendar-funnel-btn i {
    font-size: 1.1rem;
}

.calendar-funnel-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 51, 51, 0.3);
}

.calendar-funnel-btn.active {
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    border-color: var(--studio-accent);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 51, 51, 0.3);
}

.calendar-funnel-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calendar-info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.calendar-info-box i {
    font-size: 2rem;
    color: var(--studio-accent);
    min-width: 40px;
}

.calendar-info-box h3 {
    margin: 0 0 0.25rem 0;
    color: var(--studio-text);
    font-size: 1.125rem;
    font-weight: 700;
}

.calendar-info-box p {
    margin: 0.25rem 0;
    color: var(--studio-text-light);
    font-size: 0.9rem;
}

.calendar-info-box .price-tag {
    color: var(--studio-accent);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.calendar-info-box .price-tag strong {
    font-weight: 700;
}

.calendar-label {
    font-weight: 600;
    color: var(--studio-text);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.calendar-date-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--studio-text);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.calendar-date-input:focus {
    outline: none;
    border-color: var(--studio-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.1);
}

.calendar-date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.calendar-book-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(255, 51, 51, 0.3);
    margin-top: 0.5rem;
}

.calendar-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.4);
}

.calendar-book-btn:active {
    transform: translateY(0);
}

.calendar-book-btn i {
    font-size: 1.125rem;
}

.calendar-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.calendar-note i.fa-whatsapp {
    color: #25D366;
    font-size: 1.125rem;
}

@media (max-width: 480px) {
    .calendar-modal-content {
        padding: 1.5rem;
        margin: 1rem;
        max-width: 95%;
    }
    .calendar-modal-title {
        font-size: 1.5rem;
    }
    .calendar-funnel-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    .calendar-funnel-btn i {
        font-size: 1rem;
    }
    .calendar-info-box {
        padding: 1rem;
    }
    .calendar-info-box i {
        font-size: 1.5rem;
        min-width: 35px;
    }
    .calendar-info-box h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .calendar-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    .calendar-title {
        font-size: 1.25rem;
    }
    .current-month {
        font-size: 1.125rem;
    }
    .calendar-grid {
        gap: 0.25rem;
    }
    .calendar-day {
        font-size: 0.875rem;
    }
}

/* Brand Carousel Section */
.brand-carousel-container {
    background: #fff !important;
    width: 100%;
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
}

.brand-carousel {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    animation: brand-scroll 30s linear infinite;
    will-change: transform;
}

.brand-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
    transition: transform 0.3s;
}

.brand-logo:hover {
    transform: scale(1.08);
    z-index: 2;
}

@keyframes brand-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-logo {
        width: 100px;
    }
    .brand-carousel {
        gap: 1.5rem;
    }
}

/* SABA logo styling for section header */
.saba-logo {
    height: 64px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* SABA logo blue variant - more vibrant blue */
.saba-logo.blue {
    filter: brightness(0) saturate(100%) invert(32%) sepia(98%) saturate(749%) hue-rotate(185deg) brightness(1.2);
}

/* SABA section pricing info */
.saba-pricing {
    text-align: center;
    font-size: 1.15rem;
    color: #1a73e8;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ========================================
   INLINE STYLE MIGRATION - October 9, 2025
   ======================================== */

/* Hero Banner Actions Positioning - Hidden on Desktop */
.hero-banner-actions {
    display: none; /* Hide on desktop - buttons moved outside */
}

/* Desktop Hero Actions Section - Outside Banner */
.hero-actions-desktop {
    display: block;
    background: none;
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
}



.hero-actions-container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Partner Trust Strip */
.partner-strip {
    background: transparent;
    padding: 1.5rem 0;
}
.partner-strip-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.partner-item {
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partner-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.partner-item i { display: none; }
.partner-item img { height: 48px; width: auto; display: block; }
.partner-label { display: none; }
@media (max-width: 768px) {
    .partner-strip-container { gap: 1rem; }
    .partner-item { padding: 0.75rem 1rem; }
    .partner-item img { height: 36px; }
}

.hero-btn.glass-red {
    min-width: 200px;
    font-size: 1.1em;
    padding: 0.8em 2em;
    border-radius: 20px;
    font-weight: 600;
    background: rgba(255,51,51,0.18);
    color: #FF3333;
    box-shadow: 0 4px 24px rgba(255,51,51,0.18);
    border: none;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-btn.glass-red:hover {
    background: rgba(255,51,51,0.35);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(255,51,51,0.25);
    transform: translateY(-2px);
}

/* Mobile adjustments - show hero buttons inside banner */
@media (max-width: 768px) {
    .hero-banner-actions {
        display: flex; /* Show on mobile */
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        position: absolute;
        left: 0;
        bottom: 1rem;
        padding: 0 1rem;
        z-index: 2;
    }
    
    .hero-actions-desktop {
        display: none; /* Hide desktop section on mobile */
    }
    
    .hero-btn.glass-red {
        min-width: 160px;
        max-width: 280px;
        width: 100%;
        font-size: 0.9em;
        padding: 0.7em 1.5em;
    }
}

@media (max-width: 480px) {
    .hero-banner-actions {
        gap: 0.5rem;
        bottom: 0.75rem;
    }
    
    .hero-actions-desktop {
        display: none; /* Ensure hidden on small mobile */
    }
    
    .hero-btn.glass-red {
        min-width: 140px;
        max-width: 240px;
        font-size: 0.85em;
        padding: 0.6em 1.2em;
    }
}

/* Collapsible Content - Hidden State */
.collapse-content.collapsed {
    display: none;
}

/* Brand Carousel Background Gradient */
.brand-carousel-container {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(13, 13, 26, 0.98));
}

/* Contact Options Layout */
.contact-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Wide Button Variant */
.book-btn-wide {
    min-width: 200px;
}

/* About Banner Center Alignment */
.about-main-banner {
    text-align: center;
}

/* ========================================
   MOBILE RESPONSIVE - Global Presence
   October 9, 2025
   ======================================== */

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile: 2 columns in centered grid */
@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 600px;
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .country-card {
        padding: 1.5rem 1rem;
    }
    
    .country-flag-container {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .country-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .country-card p {
        font-size: 0.85rem;
    }
}

/* Small mobile: Keep 2 columns but optimize sizing */
@media (max-width: 480px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .country-card {
        padding: 1rem 0.75rem;
    }
    
    .country-flag-container {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }
    
    .country-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .country-card p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/* Service title links behave like headings */
.service-card h4 a {
    color: inherit;
    text-decoration: none;
}
.service-card h4 a:hover,
.service-card h4 a:focus {
    text-decoration: underline;
    color: var(--primary);
}

/* Team Section */
.about-team {
    margin-top: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-category {
    background: var(--background-glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.team-category:hover {
    background: rgba(24, 26, 32, 0.95);
    box-shadow: 0 8px 32px rgba(255, 51, 51, 0.12);
    transform: translateY(-4px);
}

.team-category-title {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-member {
    padding: 1rem;
    background: rgba(255, 51, 51, 0.05);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.team-member:hover {
    background: rgba(255, 51, 51, 0.1);
    padding-left: 1.25rem;
}

.team-member-name {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.team-member-role {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-category {
        padding: 1.5rem 1rem;
    }

    .team-member-name {
        font-size: 1rem;
    }

    .team-member-role {
        font-size: 0.9rem;
    }
}

/* Lazy YouTube Embed Styles */
.youtube-lazy {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.youtube-lazy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    z-index: 1;
}

.youtube-lazy-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background-color: rgba(255, 0, 0, 0.9);
    border-radius: 12px;
    z-index: 2;
    transition: all 0.3s ease;
}

.youtube-lazy-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
}

.youtube-lazy:hover .youtube-lazy-play {
    background-color: rgb(255, 0, 0);
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-lazy iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
