/* ============================================
   ELINOVA CINEMATIC DESIGN SYSTEM
   Premium Medical Tourism Experience
   ============================================ */

:root {
    /* Color Palette */
    --gold: #D4AF37;
    --gold-light: #E8D48B;
    --gold-dark: #926F34;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --gold-gradient: linear-gradient(135deg, #DFBD69 0%, #926F34 100%);

    --navy-deep: #020617;
    --navy-surface: #0f172a;
    --navy-light: #1e293b;
    --trust-blue: #1E3A5F;

    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.3);

    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --text-subtle: #64748b;

    /* Typography */
    --font-display: "Cinzel", serif;
    --font-body: "Plus Jakarta Sans", sans-serif;

    /* Motion */
    --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 0.3s;
    --duration-medium: 0.6s;
    --duration-slow: 1.2s;

    /* Page Specific Accents */
    --accent-female: #FFC0CB;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--navy-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--navy-deep);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--navy-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 50px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background: var(--gold);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.section-dark {
    background: var(--navy-surface);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px var(--gold-glow);
    }

    50% {
        box-shadow: 0 0 40px var(--gold-glow), 0 0 60px rgba(212, 175, 55, 0.2);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: var(--border);
    }

    50% {
        border-color: var(--border-gold);
    }
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all var(--duration-slow) var(--ease-luxury);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all var(--duration-slow) var(--ease-luxury);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--duration-slow) var(--ease-luxury);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all var(--duration-slow) var(--ease-luxury);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children>* {
    opacity: 0;
    transform: translateY(30px);
}

.stagger-children.active>*:nth-child(1) {
    animation: fadeInUp 0.8s var(--ease-luxury) 0.1s forwards;
}

.stagger-children.active>*:nth-child(2) {
    animation: fadeInUp 0.8s var(--ease-luxury) 0.2s forwards;
}

.stagger-children.active>*:nth-child(3) {
    animation: fadeInUp 0.8s var(--ease-luxury) 0.3s forwards;
}

.stagger-children.active>*:nth-child(4) {
    animation: fadeInUp 0.8s var(--ease-luxury) 0.4s forwards;
}

.stagger-children.active>*:nth-child(5) {
    animation: fadeInUp 0.8s var(--ease-luxury) 0.5s forwards;
}

.stagger-children.active>*:nth-child(6) {
    animation: fadeInUp 0.8s var(--ease-luxury) 0.6s forwards;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: #000;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--text-subtle);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--text-subtle);
    text-decoration: none;
    transition: color var(--duration-fast);
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar-contact {
    display: flex;
    gap: 2rem;
}

.top-bar-contact i {
    margin-right: 0.5rem;
    color: var(--gold);
}

.top-bar-social {
    display: flex;
    gap: 1rem;
}

.top-bar-social a {
    font-size: 1rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--duration-medium) var(--ease-smooth);
}

.header.scrolled {
    background: rgba(2, 6, 23, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all var(--duration-medium) var(--ease-luxury);
}

.logo img {
    height: 45px;
    max-height: 45px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: all var(--duration-fast) var(--ease-luxury);
}

.logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.15);
}

/* Footer Logo - larger full logo */
.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand .logo img {
    height: 80px;
    width: auto;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.8rem 1.2rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all var(--duration-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all var(--duration-fast) var(--ease-luxury);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 70%;
}

.nav-link i {
    font-size: 0.65rem;
    transition: transform var(--duration-fast);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 260px;
    background: var(--navy-surface);
    border: 1px solid var(--border-gold);
    border-top: 3px solid var(--gold);
    border-radius: 0 0 12px 12px;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-fast) var(--ease-luxury);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--duration-fast);
    border-left: 3px solid transparent;
}

.dropdown a:hover {
    background: var(--glass-hover);
    color: var(--white);
    border-left-color: var(--gold);
    padding-left: 2rem;
}

.dropdown a i {
    color: var(--gold);
    width: 20px;
}

/* CTA Button in Nav */
.nav-cta {
    background: var(--gold-gradient);
    color: var(--white) !important;
    padding: 0.8rem 1.8rem !important;
    border-radius: 4px;
    font-weight: 600 !important;
    margin-left: 1rem;
    position: relative;
    overflow: hidden;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav-cta:hover::before {
    left: 100%;
}

/* Language Selector */
.lang-selector {
    position: relative;
    margin-left: 1rem;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-main);
    transition: all var(--duration-fast);
}

.lang-current:hover {
    border-color: var(--gold);
}

.lang-list {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    background: var(--navy-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--duration-fast);
    z-index: 100;
}

