/* ===== CSS VARIABLES (Theming) ===== */
:root {
    /* Dark Mode (Default) */
    --bg-primary: #0a0a0a;
    --bg-secondary: #0f0f0f;
    --bg-glass: rgba(15, 15, 15, 0.75);
    --bg-glass-strong: rgba(15, 15, 15, 0.9);
    --card-bg: #333333;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent-primary: #f97316;
    --accent-secondary: #ea580c;
    --accent-gradient: linear-gradient(135deg, #f97316, #ea580c, #c2410c);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(249, 115, 22, 0.5);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.7);
    --shadow-input: 0 4px 12px rgba(0, 0, 0, 0.3);
    --glow-primary: rgba(249, 115, 22, 0.15);
    --glow-secondary: rgba(234, 88, 12, 0.1);
    --input-bg: rgba(24, 24, 27, 0.7);
    --success: #22c55e;
    --error: #ef4444;

    /* Footer Gradient Colors */
    --gradient-blue: #1e3a5f;
    --gradient-yellow: #fbbf24;
    --gradient-pink: #ec4899;
    --footer-gradient: linear-gradient(135deg, var(--gradient-blue), var(--gradient-pink), var(--gradient-yellow));

    /* Section Divider Gradient */
    --divider-gradient: linear-gradient(90deg,
            transparent 0%,
            #1e3a5f 15%,
            #f97316 35%,
            #ec4899 50%,
            #f97316 65%,
            #fbbf24 85%,
            transparent 100%);
}

[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-strong: rgba(255, 255, 255, 0.85);
    --card-bg: #e5e7eb;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-glass: rgba(255, 255, 255, 0.5);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-input: 0 4px 12px rgba(0, 0, 0, 0.05);
    --input-bg: rgba(241, 245, 249, 0.7);
}

/* ===== GLOBAL RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: var(--divider-gradient);
    border: none;
    width: 100%;
    opacity: 0.6;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===== GLASSMORPHISM UTILITIES ===== */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: var(--shadow-glass);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-primary);
}

/* ===== NAVIGATION ===== */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.glass-nav.scrolled {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 1rem 0;
    box-shadow: var(--shadow-glass);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.1;
}

.logo-line-1,
.logo-line-2 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.logo-line-1 {
    font-size: 1rem;
    font-weight: 700;
}

.logo-line-2 {
    font-size: 0.6rem;
    font-weight: 500;
    opacity: 0.85;
}

.glass-nav.scrolled .logo-line-1,
.glass-nav.scrolled .logo-line-2 {
    color: var(--text-primary);
}

.glass-nav:not(.scrolled) .logo-line-1,
.glass-nav:not(.scrolled) .logo-line-2 {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.glass-nav:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
}

