* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #050505;
    --dark: #0b0b0b;
    --card: #151515;
    --gold: #d4af37;
    --gold2: #f4d46a;
    --white: #ffffff;
    --muted: #d8d8d8;
    --green: #25D366;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img,
video {
    max-width: 100%;
}

/* TOPBAR */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: linear-gradient(90deg, #bd931f, #f4d46a, #bd931f);
    color: #000;
    font-weight: 900;
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 8px 14px;
    flex-wrap: wrap;
}

.topbar a {
    color: #000;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 34px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, .94);
    border-bottom: 1px solid rgba(212, 175, 55, .35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 5%;
    backdrop-filter: blur(10px);
}

.brand img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
}

.navbar a {
    color: #fff;
    font-weight: 800;
}

.nav-cta {
    background: var(--gold);
    color: #000 !important;
    padding: 12px 20px;
    border-radius: 50px;
}

.lang-btn {
    background: #fff;
    border: 0;
    padding: 11px 16px;
    border-radius: 50px;
    font-weight: 900;
    cursor: pointer;
}

.menu-btn {
    display: none;
    background: var(--gold);
    border: 0;
    border-radius: 10px;
    width: 46px;
    height: 46px;
    font-size: 22px;
}

/* HERO */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .85)),
        url("images/lavado1.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 190px 20px 85px;
}

.hero-content {
    max-width: 1150px;
}

.eyebrow {
    display: inline-block;
    color: var(--gold2);
    border: 1px solid var(--gold);
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 900;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5.8rem);
    line-height: 1.05;
    font-weight: 900;
    text-shadow: 0 10px 30px #000;
}

.hero h1 strong {
    display: block;
    color: var(--gold);
}

.hero p {
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    line-height: 1.7;
    max-width: 880px;
    margin: 20px auto;
}

.hero h2 {
    color: var(--gold2);
    font-size: clamp(1.3rem, 3vw, 2.1rem);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

.btn {
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
}

.btn:hover {
    transform: translateY(-3px);
    opacity: .95;
}

.gold {
    background: var(--gold);
    color: #000;
}

.light {
    background: #fff;
    color: #000;
}

.green {
    background: var(--green);
    color: #fff;
}

/* GENERAL SECTIONS */
.section {
    padding: 105px 8%;
}

.heading {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 60px;
}

.heading span {
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 3px;
}

.heading h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--gold);
    margin: 15px 0;
}

.heading p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.75;
}

/* STATS */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1320px;
    margin: -45px auto 0;
    padding: 0 8% 90px;
    position: relative;
    z-index: 3;
}

.stat {
    background: linear-gradient(#171717, #0d0d0d);
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 24px;
    text-align: center;
    padding: 30px;
}

.stat i {
    color: var(--gold);
    font-size: 36px;
}

.stat strong {
    display: block;
    font-size: 42px;
    margin: 12px 0;
}

.stat span {
    color: var(--muted);
}

/* TWO COLUMNS */
.two-col {
    max-width: 1350px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.image-card {
    position: relative;
}

.image-card img,
.video-card {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, .35);
    overflow: hidden;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--gold);
    color: #000;
    border-radius: 50px;
    padding: 16px 24px;
    font-weight: 900;
}

.text-card {
    background: var(--card);
    border: 1px solid rgba(212, 175, 55, .25);
    border-radius: 28px;
    padding: 40px;
}

.text-card h3,
.text-card h2 {
    color: var(--gold);
    font-size: 34px;
    margin-bottom: 18px;
}

.text-card p {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.85;
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 25px;
}

.mini-grid span {
    background: #0b0b0b;
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: 14px;
    padding: 15px;
}

/* MISSION / PROMISE */
.mission,
.promise {
    padding: 95px 8%;
    background: #0b0b0b;
}

.mission-card,
.promise-card {
    max-width: 1050px;
    margin: auto;
    text-align: center;
    background: linear-gradient(#171717, #0d0d0d);
    border: 1px solid rgba(212, 175, 55, .32);
    border-radius: 30px;
    padding: 55px;
}

.mission-card i {
    font-size: 52px;
    color: var(--gold);
}

.mission-card h2,
.promise-card h2 {
    color: var(--gold);
    font-size: 45px;
    margin: 20px;
}

.mission-card p,
.promise-card p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.8;
}

