/* ===================================
   ZARK Recording Studio - Styles (Optimized)
   =================================== */

/* CSS Variables - Design Tokens */
:root {
    /* Brand Colors from Logo */
    --primary-purple: #8B1874;
    --primary-magenta: #E91E8C;
    --accent-gold: #F5A623;
    --accent-gold-light: #FFD700;

    /* Background Colors */
    --bg-dark: #1A0A1F;
    --bg-darker: #0D0512;
    --bg-card: rgba(139, 24, 116, 0.1);
    --bg-glass: rgba(139, 24, 116, 0.15);

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-magenta), var(--accent-gold));
    --gradient-purple: linear-gradient(135deg, var(--primary-purple), var(--primary-magenta));
    --gradient-glow: radial-gradient(circle, var(--primary-magenta), transparent 70%);

    /* Spacing */
    --section-padding: 40px 5%;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    transition: var(--transition-medium);
}

.header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.menu-open {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
    background: transparent !important;
    border-bottom: none !important;
}

.nav {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    /* Optimized from 500 */
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-medium);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-left: 2rem;
}

.lang-switcher a {
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.lang-switcher a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-switcher a:hover:not(.active) {
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    will-change: transform;
}

.hero-quote-container {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.handwritten-quote {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transition: opacity 0.5s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin: 0;
    font-weight: 400;
    position: absolute;
    max-width: 300px;
    line-height: 1.2;
}

.handwritten-quote.pos-tl {
    top: 15%;
    left: 10%;
    text-align: left;
}

.handwritten-quote.pos-tr {
    top: 15%;
    right: 10%;
    text-align: right;
}

.handwritten-quote.pos-bl {
    bottom: 25%;
    left: 10%;
    text-align: left;
}

.handwritten-quote.pos-br {
    bottom: 25%;
    right: 10%;
    text-align: right;
}

.handwritten-quote.visible {
    opacity: 0.7;
}

.hero-main-photo {
    width: min(80vw, 450px);
    height: min(80vw, 450px);
    background-image: url('background.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: heartBeat 1.5s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(0 40px 80px rgba(139, 24, 116, 0.5)) drop-shadow(0 0 20px rgba(139, 24, 116, 0.3));
    margin-bottom: 3.5rem;
    will-change: transform, filter;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 20px 60px rgba(139, 24, 116, 0.5)) drop-shadow(0 0 15px rgba(139, 24, 116, 0.2));
    }

    15% {
        transform: scale(1.08);
        filter: drop-shadow(0 30px 90px rgba(233, 30, 140, 0.8)) drop-shadow(0 0 30px rgba(233, 30, 140, 0.4));
    }

    30% {
        transform: scale(1);
        filter: drop-shadow(0 20px 60px rgba(139, 24, 116, 0.5)) drop-shadow(0 0 15px rgba(139, 24, 116, 0.2));
    }

    45% {
        transform: scale(1.08);
        filter: drop-shadow(0 30px 90px rgba(233, 30, 140, 0.8)) drop-shadow(0 0 30px rgba(233, 30, 140, 0.4));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 20px 60px rgba(139, 24, 116, 0.5)) drop-shadow(0 0 15px rgba(139, 24, 116, 0.2));
    }
}

