/* ═══════════════════════════════════════════════════════
   ONIX BEAUTY STUDIO — Premium Landing Page v3
   Diseño Negro & Dorado desde cero
   ═══════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #141414;
    --black-soft: #1a1a1a;
    --gold: #c9a84c;
    --gold-light: #dfc06b;
    --gold-dark: #b08d3a;
    --gold-glow: rgba(201, 168, 76, 0.3);
    --gold-subtle: rgba(201, 168, 76, 0.08);
    --white: #f5f0e8;
    --white-soft: #e8e0d0;
    --gray: #888;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    --font-cursive: 'Great Vibes', cursive;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.15);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 300;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.gold { color: var(--gold) !important; }
.section { padding: 100px 0; position: relative; overflow: hidden; }

/* ── SPLASH SCREEN ── */
#splash {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#splash-canvas { position: absolute; inset: 0; }
.splash-content { position: relative; z-index: 2; text-align: center; }
.splash-diamond {
    display: inline-block; font-size: 3rem; color: var(--gold);
    animation: gemSpin 3s ease-in-out infinite, glowPulse 2s ease-in-out infinite;
}
.splash-title {
    font-family: var(--font-heading); font-size: 4rem; font-weight: 700;
    letter-spacing: 15px; color: var(--gold);
    animation: textGlowPulse 2s ease-in-out infinite;
    margin: 10px 0 0;
}
.splash-sub {
    font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 8px;
    color: var(--white-soft); margin-top: 5px; font-weight: 300;
}
.splash-tagline {
    font-family: var(--font-cursive); font-size: 1.5rem; color: var(--gold-light);
    margin-top: 20px; animation: cursiveFloat 3s ease-in-out infinite;
}
.splash-loader {
    width: 200px; height: 2px; background: rgba(201,168,76,0.2);
    margin: 30px auto 0; border-radius: 2px; overflow: hidden;
}
.splash-loader-bar {
    width: 0; height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 2px; animation: splashLoad 2.5s ease-in-out forwards;
}

/* ── SCROLL PROGRESS ── */
#scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 9999; transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--gold-glow);
}

/* ── CURSOR GLOW ── */
#cursor-glow {
    position: fixed; width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none; z-index: 9990; transform: translate(-50%, -50%);
    transition: opacity 0.3s; opacity: 0;
}
body:hover #cursor-glow { opacity: 1; }