.promise-card strong {
    display: block;
    color: var(--gold2);
    font-size: 27px;
    margin-top: 25px;
}

/* GRIDS */
.cards-grid,
.services-grid,
.gallery-grid,
.price-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cards-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

/* CARDS */
.feature-card,
.service,
.price,
.testimonial {
    background: var(--card);
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 26px;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .25);
}

.feature-card:hover,
.service:hover,
.price:hover,
.testimonial:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.feature-card {
    padding: 32px;
}

.feature-card div {
    width: 65px;
    height: 65px;
    background: var(--gold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.feature-card h3,
.service h3,
.price h3 {
    color: var(--gold);
    font-size: 26px;
    margin: 20px;
}

.feature-card p,
.service p,
.testimonial p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 20px 25px;
}

.service img,
.price img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.gallery-grid img {
    width: 100%;
    height: 315px;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(212, 175, 55, .28);
}

.price {
    text-align: center;
    padding-bottom: 28px;
}

.price span {
    color: var(--gold2);
    font-weight: 900;
}

.price strong {
    display: block;
    font-size: 58px;
    margin: 10px;
    color: #fff;
}

.price a {
    display: inline-block;
    background: var(--gold);
    color: #000;
    border-radius: 50px;
    padding: 13px 22px;
    font-weight: 900;
}

/* VIDEO */
.video-section {
    padding: 105px 8%;
    background: #050505;
}

/* TESTIMONIALS / FAQ */
.testimonials,
.faq {
    background: #0b0b0b;
}

.testimonial {
    padding: 30px;
}

.testimonial b {
    color: var(--gold);
    font-size: 24px;
}

.testimonial strong {
    color: var(--gold2);
}

.faq-list {
    max-width: 900px;
    margin: auto;
}

.faq-list details {
    background: var(--card);
    border: 1px solid rgba(212, 175, 55, .25);
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 16px;
}

.faq-list summary {
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
}

.faq-list p {
    color: var(--muted);
    margin-top: 14px;
}

/* BOOKING */
.booking {
    background: #f5f5f5;
    color: #111;
    padding-top: 130px;
}

.booking .heading {
    margin-bottom: 45px;
}

.booking .heading h2 {
    color: #111;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.booking .heading p {
    color: #333;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 35px;
    max-width: 1350px;
    margin: auto;
    align-items: stretch;
}

.contact-form,
.contact-panel {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 13px;
    font-size: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-form textarea {
    height: 115px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    border: 0;
    background: linear-gradient(90deg, #bd931f, #f4d46a, #bd931f);
    color: #000;
    border-radius: 50px;
    font-weight: 900;
    cursor: pointer;
    transition: .3s;
}

.contact-form button:hover {
    transform: translateY(-3px);
    opacity: .95;
}

/* MAP */
.map-help {
    display: block;
    color: #777;
    font-size: 13px;
    margin: -6px 0 10px;
}

.client-map-box {
    width: 100%;
    height: 210px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 13px;
    border: 1px solid #ddd;
}

.client-map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-client-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #111;
    color: #d4af37;
    padding: 13px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 15px;
}

/* UPLOAD */
.upload-box {
    margin-bottom: 15px;
    padding: 16px;
    border: 1px dashed #d4af37;
    border-radius: 18px;
    background: #fafafa;
}

.upload-title {
    display: block;
    font-weight: 900;
    margin-bottom: 10px;
    color: #111;
}

.upload-box input[type="file"] {
    width: 100%;
    margin-bottom: 10px;
    background: #fff;
    padding: 11px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.upload-box small {
    display: block;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.preview-fotos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.preview-fotos img {
    width: 100%;
    height: 85px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #d4af37;
}

/* CONTACT PANEL */
.contact-panel {
    background:
        linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.98)),
        url("images/lavado1.png");
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(212,175,55,.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.contact-logo {
    width: 105px;
    height: 105px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #d4af37;
    margin: 0 auto 15px;
}

.review-stars {
    color: #d4af37;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.contact-panel h3 {
    color: #b89020;
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 15px;
}

.contact-intro {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-services {
    list-style: none;
    margin-bottom: 25px;
}

.contact-services li {
    background: rgba(212,175,55,.13);
    border: 1px solid rgba(212,175,55,.28);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
    font-weight: 900;
    color: #111;
    font-size: 16px;
}

.contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
}

.contact-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    font-weight: 900;
    transition: .3s;
}

.contact-btn:hover {
    transform: translateY(-3px);
}

.contact-btn.call {
    background: #111;
    color: #fff;
}

.contact-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.contact-info-box {
    background: #111;
    color: #fff;
    border-radius: 18px;
    padding: 18px;
}

.contact-info-box p {
    font-size: 16px;
    margin: 9px 0;
}

/* SOCIAL FLOAT */
.social-float {
    position: fixed;
    right: 22px;
    bottom: 95px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99999;
}

.social-float a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
    transition: .3s;
}

.social-float a:hover {
    transform: translateY(-4px) scale(1.05);
}

.social-float .whatsapp {
    background: #25D366;
}

.social-float .facebook {
    background: #1877F2;
}

.social-float .instagram {
    background: #E4405F;
}

.social-float .phone {
    background: #d4af37;
    color: #000;
}

.whatsapp-float {
    display: none !important;
}

/* FOOTER */
.footer {
    text-align: center;
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, .25);
    padding: 70px 20px;
}

.footer img {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}

.footer-line {
    width: 180px;
    margin: 30px auto;
    border: none;
    border-top: 2px solid #d4af37;
}

.copyright {
    text-align: center;
    color: #bdbdbd;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 1px;
}

.copyright strong {
    color: #d4af37;
    font-size: 20px;
    font-weight: 700;
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: .75s;
}

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

/* TABLET */
@media(max-width:1050px) {
    .navbar ul {
        display: none;
        position: absolute;
        top: 103px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 25px;
        border-bottom: 1px solid var(--gold);
    }

    .navbar ul.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

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

    .two-col,
    .booking-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBILE */
@media(max-width:760px) {
    .topbar span:nth-child(2),
    .topbar span:nth-child(3) {
        display: none;
    }

    .navbar {
        top: 31px;
        padding: 10px 18px;
    }

    .brand img {
        width: 58px;
        height: 58px;
    }

    .navbar ul {
        top: 78px;
    }

    .hero {
        padding: 155px 18px 70px;
        background-attachment: scroll;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stats,
    .cards-grid,
    .services-grid,
    .gallery-grid,
    .price-grid,
    .cards-grid.three {
        grid-template-columns: 1fr;
        padding-left: 20px;
        padding-right: 20px;
    }

    .section {
        padding: 75px 20px;
    }

    .image-card img,
    .video-card {
        height: 420px;
    }

    .mini-grid,
    .form-row,
    .contact-actions {
        grid-template-columns: 1fr;
    }

    .mission-card,
    .promise-card {
        padding: 35px 20px;
    }

    .contact-form,
    .contact-panel {
        padding: 25px 20px;
    }

    .client-map-box {
        height: 170px;
    }

    .social-float {
        right: 14px;
        bottom: 75px;
    }

    .social-float a {
        width: 50px;
        height: 50px;
        font-size: 23px;
    }
}
/* =====================================================
   PREMIUM MAIN DESIGN UPGRADE
   Mejora visual para la página principal
===================================================== */
:root {
    --gold: #d4af37;
    --gold2: #f7dc76;
    --gold-dark: #9f7420;
    --black: #040404;
    --dark: #0a0a0a;
    --card: rgba(22, 22, 22, .88);
    --card-soft: rgba(255, 255, 255, .055);
    --muted: #cfcfcf;
    --line: rgba(212, 175, 55, .26);
    --shadow: 0 24px 70px rgba(0, 0, 0, .45);
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, .12), transparent 34%),
        radial-gradient(circle at 90% 20%, rgba(244, 212, 106, .08), transparent 28%),
        linear-gradient(180deg, #050505 0%, #090909 45%, #030303 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 80%);
}

.topbar {
    min-height: 36px;
    background: linear-gradient(90deg, #8d6619, #f8dc78 22%, #d4af37 50%, #f8dc78 78%, #8d6619);
    box-shadow: 0 10px 28px rgba(0,0,0,.35);
    letter-spacing: .3px;
}

.navbar {
    top: 36px;
    padding: 9px 6%;
    background: rgba(4, 4, 4, .82);
    border-bottom: 1px solid rgba(212, 175, 55, .24);
    box-shadow: 0 16px 45px rgba(0,0,0,.38);
}

.brand img {
    width: 74px;
    height: 74px;
    box-shadow: 0 0 0 6px rgba(212, 175, 55, .08), 0 14px 35px rgba(0,0,0,.45);
}

.navbar ul {
    gap: 10px;
}

.navbar a:not(.nav-cta) {
    position: relative;
    padding: 11px 8px;
    font-size: 14px;
    letter-spacing: .2px;
    color: rgba(255,255,255,.92);
    transition: .25s ease;
}

.navbar a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    bottom: 5px;
    height: 2px;
    background: var(--gold2);
    transform: scaleX(0);
    transform-origin: center;
    transition: .25s ease;
}

.navbar a:not(.nav-cta):hover {
    color: var(--gold2);
}

.navbar a:not(.nav-cta):hover::after {
    transform: scaleX(1);
}

.nav-cta,
.lang-btn {
    box-shadow: 0 12px 28px rgba(212, 175, 55, .22);
    transition: .25s ease;
}

.nav-cta:hover,
.lang-btn:hover {
    transform: translateY(-2px);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 102vh;
    background:
        linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.66) 45%, rgba(0,0,0,.88) 100%),
        radial-gradient(circle at center, rgba(212, 175, 55, .18), transparent 45%),
        url("images/lavado1.png");
    background-size: cover;
    background-position: center;
    padding: 190px 22px 115px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.82)),
        radial-gradient(circle at 18% 28%, rgba(247, 220, 118, .17), transparent 28%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 130px;
    background: linear-gradient(to bottom, transparent, #050505);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    padding: 34px 30px;
    border: 1px solid rgba(212, 175, 55, .20);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(8,8,8,.42), rgba(8,8,8,.22));
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px);
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.hero-logo {
    width: 112px;
    height: 112px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, .10), 0 18px 45px rgba(0,0,0,.55);
}

