/* ═══════════════════════════════════════════════════════════════
   Kamboh Zari Services — styles.css
   Mobile-first · RTL-aware · Dark-mode support
   ═══════════════════════════════════════════════════════════════ */

/* ── Design tokens ───────────────────────────────────────────── */
:root {
    --green:      #1F5E3C;
    --green-dark: #153F28;
    --gold:       #C8A951;
    --gold-light: #e8c96a;
    --cream:      #F7F2E7;
    --brown:      #5C4425;
    --red:        #C8102E;
    --ink:        #232019;
    --text:       #232019;
    --card-bg:    #ffffff;
    --shadow:     rgba(35, 32, 25, 0.12);
    --border:     rgba(92, 68, 37, 0.15);
    --transition: 0.2s ease;
}

[data-theme="dark"] {
    --cream:    #181712;
    --ink:      #F0EBE0;
    --text:     #F0EBE0;
    --card-bg:  #272318;
    --shadow:   rgba(0, 0, 0, 0.4);
    --border:   rgba(200, 169, 81, 0.2);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
    transition: background-color var(--transition), color var(--transition);
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Font switching ──────────────────────────────────────────── */
[data-lang="ur"] body,
[data-lang="ur"] h1,
[data-lang="ur"] h2,
[data-lang="ur"] h3,
[data-lang="ur"] h4,
[data-lang="ur"] p,
[data-lang="ur"] span,
[data-lang="ur"] a,
[data-lang="ur"] li,
[data-lang="ur"] button {
    font-family: 'Gulzar', 'Noto Nastaliq Urdu', serif;
    line-height: 2.0;
}

/* Headings need slightly less but still generous room */
[data-lang="ur"] h1,
[data-lang="ur"] h2,
[data-lang="ur"] h3,
[data-lang="ur"] h4 {
    line-height: 1.85;
    padding-bottom: 0.2em;
    overflow: visible;
}

/* Inline spans inside cards and content areas only — NOT the brand name */
[data-lang="ur"] .card-title,
[data-lang="ur"] .trust-card-title {
    display: block;
    line-height: 1.9;
    padding-block: 0.05em 0.3em;
    overflow: visible;
}

[data-lang="en"] h1,
[data-lang="en"] h2,
[data-lang="en"] h3,
[data-lang="en"] h4 {
    font-family: 'Zilla Slab', serif;
}

[data-lang="en"] p,
[data-lang="en"] span,
[data-lang="en"] a,
[data-lang="en"] li,
[data-lang="en"] button {
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
}

/* ── Focus visible (accessibility) ──────────────────────────── */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ── Performance: skip rendering off-screen sections ─────────── */
.trust-section,
.equipment,
.service-area,
.about-section,
.footer {
    content-visibility: auto;
    /* Give browser a rough size estimate to avoid layout shifts */
    contain-intrinsic-size: 0 500px;
}

/* ── Shared layout helpers ───────────────────────────────────── */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: clamp(1.35rem, 3.5vw, 1.875rem);
    font-weight: 700;
    color: var(--green);
    text-align: center;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .section-title { color: var(--gold); }

.section-sub {
    text-align: center;
    font-size: 1rem;
    opacity: 0.75;
    margin-bottom: 2rem;
}

/* ── Furrow divider ──────────────────────────────────────────── */
.furrow {
    height: 10px;
    background: repeating-linear-gradient(
        90deg,
        var(--brown)  0px,
        var(--brown)  20px,
        transparent   20px,
        transparent   40px
    ),
    linear-gradient(var(--gold), var(--gold));
    border-top:    2px solid var(--brown);
    border-bottom: 2px solid var(--brown);
}

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */
/* ── Header ─────────────────────────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background-color: var(--green);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    overflow: visible;
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    /* Fixed height so everything centres reliably */
    min-height: 64px;
    padding: 0 1.25rem;
    overflow: visible;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex: 1 1 0;
    overflow: visible;
}

.brand-name {
    color: #ffffff;
    font-size: clamp(0.95rem, 2.4vw, 1.25rem);
    font-weight: 700;
    /* Use inline-flex so the element doesn't stretch the flex row height */
    display: inline-block;
    /* Generous line-height for Nastaliq but centred via flex on parent */
    line-height: 1.7;
    white-space: nowrap;
    overflow: visible;
    min-width: 0;
    flex-shrink: 1;
    /* Shift text down slightly to visually centre Nastaliq glyphs */
    position: relative;
    top: 0.1em;
    text-shadow:
        0 0 10px rgba(0,0,0,0.75),
        0 2px 4px rgba(0,0,0,0.65);
}

.controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    min-width: max-content;
}

.logo-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    flex-shrink: 0;
    background: var(--green-dark);
    /* Keep badge centred with text */
    align-self: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 20px;
    padding: 0.35rem 0.875rem;
    height: 34px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    color: #ffffff;
    transition: background-color var(--transition), border-color var(--transition);
    white-space: nowrap;
}

.toggle-btn:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--green-dark);
}

.theme-icon { font-size: 0.95rem; line-height: 1; }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('tractor_1.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(21, 63, 40, 0.88) 0%,
        rgba(31, 94, 60, 0.80) 40%,
        rgba(92, 68, 37, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 2rem 1.25rem;
    max-width: 780px;
    width: 100%;
}

.hero-eyebrow {
    display: inline-block;
    background-color: var(--gold);
    color: var(--green-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-headline {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-subhead {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.92;
    margin-bottom: 2.25rem;
    max-width: 600px;
    /* margin-inline: auto can cause overflow on very narrow screens — use padding instead */
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--red);
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
    box-shadow: 0 4px 18px rgba(200, 16, 46, 0.45);
}

.cta-button:hover,
.cta-button:focus-visible {
    background-color: #a80d27;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200, 16, 46, 0.55);
}



/* ══════════════════════════════════════════════════════════════
   FLEET SHOWCASE — scroll-zoom sticky section
   ══════════════════════════════════════════════════════════════ */

/* Outer scroll container — taller than viewport to create scroll range */
.fleet-section {
    height: 220vh;
    position: relative;
    background-color: var(--green-dark);
    /* Prevent the sticky child from influencing surrounding layout */
    overflow: clip;
}

/* Inner sticky viewport-height panel */
.fleet-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Subtle radial vignette to frame the images */
.fleet-sticky::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 70% at 50% 50%,
        transparent 30%,
        rgba(21, 63, 40, 0.65) 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Heading */
.fleet-header {
    position: relative;
    z-index: 3;
    margin-bottom: 1.5rem;
}

.fleet-title {
    color: var(--gold) !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Stage — the 3 images sit absolutely on top of each other here */
.fleet-stage {
    position: relative;
    width: 100%;
    /* Reserve a fixed visual area; images are absolutely centred inside */
    height: 55vmin;
    max-height: 420px;
    z-index: 1;
}

/* ── Each image wrapper ─────────────────────────────────────── */
.fleet-img-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Start fully stacked at center — JS drives everything from here */
    transform: translate(-50%, -50%) scale(0.45);
    opacity: 0;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.fleet-img {
    width: clamp(180px, 28vw, 340px);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
    border: 2px solid rgba(200, 169, 81, 0.35);
    display: block;
    /* Slightly different sizes per role — set via modifier classes */
}

/* Center image is the visual anchor — slightly larger */
.fleet-img-center {
    width: clamp(200px, 34vw, 400px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.65);
    z-index: 2;
}

.fleet-img-left,
.fleet-img-right {
    width: clamp(160px, 24vw, 290px);
    filter: brightness(0.88);
}

/* Captions below each image */
.fleet-caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: rgba(21, 63, 40, 0.7);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(200, 169, 81, 0.3);
    white-space: nowrap;
    pointer-events: none;
}

/* Scroll hint at bottom of sticky panel */
.fleet-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    z-index: 3;
    animation: fleet-bounce 1.8s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes fleet-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* Fade-out hint once user has scrolled deep enough — toggled by JS */
.fleet-scroll-hint.hidden { opacity: 0; transition: opacity 0.4s ease; }

/* ── Responsive tweaks ─────────────────────────────────────────
   On very small screens reduce stage height so images don't overflow
   ─────────────────────────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════════════
   WHY CHOOSE US — TRUST SECTION
   ══════════════════════════════════════════════════════════════ */
.trust-section {
    padding: 3.5rem 1rem;
    background-color: var(--cream);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.trust-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 1px 6px var(--shadow);
}

.trust-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px var(--shadow); }

.trust-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    display: block;
}

.trust-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .trust-card-title { color: var(--gold); }

.trust-card-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   EQUIPMENT SHOWCASE
   ══════════════════════════════════════════════════════════════ */
.equipment {
    padding: 3.5rem 1rem;
    background-color: var(--cream);
}

/* Remove side padding so cards flush with screen edge on mobile */
.equipment .section-container {
    padding: 0;
}

.equipment .section-title,
.equipment .section-sub {
    padding: 0 1rem;
}

.equipment-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 1rem 1.25rem;
    /* Hide scrollbar visually but keep it functional */
    scrollbar-width: thin;
    scrollbar-color: var(--brown) transparent;
}