/* ── NAVBAR ── */
#navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 9000;
    padding: 18px 0;
    background: transparent;
    transition: all 0.5s ease;
}
#navbar.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
#navbar.nav-hidden { transform: translateY(-100%); }
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
    color: var(--gold); letter-spacing: 3px;
}
.nav-gem { font-size: 1.2rem; animation: gemSpin 4s ease-in-out infinite; }
.nav-menu {
    display: flex; align-items: center; gap: 30px;
}
.nav-link {
    font-size: 0.85rem; font-weight: 400; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--white-soft);
    position: relative; padding: 5px 0;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--gold); transition: width var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-btn {
    background: transparent; border: 1px solid var(--gold); color: var(--gold);
    padding: 8px 22px; border-radius: 30px; font-size: 0.8rem;
    letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
    transition: all var(--transition);
}
.nav-btn:hover {
    background: var(--gold); color: var(--black);
    box-shadow: 0 0 25px var(--gold-glow);
}
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
}
.nav-toggle span {
    width: 25px; height: 2px; background: var(--gold);
    transition: all 0.3s ease; display: block;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
}
.hero-bg-layers { position: absolute; inset: 0; z-index: 0; }
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
    filter: brightness(0.3);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.8) 50%, var(--black) 100%);
}
#hero-particles { position: absolute; inset: 0; z-index: 1; }
.hero-content {
    position: relative; z-index: 2; text-align: center;
    padding: 20px; max-width: 800px;
}
.hero-cursive {
    font-family: var(--font-cursive); font-size: 2.5rem; color: var(--gold-light);
    animation: cursiveFloat 4s ease-in-out infinite;
    margin-bottom: 5px;
}
.hero-title { margin-bottom: 20px; }
.hero-line {
    display: block; font-family: var(--font-heading); font-weight: 700;
    letter-spacing: 12px; line-height: 1.2;
}
.hero-line:first-child { font-size: 5rem; color: var(--white); }
.hero-line.gold { font-size: 2.5rem; color: var(--gold); letter-spacing: 8px; }
.hero-divider {
    display: flex; align-items: center; justify-content: center; gap: 15px;
    margin: 15px 0; color: var(--gold);
}
.hero-divider .line {
    width: 80px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: lineExpand 2s ease-in-out infinite alternate;
}
.hero-divider .fa-gem { font-size: 0.9rem; animation: gemSpin 4s ease-in-out infinite; }
.hero-subtitle {
    font-family: var(--font-body); font-size: 1.1rem; letter-spacing: 6px;
    text-transform: uppercase; color: var(--white-soft); font-weight: 300;
    margin-bottom: 8px;
}
.hero-desc {
    font-size: 1rem; color: var(--gray); font-weight: 300;
    margin-bottom: 30px;
}
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px; font-size: 0.9rem;
    font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
    transition: all var(--transition); cursor: pointer; border: none;
    position: relative; overflow: hidden;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--black); font-weight: 600;
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--gold-glow);
}
.btn-outline {
    background: transparent; border: 1.5px solid var(--gold); color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold); color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--gold-glow);
}
.btn-full { width: 100%; justify-content: center; }
.btn .ripple {
    position: absolute; border-radius: 50%; background: rgba(255,255,255,0.3);
    transform: scale(0); animation: ripple 0.6s linear;
    pointer-events: none;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll i { font-size: 0.9rem; }

/* Reveal text animation */
.reveal-text {
    opacity: 0; transform: translateY(40px);
    animation: revealUp 1s ease forwards;
}
.reveal-text:nth-child(1) { animation-delay: 0.3s; }
.reveal-text:nth-child(2) { animation-delay: 0.5s; }
.reveal-text:nth-child(3) { animation-delay: 0.7s; }
.reveal-text:nth-child(4) { animation-delay: 0.9s; }
.reveal-text:nth-child(5) { animation-delay: 1.1s; }
.reveal-text:nth-child(6) { animation-delay: 1.3s; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 10px; font-weight: 500;
}
.section-label span {
    position: relative; display: inline-block;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    background-size: 200% 100%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}
.section-title {
    font-family: var(--font-heading); font-size: 2.8rem; font-weight: 600;
    color: var(--white); line-height: 1.3;
}
.section-line {
    display: flex; justify-content: center; margin-top: 20px;
}
.section-line span {
    width: 80px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Section sparkles container */
.section-sparkles {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}

/* ── SCROLL REVEAL ── */
.scroll-reveal {
    opacity: 0; transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-reveal.revealed {
    opacity: 1; transform: translateY(0);
}

/* ── ABOUT ── */
.about { background: var(--black); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-frame {
    position: relative; border-radius: 15px; overflow: hidden;
    border: 2px solid rgba(201,168,76,0.2);
    box-shadow: var(--shadow-card);
}
.about-image-frame::before {
    content: ''; position: absolute; inset: -2px; border-radius: 15px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    z-index: -1; opacity: 0; transition: opacity var(--transition);
}
.about-image-wrap:hover .about-image-frame::before { opacity: 1; }
.about-frame-glow {
    position: absolute; inset: 0; border-radius: 15px;
    box-shadow: inset 0 0 50px rgba(201,168,76,0.05);
    pointer-events: none;
    animation: borderGlow 4s ease-in-out infinite;
}
.about-img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.85);
}
.about-image-wrap:hover .about-img {
    transform: scale(1.05); filter: brightness(1);
}
.about-floating-img {
    position: absolute; bottom: -30px; right: -30px;
    width: 180px; height: 180px; border-radius: 15px; overflow: hidden;
    border: 3px solid var(--gold); box-shadow: var(--shadow-gold);
    animation: floatBounce 4s ease-in-out infinite;
    z-index: 2;
}
.about-floating-img img {
    width: 100%; height: 100%; object-fit: cover;
}
.about-heading {
    font-family: var(--font-heading); font-size: 2rem; margin-bottom: 20px;
    color: var(--white);
}
.about-text p {
    color: var(--white-soft); margin-bottom: 15px; font-size: 0.95rem;
}
.about-stats {
    display: flex; gap: 30px; margin: 30px 0;
    padding: 25px; background: var(--black-card); border-radius: 12px;
    border: 1px solid rgba(201,168,76,0.1);
}
.stat { text-align: center; flex: 1; }
.stat-number {
    font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700;
    color: var(--gold); display: inline-block;
}
.stat-label {
    display: block; font-size: 0.75rem; color: var(--gray);
    text-transform: uppercase; letter-spacing: 1px; margin-top: 5px;
}

/* ── SERVICES ── */
.services { background: var(--black-light); }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.service-card {
    background: var(--black-card); border-radius: 15px; overflow: hidden;
    border: 1px solid rgba(201,168,76,0.08);
    transition: all 0.5s ease; position: relative;
    transform-style: preserve-3d;
}
.service-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
    opacity: 0; transition: opacity var(--transition); z-index: 0;
}
.service-card:hover {
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(201,168,76,0.08);
    transform: translateY(-8px);
}
.service-card:hover::before { opacity: 1; }
.service-img-wrap {
    position: relative; height: 220px; overflow: hidden;
}
.service-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.75);
}
.service-card:hover .service-img-wrap img {
    transform: scale(1.1); filter: brightness(0.9);
}
.service-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.9) 100%);
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 15px;
}
.service-img-overlay i {
    font-size: 1.5rem; color: var(--gold); opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.service-card:hover .service-img-overlay i {
    opacity: 1; transform: translateY(0);
}
.service-body {
    padding: 25px; position: relative; z-index: 1;
}
.service-body h3 {
    font-family: var(--font-heading); font-size: 1.3rem; color: var(--white);
    margin-bottom: 10px;
}
.service-body p {
    font-size: 0.88rem; color: var(--gray); line-height: 1.6;
    margin-bottom: 15px;
}
.service-price {
    font-size: 0.9rem; color: var(--white-soft); margin-bottom: 15px;
}
.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--gold); font-size: 0.85rem; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
    transition: all var(--transition);
}
.service-link:hover { gap: 12px; color: var(--gold-light); }