.eyebrow {
    background: rgba(212, 175, 55, .10);
    color: var(--gold2);
    border: 1px solid rgba(247, 220, 118, .55);
    box-shadow: inset 0 0 18px rgba(212, 175, 55, .08);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 13px;
}

.hero h1 {
    max-width: 1050px;
    margin: 0 auto;
    font-size: clamp(2.45rem, 6.7vw, 5.7rem);
    letter-spacing: -2px;
}

.hero h1 strong {
    margin-top: 6px;
    background: linear-gradient(90deg, #b88722, #fff0a3, #d4af37, #9f7420);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    color: #f1f1f1;
    text-shadow: 0 8px 25px rgba(0,0,0,.75);
}

.hero h2 {
    color: #ffe68b;
    text-shadow: 0 10px 30px rgba(0,0,0,.85);
}

.btn {
    min-height: 54px;
    padding: 16px 28px;
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 15px 34px rgba(0,0,0,.32);
}

.btn.gold {
    background: linear-gradient(135deg, #b98520, #f7dc76, #c89b2b);
}

.btn.light {
    background: rgba(255,255,255,.94);
}

.btn.green {
    background: linear-gradient(135deg, #128c45, #25D366);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,.45);
}

.hero-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border: 1px solid rgba(212, 175, 55, .24);
    border-radius: 999px;
    background: rgba(0,0,0,.42);
    color: #fff;
}

.hero-highlights i {
    color: var(--gold2);
}

.stats {
    max-width: 1260px;
    margin-top: -62px;
    padding-bottom: 75px;
}

.stat {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(32,32,32,.94), rgba(10,10,10,.96));
    border: 1px solid rgba(212, 175, 55, .24);
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.stat::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(212,175,55,.18), transparent 55%);
    opacity: .8;
}

