/* ============================================
   Eletto вЂ” Premium Beauty Studio
   Colors: Gold (#f1cd31), Beige (#d4a574), Black (#0a0a0a)
   ============================================ */

:root {
    --gold: #f1cd31;
    --gold-dark: #c9a820;
    --beige: #d4a574;
    --black: #0a0a0a;
    --gray-dark: #141414;
    --gray: #1e1e1e;
    --gray-light: #2a2a2a;
    --white: #f0f0f0;
    --white-dim: #aaa;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* ============================================
   Reset & Base
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--white);
    background-color: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    cursor: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    line-height: 1.3;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: none;
}

a:hover {
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* ============================================
   Custom Cursor
   ============================================ */

.cursor {
    position: fixed;
    width: 28px;
    height: 28px;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%) rotate(-30deg);
    transition: transform 0.15s ease, opacity 0.15s ease;
    filter: drop-shadow(0 0 4px rgba(241, 205, 49, 0.5));
    animation: cursorGlow 2s ease-in-out infinite;
}

.cursor svg {
    width: 100%;
    height: 100%;
}

@keyframes cursorGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 4px rgba(241, 205, 49, 0.4));
    }

    50% {
        filter: drop-shadow(0 0 10px rgba(241, 205, 49, 0.8));
    }
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(241, 205, 49, 0.25);
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    transform: translate(-50%, -50%);
}

body.cursor-hover .cursor {
    transform: translate(-50%, -50%) rotate(-30deg) scale(1.4);
    filter: drop-shadow(0 0 12px rgba(241, 205, 49, 1));
}

body.cursor-hover .cursor-follower {
    width: 55px;
    height: 55px;
    border-color: var(--gold);
}

@media (max-width: 768px) {

    .cursor,
    .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }

    a {
        cursor: pointer;
    }
}

/* ============================================
   Loading Screen
   ============================================ */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-text {
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 14px;
    color: var(--gold);
    position: relative;
    overflow: hidden;
}

.loader-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 205, 49, 0.3), transparent);
    animation: loaderSweep 1.2s ease-in-out infinite;
}

@keyframes loaderSweep {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ============================================
   Hero вЂ” Fullscreen Cinematic
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 110%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.8) 70%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, transparent, var(--black));
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle var(--dur, 10s) var(--delay, 0s) infinite;
    box-shadow: 0 0 6px var(--gold);
}

@keyframes floatParticle {
    0% {
        bottom: -5px;
        opacity: 0;
        transform: translateX(0);
    }

    15% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.3;
        transform: translateX(25px);
    }

    85% {
        opacity: 0.5;
    }

    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(-15px);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 200;
    letter-spacing: clamp(8px, 2vw, 20px);
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.hero-title .letter {
    display: inline-block;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    animation: letterReveal 0.8s ease forwards;
    color: var(--gold);
}

/* Shimmer activates after letter reveal */
.hero-title.shimmer-active {
    background: linear-gradient(90deg,
            var(--gold) 0%,
            #fff 20%,
            var(--gold) 40%,
            var(--beige) 60%,
            var(--gold) 80%,
            #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 5s linear infinite;
}

.hero-title.shimmer-active .letter {
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
}

@keyframes shimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

@keyframes letterReveal {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.5vw, 1.2rem);
    font-weight: 300;
    letter-spacing: clamp(3px, 0.8vw, 6px);
    color: var(--beige);
    text-transform: lowercase;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 1s ease 2s forwards;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white-dim);
}

.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.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    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-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   Section Styles
   ============================================ */

.section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section-dark {
    background: var(--black);
}

.section-accent {
    background: var(--gray-dark);
    position: relative;
}

