/* ============================================================
   Lash & Hair Vainilla — Stylesheet
   Paleta: Negro · Dorado · Blanco | Ultra elegante
   ============================================================ */

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --black:       #090909;
    --deep-black:  #050505;
    --dark:        #111111;
    --gold:        #c9a84c;
    --gold-lt:     #e6cb7e;
    --gold-dk:     #9a7a2e;
    --white:       #ffffff;
    --off-white:   #f5f0eb;
    --gray:        #888888;
    --gray-lt:     #c0c0c0;

    --font-serif:  'Playfair Display', Georgia, serif;
    --font-body:   'Raleway', sans-serif;
    --font-fine:   'Cormorant Garamond', Georgia, serif;

    --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --trans:       0.4s var(--ease);

    --nav-h:       80px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* ===== REUSABLE UTILITIES ===== */
.gold-line {
    width: 55px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 18px auto 0;
}

.section-tag {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 18px;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-desc {
    font-size: 0.88rem;
    color: var(--gray);
    max-width: 520px;
    margin: 16px auto 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
    color: var(--black);
    padding: 15px 38px;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: 0.65s var(--ease);
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 45px rgba(201,168,76,0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
    padding: 15px 38px;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--trans);
}
.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    transition: var(--trans);
    animation: pulseGreen 2.8s infinite;
}
.float-wa i { font-size: 1.5rem; color: var(--white); }
.float-wa:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 16px 50px rgba(37,211,102,0.65);
    animation: none;
}
.float-wa-tooltip {
    position: absolute;
    right: 68px;
    background: var(--dark);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--white);
    padding: 7px 14px;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--trans);
    pointer-events: none;
}
.float-wa:hover .float-wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulseGreen {
    0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
    50%      { box-shadow: 0 6px 28px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--trans);
}
nav.scrolled {
    background: rgba(5,5,5,0.96);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    height: 64px;
    border-bottom: 1px solid rgba(201,168,76,0.18);
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    transition: var(--trans);
}
.nav-logo:hover { color: var(--gold-lt); }
.logo-amp { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    color: rgba(255,255,255,0.82);
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--trans);
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: var(--trans);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, var(--gold-dk), var(--gold)) !important;
    color: var(--black) !important;
    padding: 10px 26px !important;
    font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    box-shadow: 0 8px 28px rgba(201,168,76,0.4);
    transform: translateY(-1px);
    color: var(--black) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    transition: var(--trans);
}
.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: var(--trans);
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.8px, 4.8px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.8px, -4.8px); }

/* Mobile full-screen menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu nav {
    position: static;
    height: auto;
    padding: 0;
    flex-direction: column;
    gap: 0;
    border-bottom: none;
    background: none;
    backdrop-filter: none;
    display: flex;
    align-items: center;
}
.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--white);
    padding: 14px 0;
    transition: var(--trans);
    display: flex;
    align-items: center;
    gap: 12px;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-wa { color: var(--gold) !important; }
.mobile-close {
    position: absolute;
    top: 24px; right: 28px;
    color: var(--gray);
    font-size: 1.4rem;
    transition: var(--trans);
}
.mobile-close:hover { color: var(--gold); }
.mobile-menu-deco {
    position: absolute;
    bottom: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.08);
    pointer-events: none;
}

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

/* Fixed parallax layer — stays static as user scrolls */
.hero-parallax {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    background-image: url('1.png');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    will-change: transform;
}

/* Cloudy / misty overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        /* bottom fade to page bg */
        linear-gradient(to bottom,
            rgba(5,5,5,0.35) 0%,
            rgba(5,5,5,0.18) 25%,
            rgba(5,5,5,0.22) 50%,
            rgba(5,5,5,0.55) 78%,
            rgba(5,5,5,0.92) 100%),
        /* subtle vignette sides */
        radial-gradient(ellipse at center,
            transparent 40%,
            rgba(5,5,5,0.5) 100%);
    /* gentle blur creates the "nublada" / cloudy feel */
    backdrop-filter: blur(1.8px);
    -webkit-backdrop-filter: blur(1.8px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    animation: fadeUp 1.3s var(--ease) both;
}