.stat > * {
    position: relative;
    z-index: 1;
}

.stat strong {
    color: #fff4bd;
}

.section,
.video-section,
.mission,
.promise {
    position: relative;
}

.section {
    padding: 112px 7%;
}

.heading span {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--gold2);
    text-transform: uppercase;
    font-size: 13px;
}

.heading h2 {
    color: #fff;
    letter-spacing: -1px;
}

.heading h2::after {
    content: "";
    display: block;
    width: 86px;
    height: 4px;
    margin: 22px auto 0;
    border-radius: 99px;
    background: linear-gradient(90deg, transparent, var(--gold2), transparent);
}

.heading p {
    color: #d2d2d2;
}

.two-col {
    gap: 46px;
}

.image-card,
.video-card,
.gallery-grid img {
    box-shadow: 0 24px 65px rgba(0,0,0,.38);
}

.image-card::before,
.video-card::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 34px;
    border: 1px solid rgba(212, 175, 55, .12);
    pointer-events: none;
}

.image-card img,
.video-card {
    height: 550px;
    border: 1px solid rgba(247, 220, 118, .24);
}

.badge {
    box-shadow: 0 14px 35px rgba(0,0,0,.35);
}

.text-card,
.mission-card,
.promise-card,
.feature-card,
.service,
.price,
.testimonial,
.contact-form,
.contact-panel,
details {
    background: linear-gradient(180deg, rgba(26,26,26,.94), rgba(10,10,10,.96));
    border: 1px solid rgba(212, 175, 55, .22);
    box-shadow: 0 22px 60px rgba(0,0,0,.32);
}

