/* ============================================
   INDEX.HTML - PAGE-SPECIFIC STYLES (COMPLETE)
   ============================================ */

/* NAV OVERRIDES FOR INDEX PAGE */
.nav {
    padding: 25px 60px;
    background: transparent;
    border-bottom: none;
    transition: all 0.5s var(--transition);
}

.nav.scrolled {
    padding: 15px 60px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.nav-links a {
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta::after {
    display: none !important;
}

/* CUSTOM CURSOR */
.cursor {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
}

.cursor.hover {
    transform: scale(2.5);
    background: rgba(201, 169, 110, 0.1);
}

/* LOADER */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    opacity: 0;
    animation: loaderFadeIn 1s ease forwards;
}

.loader-logo img {
    height: 80px;
    width: auto;
}

.loader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin-top: 20px;
    animation: loaderLine 1.5s ease forwards 0.3s;
}

@keyframes loaderFadeIn {
    to { opacity: 1; }
}

@keyframes loaderLine {
    to { width: 200px; }
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(201, 169, 110, 0.03) 0%, transparent 60%),
        var(--dark);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
    box-shadow: 0 0 6px 2px rgba(201, 169, 110, 0.8);
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-10vh) translateX(var(--particle-drift)) scale(1);
        opacity: 0;
    }
}

/* Decorative lines */
.hero-line-left, .hero-line-right {
    position: absolute;
    top: 50%;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.2));
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 2.8s;
}

.hero-line-left {
    left: 60px;
    transform: translateY(-50%);
}

.hero-line-right {
    right: 60px;
    transform: translateY(-50%) rotate(180deg);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.hero-badge {
    display: inline-block;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 24px;
    border: 1px solid var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 0.3s;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 0.5s;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 300;
    color: var(--white-dim);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 0.7s;
}

.hero-buttons {
    display: inline-flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 0.9s;
}

.btn-primary, .btn-secondary {
    padding: 16px 40px;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid var(--gold);
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 1.2s;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* MARQUEE / INFINITE SCROLL */
.marquee-section {
    padding: 0;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    overflow: hidden;
}

.marquee {
    display: flex;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--grey);
    padding: 25px 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-shrink: 0;
}

.marquee-item .dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

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

/* SECTION STYLES (SHARED) */
.section {
    padding: 120px 60px;
    position: relative;
}

.section-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 25px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-desc {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--grey);
    max-width: 550px;
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* SERVICES / TREATMENTS */
.services {
    background: var(--dark);
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header .section-desc {
    margin: 0 auto;
}

.services-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.services-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px;
}

.services-grid::-webkit-scrollbar {
    display: none;
}

.service-card {
    position: relative;
    background: var(--dark-card);
    padding: 320px 35px 45px;
    min-height: 550px;
    width: calc(25% - 15px);
    min-width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.93) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--transition);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(201, 169, 110, 0.15);
}

.service-card:hover::before {
    background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.85) 100%);
}

.service-number {
    position: absolute;
    top: 35px;
    left: 35px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(201, 169, 110, 0.08);
    z-index: 2;
    transition: color 0.6s ease;
}

.service-card:hover .service-number {
    color: rgba(201, 169, 110, 0.15);
}

.service-icon {
    position: absolute;
    top: 40px;
    right: 35px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.service-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.4s ease;
}

.service-card:hover .service-icon svg {
    stroke: var(--dark);
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(201, 169, 110, 0.5), 0 0 20px rgba(0, 0, 0, 0.8);
}

.service-title {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.25;
    min-height: 60px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: flex-end;
}

.service-card:hover .service-title {
    color: var(--gold-light);
}

.service-text {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--grey);
    margin-bottom: 25px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* CTA BANNER */
.cta-banner {
    position: relative;
    padding: 300px 60px 70px;
    text-align: center;
    overflow: hidden;
    min-height: 550px;
    background:
        linear-gradient(
            to bottom,
            rgba(18, 18, 18, 0.2) 0%,
            rgba(18, 18, 18, 0.5) 40%,
            rgba(18, 18, 18, 0.85) 100%
        ),
        url('../images/despre_noi/Sedinta-foto321EMILIA-MARCELA-ANA-scaled.webp') center 25%/cover no-repeat;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, transparent 50%, rgba(201, 169, 110, 0.05) 100%);
    pointer-events: none;
}

.cta-banner-border {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.cta-banner .section-label {
    position: relative;
}

.cta-banner .section-title {
    position: relative;
    max-width: 700px;
    margin: 0 auto 20px;
}

.cta-banner .section-desc {
    position: relative;
    max-width: 500px;
    margin: 0 auto 45px;
    text-align: center;
}

.cta-banner .btn-primary {
    position: relative;
}

/* TREATMENTS TIMELINE */
.anatomic-timeline {
    padding: 300px 60px;
    background: var(--dark);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: translateY(-50%);
}

.timeline-points {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 10%;
}

.timeline-point {
    position: relative;
    cursor: pointer;
}

.point-dot {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border: 3px solid var(--dark);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.6);
    animation: pointPulse 2s ease-in-out infinite;
}

@keyframes pointPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.6);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(201, 169, 110, 0);
    }
}

.timeline-point:hover .point-dot {
    transform: scale(1.5);
    animation: none;
    box-shadow: 0 0 0 15px rgba(201, 169, 110, 0.2);
}