/* Optimized Orbs - using gradients instead of blur */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(closest-side, var(--primary-magenta), transparent);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(closest-side, var(--accent-gold), transparent);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.sound-wave {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(245, 166, 35, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-out infinite;
}

.wave-2 {
    animation-delay: 1s;
}

.wave-3 {
    animation-delay: 2s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
}

.btn-appointment {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {

    0%,
    100% {
        box-shadow: 0 10px 40px rgba(233, 30, 140, 0.4);
    }

    50% {
        box-shadow: 0 15px 50px rgba(245, 166, 35, 0.5);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(233, 30, 140, 0.5);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.mic-container {
    position: relative;
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-glass);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    /* Optimized from 500 */
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: var(--section-padding);
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.section-ambient-light {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

/* Services Orbs */
.orb-s1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(closest-side, var(--primary-magenta), transparent);
    top: -100px;
    left: -200px;
    opacity: 0.15;
    animation: float 22s ease-in-out infinite;
}

.orb-s2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(closest-side, var(--accent-gold), transparent);
    bottom: -100px;
    right: -100px;
    opacity: 0.1;
    animation: float 28s ease-in-out infinite reverse;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.service-card {
    position: relative;
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-medium);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-magenta);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 0.8rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bg-dark);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--text-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    /* Optimized */
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-card.featured {
    border-color: var(--primary-magenta);
    background: linear-gradient(135deg, rgba(139, 24, 116, 0.2), rgba(233, 30, 140, 0.1));
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: var(--section-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.orb-a1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(closest-side, var(--primary-purple), transparent);
    top: 50%;
    right: -250px;
    transform: translateY(-50%);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.orb-a2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(closest-side, var(--primary-magenta), transparent);
    bottom: -50px;
    left: 10%;
    opacity: 0.1;
    animation: float 18s ease-in-out infinite reverse;
}

.about-content .section-tag,
.about-content .section-title {
    text-align: left;
}

.about-text-content {
    margin-bottom: 2rem;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 200px;
}

.equalizer .bar {
    width: 20px;
    background: var(--gradient-primary);
    border-radius: 10px 10px 0 0;
    animation: equalize 1s ease-in-out infinite;
    will-change: height, transform;
    /* Optimized */
}

.equalizer .bar:nth-child(1) {
    height: 60%;
    animation-delay: 0s;
}

.equalizer .bar:nth-child(2) {
    height: 80%;
    animation-delay: 0.1s;
}

.equalizer .bar:nth-child(3) {
    height: 40%;
    animation-delay: 0.2s;
}

.equalizer .bar:nth-child(4) {
    height: 100%;
    animation-delay: 0.3s;
}

.equalizer .bar:nth-child(5) {
    height: 70%;
    animation-delay: 0.4s;
}

.equalizer .bar:nth-child(6) {
    height: 90%;
    animation-delay: 0.5s;
}

.equalizer .bar:nth-child(7) {
    height: 50%;
    animation-delay: 0.6s;
}

.equalizer .bar:nth-child(8) {
    height: 75%;
    animation-delay: 0.7s;
}

@keyframes equalize {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    padding: var(--section-padding);
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.orb-g1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(closest-side, var(--primary-magenta), transparent);
    top: -150px;
    right: -150px;
    opacity: 0.12;
    animation: float 26s ease-in-out infinite;
}

.orb-g2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(closest-side, var(--accent-gold), transparent);
    bottom: -100px;
    left: -150px;
    opacity: 0.08;
    animation: float 22s ease-in-out infinite reverse;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 4/3;
    transition: var(--transition-medium);
}

.gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}

.gallery-item:hover {
    border-color: var(--primary-magenta);
    box-shadow: 0 8px 40px rgba(233, 30, 140, 0.25), 0 0 0 1px rgba(233, 30, 140, 0.15);
    transform: translateY(-4px);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(180deg, transparent 30%, rgba(13, 5, 18, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-zoom-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-gold);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(13, 5, 18, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6), 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-lightbox.active .lightbox-content img {
    animation: lightboxZoomIn 0.4s ease forwards;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-fast);
    z-index: 2;
}

.lightbox-close svg {
    width: 22px;
    height: 22px;
}

.lightbox-close:hover {
    background: rgba(233, 30, 140, 0.3);
    border-color: var(--primary-magenta);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-fast);
    z-index: 2;
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-nav:hover {
    background: rgba(233, 30, 140, 0.3);
    border-color: var(--primary-magenta);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--section-padding);
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.orb-c1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(closest-side, var(--accent-gold), transparent);
    top: -150px;
    right: 10%;
    opacity: 0.1;
    animation: float 24s ease-in-out infinite;
}

.orb-c2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(closest-side, var(--primary-magenta), transparent);
    bottom: -200px;
    left: -100px;
    opacity: 0.15;
    animation: float 21s ease-in-out infinite reverse;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-magenta);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-container {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    display: block;
    filter: grayscale(0.5) invert(0.9) hue-rotate(180deg);
    opacity: 0.8;
    transition: var(--transition-medium);
}