.text-card {
    padding: 46px;
}

.text-card h3,
.text-card h2,
.mission-card h2,
.promise-card h2,
.feature-card h3,
.service h3,
.price h3 {
    color: #f6d96e;
}

.mini-grid span {
    background: rgba(255,255,255,.045);
    border-color: rgba(212, 175, 55, .18);
    color: #eeeeee;
    font-weight: 800;
}

.mission,
.promise,
.testimonials,
.faq {
    background:
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, .10), transparent 35%),
        #070707;
}

.mission-card,
.promise-card {
    overflow: hidden;
    position: relative;
}

.mission-card::before,
.promise-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(212,175,55,.10), transparent);
    pointer-events: none;
}

.cards-grid,
.services-grid,
.gallery-grid,
.price-grid {
    gap: 26px;
}

.feature-card,
.service,
.price,
.testimonial {
    position: relative;
    border-radius: 28px;
}

.feature-card:hover,
.service:hover,
.price:hover,
.testimonial:hover,
.gallery-grid img:hover {
    transform: translateY(-8px);
    border-color: rgba(247, 220, 118, .62);
    box-shadow: 0 28px 75px rgba(0,0,0,.48);
}

.service img,
.price img,
.gallery-grid img {
    transition: .45s ease;
}

.service:hover img,
.price:hover img,
.gallery-grid img:hover {
    filter: contrast(1.08) saturate(1.06);
    transform: scale(1.025);
}

.service,
.price {
    overflow: hidden;
}

.service h3,
.price h3 {
    margin-bottom: 12px;
}

.service p,
.testimonial p,
.feature-card p {
    color: #d4d4d4;
}

.gallery-grid img {
    border-radius: 26px;
}

.price strong {
    color: #ffffff;
    text-shadow: 0 0 28px rgba(212, 175, 55, .25);
}

.price a,
.contact-form button,
.map-client-btn {
    box-shadow: 0 14px 30px rgba(212,175,55,.18);
    transition: .25s ease;
}

.price a:hover,
.contact-form button:hover,
.map-client-btn:hover {
    transform: translateY(-4px);
}

