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

:root {
    --saffron: #E8751A;
    --saffron-dark: #C45E0A;
    --saffron-light: #FFF3E8;
    --gold: #D4A017;
    --gold-light: #FFF8E1;
    --maroon: #8B1A1A;
    --midnight: #1a1220;
    --ink: #2d2018;
    --body-text: #4a3728;
    --muted: #7a6258;
    --white: #FFFFFF;
    --off-white: #FDFAF6;
    --border: #e8ddd4;
    --card-bg: rgba(255,255,255,0.95);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.07);
    --shadow-md: 0 6px 28px rgba(0,0,0,0.11);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--ink);
    line-height: 1.7;
    background: var(--off-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    padding: 0.6rem 3rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 3px solid var(--saffron);
    box-shadow: 0 2px 16px rgba(232,117,26,0.10);
}

header.shrink {
    padding: 0.2rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 72px;
    width: auto;
    transition: transform 0.4s ease;
    border-radius: 50%;
    border: 2px solid var(--saffron-light);
}
header.shrink .logo { transform: scale(0.85); }
.logo:hover { transform: scale(1.06); }

.brand-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    color: var(--midnight);
    white-space: nowrap;
    line-height: 1.2;
}
header.shrink .brand-name { font-size: 1rem; }

/* ===== NAV ===== */
nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

nav a {
    margin: 0.2rem 0.5rem;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.93rem;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s;
}

nav a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--saffron);
    transition: width 0.25s ease;
}
nav a:not(.btn):hover::after { width: 100%; }
nav a:not(.btn):hover { color: var(--saffron); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.7rem;
    cursor: pointer;
    color: var(--ink);
    padding: 0.3rem;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 0.5rem 1.4rem;
    border: 2px solid var(--saffron);
    color: var(--saffron);
    background: transparent;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.28s ease;
    display: inline-block;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn.primary {
    background: var(--saffron);
    color: var(--white);
    border-color: var(--saffron);
    box-shadow: 0 3px 14px rgba(232,117,26,0.28);
}

.btn:hover {
    background: var(--saffron-dark);
    color: var(--white);
    border-color: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,117,26,0.32);
}

/* ===== SECTIONS ===== */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(.23,1.01,.32,1), transform 0.7s cubic-bezier(.23,1.01,.32,1);
}
.section.visible { opacity: 1; transform: none; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--midnight);
}

/* Section label / eyebrow */
.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--saffron);
    margin-bottom: 0.6rem;
}

/* ===== HERO ===== */
.hero {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, #fff8f0 0%, #fff 60%);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #f0e0d0;
    padding: 2.5rem 2.5rem 2.5rem 3rem;
    position: relative;
}

.hero::after {
    content: '🪔';
    position: absolute;
    right: 2rem;
    bottom: 1rem;
    font-size: 5rem;
    opacity: 0.06;
    pointer-events: none;
}

.hero img {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    animation: fadeIn 1.1s cubic-bezier(.23,1.01,.32,1) both;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.hero-text {
    max-width: 520px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.1s cubic-bezier(.23,1.01,.32,1) both;
}

.hero-text h2 {
    font-size: 2.4rem;
    margin-bottom: 0.9rem;
    font-family: 'Playfair Display', serif;
    color: var(--midnight);
    line-height: 1.25;
}
.hero-text h2 span { color: var(--saffron); }

.hero-text p {
    margin-bottom: 1.4rem;
    color: var(--body-text);
    font-size: 1rem;
    line-height: 1.8;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: none; }
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 0.8rem;
}

/* ===== ABOUT STRIP ===== */
#about {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    border-radius: 14px;
    padding: 3rem 3rem;
    max-width: 1200px;
    margin: 0 auto 1rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}
#about h2.hero-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    max-width: none;
    animation: none;
}
#about p {
    color: rgba(255,255,255,0.88);
    font-size: 1rem;
    max-width: 720px;
    line-height: 1.8;
}

/* ===== CENTERED IMAGE ===== */
.centered-image {
    max-width: 1200px;
    margin: auto;
    padding: 0 0 2rem;
}
.centered-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

/* ===== GRID / CARDS ===== */
.grid-section-label {
    text-align: center;
    margin-bottom: 0.5rem;
}
.grid-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    text-align: center;
    color: var(--midnight);
    margin-bottom: 0.4rem;
}
.grid-section-sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Desktop: grid layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 0;
}

.card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid var(--border);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(232,117,26,0.14);
}

.card-img-wrap {
    overflow: hidden;
    height: 180px;
}
.card img, .card-img-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.card:hover .card-img-wrap img,
.card:hover > img { transform: scale(1.06); }

