:root {
    color-scheme: light;
    --brand1: #fe420a;
    --brand2: #ff8a2b;
    --ink: #2c3e50;
    --muted: #555;
    --bg: #f8f9fa;
    --panel: #fff;
    --line: #e9ecef;
    --shadow: 0 8px 24px rgba(0, 0, 0, .08);
    --radius: 14px;

    --modal-pad-y: 36px;
    --modal-pad-x: 16px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #f8f9fa;
        --panel: #ffffff;
        --ink: #2c3e50;
        --muted: #555;
        --line: #e9ecef;
    }

    html,
    body {
        background: var(--bg);
        color: #333;
    }

    header {
        background: #fff;
    }

    .services,
    .about,
    .contact {
        background: #fff;
    }

    .map {
        background: var(--bg);
    }

    footer {
        background: #2c3e50;
        color: #fff;
    }

    .service-card,
    .about-card,
    .form-card {
        background: #fff;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, .30) 0%, rgba(0, 0, 0, .45) 100%);
    }

    input,
    select,
    textarea,
    button {
        color-scheme: light;
        background: #fff;
        color: #2c3e50;
    }
}

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

html {
    scroll-behavior: smooth
}

html,
body {
    overflow-x: hidden
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg);
    color: #333;
    line-height: 1.6
}

img,
svg,
iframe {
    max-width: 100%;
    height: auto
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

header {
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 0 10px;
}

.logo-icon img {
    display: block;
    height: clamp(150px, 12vw, 78px);
    width: auto
}

.desktop-nav {
    position: relative;
    display: block !important;
    width: 100%
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    row-gap: 8px;
    margin: 6px 0 2px;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.desktop-nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    letter-spacing: -.1px
}

.desktop-nav a:hover {
    color: var(--brand1)
}

.desktop-nav a.book-now {
    background: linear-gradient(135deg, var(--brand1), var(--brand2));
    color: #fff;
    padding: 8px 14px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0
}

@media (max-width:420px) {
    .container {
        padding: 0 12px;
    }

    .desktop-nav ul {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
    }

    .desktop-nav a {
        font-size: clamp(.74rem, 3.2vw, .88rem);
    }

    .desktop-nav a.book-now {
        font-size: clamp(.86rem, 3.8vw, 1rem);
        padding: 6px 10px;
        border-radius: 10px;
    }
}

@media (max-width:360px) {
    .desktop-nav ul {
        gap: 4px;
    }

    .desktop-nav a {
        font-size: .72rem;
        letter-spacing: -.2px;
    }

    .desktop-nav a.book-now {
        font-size: .84rem;
        padding: 6px 9px;
    }
}

.hero {
    position: relative;
    padding: clamp(80px, 8vw, 120px) 0 clamp(40px, 8vw, 80px)
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, .30) 0%, rgba(0, 0, 0, .45) 100%)
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .8s ease, transform 1.6s ease
}

.hero-bg img.active {
    opacity: 1;
    transform: none
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    text-align: center
}

.hero-title {
    color: #fff;
    font-weight: 800;
    line-height: 1.15;
    font-size: clamp(1.8rem, 5.5vw, 3rem);
    text-wrap: balance;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
    max-width: 900px;
    margin-bottom: 12px
}

.hero-sub {
    color: rgba(255, 255, 255, .92);
    font-size: clamp(1rem, 2.6vw, 1.15rem);
    max-width: 780px;
    margin-bottom: 18px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .28)
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand1), var(--brand2));
    color: #fff;
    padding: 14px 22px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(255, 106, 0, .35)
}

.hero-cta:hover {
    filter: brightness(1.05)
}

section {
    scroll-margin-top: 110px;
}

.section-title {
    text-align: center;
    margin: 0 0 32px;
    color: var(--ink);
    font-size: clamp(1.4rem, 3.2vw, 2rem)
}

.services {
    padding: clamp(44px, 8vw, 80px) 0;
    background: #fff
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

@media (min-width:900px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.service-card {
    background: var(--panel);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .2s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer
}

.service-card:hover {
    transform: translateY(-6px)
}

.service-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #ddd
}

.service-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02)
}

.service-content {
    padding: 16px 18px 20px;
    display: grid;
    gap: 8px
}

.service-content h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1rem, 2.2vw, 1.1rem)
}

.service-content p {
    margin: 0;
    color: #555;
    line-height: 1.5
}

@media (max-width:600px) {
    .service-content p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden
    }

    .service-content p.expanded {
        -webkit-line-clamp: unset;
        display: block
    }
}

.toggle-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-top: 6px;
    border: none;
    border-radius: 8px;
    background: #fff;
    color: var(--brand1);
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
}

.toggle-arrow-btn:focus {
    outline: 2px solid rgba(254, 66, 10, .3);
    outline-offset: 2px
}