.equipment-scroll::-webkit-scrollbar        { height: 5px; }
.equipment-scroll::-webkit-scrollbar-track  { background: transparent; }
.equipment-scroll::-webkit-scrollbar-thumb  { background: var(--brown); border-radius: 4px; }

.equipment-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: var(--card-bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.equipment-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px var(--shadow); }

.card-image {
    width: 100%;
    height: 170px;
    overflow: hidden;
    background: var(--green-dark);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.equipment-card:hover .card-image img { transform: scale(1.04); }

.card-body {
    padding: 1rem;
    overflow: visible;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.25rem;
    line-height: 1.9;
    padding-block: 0.05em 0.3em;
    overflow: visible;
    display: block;
}

[data-theme="dark"] .card-title  { color: var(--gold); }
[data-theme="light"] .card-title { color: var(--green-dark); }

.card-desc {
    font-size: 0.875rem;
    opacity: 0.75;
    line-height: 1.9;
    overflow: visible;
}

.scroll-hint {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 0.25rem;
    padding: 0 1rem;
}

/* ══════════════════════════════════════════════════════════════
   PRICING STRIP
   ══════════════════════════════════════════════════════════════ */
.pricing {
    background-color: var(--gold);
    padding: 2.25rem 1.25rem;
    text-align: center;
}

.pricing-content {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.pricing-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-dark);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.pricing-text {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--green-dark);
    opacity: 0.65;
    margin-bottom: 1.5rem;
}

.pricing-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.25); }

.pricing-btn-call {
    background-color: var(--green);
    color: #ffffff;
}

.pricing-btn-wa {
    background-color: #25D366;
    color: #ffffff;
}

/* ══════════════════════════════════════════════════════════════
   SERVICE AREA
   ══════════════════════════════════════════════════════════════ */
.service-area {
    padding: 3rem 1rem;
    background-color: var(--cream);
}

.area-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
    margin: 1.5rem 0 1rem;
}

.area-chip {
    background-color: var(--green);
    color: #ffffff;
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color var(--transition);
}

.area-chip:hover { background-color: var(--green-dark); }

[data-theme="dark"] .area-chip {
    background-color: var(--green-dark);
    border: 1px solid var(--gold);
}

.area-note {
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.65;
    max-width: 500px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════════════════════ */
.about-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 3.5rem 1.25rem;
    color: #ffffff;
}

.about-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    aspect-ratio: 4 / 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 63, 40, 0.5);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
}

.about-title { color: var(--gold) !important; text-align: start; margin-bottom: 1rem; }