.lang-selector:hover .lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all var(--duration-fast);
}

.lang-option:hover {
    background: var(--glass-hover);
    color: var(--white);
}

.lang-option img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* Mobile Menu Toggle */
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all var(--duration-fast) var(--ease-luxury);
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--navy-deep);
    padding: 100px 2rem 2rem;
    transition: right var(--duration-medium) var(--ease-luxury);
    z-index: 999;
    overflow-y: auto;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-medium);
    z-index: 998;
}

.nav-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile a {
    display: block;
    padding: 1.2rem 0;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: all var(--duration-fast);
}

.nav-mobile a:hover {
    color: var(--gold);
    padding-left: 1rem;
}

.nav-mobile-cta {
    display: block;
    background: var(--gold-gradient);
    color: var(--white) !important;
    text-align: center;
    padding: 1rem 2rem !important;
    border-radius: 8px;
    margin-top: 2rem;
    font-weight: 600;
    border: none !important;
}

/* Mobile Language Selector */
.nav-mobile-langs {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.mobile-lang-title {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-lang-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.m-lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.8rem;
    transition: all var(--duration-fast);
}

.m-lang-btn:hover,
.m-lang-btn.active {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}

.m-lang-btn img {
    width: 18px;
    height: 13px;
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg video,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            rgba(2, 6, 23, 0.95) 0%,
            rgba(2, 6, 23, 0.8) 40%,
            rgba(2, 6, 23, 0.4) 100%);
}

/* Animated particles/shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.hero-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

.hero-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 5%;
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-luxury) 0.3s forwards;
}

.hero-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-luxury) 0.5s forwards;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-luxury) 0.7s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-luxury) 0.9s forwards;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-subtle);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s var(--ease-luxury) 1.5s forwards;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: float 2s ease-in-out infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-medium) var(--ease-luxury);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.btn-icon {
    font-size: 1rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-medium) var(--ease-luxury);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-medium) var(--ease-luxury);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    background: var(--glass-hover);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px var(--border-gold),
        inset 0 0 60px rgba(212, 175, 55, 0.03);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--gold);
    transition: all var(--duration-medium);
}

.service-card:hover .service-icon {
    background: var(--gold-gradient);
    color: var(--navy-deep);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    transition: gap var(--duration-fast);
}

.service-card:hover .service-link {
    gap: 12px;
}

/* ============================================
   STATS / TRUST SECTION
   ============================================ */
.stats-section {
    background: var(--gold-gradient);
    padding: 5rem 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
    position: relative;
}

.stat-item {
    color: var(--navy-deep);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.team-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--duration-medium) var(--ease-luxury);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.team-image {
    height: 350px;
    background-size: cover;
    background-position: top;
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--navy-surface), transparent);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-role {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.team-name {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   BEFORE/AFTER SLIDER - PREMIUM
   ============================================ */

/* Results Section Header */
.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Category Filter Tabs */
.results-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.results-tab {
    padding: 0.8rem 1.8rem;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-luxury);
}

.results-tab:hover {
    border-color: var(--border-gold);
    color: var(--gold);
}

.results-tab.active {
    background: var(--gold-gradient);
    color: var(--navy-deep);
    border-color: var(--gold);
    font-weight: 600;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Individual Compare Container */
.compare-container {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: ew-resize;
    background: var(--navy-surface);
    transition: all var(--duration-medium) var(--ease-luxury);
}

.compare-container:hover {
    border-color: var(--gold);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 40px var(--gold-glow);
}

/* Before/After Images */
.compare-img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.compare-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.05) contrast(1.02);
}

.compare-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 3px solid var(--gold);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
}

.compare-overlay img {
    position: absolute;
    height: 100%;
    width: auto;
    min-width: 100%;
    max-width: none;
    left: 0;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.9);
}

/* Labels */
.compare-label {
    position: absolute;
    top: 1.5rem;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 8px;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-label.before {
    left: 1.5rem;
    background: rgba(180, 83, 9, 0.9);
}

.compare-label.after {
    right: 1.5rem;
    background: rgba(22, 163, 74, 0.9);
}

/* Procedure Badge */
.compare-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    z-index: 5;
}

.compare-badge-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

.compare-badge-info {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

/* Slider Handle */
.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: ew-resize;
    box-shadow: 0 0 20px var(--gold-glow);
}

.compare-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 5px 25px var(--gold-glow),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: handlePulse 2s ease-in-out infinite;
}

.compare-handle::after {
    content: '◀ ▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--navy-deep);
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 1;
    letter-spacing: 3px;
}