.glass-nav.scrolled .logo-img {
    filter: none;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.825rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.4rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.glass-nav.scrolled .nav-links a {
    color: var(--text-secondary);
    text-shadow: none;
}

.glass-nav.scrolled .nav-links a:hover,
.glass-nav.scrolled .nav-links a.active {
    color: var(--text-primary);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

/* Theme Toggle */
.theme-toggle {
    position: static;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.glass-nav:not(.scrolled) .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-nav.scrolled .theme-toggle {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    transition: all 0.3s ease;
}

/* Desktop - Light Mode */
[data-theme="light"] .theme-toggle svg {
    stroke: #000000;
}

.theme-toggle .moon-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: block;
}

/* Talk to Us Button */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-talk {
    padding: 0.6rem 1.375rem;
    border-radius: 50px;
    font-size: 0.825rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-talk .arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-talk:hover .arrow {
    transform: translateX(3px);
}

.glass-nav:not(.scrolled) .btn-talk {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.glass-nav:not(.scrolled) .btn-talk:hover {
    background: var(--accent-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.glass-nav.scrolled .btn-talk {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.glass-nav.scrolled .btn-talk:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    margin-left: auto;
}

@media (max-width: 900px) {

    /* Desktop toggle hidden on mobile */
    .theme-toggle {
        display: none !important;
    }

    /* Mobile theme toggle - fixed position in header */
    .mobile-theme-toggle {
        display: flex !important;
        position: fixed;
        right: 5rem;
        top: 1.5rem;
        z-index: 1002;
        width: 40px;
        height: 40px;
        background: transparent;
        backdrop-filter: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .glass-nav.scrolled .mobile-theme-toggle {
        top: 1rem;
    }

    /* Mobile toggle icon - white by default, black in light mode */
    .mobile-theme-toggle svg {
        width: 24px;
        height: 24px;
        stroke: #ffffff;
        transition: all 0.3s ease;
    }

    /* Light mode - black icon always */
    [data-theme="light"] .mobile-theme-toggle svg {
        stroke: #000000;
    }

    .glass-nav.scrolled .mobile-theme-toggle svg {
        stroke: #ffffff;
    }

    /* Light mode scrolled - black icon */
    [data-theme="light"] .glass-nav.scrolled .mobile-theme-toggle svg {
        stroke: #000000;
    }

    /* Icon display based on theme */
    .mobile-theme-toggle .moon-icon {
        display: none;
    }

    [data-theme="dark"] .mobile-theme-toggle .sun-icon {
        display: none;
    }

    [data-theme="dark"] .mobile-theme-toggle .moon-icon {
        display: block;
    }

    /* Hamburger menu */
    .mobile-toggle {
        display: flex !important;
        position: fixed;
        right: 2rem;
        top: 1.5rem;
        z-index: 1001;
    }

    .mobile-toggle svg {
        width: 24px;
        height: 24px;
        stroke: #ffffff;
        transition: all 0.3s ease;
    }

    .glass-nav.scrolled .mobile-toggle {
        top: 1rem;
    }

    .glass-nav.scrolled .mobile-toggle svg {
        stroke: var(--text-primary);
    }

    .nav-links,
    .nav-actions {
        display: none !important;
    }
}

@media (min-width: 901px) {
    .mobile-theme-toggle {
        display: none !important;
    }

    .nav-links,
    .nav-actions {
        display: flex !important;
    }

    .mobile-menu-overlay {
        display: none !important;
    }
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.96) 50%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(30px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

[data-theme="light"] .mobile-menu-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 240, 240, 0.96) 50%, rgba(255, 255, 255, 0.98) 100%);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

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

[data-theme="light"] .mobile-menu-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

[data-theme="dark"] .mobile-menu-logo img {
    filter: brightness(0) invert(1);
}

[data-theme="light"] .mobile-menu-logo img {
    filter: none;
}

.mobile-menu-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Mobile menu theme toggle */
.mobile-theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

/* Light mode - dark toggle */
[data-theme="light"] .mobile-theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-theme-toggle svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    transition: all 0.3s ease;
}

/* Light mode - black icon */
[data-theme="light"] .mobile-theme-toggle svg {
    stroke: #000000;
}

/* Icon display based on theme */
.mobile-theme-toggle .moon-icon {
    display: none;
}

[data-theme="dark"] .mobile-theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .mobile-theme-toggle .moon-icon {
    display: block;
}

/* Mobile menu close button */
.mobile-menu-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

/* Light mode - dark close button */
[data-theme="light"] .mobile-menu-close {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-close svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
}

/* Light mode - black close icon */
[data-theme="light"] .mobile-menu-close svg {
    stroke: #000000;
}

.mobile-menu-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.mobile-menu-links a {
    display: block;
    padding: 1.5rem 1.25rem;
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .mobile-menu-links a {
    color: #000000;
}

.mobile-menu-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ffffff;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] .mobile-menu-links a::before {
    background: rgba(0, 0, 0, 0.05);
    border-left: 3px solid #000000;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding-left: 1.75rem;
}

[data-theme="light"] .mobile-menu-links a:hover,
[data-theme="light"] .mobile-menu-links a.active {
    background: rgba(0, 0, 0, 0.08);
    color: #000000;
}

.mobile-menu-links a:hover::before,
.mobile-menu-links a.active::before {
    width: 100%;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mobile-social-icons .social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.5rem;
}

.mobile-social-icons .social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.1);
}

.mobile-contact-link {
    display: block;
    text-align: center;
    padding: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.mobile-contact-link:hover {
    color: #ffffff;
}

/* ===== HERO SECTION ===== */
.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1);
}

.slider-slide.active {
    opacity: 1;
    animation: kenburns 20s ease-in-out infinite;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 14rem 3rem 3rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    min-height: 85vh;
}

.hero-content {
    max-width: 650px;
    padding-bottom: 2rem;
}

.hero-actions {
    margin-bottom: 1rem;
}

.hero-content .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    color: #ffffff;
    white-space: nowrap;
}

.hero-content .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-feature svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-video {
        min-height: 100vh;
    }

    .hero-content-wrapper {
        position: absolute;
        bottom: 6.5rem;
        left: 0;
        right: 0;
        padding: 0 1.25rem;
        min-height: auto;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .hero-content .hero-title {
        font-size: clamp(1.25rem, 3.5vw, 1.75rem);
        margin-bottom: 0.4rem;
        white-space: normal;
        line-height: 1.2;
    }

    .hero-content .hero-subtitle {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 0.6rem;
    }

    .hero-features {
        gap: 0.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 0.5rem;
        padding-top: 0.4rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-feature {
        font-size: 0.7rem;
        gap: 0.3rem;
    }

    .hero-feature svg {
        width: 14px;
        height: 14px;
    }

    .scroll-indicator {
        bottom: 2.5rem;
        font-size: 0.65rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy-section {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-label {
    display: block;
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.philosophy-quote {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.philosophy-quote .highlight {
    color: var(--accent-primary);
    font-weight: 600;
}

/* ===== SERVICES SHOWCASE ===== */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-showcase-item:hover {
    transform: translateY(-8px);
}

.service-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-showcase-item:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), transparent);
    transition: opacity 0.3s ease;
}

.service-showcase-item:hover .service-overlay {
    opacity: 0.9;
}

.service-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.service-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CLIENTS MARQUEE ===== */
.clients-marquee-section {
    padding: 2.5rem 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-track.marquee-left {
    animation-direction: reverse;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: transparent !important;
    border: none !important;
    border-radius: 16px;
    min-width: 280px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.client-logo:hover img {
    opacity: 1;
}

.client-logo span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== VISION SECTION ===== */
.vision-section {
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.vision-container {
    max-width: 1600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 4rem 6rem;
    backdrop-filter: blur(10px);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.vision-content {
    text-align: center;
    max-width: 100%;
    margin: 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.vision-title {
    margin-bottom: 1rem;
}

.vision-text {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .vision-container {
        padding: 3rem 2rem;
    }
}

/* ===== STATS SECTION ===== */
.stats-section-new {
    padding: 3rem 2rem;
    background: var(--bg-primary);
    position: relative;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.5;
}

.stat-number {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-secondary);
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

@media (max-width: 768px) {
    .stats-section-new {
        padding: 2.5rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .stat-item::before {
        width: 25px;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .stat-suffix {
        font-size: clamp(1rem, 3vw, 1.25rem);
    }
}

/* ===== FOUNDER'S MESSAGE SECTION ===== */
.founders-message-section {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

/* Vision Mission Grid (Used in Integrated Section) */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.vision-card,
.mission-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-hover);
}

.vision-card .section-label,
.mission-card .section-label {
    display: block;
    margin-bottom: 1.5rem;
}

.vision-text,
.mission-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    font-weight: 300;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

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

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-hover);
}

.about-container .section-label {
    display: block;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.about-content {
    text-align: left;
}

.about-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-services-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-services-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.about-services-list li {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.about-outro,
.about-closing {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-tagline {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--accent-primary);
}

.about-tagline p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.tagline-text {
    font-size: 1rem !important;
    color: var(--accent-primary) !important;
    font-weight: 500;
    margin-top: 0.5rem !important;
}

/* Responsive */
@media (max-width: 768px) {
    .vision-mission-integrated {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-card,
    .mission-card,
    .about-card {
        padding: 2rem;
    }

    .about-section {
        padding: 3rem 1.5rem;
    }

    .about-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .about-content {
        text-align: left;
    }

    .about-intro,
    .about-services-list li,
    .about-outro,
    .about-closing {
        font-size: 1rem;
    }
}

.founders-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.founders-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.founders-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.founders-image-wrapper:hover .founders-image {
    transform: scale(1.05);
}

.founders-content {
    padding: 2rem 0;
}

.founders-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.founders-message {
    margin-bottom: 2.5rem;
}

.founders-message p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founders-message strong {
    color: var(--accent-primary);
    font-weight: 600;
}

.founders-signature {
    border-top: 2px solid var(--accent-primary);
    padding-top: 1.5rem;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.founder-title {
    font-size: 0.95rem;
    color: var(--accent-primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.founder-company {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .founders-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founders-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .founders-message-section {
        padding: 3rem 1.5rem;
    }

    .founders-image {
        height: 350px;
    }

    .founders-title {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
    }

    .founders-message p {
        font-size: 1rem;
    }
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
}

.why-choose-container {
    max-width: 1600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 4rem 6rem;
    backdrop-filter: blur(10px);
    transition: background 0.4s ease, border-color 0.4s ease;
}

/* Vision Mission Integrated */
.vision-mission-integrated {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-glass);
}

.why-choose-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.why-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.why-subtitle {
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2.5rem, 2.5vw, 1.8rem);
}

.why-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: #ffffff;
    color: #000000;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-white .arrow {
    transition: transform 0.3s ease;
}

.btn-white:hover .arrow {
    transform: translateX(4px);
}

/* Bottom Section */
.why-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-glass);
}

.why-category h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    text-align: center;
}

.why-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    max-width: 450px;
    margin: 0 auto;
}

.tag {
    padding: 0.5rem 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tag:hover {
    background: var(--accent-primary);
    color: #ffffff;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-container {
        padding: 2rem 1.5rem;
    }

    .why-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-title {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
    }

    .why-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 0;
    background: transparent;
}

.cta-container {
    max-width: 1600px;
    margin: 0 38px;
    background-color: #0a0a0a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75)),
        url('https://raw.githubusercontent.com/thalewalan/soundwave/refs/heads/main/soundwave/FB_IMG_1769944592766.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    height: 350px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 3rem;
    text-align: center;
    z-index: 2;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #ffffff;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-glass-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn-glass-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.btn-glass-cta .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-glass-cta:hover .arrow {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-container {
        margin: 1rem 38px;
        border-radius: 16px;
        height: 400px;
    }

    .cta-content {
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

    .cta-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .btn-glass-cta {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }
}

/* ===== TRUSTED BY SECTION ===== */
.trusted-by-section {
    padding: 3rem 2rem 2rem;
    background: var(--bg-secondary);
    position: relative;
}

.trusted-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--divider-gradient);
    opacity: 0.6;
}

.trusted-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.trusted-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.trusted-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
}

.trusted-subtitle {
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 400;
    font-size: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .trusted-by-section {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .trusted-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section-new {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
}

.testimonials-container {
    max-width: 1600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 4rem 6rem;
    backdrop-filter: blur(10px);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.testimonials-header {
    margin-bottom: 4rem;
    text-align: center;
}

.testimonials-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0.5rem 0 0 0;
}

.testimonials-subtitle {
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 400;
}

/* Slider */
.testimonials-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

.slider-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-primary);
    transition: stroke 0.3s ease;
}

.slider-btn:hover svg {
    stroke: #ffffff;
}

.testimonials-track {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-item.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-glass);
    border-left: 3px solid var(--accent-primary);
    border-radius: 12px;
}

.highlight-text {
    color: var(--accent-primary);
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 2rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
}

.author-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.slider-counter {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-container {
        padding: 3rem 2rem;
    }

    .testimonials-slider {
        flex-direction: column;
        gap: 1.5rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
    }

    .testimonial-quote {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .testimonial-author {
        padding-left: 1.5rem;
        gap: 1rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .author-details h4 {
        font-size: 1rem;
    }

    .author-details p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .testimonials-container {
        padding: 2.5rem 1.5rem;
    }

    .testimonials-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .testimonial-quote {
        font-size: 0.95rem;
        padding: 1.25rem;
    }
}

/* ===== FOOTER ===== */
.glass-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    padding: 5rem 2rem 2rem;
    margin-top: 4rem;
    position: relative;
}

.glass-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--divider-gradient);
    opacity: 0.8;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    max-width: 200px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

[data-theme="light"] .footer-logo-img {
    filter: none;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
}

.footer-description {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-about {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links-section h4,
.footer-contact-section h4,
.footer-social-section h4 {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-links-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links-section a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-contact-section address {
    font-style: normal;
}

.footer-contact-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-contact-section a {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.footer-contact-section a:hover {
    color: var(--accent-primary);
}

.footer-location-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-location-link:hover {
    color: var(--accent-primary);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #ffffff;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #bc1888;
    color: #ffffff;
}

.social-icon.tiktok:hover {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

.social-icon.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: #ffffff;
}

.social-icon.linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    box-shadow: var(--shadow-glass);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-primary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%),
        url('https://raw.githubusercontent.com/thalewalan/soundwave/refs/heads/main/soundwave/FB_IMG_1769944592766.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-hero .section-label {
    display: block;
    margin-bottom: 1.5rem;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Cards Section */
.contact-cards-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.contact-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-hover);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--accent-primary);
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--accent-secondary);
}

.contact-note {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    margin-top: 0.75rem !important;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-link:hover {
    color: var(--accent-secondary);
}

.contact-card-link .arrow {
    transition: transform 0.3s ease;
}

.contact-card-link:hover .arrow {
    transform: translateX(5px);
}

/* Map Section */
.map-section {
    padding: 0;
    background: var(--bg-secondary);
}

.map-container {
    width: 100%;
    height: 600px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: grayscale(0);
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.contact-cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 8rem 1.5rem 4rem;
        min-height: 50vh;
    }

    .contact-hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

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

    .contact-cards-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 350px;
    }

    .contact-cta-content h2 {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
    }
}

/* ===== GALLERY SECTION ===== */
.page-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(15, 15, 15, 0.85) 100%),
        url('https://raw.githubusercontent.com/thalewalan/soundwave/main/soundwave/FB_IMG_1769944592766.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.page-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.gallery-section {
    padding: 4rem 2rem;
    background: var(--bg-primary);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-primary);
    color: #ffffff;
    border-color: var(--accent-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1800px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    height: 50vh;
    min-height: 400px;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.3), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Gallery */
@media (max-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 1.5rem 3rem;
        min-height: 40vh;
    }

    .page-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-image {
        height: 300px;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }

    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-showcase {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        align-items: center;
    }

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

    .marquee-track {
        gap: 2rem;
    }

    .client-logo {
        min-width: 220px;
        padding: 1.25rem 1.5rem;
    }

    .client-logo img {
        height: 50px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        height: 200px;
    }

    .mobile-menu-links a {
        font-size: 1.25rem;
        padding: 1rem 0.875rem;
    }

    .mobile-menu-logo img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero-content .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-content .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
    }

    .philosophy-quote {
        font-size: 1.25rem;
    }

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

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}