.video-section {
    background:
        linear-gradient(180deg, #050505, #0c0c0c),
        radial-gradient(circle at right, rgba(212, 175, 55, .12), transparent 36%);
}

.testimonial b {
    display: block;
    color: var(--gold2);
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.faq-list {
    max-width: 980px;
}

details {
    border-radius: 18px;
    margin-bottom: 16px;
    overflow: hidden;
}

details summary {
    color: #fff;
    background: rgba(255,255,255,.025);
}

details[open] summary {
    color: var(--gold2);
}

.booking {
    background:
        radial-gradient(circle at 15% 0%, rgba(212,175,55,.11), transparent 34%),
        linear-gradient(180deg, #050505, #0b0b0b);
}

.booking-grid {
    align-items: stretch;
}

.contact-form,
.contact-panel {
    border-radius: 30px;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.upload-box input[type="file"] {
    transition: .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212,175,55,.13);
}

.contact-panel {
    color: #111;
    background:
        linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.97)),
        url("images/lavado1.png");
    background-size: cover;
}

.contact-logo {
    box-shadow: 0 14px 35px rgba(0,0,0,.22);
}

.contact-services li {
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.social-float a {
    border: 1px solid rgba(255,255,255,.22);
}

.footer {
    background:
        radial-gradient(circle at top, rgba(212,175,55,.11), transparent 38%),
        #030303;
}

.copyright {
    text-transform: uppercase;
}

@media(max-width: 1050px) {
    .navbar ul {
        top: 96px;
        background: rgba(0,0,0,.96);
        box-shadow: 0 25px 45px rgba(0,0,0,.45);
    }

    .navbar a:not(.nav-cta) {
        font-size: 16px;
    }

    .hero-content {
        padding: 30px 22px;
    }
}

@media(max-width: 760px) {
    .topbar {
        gap: 12px;
        font-size: 13px;
        padding: 8px 10px;
    }

    .navbar {
        top: 34px;
    }

    .hero {
        min-height: auto;
        padding: 150px 16px 82px;
    }

    .hero-content {
        border-radius: 26px;
        padding: 25px 16px;
    }

    .hero-logo {
        width: 88px;
        height: 88px;
    }

    .hero h1 {
        letter-spacing: -1px;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-highlights span {
        justify-content: center;
    }

    .stats {
        margin-top: -35px;
        padding-bottom: 35px;
    }

    .stat {
        padding: 24px 18px;
    }

    .section,
    .video-section,
    .mission,
    .promise {
        padding-left: 18px;
        padding-right: 18px;
    }

    .heading {
        margin-bottom: 38px;
    }

    .heading h2 {
        font-size: clamp(1.9rem, 9vw, 3rem);
    }

    .text-card {
        padding: 28px 20px;
    }

    .image-card img,
    .video-card {
        height: 360px;
    }

    .service img,
    .price img,
    .gallery-grid img {
        height: 245px;
    }

    .social-float {
        right: 12px;
        bottom: 20px;
        gap: 9px;
    }

    .social-float a {
        width: 48px;
        height: 48px;
    }
}

/* =========================================================
   FIX CONTACT SECTION CONTRAST
   Corrige texto oscuro en la sección de contacto/citas.
========================================================= */
.booking .heading span {
    color: #f7d774;
    text-shadow: 0 0 18px rgba(247, 215, 116, .28);
}

.booking .heading h2 {
    color: #ffffff !important;
    text-shadow: 0 8px 28px rgba(0, 0, 0, .55);
}

.booking .heading p {
    color: #e6e6e6 !important;
}

.booking .heading h2::after {
    background: linear-gradient(90deg, transparent, #f7d774, transparent);
    box-shadow: 0 0 20px rgba(247, 215, 116, .35);
}

/* =========================================================
   PRO BOOKING FORM UPGRADE
   Mejora visual y funcional del formulario de citas.
========================================================= */
.booking-grid-pro {
    grid-template-columns: minmax(0, 1.45fr) minmax(330px, .9fr);
    gap: 32px;
}

.booking-form-pro {
    position: relative;
    overflow: hidden;
    padding: 32px;
}

.booking-form-pro::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #8f6b13, #f7d774, #8f6b13);
}

.form-header-pro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, .18);
}

.form-icon-pro {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #090909;
    background: linear-gradient(135deg, #bd931f, #f7d774, #bd931f);
    box-shadow: 0 15px 35px rgba(212, 175, 55, .20);
    font-size: 24px;
}

.form-header-pro span {
    display: block;
    color: #f7d774;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 5px;
}

.form-header-pro h3 {
    color: #fff;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    margin-bottom: 6px;
}

.form-header-pro p {
    color: #d8d8d8;
    line-height: 1.5;
    font-size: 15px;
}

.form-progress-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 22px;
}

.form-progress-pro span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(212, 175, 55, .14);
    color: #e9e9e9;
    font-weight: 800;
}