@keyframes handlePulse {

    0%,
    100% {
        box-shadow:
            0 5px 25px var(--gold-glow),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow:
            0 5px 40px var(--gold-glow),
            0 0 60px var(--gold-glow),
            inset 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

/* Drag Hint - Shows on first load */
.compare-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid var(--border-gold);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 20;
    opacity: 1;
    transition: opacity 0.5s;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: hintBounce 2s ease-in-out infinite;
}

.compare-hint i {
    color: var(--gold);
    animation: hintArrows 1.5s ease-in-out infinite;
}

@keyframes hintBounce {

    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, -55%);
    }
}

@keyframes hintArrows {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.compare-container.dragging .compare-hint,
.compare-container.touched .compare-hint {
    opacity: 0;
}

/* Stats Badges */
.compare-stats {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 5;
}

.compare-stat {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-align: center;
}

.compare-stat-value {
    display: block;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.compare-stat-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--duration-fast);
}

.faq-item:hover {
    border-color: var(--border-gold);
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--white);
}

.faq-header i {
    color: var(--gold);
    transition: transform var(--duration-fast);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-medium) var(--ease-smooth);
}

.faq-content p {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-content {
    max-height: 200px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
    background: var(--gold-gradient);
    padding: 6rem 0;
}

.form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 4rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.form-title {
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-subtle);
    margin-bottom: 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy-deep);
}

.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--duration-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--navy-deep);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--duration-medium);
}

.form-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #000;
    padding: 5rem 0 2rem;
    color: var(--text-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    text-align: center;
    justify-items: center;
}