/* ── PARALLAX DIVIDER ── */
.parallax-divider {
    position: relative; height: 450px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.parallax-bg {
    position: absolute; inset: -50px;
    background-size: cover; background-position: center;
    background-attachment: fixed;
    filter: brightness(0.3);
}
.parallax-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,10,0.7);
}
.parallax-content {
    position: relative; z-index: 2; text-align: center; padding: 20px;
}
.parallax-icon {
    font-size: 2.5rem; color: var(--gold); margin-bottom: 20px;
    display: block; animation: gemSpin 5s ease-in-out infinite;
}
.parallax-content h2 {
    font-family: var(--font-heading); font-size: 2.5rem; color: var(--white);
    margin-bottom: 15px;
}
.parallax-content p {
    font-size: 1.1rem; color: var(--white-soft); margin-bottom: 30px;
    font-weight: 300;
}

/* ── GALLERY ── */
.gallery { background: var(--black); }
.gallery-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px;
}
.gallery-item {
    position: relative; border-radius: 12px; overflow: hidden;
    aspect-ratio: 1; cursor: pointer;
    transform-style: preserve-3d;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease, filter 0.5s ease;
    filter: brightness(0.7);
}
.gallery-item:hover img {
    transform: scale(1.15); filter: brightness(1);
}
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.85) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    padding: 20px; opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
    font-size: 1.5rem; color: var(--gold); margin-bottom: 8px;
    transform: translateY(15px); transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay i { transform: translateY(0); }
.gallery-overlay span {
    font-size: 0.85rem; color: var(--white); letter-spacing: 2px;
    text-transform: uppercase; font-weight: 500;
    transform: translateY(15px); transition: transform 0.4s ease 0.1s;
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--black-light); }
.testimonials-slider {
    max-width: 700px; margin: 0 auto; position: relative; overflow: hidden;
}
.testimonials-track {
    display: flex; transition: transform 0.5s ease;
}
.testimonial-card {
    min-width: 100%; padding: 40px; text-align: center;
    background: var(--black-card); border-radius: 15px;
    border: 1px solid rgba(201,168,76,0.1);
}
.testimonial-stars {
    color: var(--gold); font-size: 1rem; margin-bottom: 20px;
    display: flex; gap: 5px; justify-content: center;
}
.testimonial-stars i { animation: starTwinkle 2s ease-in-out infinite; }
.testimonial-stars i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-stars i:nth-child(3) { animation-delay: 0.4s; }
.testimonial-stars i:nth-child(4) { animation-delay: 0.6s; }
.testimonial-stars i:nth-child(5) { animation-delay: 0.8s; }
.testimonial-text {
    font-size: 1.05rem; color: var(--white-soft); line-height: 1.8;
    font-style: italic; margin-bottom: 25px;
}
.testimonial-author {
    display: flex; align-items: center; justify-content: center; gap: 15px;
}
.testimonial-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex; align-items: center; justify-content: center;
    color: var(--black); font-size: 1.2rem;
}
.testimonial-author h4 {
    font-family: var(--font-heading); font-size: 1.1rem; color: var(--white);
}
.testimonial-author span { font-size: 0.8rem; color: var(--gray); }
.testimonials-controls {
    display: flex; align-items: center; justify-content: center; gap: 15px;
    margin-top: 30px;
}
.test-btn {
    width: 45px; height: 45px; border-radius: 50%;
    background: transparent; border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold); cursor: pointer; font-size: 0.9rem;
    transition: all var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.test-btn:hover {
    background: var(--gold); color: var(--black);
    box-shadow: 0 0 20px var(--gold-glow);
}
.test-dots { display: flex; gap: 8px; }
.test-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(201,168,76,0.3); cursor: pointer;
    transition: all var(--transition);
}
.test-dot.active {
    background: var(--gold); width: 30px; border-radius: 5px;
    box-shadow: 0 0 10px var(--gold-glow);
}