.card-body { padding: 1rem 1.1rem 1.2rem; }
.card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--midnight);
    margin-bottom: 0.4rem;
    line-height: 1.4;
}
.card p {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.6;
}

.grid-places-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
    border-radius: 0;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: var(--midnight);
    border-radius: 18px;
    padding: 4rem 3rem;
    max-width: 1200px;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(232,117,26,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.why-section::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(212,160,23,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.why-header {
    text-align: center;
    margin-bottom: 3rem;
}
.why-header .eyebrow { color: var(--gold); }
.why-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    color: var(--white);
    margin-bottom: 0.7rem;
}
.why-header p {
    color: rgba(255,255,255,0.65);
    max-width: 540px;
    margin: auto;
    font-size: 0.96rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.6rem 1.4rem;
    transition: background 0.25s, transform 0.25s;
    text-align: center;
    position: relative;
    z-index: 1;
}
.why-card:hover {
    background: rgba(232,117,26,0.12);
    border-color: rgba(232,117,26,0.3);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.4rem;
    margin-bottom: 0.9rem;
    display: block;
}
.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.why-card p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
}

/* ===== HERITAGE ===== */
.heritage-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
    justify-content: space-between;
}
.heritage-text { flex: 1 1 300px; }
.heritage-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--midnight);
}
.heritage-text p { color: var(--body-text); margin-bottom: 1rem; }

.heritage-image {
    flex: 1 1 300px;
    width: 100%;
    max-width: 500px;
    border-radius: 14px;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-md);
}
.heritage-image:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.stats-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.2rem;
}
.stat {
    background: var(--white);
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--midnight);
    box-shadow: var(--shadow-sm);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    border-left: 4px solid var(--saffron);
    line-height: 1.4;
}
.stat span {
    font-size: 1.3rem;
    color: var(--saffron);
}
.stat:hover {
    background: var(--saffron-light);
    transform: translateX(5px);
}

/* ===== CONTACT + ENQUIRY ===== */
.contact-enquiry-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.contact-info-group {
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact {
    text-align: left;
    background: var(--white);
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--saffron);
    transition: box-shadow 0.2s;
}
.contact:hover { box-shadow: var(--shadow-md); }
.contact div:first-child { font-size: 1.5rem; margin-bottom: 0.3rem; }
.contact h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-family: 'Playfair Display', serif;
    color: var(--midnight);
}
.contact p { font-size: 0.9rem; color: var(--muted); }

/* ===== ENQUIRY FORM ===== */
.enquiry-form-container {
    flex: 1 1 320px;
    background: var(--white);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 4px 28px rgba(232,117,26,0.10);
    border: 1px solid #f0e0d0;
}
.enquiry-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--midnight);
    margin-bottom: 0.3rem;
}
.enquiry-subtitle {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 1.4rem;
}
.enquiry-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--body-text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.6rem 0.9rem;
    border: 1.5px solid #e0d4c8;
    border-radius: 7px;
    font-size: 0.92rem;
    font-family: 'Open Sans', sans-serif;
    color: var(--ink);
    background: var(--off-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(232,117,26,0.12);
    background: var(--white);
}
.enquiry-submit {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    margin-top: 0.3rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
}
.enquiry-success {
    margin-top: 0.7rem;
    padding: 0.7rem 1rem;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 7px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--gold-light); border-radius: 18px; }
.testimonials-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.4rem;
    color: var(--midnight);
}
.testimonials-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--muted);
}
.testimonial-slider {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.testimonial-slider::-webkit-scrollbar { display: none; }
.testimonial-card {
    flex: 0 0 min(88%, 400px);
    background: var(--white);
    padding: 1.6rem;
    border-radius: 12px;
    scroll-snap-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--saffron);
    transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    display: block;
}
.testimonial-card h3 { display: none; }
.testimonial-card > p {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--body-text);
    line-height: 1.75;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 400;
}
.profile {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 0.9rem;
}
.profile img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--saffron);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--midnight);
    color: #ccd0d9;
    padding: 0;
    margin-top: 3rem;
}
.footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 3rem 2rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-brand { flex: 1 1 260px; max-width: 340px; }
.footer-logo-name {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 0.14em;
    color: var(--white);
    display: block;
    margin-bottom: 0.8rem;
}
.footer-tagline { font-size: 0.88rem; color: #9aa3b2; line-height: 1.65; }
.footer-col { flex: 1 1 180px; }
.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--saffron);
    display: inline-block;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: #9aa3b2; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--saffron); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.fc-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; }