.footer-brand p {
    margin-top: 1rem;
    line-height: 1.8;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    text-align: center;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-subtle);
    text-decoration: none;
    transition: all var(--duration-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-subtle);
    transition: all var(--duration-fast);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all var(--duration-fast);
    animation: glowPulse 3s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {

    /* Base font size reduction */
    html {
        font-size: 14px;
    }

    /* Typography scaling for mobile */
    h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    /* Hide top bar */
    .top-bar {
        display: none;
    }

    /* Header adjustments */
    .header {
        padding: 0;
    }

    .header-inner {
        height: 60px;
        padding: 0 1rem;
    }

    /* Logo smaller on mobile */
    .logo img {
        height: 40px;
    }

    .footer-brand .logo img {
        height: 65px;
    }

    /* Hide desktop nav, show burger */
    .nav-desktop {
        display: none;
    }

    .burger {
        display: flex;
    }

    /* Mobile Navigation - Full improvements */
    .nav-mobile {
        width: 100%;
        max-width: 100%;
        padding: 80px 1.5rem 2rem;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
    }

    .nav-mobile a {
        padding: 1rem 0;
        font-size: 1rem;
        font-weight: 500;
    }

    .nav-mobile-cta {
        margin-top: 1.5rem;
        padding: 1rem !important;
        font-size: 0.9rem;
    }

    /* Hero Section - Mobile Optimized */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 0;
    }

    .hero-tag {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .hero-tag::before {
        width: 25px;
    }

    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.75rem;
    }

    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }

    /* Hide floating shapes on mobile */
    .hero-shape {
        display: none;
    }

    /* Sections - Reduced padding */
    .section {
        padding: 3rem 0;
    }

    .section-tag {
        font-size: 0.65rem;
        letter-spacing: 2px;
        padding-left: 35px;
    }

    .section-tag::before {
        width: 25px;
    }

    /* Container padding */
    .container {
        padding: 0 1rem;
    }

    /* Services Grid - Single column */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    /* Stats Section - 2 columns, smaller */
    .stats-section {
        padding: 2.5rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    /* Team Grid */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .team-image {
        height: 250px;
    }

    .team-info {
        padding: 1.5rem;
    }

    .team-name {
        font-size: 1.1rem;
    }

    /* Results / Before-After */
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .compare-container {
        height: 280px;
    }

    .compare-label {
        font-size: 0.6rem;
        padding: 5px 10px;
    }

    .compare-handle::before {
        width: 40px;
        height: 40px;
    }

    /* FAQ */
    .faq-list {
        margin-top: 2rem;
    }

    .faq-header {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }

    .faq-content p {
        padding: 0 1.2rem 1rem;
        font-size: 0.85rem;
    }

    /* Contact Form */
    .contact-section {
        padding: 3rem 0;
    }

    .form-container {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .form-title {
        font-size: 1.3rem !important;
    }

    .form-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-label {
        font-size: 0.8rem;
    }

    .form-input {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .form-submit {
        padding: 1rem;
        font-size: 0.85rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
        justify-items: center;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-brand .logo img {
        height: 60px;
    }

    /* WhatsApp Float - Better positioned */
    .wa-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Reduce animations on mobile for performance */
    .reveal {
        transform: translateY(20px);
    }

    .reveal-left,
    .reveal-right {
        transform: translateY(20px);
    }

    /* Disable stagger on mobile for faster loading feel */
    .stagger-children>* {
        opacity: 1;
        transform: none;
    }

    .stagger-children.active>* {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 380px) {
    html {
        font-size: 13px;
    }

    h1 {
        font-size: 1.7rem !important;
    }

    .logo img {
        height: 35px;
    }

    .footer-brand .logo img {
        height: 55px;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.7rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .form-container {
        padding: 1rem;
    }
}

/* ============================================
   REDUCED MOTION PREFERENCE
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--duration-fast);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================
   ELINOVA CINEMA PAGE SPECIFIC
   ============================================ */
/* UPDATED COMPARISON SLIDER (Cards) */
.comp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Card Wrapper */
.case-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.case-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 10px rgba(212, 175, 55, 0.1);
}

/* Slider Logic Container */
.img-comp-container {
    position: relative;
    height: 320px;
    width: 100%;
    overflow: hidden;
    user-select: none;
}

.img-comp-img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.img-comp-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 0.7s ease;
}

/* Subtle zoom on hover */
.case-card:hover .img-comp-img img {
    transform: scale(1.05);
}

.img-comp-overlay {
    z-index: 2;
    width: 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

.img-comp-overlay img {
    width: auto;
    max-width: none;
}

/* Custom Slider Handle */
.slider-handle {
    position: absolute;
    z-index: 10;
    cursor: grab;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    touch-action: none;
    transition: background 0.3s;
}

.slider-handle:hover,
.slider-handle:active {
    background: var(--gold);
    border-color: var(--gold);
}

.slider-handle::after {
    content: '\f337';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 1.1rem;
}

.slider-handle:hover::after {
    color: black;
}

/* Case Info Overlay */
.case-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
}

.case-meta {
    color: white;
    transform: translateY(10px);
    transition: 0.4s ease;
}

.case-card:hover .case-meta {
    transform: translateY(0);
}

.case-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.case-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.65rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-loc img {
    width: 16px;
    height: auto;
    border-radius: 2px;
}

/* Labels */
.ba-label {
    position: absolute;
    top: 20px;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 5;
    pointer-events: none;
    letter-spacing: 1px;
}

.lbl-before {
    left: 20px;
    z-index: 6;
}

.lbl-after {
    right: 20px;
}

@media (max-width: 768px) {
    .img-comp-container {
        height: 350px;
    }

    .case-info {
        padding: 1.5rem 1rem 1rem;
    }

    .case-name {
        font-size: 0.9rem;
    }

    .comp-grid {
        grid-template-columns: 1fr;
    }
}

/* Journey Tabs */
.journey-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.j-tab {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-muted);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.j-tab.active,
.j-tab:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.journey-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.journey-content.active {
    display: grid;
}

/* Journey Grid Specifics */
.journey-content.services-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1rem;
    margin-top: 3rem;
}

.journey-content .service-card {
    padding: 1.5rem 1rem;
    min-height: auto;
}

.journey-content .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.journey-content .service-card p {
    font-size: 0.85rem;
    line-height: 1.4;
}

.journey-content .service-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.4rem !important;
    line-height: 50px !important;
    margin-bottom: 1rem !important;
}

@media (max-width: 992px) {
    .journey-content.services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .journey-content.services-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   SECONDARY PAGES (Dental, Hair, etc.)
   ============================================ */
.page-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse>* {
    direction: ltr;
}

.content-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
}

.content-image:hover img {
    transform: scale(1.05);
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.feature-list li i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.feature-list li strong {
    color: var(--white);
}

/* Smile Process Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-gold);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

/* .timeline-item:nth-child(even) {
    flex-direction: row-reverse; 
} Removed to fix alignment manual HTML structure */

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 20px var(--gold-glow);
}

.timeline-content {
    flex: 1;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-day {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Veneer Types */
.veneer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.veneer-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all var(--duration-medium) var(--ease-luxury);
}

.veneer-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
}

.veneer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
}

.veneer-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.veneer-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.veneer-price {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.veneer-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cta-banner {
    background: var(--gold-gradient);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(2, 6, 23, 0.7);
    margin-bottom: 2rem;
}

.cta-banner .btn {
    background: var(--navy-deep);
    color: var(--white);
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .veneer-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 50px;
        gap: 0;
    }

    .timeline-item::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        text-align: left;
    }
}