/* ── CONTACT ── */
.contact { background: var(--black); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
}
.contact-info {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.contact-card {
    padding: 25px; background: var(--black-card); border-radius: 12px;
    border: 1px solid rgba(201,168,76,0.08);
    transition: all 0.4s ease; text-align: center;
    transform-style: preserve-3d;
}
.contact-card:hover {
    border-color: rgba(201,168,76,0.3);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}
.contact-icon {
    width: 50px; height: 50px; margin: 0 auto 15px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black); font-size: 1.2rem;
}
.contact-card h4 {
    font-family: var(--font-heading); font-size: 1.05rem; color: var(--white);
    margin-bottom: 8px;
}
.contact-card p {
    font-size: 0.85rem; color: var(--gray); line-height: 1.6;
}
.contact-card a { color: var(--gold); }
.contact-card a:hover { color: var(--gold-light); }

/* Form */
.contact-form-wrap {
    background: var(--black-card); padding: 40px; border-radius: 15px;
    border: 1px solid rgba(201,168,76,0.1);
}
.contact-form { display: flex; flex-direction: column; gap: 25px; }
.form-group { position: relative; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 15px 0 10px;
    background: transparent; border: none;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    color: var(--white); font-family: var(--font-body);
    font-size: 0.95rem; outline: none;
    transition: border-color var(--transition);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--black-card); color: var(--white); }
.form-group label {
    position: absolute; top: 15px; left: 0;
    font-size: 0.9rem; color: var(--gray);
    transition: all 0.3s ease; pointer-events: none;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -8px; font-size: 0.72rem; color: var(--gold);
    letter-spacing: 1px; text-transform: uppercase;
}
.form-line {
    position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gold); transition: width 0.4s ease;
}
.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line,
.form-group select:focus ~ .form-line {
    width: 100%;
}

/* ── MAP ── */
.map-section {
    position: relative; border-top: 1px solid rgba(201,168,76,0.1);
}
.map-section iframe {
    display: block; filter: grayscale(80%) brightness(0.6) contrast(1.2);
    transition: filter 0.5s ease;
}
.map-section:hover iframe {
    filter: grayscale(30%) brightness(0.8) contrast(1.1);
}

/* ── FOOTER ── */
.footer {
    background: var(--black-light); padding: 80px 0 0;
    border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px;
    padding-bottom: 50px;
}
.footer-logo {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 15px;
}
.footer-logo i {
    font-size: 1.5rem; color: var(--gold);
    animation: gemSpin 5s ease-in-out infinite;
}
.footer-logo h3 {
    font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold);
    letter-spacing: 3px;
}
.footer-logo span {
    font-size: 0.7rem; letter-spacing: 3px; color: var(--gray);
    text-transform: uppercase;
}
.footer-col > p {
    font-size: 0.88rem; color: var(--gray); margin-bottom: 20px;
}
.footer-social {
    display: flex; gap: 12px;
}
.footer-social a {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(201,168,76,0.1); display: flex; align-items: center;
    justify-content: center; color: var(--gold); font-size: 1.1rem;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--gold); color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--gold-glow);
}
.footer-col h4 {
    font-family: var(--font-heading); font-size: 1.1rem; color: var(--white);
    margin-bottom: 20px; position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 30px; height: 2px; background: var(--gold);
}
.footer-col ul li {
    margin-bottom: 10px; font-size: 0.85rem; color: var(--gray);
    display: flex; align-items: flex-start; gap: 8px;
}
.footer-col ul li i { color: var(--gold); margin-top: 3px; font-size: 0.8rem; }
.footer-col ul li a { color: var(--gray); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.08);
    padding: 25px 0; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed; bottom: 25px; right: 25px; z-index: 8000;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: white; font-size: 1.8rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    animation: whatsappEntry 1s ease forwards, whatsappPulse 2s ease-in-out infinite 1s;
    opacity: 0; transform: scale(0);
}
.whatsapp-float:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}
.whatsapp-tooltip {
    position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
    background: var(--black-card); color: var(--gold); padding: 8px 16px;
    border-radius: 8px; font-size: 0.8rem; white-space: nowrap;
    opacity: 0; transition: opacity 0.3s ease;
    border: 1px solid rgba(201,168,76,0.2);
    pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── BACK TO TOP ── */
#back-to-top {
    position: fixed; bottom: 95px; right: 30px; z-index: 8000;
    width: 45px; height: 45px; border-radius: 50%;
    background: var(--black-card); border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold); font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all var(--transition);
}
#back-to-top.visible {
    opacity: 1; visibility: visible; transform: translateY(0);
}
#back-to-top:hover {
    background: var(--gold); color: var(--black);
    box-shadow: 0 0 20px var(--gold-glow);
}

