/* ============================================================
   AUTOPRO GARAGE — STYLESHEET
   Dark Automotive Theme | Red/Orange Accents
   ============================================================ */

/* ──────────────────────────────────────────
   1. CUSTOM PROPERTIES
────────────────────────────────────────── */
:root {
    /* Colors */
    --dark:           #080808;
    --dark-2:         #0f0f0f;
    --dark-3:         #161616;
    --dark-4:         #1e1e1e;
    --charcoal:       #252525;
    --charcoal-2:     #2f2f2f;
    --gray-dark:      #555;
    --gray:           #777;
    --gray-light:     #aaa;
    --white:          #ffffff;
    --white-soft:     #f0f0f0;
    --off-white:      #e8e8e8;

    /* Accent */
    --red:            #e63946;
    --red-dark:       #c1121f;
    --orange:         #ff6b00;
    --orange-dark:    #d45a00;
    --gradient:       linear-gradient(135deg, #e63946 0%, #ff6b00 100%);
    --gradient-soft:  linear-gradient(135deg, rgba(230,57,70,0.15) 0%, rgba(255,107,0,0.15) 100%);

    /* Typography */
    --font-body:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-head:  'Rajdhani', 'Inter', sans-serif;

    /* Spacing */
    --section-py: clamp(5rem, 8vw, 8rem);
    --container:  1260px;
    --gap:        1.5rem;

    /* UI */
    --radius-sm:  6px;
    --radius:     12px;
    --radius-lg:  20px;
    --radius-xl:  32px;
    --shadow-sm:  0 2px 12px rgba(0,0,0,0.35);
    --shadow:     0 6px 30px rgba(0,0,0,0.5);
    --shadow-lg:  0 16px 60px rgba(0,0,0,0.7);

    /* Transitions */
    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --dur:        0.3s;
    --dur-slow:   0.6s;
}

/* ──────────────────────────────────────────
   2. RESET & BASE
────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
}

/* ──────────────────────────────────────────
   3. UTILITY CLASSES
────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: block;
    height: 1px;
    width: 2rem;
    background: var(--red);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ──────────────────────────────────────────
   4. BUTTONS
────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1;
}

.btn-sm  { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn-md  { padding: 0.75rem 1.5rem; }
.btn-lg  { padding: 0.9rem 1.9rem; font-size: 1rem; }
.btn-xl  { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    padding: 0.8rem 1.75rem;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
    filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline-white {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.18);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}
.btn-ghost:hover {
    border-color: var(--red);
    color: var(--red);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ──────────────────────────────────────────
   5. NAVBAR
────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background var(--dur-slow) var(--ease),
                padding var(--dur) var(--ease),
                box-shadow var(--dur-slow) var(--ease);
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.97);
    padding: 0.75rem 0;
    box-shadow: 0 2px 40px rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
    text-decoration: none;
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--red);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: color var(--dur) var(--ease),
                background var(--dur) var(--ease);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width var(--dur) var(--ease);
}
.nav-link:hover,
.nav-link.active {
    color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 1.7rem);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    margin-left: auto;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--dur) var(--ease),
                opacity var(--dur) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ──────────────────────────────────────────
   6. HERO SECTION
────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.03);
    animation: heroScale 12s ease-out forwards;
}
@keyframes heroScale {
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.65) 50%,
        rgba(0,0,0,0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 8rem;
    padding-bottom: 5rem;
    max-width: 800px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(230, 57, 70, 0.15);
    border: 1px solid rgba(230, 57, 70, 0.4);
    color: #f97f89;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(6px);
    animation: fadeDown 0.8s var(--ease) both;
}
.hero-eyebrow i { color: var(--red); }

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.25rem;
    animation: fadeUp 0.8s 0.2s var(--ease) both;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 2.25rem;
    animation: fadeUp 0.8s 0.35s var(--ease) both;
}

.br-desktop { display: none; }
@media (min-width: 640px) { .br-desktop { display: block; } }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeUp 0.8s 0.5s var(--ease) both;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    animation: fadeUp 0.8s 0.65s var(--ease) both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white-soft);
    transition: background var(--dur) var(--ease),
                border-color var(--dur) var(--ease);
}
.trust-badge:hover {
    background: rgba(230,57,70,0.15);
    border-color: rgba(230,57,70,0.4);
}
.trust-badge i {
    color: var(--red);
    font-size: 0.85rem;
}

.hero-scroll-cue {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
    transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.hero-scroll-cue:hover {
    border-color: var(--red);
    color: var(--red);
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ──────────────────────────────────────────
   7. STATS BAR
────────────────────────────────────────── */
.stats-bar {
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 2.75rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 0.5rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }

.stat-num {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-suf {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 0.35rem;
}

/* ──────────────────────────────────────────
   8. SERVICES SECTION — BENTO GRID
────────────────────────────────────────── */
.services {
    background: var(--dark-2);
    padding: var(--section-py) 0;
}

/* ── Grid container ── */
.services-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 232px);
    gap: 1rem;
}