.form-progress-pro b {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #d4af37;
    color: #060606;
    font-size: 13px;
}

.form-progress-pro small {
    font-size: 12px;
}

.form-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group-pro {
    margin-bottom: 14px;
}

.form-group-pro label {
    display: block;
    color: #f0f0f0;
    font-weight: 900;
    margin-bottom: 8px;
    font-size: 14px;
}

.input-icon-pro {
    position: relative;
}

.input-icon-pro i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 15px;
    z-index: 2;
    pointer-events: none;
}

.booking-form-pro .input-icon-pro input,
.booking-form-pro .input-icon-pro select {
    padding-left: 46px;
    margin-bottom: 0;
}

.booking-form-pro input,
.booking-form-pro textarea,
.booking-form-pro select,
.booking-form-pro .upload-box input[type="file"] {
    background: rgba(255,255,255,.96);
    color: #111;
    border: 1px solid rgba(212, 175, 55, .18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

.booking-form-pro textarea {
    min-height: 125px;
    margin-bottom: 0;
}

.booking-form-pro input::placeholder,
.booking-form-pro textarea::placeholder {
    color: #6f6f6f;
}

.booking-form-pro select {
    appearance: none;
    cursor: pointer;
}

.select-icon-pro::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #111;
    pointer-events: none;
}

.booking-form-pro .map-help {
    color: #cfcfcf;
    margin: 8px 0 0;
}

.booking-form-pro .client-map-box {
    height: 240px;
    border-radius: 22px;
    border: 1px solid rgba(212, 175, 55, .30);
    box-shadow: 0 15px 35px rgba(0,0,0,.22);
}

.booking-form-pro .map-client-btn {
    margin: 0 0 18px;
    border: 1px solid rgba(212, 175, 55, .45);
    background: linear-gradient(90deg, #080808, #151515);
}

.upload-box-pro {
    background: rgba(255,255,255,.045);
    border: 1px dashed rgba(247, 215, 116, .60);
    margin-top: 4px;
}

.upload-box-pro .upload-title {
    color: #fff;
}

.upload-box-pro small {
    color: #d1d1d1;
}

.form-status {
    display: none;
    border-radius: 14px;
    padding: 12px 14px;
    margin: 14px 0;
    font-weight: 800;
    line-height: 1.4;
}

.form-status.show {
    display: block;
}

.form-status.success {
    background: rgba(37, 211, 102, .12);
    border: 1px solid rgba(37, 211, 102, .35);
    color: #9df2bd;
}

.form-status.error {
    background: rgba(255, 80, 80, .12);
    border: 1px solid rgba(255, 80, 80, .35);
    color: #ffb4b4;
}

.form-status.loading {
    background: rgba(247, 215, 116, .12);
    border: 1px solid rgba(247, 215, 116, .35);
    color: #ffe998;
}

.booking-form-pro button[disabled] {
    cursor: not-allowed;
    opacity: .72;
    transform: none !important;
}

.form-privacy-note {
    color: #bdbdbd;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 12px;
}

.contact-panel-pro {
    position: relative;
    overflow: hidden;
}

.contact-panel-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(247, 215, 116, .20), transparent 38%);
    pointer-events: none;
}

.contact-panel-pro > * {
    position: relative;
    z-index: 1;
}

@media(max-width:1050px) {
    .booking-grid-pro {
        grid-template-columns: 1fr;
    }
}