/* ── SUCCESS MODAL ── */
.modal {
    position: fixed; inset: 0; z-index: 11000;
    background: rgba(10,10,10,0.9); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.modal.active { opacity: 1; visibility: visible; }
.modal-content {
    background: var(--black-card); padding: 50px; border-radius: 20px;
    border: 1px solid rgba(201,168,76,0.2); text-align: center;
    max-width: 400px; transform: scale(0.8);
    transition: transform 0.4s ease;
}
.modal.active .modal-content { transform: scale(1); }
.modal-check {
    width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--black);
    animation: modalCheck 0.6s ease;
}
.modal-content h3 {
    font-family: var(--font-heading); font-size: 1.5rem; color: var(--white);
    margin-bottom: 10px;
}
.modal-content p {
    font-size: 0.9rem; color: var(--gray); margin-bottom: 25px;
}

/* ═══ KEYFRAME ANIMATIONS ═══ */
@keyframes splashLoad {
    0% { width: 0; }
    100% { width: 100%; }
}
@keyframes gemSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(10deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-10deg) scale(1.1); }
}
@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 10px var(--gold-glow); }
    50% { text-shadow: 0 0 30px var(--gold-glow), 0 0 60px rgba(201,168,76,0.15); }
}
@keyframes textGlowPulse {
    0%, 100% { text-shadow: 0 0 10px rgba(201,168,76,0.2); }
    50% { text-shadow: 0 0 25px rgba(201,168,76,0.4), 0 0 50px rgba(201,168,76,0.15); }
}
@keyframes cursiveFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
@keyframes lineExpand {
    0% { width: 60px; opacity: 0.5; }
    100% { width: 100px; opacity: 1; }
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes floatBounce {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}
@keyframes borderGlow {
    0%, 100% { box-shadow: inset 0 0 30px rgba(201,168,76,0.03); }
    50% { box-shadow: inset 0 0 50px rgba(201,168,76,0.08); }
}
@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes whatsappEntry {
    to { opacity: 1; transform: scale(1); }
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 15px rgba(37,211,102,0); }
}
@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}
@keyframes modalCheck {
    0% { transform: scale(0) rotate(-45deg); }
    50% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1) rotate(0); }
}
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    50% { opacity: 1; transform: translateY(-30px) scale(1); }
}
@keyframes cardEntrance {
    from { opacity: 0; transform: translateY(60px) rotateX(10deg); }
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .section-title { font-size: 2.2rem; }
    .hero-line:first-child { font-size: 3.5rem; }
    .hero-line.gold { font-size: 1.8rem; }
    .hero-cursive { font-size: 2rem; }

    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; gap: 25px;
        padding: 40px; transition: right 0.4s ease;
    }
    .nav-menu.active { right: 0; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-floating-img { width: 130px; height: 130px; right: -10px; bottom: -15px; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 20px; }

    #cursor-glow { display: none; }
    .parallax-bg { background-attachment: scroll; }
}

@media (max-width: 480px) {
    .hero-line:first-child { font-size: 2.8rem; letter-spacing: 8px; }
    .hero-line.gold { font-size: 1.4rem; letter-spacing: 5px; }
    .hero-cursive { font-size: 1.6rem; }
    .hero-subtitle { font-size: 0.85rem; letter-spacing: 3px; }
    .section-title { font-size: 1.8rem; }
    .splash-title { font-size: 2.8rem; letter-spacing: 10px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .contact-info { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 25px; }
    .testimonial-card { padding: 25px; }
    .parallax-content h2 { font-size: 1.8rem; }
    .btn { padding: 12px 24px; font-size: 0.82rem; }
}