/* ── Base card ── */
.bento-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
}
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ── Tall tile (2 cols × 2 rows) ── */
.bento-card.bento-tall {
    grid-column: span 2;
    grid-row: span 2;
}

/* ── Wide tile (2 cols × 1 row) ── */
.bento-card.bento-wide {
    grid-column: span 2;
}

/* ── Photo-backed tiles (tall featured) ── */
.bento-img {
    position: absolute;
    inset: 0;
}
.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease);
}
.bento-card.bento-tall:hover .bento-img img {
    transform: scale(1.05);
}
.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.55) 45%,
        rgba(0,0,0,0.15) 100%
    );
}

/* ── Content layer for featured cards ── */
.bento-tall .bento-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 1;
}

/* ── Small overlay cards (full image + text on top) ── */
.bento-card.bento-small {
    overflow: hidden;
}
.bento-card.bento-small:hover {
    box-shadow: 0 8px 32px rgba(230,57,70,0.18);
}
.bento-card.bento-small:hover .bento-img img {
    transform: scale(1.06);
}

/* Content pinned to bottom over the image */
.bento-small .bento-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem 1.4rem;
    z-index: 1;
}
.bento-small .bento-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.bento-small .bento-body p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.5;
    margin-bottom: 0.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Wide photo tile (Suspension) ── */
.bento-card.bento-wide .bento-overlay--wide {
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.55) 55%,
        rgba(0,0,0,0.25) 100%
    );
}
.bento-body--wide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    z-index: 1;
}
.bento-wide-text {
    flex: 1;
    min-width: 0;
}
.bento-wide-text h3 {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.35rem;
}
.bento-wide-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
}

/* ── CTA pill variant (used on wide tile) ── */
.bento-cta--pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--gradient);
    color: var(--white) !important;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(230,57,70,0.35);
    transition: filter var(--dur) var(--ease),
                transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease),
                gap var(--dur) var(--ease);
}
.bento-cta--pill:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(230,57,70,0.5);
    gap: 0.65rem;
}

/* ── Icon wrap (shared) ── */
.bento-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    flex-shrink: 0;
    margin-bottom: 1rem;
    transition: background var(--dur) var(--ease);
}

/* tall tile icons */
.bento-tall .bento-icon-wrap {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    margin-bottom: 0.85rem;
}
.bento-tall .bento-icon-wrap i {
    font-size: 1.25rem;
    color: var(--white);
}

/* wide tile icon */
.bento-body--wide .bento-icon-wrap {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    flex-shrink: 0;
    margin-bottom: 0;
}
.bento-body--wide .bento-icon-wrap i {
    font-size: 1.3rem;
    color: var(--white);
}

/* ── Typography ── */
.bento-card h3 {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.45rem;
}

.bento-tall h3  { font-size: 1.5rem; }

.bento-tall p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 32ch;
}