@media(max-width:760px) {
    .booking-form-pro {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .form-header-pro,
    .form-two-columns,
    .form-progress-pro {
        grid-template-columns: 1fr;
    }

    .form-header-pro {
        text-align: center;
    }

    .form-icon-pro {
        margin: 0 auto;
    }

    .form-progress-pro span {
        justify-content: flex-start;
    }

    .booking-form-pro .client-map-box {
        height: 210px;
    }
}

/* =========================================================
   FORMULARIO DE CITAS - AJUSTE VISUAL V2
   Mejora de legibilidad, proporción y presentación del bloque de contacto.
========================================================= */
.booking.section {
    padding-left: 22px;
    padding-right: 22px;
}

.booking .heading {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.booking .heading span {
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 4px;
}

.booking .heading h2 {
    font-size: clamp(2.25rem, 4vw, 3.85rem);
    letter-spacing: -1px;
}

.booking .heading p {
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    line-height: 1.7;
}

.booking-grid.booking-grid-pro {
    width: min(100%, 1240px);
    grid-template-columns: minmax(620px, 1.25fr) minmax(330px, .75fr);
    gap: 30px;
    align-items: start;
}

.booking-form-pro {
    background:
        radial-gradient(circle at top left, rgba(247, 215, 116, .10), transparent 34%),
        linear-gradient(180deg, rgba(18,18,18,.98), rgba(8,8,8,.98));
    border: 1px solid rgba(247, 215, 116, .26);
    box-shadow: 0 30px 80px rgba(0,0,0,.42);
}

.form-header-pro h3 {
    font-size: clamp(1.7rem, 2.4vw, 2.25rem);
    line-height: 1.12;
}

.form-header-pro p,
.booking-form-pro .map-help,
.upload-box-pro small,
.form-privacy-note {
    font-size: 14.5px;
}

.form-progress-pro span {
    min-height: 46px;
    padding: 10px 12px;
}

.form-progress-pro small,
.form-group-pro label {
    font-size: 14px;
}

.booking-form-pro input,
.booking-form-pro textarea,
.booking-form-pro select,
.booking-form-pro .upload-box input[type="file"] {
    min-height: 52px;
    font-size: 15.5px;
    border-radius: 14px;
}

.booking-form-pro textarea {
    min-height: 130px;
    padding: 16px;
}

.booking-form-pro .client-map-box {
    height: 220px;
    border-radius: 18px;
}

.booking-form-pro .map-client-btn,
.booking-form-pro button[type="submit"] {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    letter-spacing: .2px;
}

.upload-box-pro {
    padding: 18px;
    border-radius: 18px;
}

.upload-box-pro .upload-title {
    font-size: 15px;
    margin-bottom: 12px;
}

.contact-panel.contact-panel-pro {
    min-height: auto;
    padding: 34px 28px;
    position: sticky;
    top: 96px;
    border: 1px solid rgba(247, 215, 116, .32);
    box-shadow: 0 30px 75px rgba(0,0,0,.36);
    background:
        linear-gradient(rgba(255,255,255,.93), rgba(255,255,255,.97)),
        url("images/lavado1.png");
    background-size: cover;
    background-position: center;
}

.contact-panel-pro .contact-logo {
    width: 96px;
    height: 96px;
    margin-bottom: 14px;
}

.contact-panel-pro .review-stars {
    font-size: 20px;
    margin-bottom: 14px;
}

.contact-panel-pro h3 {
    font-size: clamp(1.65rem, 2.4vw, 2.25rem);
    color: #a67c10;
}

.contact-panel-pro .contact-intro {
    font-size: 16px;
    line-height: 1.55;
}

.contact-panel-pro .contact-services li {
    font-size: 14.5px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.82);
    border-color: rgba(212,175,55,.45);
}

.contact-panel-pro .contact-actions {
    gap: 10px;
}

.contact-panel-pro .contact-btn {
    padding: 13px 12px;
    font-size: 14px;
}

.contact-panel-pro .contact-info-box {
    padding: 18px 16px;
    border: 1px solid rgba(247, 215, 116, .30);
}

.contact-panel-pro .contact-info-box p {
    font-size: 14.5px;
}

@media(max-width:1100px) {
    .booking-grid.booking-grid-pro {
        grid-template-columns: 1fr;
        max-width: 860px;
    }

    .contact-panel.contact-panel-pro {
        position: relative;
        top: auto;
    }
}

@media(max-width:760px) {
    .booking.section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .booking-grid.booking-grid-pro {
        width: 100%;
    }

    .booking-form-pro {
        padding: 24px 18px;
    }

    .booking-form-pro input,
    .booking-form-pro textarea,
    .booking-form-pro select,
    .booking-form-pro .upload-box input[type="file"] {
        font-size: 15px;
    }

    .contact-panel.contact-panel-pro {
        padding: 30px 20px;
    }

    .contact-panel-pro .contact-actions {
        grid-template-columns: 1fr;
    }
}