.section-accent::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -30%;
    right: -30%;
    bottom: -60%;
    background:
        radial-gradient(ellipse 70% 50% at 25% 40%, rgba(241, 205, 49, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 75% 60%, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
    animation: meshFloat 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes meshFloat {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: clamp(3px, 0.8vw, 6px);
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: titleLineGlow 3s ease-in-out infinite;
}

@keyframes titleLineGlow {

    0%,
    100% {
        opacity: 0.4;
        width: 60px;
    }

    50% {
        opacity: 1;
        width: 100px;
    }
}

/* ============================================
   Contact Cards вЂ” Glassmorphism
   ============================================ */

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 160px;
    cursor: none;
}

.contact-card:hover {
    transform: translateY(-8px);
}

/* WhatsApp вЂ” green */
.contact-whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.15);
}

.contact-whatsapp:hover img {
    filter: drop-shadow(0 0 12px rgba(37, 211, 102, 0.6));
}

.contact-whatsapp:hover span {
    color: #25d366;
}

/* Telegram вЂ” blue */
.contact-telegram:hover {
    border-color: #2aabee;
    box-shadow: 0 20px 60px rgba(42, 171, 238, 0.15);
}

.contact-telegram:hover img {
    filter: drop-shadow(0 0 12px rgba(42, 171, 238, 0.6));
}

.contact-telegram:hover span {
    color: #2aabee;
}

/* Instagram вЂ” gradient pink/orange */
.contact-instagram:hover {
    border-color: #e1306c;
    box-shadow: 0 20px 60px rgba(225, 48, 108, 0.15);
}

.contact-instagram:hover img {
    filter: drop-shadow(0 0 12px rgba(225, 48, 108, 0.6));
}

.contact-instagram:hover span {
    color: #e1306c;
}

/* MAX вЂ” blue/purple */
.contact-max:hover {
    border-color: #4488ff;
    box-shadow: 0 20px 60px rgba(68, 136, 255, 0.15);
}

.contact-max:hover img {
    filter: drop-shadow(0 0 12px rgba(68, 136, 255, 0.6));
}

.contact-max:hover span {
    color: #4488ff;
}

.contact-card img {
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.contact-card:hover img {
    transform: scale(1.15);
}

.contact-card span {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--white-dim);
    transition: color 0.3s ease;
}

.contact-card:hover span {
    color: var(--white);
}

/* Phone Button */
.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(241, 205, 49, 0.3);
    border-radius: 60px;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: none;
}

.phone-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 205, 49, 0.1), transparent);
    transition: left 0.5s ease;
}

.phone-btn:hover::before {
    left: 100%;
}

.phone-btn:hover {
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 30px rgba(241, 205, 49, 0.15);
}

/* ============================================
   CTA Booking Section
   ============================================ */

.cta-section {
    padding: 120px 0;
    text-align: center;
}

.cta-section .section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 2.5rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--gold);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    border-radius: 60px;
    position: relative;
    transition: all 0.4s ease;
    cursor: none;
    text-decoration: none;
    animation: ctaPulse 3s ease-in-out infinite;
}

.btn-cta:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 8px 40px rgba(241, 205, 49, 0.25);
    animation: none;
}

.btn-cta i {
    font-size: 1rem;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(241, 205, 49, 0);
        border-color: rgba(241, 205, 49, 0.4);
    }

    50% {
        box-shadow: 0 0 25px 3px rgba(241, 205, 49, 0.15);
        border-color: rgba(241, 205, 49, 1);
    }
}


/* ============================================
   Price List вЂ” Modern Tabs
   ============================================ */

.text-gold {
    color: var(--gold);
}

.price-note {
    text-align: center;
    color: var(--white-dim);
    font-size: 0.85rem;
    margin-bottom: 3rem;
}

.price-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
}

.price-tabs .nav-link {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--white-dim);
    padding: 0.8rem 2rem;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 0;
    cursor: none;
}

.price-tabs .nav-link:hover {
    color: var(--white);
    background: none;
}

.price-tabs .nav-link.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: none;
    font-weight: 500;
}

.price-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
}