.hero-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--gold-lt);
    font-weight: 400;
    margin-bottom: 22px;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 9vw, 7.5rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 4px;
    text-shadow: 0 6px 40px rgba(0,0,0,0.6);
    margin-bottom: 22px;
}
.title-amp {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-family: var(--font-fine);
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    margin-bottom: 52px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.38);
    font-size: 0.58rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    animation: bounce 2.2s ease-in-out infinite;
}
.hero-scroll i { color: var(--gold); font-size: 0.9rem; }

@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(9px); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(45px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== MARQUEE STRIP ===== */
.strip {
    position: relative;
    z-index: 10;
    background: linear-gradient(90deg, var(--gold-dk), var(--gold) 30%, var(--gold-lt) 60%, var(--gold));
    padding: 11px 0;
    overflow: hidden;
}
.strip-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}
.strip-item {
    font-size: 0.6rem;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 700;
    padding: 0 32px;
}
.strip-sep {
    font-size: 0.55rem;
    color: rgba(0,0,0,0.55);
    align-self: center;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===== SERVICES SECTION ===== */
#services {
    background: var(--deep-black);
    padding: 120px 44px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    max-width: 1220px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: pointer;
}
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.75s var(--ease), filter 0.75s var(--ease);
    filter: brightness(0.72) saturate(0.88);
}
.service-card:hover img {
    transform: scale(1.07);
    filter: brightness(0.55) saturate(0.8);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,5,5,0.92) 0%,
        rgba(5,5,5,0.45) 38%,
        transparent 65%
    );
    transition: var(--trans);
}
.service-card:hover .service-overlay {
    background: linear-gradient(
        to top,
        rgba(5,5,5,0.97) 0%,
        rgba(5,5,5,0.65) 45%,
        rgba(5,5,5,0.2) 70%
    );
}

.service-num {
    position: absolute;
    top: 22px; right: 26px;
    font-family: var(--font-fine);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(201,168,76,0.55);
}

.service-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 36px 32px;
}

.service-icon {
    display: block;
    font-size: 1.7rem;
    color: var(--gold);
    margin-bottom: 10px;
    transition: var(--trans);
}
.service-card:hover .service-icon { transform: scale(1.1); }

.service-tag {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 9px;
}

.service-name {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.3vw, 1.85rem);
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0;
}

.service-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.75;
    font-weight: 300;
    margin-top: 14px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.55s var(--ease), opacity 0.55s ease;
}
.service-card:hover .service-desc {
    max-height: 90px;
    opacity: 1;
}

/* ===== ABOUT SECTION ===== */
#about {
    background: var(--black);
    padding: 130px 44px;
}

.about-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: center;
}

/* Visual / image side */
.about-visual { position: relative; }

.about-frame {
    position: relative;
}
/* Double border art-deco frame */
.about-frame::before {
    content: '';
    position: absolute;
    top: -14px; left: -14px;
    right: 14px; bottom: 14px;
    border: 1px solid rgba(201,168,76,0.35);
    pointer-events: none;
    z-index: 0;
}
.about-frame::after {
    content: '';
    position: absolute;
    bottom: -14px; right: -14px;
    top: 14px; left: 14px;
    border: 1px solid rgba(201,168,76,0.12);
    pointer-events: none;
    z-index: 0;
}
.about-frame img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    object-position: top center;
    position: relative;
    z-index: 1;
    filter: grayscale(12%) contrast(1.04);
}

.about-badge {
    position: absolute;
    bottom: 28px;
    right: -24px;
    z-index: 2;
    background: linear-gradient(135deg, var(--gold-dk), var(--gold));
    color: var(--black);
    padding: 20px 24px;
    text-align: center;
    min-width: 110px;
}
.badge-num {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}
.badge-text {
    font-size: 0.58rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-top: 5px;
    line-height: 1.5;
}