/* ── CTA link ── */
.bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: gap var(--dur) var(--ease);
}
.bento-card.bento-small .bento-cta { color: rgba(255,255,255,0.9); }
.bento-card.bento-tall  .bento-cta { color: rgba(255,255,255,0.9); }
.bento-cta:hover { gap: 0.65rem; }

/* ──────────────────────────────────────────
   9. WHY CHOOSE US — ACCORDION
────────────────────────────────────────── */
.why-us {
    background: var(--dark-3);
    padding: var(--section-py) 0;
}

.why-accordion {
    max-width: 860px;
    margin-inline: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
}

/* ── Each row ── */
.why-item {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.why-item:last-child {
    border-bottom: none;
}

/* Accent bar on the left edge when open */
.why-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s var(--ease);
    z-index: 1;
}
.why-item.open::before {
    transform: scaleY(1);
}

/* ── Clickable header row ── */
.why-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    padding: 1.25rem 1.75rem;
    background: var(--dark-4);
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background var(--dur) var(--ease);
}
.why-header:hover {
    background: var(--charcoal);
}
.why-item.open .why-header {
    background: var(--charcoal);
}

/* ── Icon ── */
.why-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: var(--gradient-soft);
    transition: background var(--dur) var(--ease);
}
.why-icon-wrap i {
    font-size: 1.1rem;
    color: var(--red);
    transition: color var(--dur) var(--ease);
}
.why-item.open .why-icon-wrap {
    background: var(--gradient);
    box-shadow: 0 4px 16px rgba(230,57,70,0.35);
}
.why-item.open .why-icon-wrap i {
    color: var(--white);
}

/* ── Title ── */
.why-header h3 {
    flex: 1;
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

/* ── Arrow chevron ── */
.why-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--charcoal-2);
    color: var(--gray-light);
    font-size: 0.8rem;
    transition: transform 0.4s var(--ease),
                background var(--dur) var(--ease),
                color var(--dur) var(--ease);
}
.why-item.open .why-arrow {
    transform: rotate(180deg);
    background: var(--gradient);
    color: var(--white);
}

/* ── Collapsible body ── */
.why-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--charcoal);
}
.why-item.open .why-body {
    max-height: 160px;
}

.why-body-inner {
    /* left-indent to align text under the title */
    padding: 1rem 1.75rem 1.4rem calc(1.75rem + 44px + 1.25rem);
}
.why-body-inner p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.75;
}

/* ──────────────────────────────────────────
   10. ABOUT SECTION
────────────────────────────────────────── */
.about {
    background: var(--dark-2);
    padding: var(--section-py) 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-img-accent {
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: 2rem;
    bottom: 2rem;
    border: 2px solid var(--red);
    border-radius: var(--radius-lg);
    opacity: 0.25;
    z-index: -1;
}

.about-exp-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(230,57,70,0.45);
    border: 4px solid var(--dark-2);
}

.exp-num {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
}

.exp-label {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.about-content .section-tag {
    margin-bottom: 0.75rem;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.25rem;
}

.about-content p {
    color: var(--gray-light);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin: 1.75rem 0 2rem;
}

.about-feat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white-soft);
}

.about-feat i {
    color: var(--red);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ──────────────────────────────────────────
   11. TESTIMONIALS
────────────────────────────────────────── */
.testimonials {
    background: var(--dark-3);
    padding: var(--section-py) 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testi-card {
    background: var(--dark-4);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
    position: relative;
}
.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(230,57,70,0.12);
    pointer-events: none;
}
.testi-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230,57,70,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.testi-card.featured {
    border-color: rgba(230,57,70,0.3);
    background: linear-gradient(145deg, var(--charcoal) 0%, var(--dark-4) 100%);
    box-shadow: 0 0 0 1px rgba(230,57,70,0.2), 0 8px 32px rgba(230,57,70,0.1);
}

.testi-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: #fbbf24;
    font-size: 0.9rem;
}

.testi-card > p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--c, var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.testi-author span {
    font-size: 0.78rem;
    color: var(--gray);
}

.testi-nav { display: none; }