.subcategory-title {
    color: var(--beige);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.subcategory-title:first-child {
    margin-top: 0;
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.service-item:hover {
    background: rgba(241, 205, 49, 0.04);
}

.service-name {
    color: var(--white);
    font-weight: 300;
    flex-shrink: 0;
}

.service-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
    min-width: 30px;
    margin-bottom: 4px;
}

.service-price {
    color: var(--gold);
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem;
    }

    .service-item {
        flex-wrap: wrap;
        padding: 0.5rem;
    }

    .service-dots {
        display: none;
    }

    .service-name {
        flex: 1;
        min-width: 100%;
        font-size: 0.9rem;
    }

    .service-price {
        margin-left: auto;
        background: rgba(241, 205, 49, 0.08);
        padding: 0.15rem 0.75rem;
        border-radius: 20px;
        font-size: 0.85rem;
    }
}

/* ============================================
   Map вЂ” Edge to Edge
   ============================================ */

.map-section {
    position: relative;
    padding: 0;
}

.map-overlay-info {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    max-width: 320px;
}

.map-overlay-info h3 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.map-overlay-info p {
    font-size: 0.85rem;
    color: var(--white-dim);
    line-height: 1.8;
    margin: 0;
}

.map-overlay-info .bi {
    color: var(--gold);
    margin-right: 0.5rem;
}

#map {
    width: 100%;
    height: 500px;
}

@media (max-width: 768px) {
    #map {
        height: 350px;
    }

    .map-overlay-info {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--glass-border);
    }
}

/* ============================================
   Animated Mesh Background (subtle)
   ============================================ */

.section-mesh {
    position: relative;
    overflow: hidden;
}

.section-mesh::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    right: -40%;
    bottom: -40%;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(241, 205, 49, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 40%, rgba(212, 165, 116, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 50% 80%, rgba(241, 205, 49, 0.1) 0%, transparent 70%);
    animation: meshDrift 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-mesh>.container,
.section-mesh>* {
    position: relative;
    z-index: 1;
}

@keyframes meshDrift {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }

    33% {
        transform: translate(3%, -2%) rotate(1deg);
        opacity: 1;
    }

    66% {
        transform: translate(-2%, 3%) rotate(-1deg);
        opacity: 0.8;
    }
}

/* ============================================
   Footer
   ============================================ */

footer {
    background: var(--black);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-socials a {
    color: var(--white-dim);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    cursor: none;
}

.footer-socials a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-line {
    width: 60px;
    height: 1px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {

    0%,
    100% {
        opacity: 0.3;
        width: 60px;
    }

    50% {
        opacity: 1;
        width: 100px;
    }
}

.footer-text {
    text-align: center;
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 1px;
}

.footer-music {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-music a {
    color: #555;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    cursor: none;
}

.footer-music a:hover {
    color: var(--gold);
}

/* ============================================
   Utilities
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container override */
@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

/* ============================================
   Sticky Navbar
   ============================================ */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.site-nav.scrolled {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: none;
}

.nav-links a:hover {
    color: var(--gold);
    background: rgba(241, 205, 49, 0.06);
}

.nav-cta {
    color: var(--gold) !important;
    border: 1px solid rgba(241, 205, 49, 0.25);
    font-weight: 500 !important;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    background: rgba(241, 205, 49, 0.12) !important;
    border-color: rgba(241, 205, 49, 0.5);
}

/* Mobile Nav */
@media (max-width: 768px) {
    .nav-links {
        gap: 0.15rem;
        padding: 0.5rem 0;
    }

    .nav-links a {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
        padding: 0.35rem 0.6rem;
    }

    .nav-cta {
        margin-left: 0.25rem;
    }
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    text-align: center;
    padding: 4rem 0;
}



/* ============================================
   Back to Top
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: rgba(241, 205, 49, 0.15);
    border: 1px solid rgba(241, 205, 49, 0.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(241, 205, 49, 0.3);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 40px;
        height: 40px;
    }
}
.footer-max-link img { transition: all 0.3s ease; filter: grayscale(1) invert(1) brightness(2) contrast(100); opacity: 0.6; transform: translateY(-4px); }
.footer-max-link:hover img { filter: invert(72%) sepia(85%) saturate(302%) hue-rotate(352deg) brightness(101%) contrast(90%); opacity: 1; transform: translateY(-7px); }