.map-container:hover iframe {
    filter: grayscale(0) invert(0) hue-rotate(0);
    opacity: 1;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
}

.info-card:hover {
    border-color: var(--primary-magenta);
    transform: translateX(10px);
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--accent-gold);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-primary);
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    /* Optimized */
    margin-bottom: 0.25rem;
}

.info-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 80px 5% 30px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    /* Optimized */
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-links-row a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links-row a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .about {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 80px 5%;
    }

    .about-content .section-tag,
    .about-content .section-title,
    .about-features {
        text-align: center;
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .footer-links-row {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    /* Mobile Menu Dropdown */
    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(18, 18, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding-top: 100px;
        align-items: center;
        gap: 2rem;
        z-index: 9998;
        overflow-y: auto;
        animation: fadeIn 0.3s ease-out;
    }

    .nav-links.active li {
        width: 100%;
        text-align: center;
        opacity: 0;
        animation: slideInUp 0.3s ease-out forwards;
    }

    .nav-links.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        animation-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        animation-delay: 0.25s;
    }

    .nav-links.active a {
        font-size: 1.5rem;
        display: block;
        padding: 1rem;
        color: #FFFFFF !important;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 9999;
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        margin-right: -5px;
        cursor: pointer;
        position: relative;
        background: transparent;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-btn::after {
        content: '';
        position: absolute;
        top: -20px;
        right: -20px;
        bottom: -20px;
        left: -20px;
        z-index: 1;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .equalizer {
        height: 40px;
        gap: 3px;
    }

    .bar {
        width: 4px;
    }

    .handwritten-quote {
        font-size: 1.1rem;
        width: 90%;
        max-width: 100%;
        text-align: center !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }

    .handwritten-quote.pos-tl,
    .handwritten-quote.pos-tr,
    .handwritten-quote.pos-bl,
    .handwritten-quote.pos-br {
        top: 12% !important;
        bottom: auto !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-wide {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 0.75rem;
    }

    .lightbox-next {
        right: 0.75rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-links-row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

h4[data-i18n="footer_quick_links"] {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* ===================================
   Service Pages - Split Layout
   =================================== */
.service-hero {
    padding: 120px 5% 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-split-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    text-align: left;
}

.hero-text .section-title {
    margin-bottom: 1.5rem;
    text-align: left;
}

.description-paragraphs {
    margin-bottom: 2.5rem;
}

.description-paragraphs .hero-subtitle {
    margin-bottom: 1.25rem;
    max-width: 100%;
    font-size: 1.1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-inner {
    position: relative;
    width: min(80vw, 350px);
    height: min(80vw, 350px);
}

.mic-icon-svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
    overflow: visible;
}

.logo-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-main {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.service-page .visual-inner {
    position: relative;
    width: min(80vw, 350px);
    height: min(80vw, 350px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cta {
    padding: 80px 5%;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-cta .section-header {
    margin-bottom: 0;
}

.feature-list {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.feature-list li {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-text,
    .hero-text .section-title {
        text-align: center;
    }

    .visual-inner {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .feature-list li {
        justify-content: center;
    }
}

@keyframes logo-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.mic-icon-svg {
    animation: logo-float 3s ease-in-out infinite alternate;
}

.eq-icon,
.eq-icon svg {
    transform-box: fill-box;
    transform-origin: center bottom;
    will-change: transform;
}

.eq-icon svg {
    animation-origin: center bottom;
}