.point-tooltip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 20px 25px;
    border-radius: 8px;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.timeline-point:nth-child(odd) .point-tooltip {
    bottom: 40px;
}

.timeline-point:nth-child(odd) .point-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(26, 26, 26, 0.98);
    border-right: 1px solid rgba(201, 169, 110, 0.3);
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

.timeline-point:nth-child(even) .point-tooltip {
    top: 40px;
}

.timeline-point:nth-child(even) .point-tooltip::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(26, 26, 26, 0.98);
    border-left: 1px solid rgba(201, 169, 110, 0.3);
    border-top: 1px solid rgba(201, 169, 110, 0.3);
}

.timeline-point.active .point-tooltip {
    opacity: 1;
    animation: tooltipFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.point-tooltip .tooltip-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}

.point-tooltip h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 5px;
}

.point-tooltip .tooltip-tech {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
}

/* STATS COUNTER */
.stats {
    padding: 100px 60px;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background: rgba(201, 169, 110, 0.15);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
}

/* ADVANTAGES / WHY US */
.advantages {
    background: var(--dark);
    padding: 100px 60px;
}

.advantages-layout {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.advantages-left {
    position: relative;
}

.advantages-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.advantages-right {
    padding: 0;
}

.advantages-right .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 15px;
}

.advantages-right .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.advantages-right .section-title em {
    color: var(--gold);
    font-style: italic;
}

.advantages-right .section-desc {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--grey);
    margin-bottom: 40px;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.advantage-item {
    display: flex;
    gap: 18px;
    align-items: start;
}

.advantage-icon {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 10px;
}

.advantage-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--white);
}

.advantage-content p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--grey);
}

/* HORIZONTAL SCROLL SECTION */
.experience-section {
    padding: 140px 0;
    overflow: hidden;
}

.experience-header {
    padding: 0 60px;
    margin-bottom: 60px;
}

.experience-track {
    display: flex;
    gap: 30px;
    padding: 0 60px;
    animation: horizontalScroll 30s linear infinite;
}

.experience-card {
    flex-shrink: 0;
    width: 350px;
    height: 200px;
    background: var(--dark-card);
    border: 1px solid rgba(201, 169, 110, 0.08);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.experience-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-5px);
}

.experience-card h4 {
    font-size: 1.1rem;
    font-weight: 400;
}

.experience-card p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.6;
}

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

/* GRADIENT DIVIDER */
.gradient-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
}

/* FLOATING CONTACT BUTTON */
.float-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3);
    transition: all 0.4s ease;
    border: none;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(201, 169, 110, 0.4);
}

.float-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--dark);
}

/* GLOW EFFECT ON HOVER CARDS */
.glow-card {
    position: relative;
}

.glow-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.2), transparent, rgba(201, 169, 110, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glow-card:hover::before {
    opacity: 1;
}

/* MOBILE RESPONSIVE */
@media (max-width: 1200px) {
    .advantages-layout {
        grid-template-columns: 400px 1fr;
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .section {
        padding: 100px 30px;
    }

    .hero-line-left, .hero-line-right {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .advantages {
        padding: 80px 40px;
    }

    .advantages-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .advantages-left img {
        max-width: 400px;
        margin: 0 auto;
    }

    .advantages-right .section-title {
        font-size: 2.2rem;
    }

    .advantages-list {
        gap: 30px;
    }

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

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .anatomic-timeline {
        padding: 80px 30px;
    }

    .timeline-container {
        padding: 60px 0;
        overflow-x: auto;
        overflow-y: visible;
    }

    .timeline-points {
        min-width: 600px;
        padding: 0 5%;
    }

    .point-tooltip {
        min-width: 180px;
        padding: 15px 18px;
    }

    .cursor, .cursor-dot {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-line-left { left: 5%; }
    .hero-line-right { right: 5%; }

    .services, .experience {
        padding: 80px 24px;
    }

    .services-header {
        margin-bottom: 60px;
    }

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

    .service-card {
        padding: 36px 24px;
    }

    .float-btn {
        width: 56px;
        height: 56px;
        bottom: 24px;
        right: 24px;
    }

    .float-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 80px 20px;
    }

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

    .service-card {
        min-height: 380px;
    }

    .advantages {
        padding: 60px 20px;
    }

    .advantages-left img {
        max-width: 100%;
    }

    .advantages-right .section-title {
        font-size: 1.8rem;
    }

    .advantage-content h3 {
        font-size: 1.2rem;
    }

    .advantage-content p {
        font-size: 0.85rem;
    }

    .cta-banner {
        padding: 80px 20px;
    }

    .hero {
        min-height: 600px;
    }

    .anatomic-timeline {
        padding: 60px 20px;
    }

    .timeline-container {
        padding: 40px 0;
    }

    .timeline-points {
        min-width: 800px;
        gap: 40px;
    }

    .timeline-line {
        left: 5%;
        right: 5%;
    }

    .point-dot {
        width: 16px;
        height: 16px;
        border-width: 2px;
    }

    .point-tooltip {
        min-width: 160px;
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .point-tooltip h4 {
        font-size: 1rem;
    }

    .point-tooltip .tooltip-tech {
        font-size: 0.65rem;
    }

    /* Show scroll indicator for timeline on mobile */
    .timeline-container::after {
        content: '← Scroll →';
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.7rem;
        color: var(--gold);
        opacity: 0.5;
        letter-spacing: 0.2em;
    }
}