/* ========================
   RESTORED PAGE SPECIFIC STYLES
   ======================== */

/* Dental Implants & Crowns Components */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.brand-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s var(--ease-luxury);
}

.brand-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.brand-logo {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.warranty-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.warranty-box i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.comparison-table {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 3rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--navy-light);
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.comparison-table td {
    color: var(--text-muted);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .highlight {
    background: rgba(212, 175, 55, 0.1);
}

.comparison-table .check {
    color: #22c55e;
}

/* Hair Beard Components */
.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.style-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s;
}

.style-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.style-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.style-content {
    padding: 1.5rem;
    text-align: center;
}

/* Hair Female Components */
.empathy-box {
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.1), transparent);
    border: 1px solid rgba(255, 192, 203, 0.2);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

/* Page Hero Backgrounds */
.page-hero-sapphire {
    background-image: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.7) 100%), url('https://images.unsplash.com/photo-1599351431202-3e284a7e946a?auto=format&fit=crop&q=80&w=2000');
}

.page-hero-dhi {
    background-image: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.7) 100%), url('https://images.unsplash.com/photo-1633681926022-84c23e8cb2d6?auto=format&fit=crop&q=80&w=2000');
}

.page-hero-beard {
    background-image: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.7) 100%), url('https://images.unsplash.com/photo-1621600411688-4be93cd68504?auto=format&fit=crop&q=80&w=2000');
}

.page-hero-female {
    background-image: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.7) 100%), url('https://images.unsplash.com/photo-1580618672591-eb180b1a973f?auto=format&fit=crop&q=80&w=2000');
}

.page-hero-hollywood {
    background-image: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.7) 100%), url('https://images.unsplash.com/photo-1606811971618-4486d14f3f99?auto=format&fit=crop&q=80&w=2000');
}

.page-hero-implants {
    background-image: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.7) 100%), url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&q=80&w=2000');
}

.page-hero-crowns {
    background-image: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.7) 100%), url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?auto=format&fit=crop&q=80&w=2000');
}

/* ============================================
   MEDICAL EXCELLENCE SECTION
   ============================================ */
.section-excellence {
    background: radial-gradient(circle at center, #112240 0%, #0A1A2F 100%);
    position: relative;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.excellence-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.excellence-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.excellence-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
}

.excellence-card h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.excellence-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.trust-statement {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-statement p {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* Response */
@media (max-width: 992px) {
    .excellence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .excellence-grid {
        grid-template-columns: 1fr;
    }

    .excellence-card {
        padding: 2rem;
    }
}

/* ============================================
   INTL-TEL-INPUT CUSTOM STYLES
   ============================================ */
/* Phone input dropdown fix for consistent background */
.iti {
    width: 100%;
}

.iti__country-list {
    background-color: var(--navy-surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    max-height: 250px !important;
}

.iti__country {
    background-color: var(--navy-surface) !important;
    padding: 10px 15px !important;
    transition: background-color 0.2s ease !important;
}

.iti__country:hover {
    background-color: var(--navy-light) !important;
}

.iti__country.iti__highlight {
    background-color: var(--navy-light) !important;
}

.iti__country-name,
.iti__dial-code {
    color: var(--text-main) !important;
}

.iti__dial-code {
    color: var(--gold) !important;
}

.iti__flag-box {
    margin-right: 10px !important;
}

.iti__selected-flag {
    background-color: transparent !important;
    border-radius: 6px 0 0 6px !important;
    padding: 0 10px !important;
}

.iti__selected-flag:hover,
.iti__selected-flag:focus {
    background-color: rgba(212, 175, 55, 0.1) !important;
}

.iti__arrow {
    border-top-color: var(--text-muted) !important;
}

.iti__arrow--up {
    border-bottom-color: var(--text-muted) !important;
}

/* Search box styling */
.iti__search-input {
    background-color: var(--navy-deep) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-main) !important;
    padding: 10px !important;
    border-radius: 6px !important;
    margin: 8px !important;
    width: calc(100% - 16px) !important;
}

.iti__search-input::placeholder {
    color: var(--text-muted) !important;
}

.iti__search-input:focus {
    border-color: var(--gold) !important;
    outline: none !important;
}

/* Divider line */
.iti__divider {
    border-bottom-color: var(--border) !important;
    margin: 0 !important;
}

/* No results text */
.iti__no-results {
    color: var(--text-muted) !important;
    padding: 15px !important;
    text-align: center !important;
}

/* Preferred countries section */
.iti__preferred {
    border-bottom: 1px solid var(--border) !important;
}