.about-text p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-cta {
    display: inline-block;
    background-color: var(--gold);
    color: var(--green-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform var(--transition), background-color var(--transition);
}

.about-cta:hover { background-color: var(--gold-light); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════
   FLOATING ACTION BUTTONS (FAB)
   ══════════════════════════════════════════════════════════════ */
.fab-stack {
    position: fixed;
    bottom: 1.5rem;
    /* LTR default — script flips this via data-dir */
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 99;
    align-items: center;
}

/* RTL: move to left side */
[dir="rtl"] .fab-stack {
    right: auto;
    left: 1.5rem;
}

.fab {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.fab:hover,
.fab:focus-visible {
    transform: scale(1.12);
    box-shadow: 0 6px 22px rgba(0,0,0,0.45);
}

.fab-whatsapp {
    width: 62px;
    height: 62px;
    background-color: #25D366;
}

.fab-facebook {
    width: 48px;
    height: 48px;
    background-color: #1877F2;
}

.fab-tiktok {
    width: 48px;
    height: 48px;
    background-color: #010101;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
    background-color: var(--green-dark);
    /* Footer bg is always dark green — always use fixed light text, never the theme cream variable */
    color: #F0EBE0;
    padding: 2.5rem 1rem 1.5rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(200,169,81,0.25);
    flex-wrap: wrap;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    flex: 1 1 180px;
    min-width: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(200,169,81,0.25);
}

/* Contact list */
.contact-list { display: flex; flex-direction: column; gap: 0.6rem; }

.contact-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    word-break: keep-all;
}

.contact-label { opacity: 0.7; font-size: 0.85rem; }

.contact-link {
    color: var(--gold-light);
    font-weight: 600;
    transition: color var(--transition);
}

.contact-link:hover { color: #ffffff; text-decoration: underline; }

.contact-wa { color: #69d98c; }

.contact-wa-icon {
    display: inline-flex;
    align-items: center;
    margin-inline-start: 0.35rem;
    vertical-align: middle;
    opacity: 0.9;
    transition: opacity var(--transition), transform var(--transition);
}
.contact-wa-icon:hover { opacity: 1; transform: scale(1.15); }

/* Hours list */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.hours-list li {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hours-list li span:first-child { opacity: 0.7; min-width: max-content; }

.hours-note { color: var(--gold-light); font-size: 0.85rem; }

/* Service area text */
.footer-area-text {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.85;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(200,169,81,0.2);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.copyright { font-size: 0.8rem; opacity: 0.6; }
.footer-made { font-size: 0.8rem; opacity: 0.5; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — large screens (≥ 1024px) — ensure max widths hold
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
    .about-inner      { gap: 3.5rem; }
    .trust-grid       { grid-template-columns: repeat(4, 1fr); }
    .equipment-card   { flex: 0 0 280px; }
    .hero             { min-height: 88vh; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 900px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    /* Section titles */
    .section-title    { font-size: 1.625rem; }

    /* Hero */
    .hero             { min-height: 75vh; }
    .hero-headline    { font-size: clamp(1.6rem, 4vw, 2rem); }
    .hero-subhead     { font-size: clamp(0.95rem, 2vw, 1.1rem); }
    .hero-content     { padding: 2rem 1.5rem; }

    /* Fleet */
    .fleet-section    { height: 200vh; }
    .fleet-stage      { height: 50vmin; max-height: 380px; }

    /* About — single column */
    .about-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image      { max-height: 300px; aspect-ratio: 16/9; }
    .about-title      { text-align: center; }
    .about-text       { text-align: center; }
    .about-text p     { font-size: 0.95rem; }

    /* Trust grid — 2 columns */
    .trust-grid       { grid-template-columns: 1fr 1fr; }

    /* Footer */
    .footer-grid      { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

    /* FAB */
    .fab-stack        { bottom: 1rem; right: 1rem; }
    [dir="rtl"] .fab-stack { right: auto; left: 1rem; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 600px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    /* Base spacing */
    .section-container { padding: 0 0.875rem; }
    .trust-section,
    .equipment,
    .service-area     { padding: 2.5rem 0.875rem; }

    /* Section titles */
    .section-title    { font-size: 1.4rem; }
    .section-sub      { font-size: 0.9rem; margin-bottom: 1.5rem; }

    /* Header */
    .header           { padding: 0; }
    .header-content   { padding: 0 0.875rem; min-height: 56px; }
    .brand-name       { font-size: clamp(0.9rem, 4.5vw, 1.1rem); }
    .toggle-btn       { padding: 0.28rem 0.6rem; font-size: 0.75rem; height: 30px; }
    .logo-badge       { width: 34px; height: 34px; }

    /* Hero */
    .hero             { min-height: 65vh; }
    .hero-content     { padding: 1.5rem 1rem; }
    .hero-headline    { font-size: clamp(1.4rem, 6vw, 1.75rem); }
    .hero-subhead     { font-size: 0.95rem; margin-bottom: 1.75rem; }
    .cta-button       { padding: 0.8rem 1.5rem; font-size: 1rem; width: 100%; max-width: 320px; justify-content: center; }

    /* Fleet */
    .fleet-section    { height: 190vh; }
    .fleet-stage      { height: 55vmin; max-height: 280px; }
    .fleet-header     { margin-bottom: 1rem; }
    .fleet-img-center { width: clamp(140px, 46vw, 210px); }
    .fleet-img-left,
    .fleet-img-right  { width: clamp(100px, 32vw, 155px); }

    /* Trust grid — single column */
    .trust-grid       { grid-template-columns: 1fr; gap: 0.875rem; }
    .trust-card       { padding: 1.25rem 1rem; }
    .trust-icon       { font-size: 1.875rem; }
    .trust-card-title { font-size: 1rem; }
    .trust-card-desc  { font-size: 0.85rem; }

    /* Equipment cards */
    .equipment-card   { flex: 0 0 230px; }
    .card-image       { height: 145px; }
    .card-title       { font-size: 1rem; }
    .card-desc        { font-size: 0.8rem; }

    /* Pricing */
    .pricing          { padding: 1.75rem 1rem; }
    .pricing-text     { font-size: 1.1rem; }
    .pricing-btn      { padding: 0.7rem 1.25rem; font-size: 0.95rem; width: 100%; max-width: 280px; justify-content: center; }

    /* Service area chips */
    .area-chip        { padding: 0.4rem 0.8rem; font-size: 0.82rem; }

    /* About */
    .about-section    { padding: 2.5rem 1rem; }
    .about-inner      { gap: 1.5rem; }
    .about-image      { max-height: 220px; }
    .about-text p     { font-size: 0.9rem; }
    .about-cta        { display: block; text-align: center; }

    /* Footer */
    .footer           { padding: 2rem 0.875rem 1.25rem; }
    .footer-grid      { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom    { flex-direction: column; align-items: center; text-align: center; }
    .footer-tagline   { font-size: 0.9rem; }

    /* FAB */
    .fab-stack        { bottom: 0.875rem; right: 0.875rem; gap: 0.5rem; }
    [dir="rtl"] .fab-stack { right: auto; left: 0.875rem; }
    .fab-whatsapp     { width: 54px; height: 54px; }
    .fab-facebook,
    .fab-tiktok       { width: 42px; height: 42px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Small mobile (≤ 420px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 420px) {
    .hero             { min-height: 60vh; }
    .hero-headline    { font-size: clamp(1.25rem, 7vw, 1.5rem); }
    .hero-subhead     { font-size: 0.88rem; }

    .fleet-section    { height: 180vh; }
    .fleet-stage      { height: 58vmin; max-height: 240px; }
    .fleet-img-center { width: clamp(120px, 48vw, 180px); }
    .fleet-img-left,
    .fleet-img-right  { width: clamp(85px, 33vw, 130px); }

    .equipment-card   { flex: 0 0 200px; }
    .card-image       { height: 130px; }

    .section-title    { font-size: 1.25rem; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Smallest Android (≤ 360px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
    .header           { padding: 0; }
    .header-content   { padding: 0 0.75rem; min-height: 52px; }
    .brand-name       { font-size: clamp(0.8rem, 4vw, 0.95rem); }
    .logo-badge       { width: 32px; height: 32px; }

    .hero             { min-height: 58vh; }
    .hero-headline    { font-size: 1.2rem; }
    .hero-subhead     { font-size: 0.85rem; }
    .cta-button       { padding: 0.7rem 1rem; font-size: 0.9rem; }

    .fleet-section    { height: 170vh; }
    .fleet-img-center { width: clamp(110px, 50vw, 160px); }
    .fleet-img-left,
    .fleet-img-right  { width: clamp(75px, 34vw, 115px); }

    .equipment-card   { flex: 0 0 185px; }
    .card-image       { height: 120px; }

    .trust-card       { padding: 1rem 0.875rem; }
    .section-title    { font-size: 1.15rem; }
    .toggle-btn       { padding: 0.25rem 0.55rem; font-size: 0.7rem; }

    .fab-whatsapp     { width: 48px; height: 48px; }
    .fab-facebook,
    .fab-tiktok       { width: 38px; height: 38px; }
}

/* ══════════════════════════════════════════════════════════════
   PRINT (minimal)
   ══════════════════════════════════════════════════════════════ */
@media print {
    .header, .fab-stack { position: static; }
    .hero               { min-height: auto; }
    .fleet-section      { height: auto; }
    .fleet-sticky       { position: static; height: auto; }
}