/* ──────────────────────────────────────────
   12. GALLERY SECTION
────────────────────────────────────────── */
.gallery {
    background: var(--dark-2);
    padding: var(--section-py) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 240px);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.span-2    { grid-column: span 2; }
.gallery-item.row-span-2 { grid-row: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-caption span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ──────────────────────────────────────────
   13. CTA SECTION
────────────────────────────────────────── */
.cta-section {
    position: relative;
    padding: var(--section-py) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.78) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
}

.cta-content .section-tag {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}

.cta-content h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ──────────────────────────────────────────
   14. CONTACT SECTION
────────────────────────────────────────── */
.contact {
    background: var(--dark-2);
    padding: var(--section-py) 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ci-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gradient-soft);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--red);
}

.ci-body h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 0.35rem;
}

.ci-body a,
.ci-body p {
    display: block;
    font-size: 0.9rem;
    color: var(--white-soft);
    line-height: 1.6;
    transition: color var(--dur) var(--ease);
}
.ci-body a:hover { color: var(--red); }

.closed-tag {
    color: var(--red);
    font-weight: 600;
}

/* Booking Form */
.booking-form {
    background: var(--dark-4);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.booking-form h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.booking-form h3 i { color: var(--red); }

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}
.form-group:last-of-type { margin-bottom: 1.25rem; }

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.optional {
    font-weight: 400;
    color: var(--gray);
    text-transform: none;
    letter-spacing: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    transition: border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-dark);
}

.form-group select option {
    background: var(--charcoal);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(230,57,70,0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Map */
.contact-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 560px;
    box-shadow: var(--shadow-lg);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 560px;
    border: none;
    display: block;
    filter: grayscale(20%) invert(0);
}

.map-card {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    background: rgba(15,15,15,0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--white);
}

.map-card i {
    color: var(--red);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.map-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.map-card span {
    font-size: 0.8rem;
    color: var(--gray-light);
}

/* ──────────────────────────────────────────
   15. FOOTER
────────────────────────────────────────── */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand-col > p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-brand {
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--charcoal);
    border-radius: var(--radius-sm);
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: background var(--dur) var(--ease),
                color var(--dur) var(--ease),
                transform var(--dur) var(--ease);
}
.social-link:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links li {
    margin-bottom: 0.65rem;
}
.footer-links a {
    font-size: 0.9rem;
    color: var(--gray);
    transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.footer-links a:hover {
    color: var(--red);
    padding-left: 0.4rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.55;
}
.footer-contact-list i {
    color: var(--red);
    font-size: 0.85rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.footer-contact-list a {
    color: var(--gray);
    transition: color var(--dur) var(--ease);
}
.footer-contact-list a:hover { color: var(--red); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-dark);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a {
    font-size: 0.82rem;
    color: var(--gray-dark);
    transition: color var(--dur) var(--ease);
}
.footer-legal a:hover { color: var(--gray-light); }

/* ──────────────────────────────────────────
   16. FLOATING ACTION BUTTONS
────────────────────────────────────────── */

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    right: 1.75rem;
    bottom: 1.75rem;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.65rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
    animation: fabPulse 3s ease-in-out infinite;
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(37,211,102,0.6);
    animation: none;
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}

.fab-tooltip {
    position: absolute;
    right: calc(100% + 0.75rem);
    white-space: nowrap;
    background: var(--dark-4);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateX(6px);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.whatsapp-fab:hover .fab-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Call FAB (mobile only) */
.call-fab {
    position: fixed;
    left: 1.75rem;
    bottom: 1.75rem;
    z-index: 900;
    display: none;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: var(--gradient);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 6px 24px rgba(230,57,70,0.4);
    transition: transform var(--dur) var(--ease);
}
.call-fab:hover { transform: scale(1.1); }

/* Back To Top */
.back-to-top {
    position: fixed;
    right: 1.75rem;
    bottom: 5.5rem;
    z-index: 899;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--charcoal-2);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity var(--dur) var(--ease),
                transform var(--dur) var(--ease),
                background var(--dur) var(--ease);
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.back-to-top:hover {
    background: var(--gradient);
    border-color: transparent;
}

/* ──────────────────────────────────────────
   17. MODAL
────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-slow) var(--ease);
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: var(--dark-4);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 440px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    transform: scale(0.92) translateY(20px);
    transition: transform var(--dur-slow) var(--ease);
}
.modal-overlay.open .modal {
    transform: scale(1) translateY(0);
}

.modal-icon {
    font-size: 3.5rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.modal h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.modal p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

/* ──────────────────────────────────────────
   18. ANIMATIONS
────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* AOS-style scroll animation classes */
[data-aos] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-aos].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-aos-delay="80"]  { transition-delay: 80ms; }
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="120"] { transition-delay: 120ms; }
[data-aos-delay="160"] { transition-delay: 160ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="240"] { transition-delay: 240ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="360"] { transition-delay: 360ms; }

