:root {
    --black: #11110f;
    --charcoal: #1c1c18;
    --gold: #c89b3c;
    --gold-light: #e4c778;
    --green: #1f5c43;
    --cream: #f7f3e9;
    --soft: #f5f4ef;
    --white: #ffffff;
    --text: #24231f;
    --muted: #6e6b62;
    --border: rgba(17, 17, 15, 0.12);
    --shadow: 0 24px 70px rgba(17, 17, 15, 0.12);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1200px;
    --transition: 260ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "Manrope", system-ui, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}
body.rtl { font-family: "Noto Kufi Arabic", "Manrope", sans-serif; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--black); color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 9999; background: var(--gold); padding: 10px 16px; }
.skip-link:focus { top: 20px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.16; letter-spacing: -0.03em; }
.rtl h1, .rtl h2, .rtl h3 { letter-spacing: 0; }
h1 { font-size: clamp(2.7rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
h3 { font-size: 1.2rem; }
p { color: var(--muted); }
.lead { font-size: 1.18rem; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--green);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.rtl .eyebrow { letter-spacing: 0; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--gold-light); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { min-height: 40px; padding-inline: 18px; font-size: .88rem; }
.btn-lg { min-height: 56px; padding-inline: 30px; }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--black); box-shadow: 0 12px 30px rgba(200, 155, 60, .28); }
.btn-gold:hover { box-shadow: 0 16px 38px rgba(200, 155, 60, .38); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-outline-dark { border-color: var(--black); color: var(--black); background: transparent; }
.btn-outline-light { border-color: rgba(255,255,255,.55); color: var(--white); background: rgba(255,255,255,.04); }
.btn-outline-light:hover { background: var(--white); color: var(--black); }
.btn-whatsapp { background: #25d366; color: #07150b; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-weight: 800; }
.text-link span { transition: transform var(--transition); }
.text-link:hover span { transform: translate(3px, -3px); }
.rtl .text-link:hover span { transform: translate(-3px, -3px); }

.topbar { background: var(--black); color: rgba(255,255,255,.78); font-size: .78rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-contact { display: flex; align-items: center; gap: 10px; }
.topbar a:hover { color: var(--gold-light); }
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(17,17,15,.08); border-color: var(--border); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 13px; min-width: 220px; }
.brand img { width: 54px; height: 54px; object-fit: contain; border-radius: 10px; }
.brand-text { display: grid; line-height: 1.18; }
.brand-text strong { font-size: .98rem; }
.brand-text small { color: var(--muted); font-size: .7rem; margin-top: 5px; }
.primary-nav { display: flex; align-items: center; gap: 26px; }
.primary-nav > a:not(.btn) { position: relative; font-size: .88rem; font-weight: 750; }
.primary-nav > a:not(.btn)::after { content: ""; position: absolute; inset-inline: 0; bottom: -9px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); }
.primary-nav > a:not(.btn):hover::after, .primary-nav > a.active::after { transform: scaleX(1); }
.language-switch { color: var(--green); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--soft); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span:not(.sr-only) { width: 20px; height: 2px; background: var(--black); }

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - 120px));
    display: grid;
    align-items: center;
    background: var(--black) var(--hero-image) center/cover no-repeat;
    color: var(--white);
    isolation: isolate;
}
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.58) 52%, rgba(0,0,0,.26) 100%); }
.rtl .hero-overlay { background: linear-gradient(270deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.58) 52%, rgba(0,0,0,.26) 100%); }
.hero-content { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; padding-block: 110px; }
.hero-copy { max-width: 780px; }
.hero-kicker { display: inline-block; color: var(--gold-light); font-weight: 800; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; margin-bottom: 25px; }
.rtl .hero-kicker { letter-spacing: 0; }
.hero h1 { margin-bottom: 24px; text-wrap: balance; }
.hero p { max-width: 670px; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-badge { width: 176px; height: 176px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; display: grid; place-content: center; text-align: center; background: rgba(17,17,15,.55); backdrop-filter: blur(12px); flex: 0 0 auto; }
.hero-badge strong { font-size: 2.25rem; color: var(--gold-light); }
.hero-badge span { font-weight: 800; }
.hero-badge small { color: rgba(255,255,255,.7); }

.trust-strip { background: var(--cream); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 110px; padding: 24px; display: flex; align-items: center; gap: 16px; border-inline-end: 1px solid var(--border); }
.trust-grid > div:last-child { border-inline-end: 0; }
.trust-grid span { color: var(--gold); font-size: .75rem; font-weight: 800; }
.trust-grid strong { font-size: .9rem; }

.section-heading { margin-bottom: 48px; max-width: 830px; }
.section-heading h2 { margin-bottom: 0; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.split-heading p { margin-bottom: 18px; }
.centered { text-align: center; margin-inline: auto; }
.centered .eyebrow { justify-content: center; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-grid-home { grid-template-columns: repeat(4, 1fr); }
.product-card { overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(200,155,60,.45); }
.product-image { aspect-ratio: 1 / 1.05; padding: 24px; background: linear-gradient(180deg, #fbfaf6, #f0ece2); display: grid; place-items: center; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform 500ms ease; }
.product-card:hover .product-image img { transform: scale(1.04); }
.product-body { padding: 24px; }
.product-body h2, .product-body h3 { margin: 8px 0 12px; }
.product-origin { color: var(--green); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.rtl .product-origin { letter-spacing: 0; }
.product-body p { margin-bottom: 0; }
.product-meta { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; margin: 16px 0; border-block: 1px solid var(--border); }
.product-card.large .product-body { padding: 28px; }

.split-media { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-media-reverse .split-copy { order: -1; }
.split-image { position: relative; border-radius: 28px; overflow: hidden; min-height: 520px; background: #24241f; }
.split-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split-image:not(.wide) img { object-fit: contain; padding: 25px; }
.image-caption { position: absolute; inset-inline-start: 24px; bottom: 24px; display: grid; padding: 18px 22px; border-radius: var(--radius-sm); background: rgba(17,17,15,.78); backdrop-filter: blur(12px); }
.image-caption strong { color: var(--gold-light); }
.image-caption span { color: rgba(255,255,255,.75); font-size: .82rem; }
.split-copy h2 { margin-bottom: 24px; }
.split-copy p { font-size: 1.02rem; }
.section-dark .split-copy p { color: rgba(255,255,255,.68); }
.warehouse-feature .split-image { min-height: 430px; }

.why-section { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.why-card { padding: 34px 28px; border-inline-end: 1px solid var(--border); }
.why-card:last-child { border-inline-end: 0; }
.why-card > span { color: var(--gold); font-weight: 800; font-size: .78rem; }
.why-card h3 { margin: 38px 0 14px; }
.why-card p { margin-bottom: 0; font-size: .92rem; }

.enquiry-section { background: linear-gradient(135deg, #f7f3e9, #eef4ef); }
.enquiry-panel { display: grid; grid-template-columns: .8fr 1.2fr; border-radius: 30px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.enquiry-copy { padding: 56px; background: var(--black); color: var(--white); }
.enquiry-copy p { color: rgba(255,255,255,.7); }
.contact-mini-list { display: grid; gap: 14px; margin-top: 32px; }
.contact-mini-list a { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.88); }
.contact-mini-list span { color: var(--gold-light); }
.enquiry-form { padding: 54px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 9px; }
.field-full { grid-column: 1 / -1; }
.field > span { font-size: .84rem; font-weight: 800; }
.field em { color: #b13e2e; font-style: normal; }
.field input, .field textarea { width: 100%; border: 1px solid var(--border); border-radius: 13px; background: #fbfbf8; color: var(--text); padding: 14px 16px; outline: none; transition: border-color var(--transition), box-shadow var(--transition), background var(--transition); }
.field input { min-height: 50px; }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(200,155,60,.13); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 24px; }
.form-footer p { margin: 0; max-width: 390px; font-size: .78rem; }
.form-alert { margin-bottom: 22px; padding: 16px 18px; border-radius: var(--radius-sm); background: #fff1ee; color: #7b241d; border: 1px solid #f1c0ba; }
.form-alert ul { margin: 8px 0 0; padding-inline-start: 20px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.page-hero { position: relative; min-height: 470px; display: grid; align-items: end; background: var(--black) var(--hero-image) center/cover no-repeat; color: var(--white); isolation: isolate; }
.page-hero.compact { min-height: 390px; }
.page-hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.83)); }
.page-hero-content { padding-block: 80px; max-width: 900px; }
.page-hero h1 { margin-bottom: 18px; font-size: clamp(2.7rem, 5vw, 5rem); }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.76); font-size: 1.05rem; }

.content-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.content-main { max-width: 720px; }
.content-aside { border-radius: 28px; overflow: hidden; background: var(--cream); min-height: 420px; }
.content-aside img { width: 100%; height: 100%; min-height: 420px; object-fit: contain; padding: 25px; }
.warehouse-content .content-aside img { object-fit: cover; padding: 0; }
.company-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.company-card { padding: 34px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); }
.company-mark { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; background: var(--black); color: var(--gold-light); font-size: 1.4rem; font-weight: 800; margin-bottom: 28px; }
.company-card dl { margin: 24px 0 0; }
.company-card dl div { display: flex; justify-content: space-between; gap: 25px; padding: 13px 0; border-top: 1px solid var(--border); }
.company-card dt { color: var(--muted); }
.company-card dd { margin: 0; font-weight: 800; }
.banner-callout { display: flex; align-items: center; justify-content: space-between; gap: 45px; padding: 44px; border-radius: var(--radius); background: var(--cream); }
.banner-callout > div { max-width: 780px; }
.banner-callout h2 { margin-bottom: 14px; }
.banner-callout p { margin-bottom: 0; }
.banner-callout.dark { background: #1d1d19; color: var(--white); }
.banner-callout.dark p { color: rgba(255,255,255,.65); }

.feature-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.feature-list li { position: relative; padding-inline-start: 34px; }
.feature-list li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--green); font-weight: 900; }
.gallery-grid { display: grid; grid-template-columns: 1.6fr .8fr .8fr; grid-auto-rows: 280px; gap: 18px; }
.gallery-item { margin: 0; border-radius: 20px; overflow: hidden; background: #e9e5dc; }
.gallery-wide { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item:not(.gallery-wide) img { object-fit: contain; padding: 14px; }

.branch-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.branch-card { position: relative; padding: 42px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--white); box-shadow: 0 18px 48px rgba(17,17,15,.06); overflow: hidden; }
.branch-number { position: absolute; inset-inline-end: 26px; top: 20px; color: rgba(200,155,60,.22); font-size: 4rem; font-weight: 900; line-height: 1; }
.branch-card h2 { margin-bottom: 28px; padding-inline-end: 70px; }
.branch-card dl { display: grid; gap: 16px; }
.branch-card dl div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.branch-card dt { color: var(--muted); font-size: .83rem; }
.branch-card dd { margin: 0; font-weight: 700; overflow-wrap: anywhere; }
.branch-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.legal-content { max-width: 850px; }
.legal-content h2 { font-size: 1.55rem; margin-top: 36px; }
.thank-you-section { min-height: 65vh; display: grid; align-items: center; background: var(--soft); }
.thank-you-card { max-width: 780px; margin: 0 auto; padding: 58px; text-align: center; border-radius: 30px; background: var(--white); box-shadow: var(--shadow); }
.success-icon { width: 82px; height: 82px; margin: 0 auto 24px; display: grid; place-items: center; border-radius: 50%; background: #e6f7ed; color: var(--green); font-size: 2rem; font-weight: 900; }
.success-icon.muted { background: var(--soft); color: var(--muted); }
.thank-you-card h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
.reference-box { display: inline-block; margin: 16px 0 22px; padding: 14px 22px; border-radius: 12px; background: var(--black); color: var(--gold-light); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 800; letter-spacing: .08em; }
.status-note { padding: 13px 16px; border-radius: 12px; font-size: .9rem; }
.status-note.ok { background: #eaf7ef; color: #235f3e; }
.status-note.warning { background: #fff5df; color: #795412; }
.thank-you-card .btn { margin: 14px 0; }
.thank-you-card small { display: block; color: var(--muted); margin-bottom: 22px; }

.site-footer { background: #0d0d0b; color: var(--white); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 70px; padding-bottom: 60px; }
.footer-brand img { width: 90px; height: 90px; object-fit: contain; margin-bottom: 20px; border-radius: 12px; }
.footer-brand p { max-width: 390px; color: rgba(255,255,255,.62); }
.site-footer h3 { font-size: 1rem; color: var(--gold-light); margin-bottom: 22px; }
.footer-links, .footer-details { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-links a, .footer-details { color: rgba(255,255,255,.67); font-size: .9rem; }
.footer-links a:hover, .footer-details a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.52); font-size: .78rem; }

.floating-whatsapp { position: fixed; z-index: 1000; inset-inline-end: 22px; bottom: 24px; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25d366; box-shadow: 0 12px 30px rgba(37,211,102,.35); transition: transform var(--transition); }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.floating-whatsapp svg { width: 30px; height: 30px; fill: #fff; }
.back-to-top { position: fixed; z-index: 999; inset-inline-end: 30px; bottom: 94px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--black); color: var(--white); opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 270ms; }

@media (max-width: 1080px) {
    .primary-nav { gap: 18px; }
    .nav-cta { display: none; }
    .product-grid-home { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-card:nth-child(2) { border-inline-end: 0; }
    .why-card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .enquiry-panel { grid-template-columns: 1fr; }
    .enquiry-copy { padding: 44px; }
    .enquiry-form { padding: 44px; }
}

@media (max-width: 900px) {
    .section { padding: 82px 0; }
    .topbar-inner { justify-content: center; }
    .topbar-inner > span { display: none; }
    .menu-toggle { display: flex; }
    .primary-nav { position: fixed; inset: 120px 20px auto; display: grid; gap: 0; padding: 20px; border-radius: 20px; background: var(--white); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: var(--transition); }
    .primary-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
    .primary-nav > a { padding: 13px 12px; }
    .primary-nav > a:not(.btn)::after { display: none; }
    .nav-cta { display: inline-flex; margin-top: 10px; }
    .hero-content { align-items: center; }
    .hero-badge { display: none; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid > div:nth-child(2) { border-inline-end: 0; }
    .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .split-heading, .split-media, .content-grid { grid-template-columns: 1fr; gap: 45px; }
    .split-media-reverse .split-copy { order: 0; }
    .split-image { min-height: 420px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .branch-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
    .gallery-wide { grid-column: 1 / -1; grid-row: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 66px 0; }
    .topbar-contact { gap: 7px; font-size: .68rem; }
    .nav-wrap { min-height: 72px; }
    .brand { min-width: 0; }
    .brand img { width: 46px; height: 46px; }
    .brand-text strong { font-size: .8rem; }
    .brand-text small { display: none; }
    .primary-nav { inset: 110px 14px auto; }
    .hero { min-height: 690px; }
    .hero-content { padding-block: 80px; }
    .hero h1 { font-size: clamp(2.4rem, 13vw, 4.2rem); }
    .hero-actions { display: grid; }
    .hero-actions .btn { width: 100%; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid > div { min-height: 90px; padding: 18px 14px; align-items: flex-start; flex-direction: column; gap: 4px; }
    .product-grid, .product-grid-home, .company-grid, .why-grid { grid-template-columns: 1fr; }
    .why-card { border-inline-end: 0; border-bottom: 1px solid var(--border); }
    .why-card:last-child { border-bottom: 0; }
    .split-image { min-height: 350px; }
    .form-grid { grid-template-columns: 1fr; }
    .field-full { grid-column: auto; }
    .enquiry-copy, .enquiry-form { padding: 30px 22px; }
    .form-footer { align-items: stretch; flex-direction: column; }
    .form-footer .btn { width: 100%; }
    .page-hero { min-height: 390px; }
    .page-hero-content { padding-block: 60px; }
    .branch-card { padding: 30px 22px; }
    .branch-card dl div { grid-template-columns: 1fr; gap: 4px; }
    .branch-actions .btn { width: 100%; }
    .banner-callout { align-items: stretch; flex-direction: column; padding: 30px 22px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
    .gallery-wide { grid-column: auto; }
    .thank-you-card { padding: 38px 20px; }
    .reference-box { font-size: .84rem; letter-spacing: .03em; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .floating-whatsapp { width: 54px; height: 54px; inset-inline-end: 16px; bottom: 16px; }
    .back-to-top { inset-inline-end: 22px; bottom: 80px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}


/* BURAK PHONE DIRECTION FIX */
.phone-ltr {
    direction: ltr !important;
    unicode-bidi: isolate !important;
    display: inline-block;
    white-space: nowrap;
    text-align: left;
}


/* BURAK PRODUCT IMAGE UPDATE */
.product-image {
    background:
        radial-gradient(circle at 50% 42%, rgba(200,155,60,.14), transparent 58%),
        linear-gradient(180deg, #fff 0%, #f7f3ea 100%);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center;
    padding: 18px;
    transition: transform .45s ease, filter .45s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.045);
    filter: drop-shadow(0 18px 22px rgba(0,0,0,.13));
}

.product-card h2,
.product-card h3 {
    overflow-wrap: anywhere;
}