.fc-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.07em; color: #6b7583; margin-bottom: 2px; font-weight: 600; }
.fc-value, .fc-value a { font-size: 0.88rem; color: #ccd0d9; text-decoration: none; line-height: 1.5; }
.footer-contact-list a.fc-value:hover { color: var(--saffron); }
.footer-bottom { border-top: 1px solid #1e2a3a; text-align: center; padding: 1rem 2rem; font-size: 0.82rem; color: #5a6476; }

/* ===== SCROLL TO TOP ===== */
#scrollTopBtn {
    position: fixed;
    bottom: 110px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: var(--saffron);
    color: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 14px rgba(232,117,26,0.35);
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 2000;
}
#scrollTopBtn.show { opacity: 1; pointer-events: auto; }

/* ===== CALL NOW BUTTON ===== */
.cta-call-row { margin-top: 0.8rem; }
.call-now-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white) !important;
    border: none !important;
    padding: 0.6rem 1.8rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    letter-spacing: 0.03em;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.call-now-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(37,211,102,0.45);
    background: linear-gradient(135deg, #128c7e, #075e54);
    color: var(--white);
}

/* ===== FLOATING ACTION BUTTONS ===== */
.fab-container {
    position: fixed;
    bottom: 28px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1900;
    padding: 0 18px;
}
.fab {
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(0,0,0,0.22);
    transition: transform 0.2s, box-shadow 0.2s;
    gap: 2px;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }
.fab-phone { background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); }
.fab-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.fab-label { font-size: 0.58rem; font-weight: 700; color: var(--white); letter-spacing: 0.04em; text-transform: uppercase; line-height: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .heritage-layout { flex-direction: column-reverse; }
    .heritage-image { max-width: 100%; }
    .stats-vertical { flex-direction: row; flex-wrap: wrap; }
    .stat { flex: 1 1 140px; }
}

@media (max-width: 768px) {
    header {
        padding: 0.6rem 1.2rem;
        flex-wrap: nowrap;
    }
    .brand-name { font-size: 1rem; }
    .nav-toggle { display: block; }
    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.8rem 1.2rem 1rem;
        border-top: 1px solid #eee;
        margin-top: 0.5rem;
        background: var(--white);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 6px 20px rgba(0,0,0,0.10);
        z-index: 999;
    }
    nav.open { display: flex; }
    nav a { width: 100%; padding: 0.5rem 0; margin: 0.1rem 0; font-size: 1rem; border-bottom: 1px solid #f0f0f0; }
    nav a.btn { border: 2px solid var(--saffron); padding: 0.5rem 1rem; margin-top: 0.5rem; text-align: center; border-radius: 6px; }
    header { flex-wrap: wrap; }
    .logo-container { flex: 1; }
    .hero { flex-direction: column; padding: 1.5rem; }
    .hero img { max-width: 100%; }
    .hero-text h2 { font-size: 1.75rem; }
    .contact-enquiry-layout { flex-direction: column; }
    .contact { text-align: center; border-left: none; border-top: 4px solid var(--saffron); }
    .section { padding: 2.5rem 1.2rem; }
    .section-title { font-size: 1.6rem; }

    /* ===== MOBILE HORIZONTAL SCROLL FOR GRIDS ===== */
    .grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 0.8rem;
        scrollbar-width: none;
        margin-left: -1.2rem;
        margin-right: -1.2rem;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
    .grid::-webkit-scrollbar { display: none; }
    .grid .card {
        flex: 0 0 72vw;
        max-width: 280px;
        scroll-snap-align: start;
        min-width: 220px;
    }

    .why-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 0.8rem;
        scrollbar-width: none;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .why-grid::-webkit-scrollbar { display: none; }
    .why-card {
        flex: 0 0 72vw;
        max-width: 260px;
        scroll-snap-align: start;
    }

    .footer-inner { flex-direction: column; gap: 2rem; padding: 2rem 1.2rem 1.5rem; }
    .footer-brand { max-width: 100%; }
    .why-section { padding: 2.5rem 1.2rem; border-radius: 12px; }
    #about { padding: 2rem 1.5rem; }
}

@media (max-width: 540px) {
    .brand-name { font-size: 0.85rem; letter-spacing: 0.06em; }
    .hero-text h2 { font-size: 1.5rem; }
    .stats-vertical { flex-direction: column; }
    .stat { font-size: 0.93rem; padding: 0.7rem 1.2rem; }
    .enquiry-form-container { padding: 1.3rem; }
    .fab-container { bottom: 16px; padding: 0 12px; }
    .fab { width: 54px; height: 54px; }
    #scrollTopBtn { bottom: 90px; right: 16px; width: 40px; height: 40px; font-size: 1.1rem; }
    .centered-image img { height: 220px; }
}

/* Scroll hint indicator for mobile grids */
.scroll-hint {
    display: none;
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}
@media (max-width: 768px) {
    .scroll-hint {
        display: block;
        color: var(--saffron);
        opacity: 0.75;
        font-size: 0.72rem;
        font-weight: 600;
    }
}