[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="fade-right"].is-visible { transform: translateX(0); }

[data-aos="fade-left"]  { transform: translateX(32px); }
[data-aos="fade-left"].is-visible  { transform: translateX(0); }

/* ──────────────────────────────────────────
   19. RESPONSIVE — TABLET (≤1024px)
────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 260px 220px 220px 220px 220px;
    }
    .bento-card.bento-tall { grid-column: span 2; grid-row: span 1; }
    .bento-card.bento-wide { grid-column: span 2; }
    .why-body-inner { padding-left: calc(1.75rem + 44px + 1rem); }
    .testi-grid     { grid-template-columns: repeat(2, 1fr); }
    .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .about-layout   { gap: 3rem; }
    .contact-layout { gap: 2.5rem; }
    .stats-grid     { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 900px) {
    .about-layout   { grid-template-columns: 1fr; }
    .about-media img { height: 380px; }
    .about-exp-badge { right: 1rem; bottom: -1rem; }
    .about-img-accent { display: none; }

    .contact-layout { grid-template-columns: 1fr; }
    .contact-map { min-height: 420px; height: 420px; }
    .contact-map iframe { min-height: 420px; height: 420px; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item.span-2 { grid-column: 1 / -1; }
}

/* ──────────────────────────────────────────
   20. RESPONSIVE — MOBILE (≤768px)
────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Nav */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8,8,8,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
    }
    .nav-links.open { transform: translateX(0); }
    .nav-link { font-size: 1.3rem; padding: 0.75rem 1.5rem; }

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

    /* Hero */
    .hero-content { padding-top: 7rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    /* Stats */
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { border-right: 1px solid rgba(255,255,255,0.08); }
    .stat-item:nth-child(2n) { border-right: none; }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

    /* Services bento → horizontal snap slider on mobile */
    .services-bento {
        display: flex;
        flex-direction: row;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
    }
    .services-bento::-webkit-scrollbar { display: none; }

    .bento-card {
        flex: 0 0 100%;
        height: 300px;
        scroll-snap-align: start;
        border-radius: var(--radius-lg);
    }
    .bento-card.bento-tall,
    .bento-card.bento-wide,
    .bento-card.bento-small { height: 300px; }

    /* Wide card: revert to vertical overlay on mobile */
    .bento-body--wide {
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 0.4rem;
    }
    .bento-wide-text p { display: none; }
    .bento-cta--pill { margin-top: 0.25rem; }

    /* Why accordion mobile */
    .why-body-inner { padding-left: 1.25rem; }
    .why-header { padding: 1rem 1.25rem; gap: 1rem; }
    .why-header h3 { font-size: 1rem; }

    /* Testimonials → manual slider on mobile */
    .testi-grid {
        display: flex;
        flex-direction: row;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
    }
    .testi-grid::-webkit-scrollbar { display: none; }
    .testi-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        border-radius: var(--radius-lg);
    }
    .testi-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    .testi-dots {
        display: flex;
        align-items: center;
        gap: 0.45rem;
    }
    .testi-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: width 0.3s var(--ease),
                    border-radius 0.3s var(--ease),
                    background 0.3s var(--ease);
    }
    .testi-dot.active {
        width: 24px;
        border-radius: 4px;
        background: var(--gradient);
    }
    .testi-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--charcoal-2);
        border: 1px solid rgba(255,255,255,0.08);
        color: var(--light);
        font-size: 0.85rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background var(--dur) var(--ease);
        flex-shrink: 0;
    }
    .testi-btn:hover { background: var(--charcoal); }
    .testi-btn:disabled { opacity: 0.3; pointer-events: none; }

    /* Gallery → auto-play slider on mobile */
    .gallery-grid {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
    }
    .gallery-grid::-webkit-scrollbar { display: none; }

    .gallery-item {
        flex: 0 0 100%;
        height: 280px;
        scroll-snap-align: start;
        border-radius: var(--radius);
    }
    /* Reset grid-span classes */
    .gallery-item.span-2,
    .gallery-item.row-span-2 { grid-column: unset; grid-row: unset; }

    /* CTA */
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }

    /* Contact */
    .contact-info-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* FABs */
    .call-fab { display: flex; }
    .whatsapp-fab { right: 1.25rem; bottom: 1.25rem; }
    .back-to-top { right: 1.25rem; bottom: 5rem; }
}