/* Text side */
.about-text .section-tag { text-align: left; }
.about-text .section-title { text-align: left; }

.about-p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.95;
    font-weight: 300;
    margin-bottom: 20px;
}

.about-name {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    margin-top: 28px;
    display: block;
}

.about-role {
    font-size: 0.62rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 400;
    margin-top: 5px;
    display: block;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    display: block;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 7px;
}
.stat-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 400;
}

/* ===== CONTACT SECTION ===== */
#contact {
    padding: 145px 40px;
    background: var(--deep-black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 68%);
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.whatsapp-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(135deg, #1ebe5d, #128c7e);
    color: var(--white);
    padding: 20px 60px;
    font-size: 0.76rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 700;
    transition: var(--trans);
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}
.whatsapp-main-btn i { font-size: 1.5rem; }
.whatsapp-main-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: 0.7s var(--ease);
}
.whatsapp-main-btn:hover::after { transform: translateX(100%); }
.whatsapp-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 65px rgba(30,190,93,0.45);
}

.contact-number {
    display: block;
    font-family: var(--font-fine);
    font-size: 1.05rem;
    color: rgba(255,255,255,0.28);
    letter-spacing: 5px;
    margin-top: 26px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--deep-black);
    border-top: 1px solid rgba(201,168,76,0.12);
    padding: 70px 48px 30px;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto 55px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 65px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 14px;
}
.footer-logo span { color: var(--gold); }

.footer-desc {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.85;
    font-weight: 300;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.6rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.footer-links a {
    color: var(--gray);
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    font-weight: 300;
    transition: var(--trans);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links i { font-size: 0.9rem; }

.footer-bottom {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1.2px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 38px; height: 38px;
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.85rem;
    transition: var(--trans);
}
.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.07);
    transform: translateY(-2px);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.28s; }
.reveal-d4 { transition-delay: 0.38s; }

/* ===== RESPONSIVE — TABLET (≤1024px) ===== */
@media (max-width: 1024px) {
    nav { padding: 0 28px; }

    .about-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    .about-visual { max-width: 480px; margin: 0 auto; }
    .about-badge { right: -12px; }
    .about-text .section-tag,
    .about-text .section-title { text-align: center; }
    .stat-item { text-align: center; }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand { grid-column: 1 / -1; }
}

/* ===== RESPONSIVE — MOBILE (≤768px) ===== */
@media (max-width: 768px) {
    :root { --nav-h: 62px; }

    nav { padding: 0 22px; }
    nav.scrolled { height: 58px; }

    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* Hero: disable CSS fixed on mobile (iOS bug) */
    .hero-parallax {
        position: absolute;
        background-attachment: scroll;
    }

    #hero { height: 100svh; }

    .hero-title { letter-spacing: 2px; }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 310px;
        justify-content: center;
    }

    #services { padding: 80px 18px; }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }
    .service-card { aspect-ratio: 3 / 4; }
    /* Always show desc on mobile (no hover) */
    .service-desc { max-height: 80px; opacity: 1; }
    .service-content { padding: 28px 22px; }

    #about { padding: 80px 22px; }
    .about-frame img { height: 420px; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }

    #contact { padding: 90px 22px; }
    .whatsapp-main-btn {
        padding: 18px 30px;
        width: 100%;
        max-width: 360px;
    }

    footer { padding: 55px 22px 28px; }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-brand { grid-column: auto; }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .float-wa { bottom: 20px; right: 18px; width: 54px; height: 54px; }
}

/* ===== RESPONSIVE — SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
    .hero-eyebrow { font-size: 0.58rem; letter-spacing: 4px; }
    .section-title { font-size: 1.8rem; }

    .about-frame img { height: 340px; }
    .about-badge {
        right: 0; bottom: 12px;
        padding: 14px 18px;
    }
    .badge-num { font-size: 1.8rem; }
    .about-stats { grid-template-columns: 1fr; gap: 18px; }
    .stat-item { display: flex; align-items: center; gap: 16px; }
    .stat-num { font-size: 1.7rem; }
}