.toggle-arrow-btn::after {
    content: '▼';
    font-weight: 900;
    line-height: 1
}

.toggle-arrow-btn[aria-expanded="true"]::after {
    content: '▲'
}

#services .service-card {
    opacity: 0;
    transform: translateY(14px) scale(.98);
    transition: opacity .5s cubic-bezier(.2, .8, .2, 1), transform .5s cubic-bezier(.2, .8, .2, 1)
}

#services .service-card.in {
    opacity: 1;
    transform: none
}

.about {
    padding: clamp(44px, 8vw, 80px) 0;
    background: #fff
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    align-items: center
}

.about-card {
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px
}

.about h3 {
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 10px
}

.about p {
    color: var(--muted)
}

.about-illustration {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow)
}

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

.contact {
    padding: clamp(44px, 8vw, 80px) 0;
    background: #fff
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    align-items: start
}

@media (max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }
}

.form-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px
}

@media (max-width:640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-row.stack {
    grid-template-columns: 1fr
}

.field {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
    min-width: 0
}

label {
    font-weight: 600;
    color: var(--ink);
    font-size: .95rem
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 12px;
    font: inherit;
    color: #222;
    background: #fff;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: #ff7a35;
    box-shadow: 0 0 0 4px rgba(254, 66, 10, .10);
}

.form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 6px
}

@media (max-width:480px) {
    .form-actions .btn {
        width: 100%;
        text-align: center;
    }

    #formStatus {
        width: 100%;
    }
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand1), var(--brand2));
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer
}

.btn.secondary {
    background: #2c3e50
}

.small {
    font-size: .9rem;
    color: var(--muted)
}

.contact-info-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px
}

.contact-list li {
    display: flex;
    align-items: start;
    gap: 10px;
    color: var(--ink);
    word-break: break-word
}

.contact-list a {
    color: var(--ink);
    text-decoration: none
}

.hours {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: grid;
    gap: 8px;
    font-variant-numeric: tabular-nums
}

.hours li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px dashed var(--line);
    padding-bottom: 6px
}

.hours .day {
    color: var(--ink);
    font-weight: 600
}

.hours .time {
    color: var(--muted)
}

/* ============ Map & Footer ============ */
.map {
    padding: clamp(44px, 8vw, 80px) 0;
    background: var(--bg)
}

.map-container {
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #ddd
}

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

footer {
    background: #2c3e50;
    color: #fff;
    padding: 44px 0 22px
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 20px
}

.footer-section h3 {
    margin: 0 0 12px;
    font-size: 1.1rem
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0
}

.contact-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px
}

.social-icons a {
    color: #fff;
    font-size: 20px;
    opacity: .9;
    transition: .2s
}

.social-icons a:hover {
    color: #ffde59;
    transform: translateY(-2px)
}

.copyright {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12)
}

.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #25D366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .5);
    z-index: 50;
    transition: .2s;
    animation: pulse 2s infinite
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.06)
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .7)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, .5);
    padding: var(--modal-pad-y) var(--modal-pad-x);
    transition: background .22s ease;
}

.modal.is-open {
    display: grid;
}

.modal-dialog {
    width: min(680px, 92vw);
    max-height: calc(100vh - (var(--modal-pad-y) * 2));
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    transform: scale(.6);
    opacity: 0;
    transition: transform .22s ease, opacity .22s ease;
}

.modal.is-open .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

.modal.is-closing {
    background: rgba(0, 0, 0, 0);
}

.modal.is-closing .modal-dialog {
    transform: scale(.6);
    opacity: 0;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px 0
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink)
}

.modal-close {
    border: none;
    background: transparent;
    color: #444;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
    border-radius: 8px
}

.modal-close:hover {
    color: #000;
    background: #f3f3f3
}

.modal-body {
    padding: 12px 16px 18px
}

.modal .form-card {
    box-shadow: none;
    padding: 0
}

.modal .form-actions {
    margin-top: 10px
}

@media (max-width:480px) {
    :root {
        --modal-pad-y: 28px;
        --modal-pad-x: 18px;
    }

    .modal-dialog {
        border-radius: 14px;
    }

    .social-icons {
        display: flex;
        gap: 20px;
        margin-top: 10px;
        justify-content: center;
        align-items: center;
    }

    .social-icons a {
        color: #fff;
        font-size: 30px;
        opacity: .9;
        transition: .2s
    }

    .follow {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    .modal,
    .modal-dialog {
        transition: none !important;
    }

    .modal-dialog {
        transform: none !important;
        opacity: 1 !important;
    }
}

#brands {
    padding: 20px 0;
    background: #f8f8f8;
    user-select: none;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: scroll 20s linear infinite;
}

.marquee-content img {
    height: 40px;
    object-fit: contain;
    opacity: 0.9;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.marquee-content img:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}