@media (max-width: 480px) {
    .trust-badges { gap: 0.5rem; }
    .trust-badge { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
    .about-features { grid-template-columns: 1fr; }
    .booking-form { padding: 1.5rem; }
    .modal { padding: 2rem 1.5rem; }
}

/* ──────────────────────────────────────────
   21. SERVICES MOBILE SLIDER NAV
────────────────────────────────────────── */
.slider-nav {
    display: none; /* injected by JS only on mobile */
}

@media (max-width: 768px) {
    .slider-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.3s var(--ease),
                border-radius 0.3s var(--ease),
                background 0.3s var(--ease);
}
.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--gradient);
}

.slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--charcoal-2);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.8rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--dur) var(--ease),
                border-color var(--dur) var(--ease);
}
.slider-btn:hover,
.slider-btn:focus-visible {
    background: var(--red);
    border-color: var(--red);
    outline: none;
}
.slider-btn:disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* ──────────────────────────────────────────
   22. GALLERY MOBILE NAV (arrows + dots)
────────────────────────────────────────── */
.gallery-nav {
    display: none;
}
@media (max-width: 768px) {
    .gallery-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    .gallery-dots {
        display: flex;
        align-items: center;
        gap: 0.45rem;
    }
    .gallery-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: width 0.3s var(--ease),
                    border-radius 0.3s var(--ease),
                    background 0.3s var(--ease);
    }
    .gallery-dot.active {
        width: 24px;
        border-radius: 4px;
        background: var(--gradient);
    }
    /* Progress bar inside the active dot */
    .gallery-dot.active::after {
        content: '';
        display: block;
        height: 100%;
        width: 0%;
        background: rgba(255,255,255,0.4);
        border-radius: 4px;
        animation: dotProgress 5s linear forwards;
    }
    @keyframes dotProgress {
        to { width: 100%; }
    }
    .gallery-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--charcoal-2);
        border: 1px solid rgba(255,255,255,0.08);
        color: var(--light);
        font-size: 0.85rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background var(--dur) var(--ease);
        flex-shrink: 0;
    }
    .gallery-btn:hover { background: var(--charcoal); }
    .gallery-btn:disabled { opacity: 0.3; pointer-events: none; }
}

/* ──────────────────────────────────────────
   23. SCROLLBAR STYLING
────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb {
    background: var(--charcoal-2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gray-dark); }

/* ──────────────────────────────────────────
   22. FOCUS STYLES (ACCESSIBILITY)
────────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
}

/* ──────────────────────────────────────────
   23. REDUCED MOTION
────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    [data-aos] { opacity: 1; transform: none; }
}
