/* ============================================================
 YS Enterprises - style.css
 Dark-luxury + gold design system. Mobile-first.
 Breakpoints: 720px, 1024px.
 ============================================================ */

/* ---------- Design tokens ---------- */
:root {
 --black: #0b0b0d;
 --charcoal: #131316;
 --surface: #1b1b1f;
 --gold: #d4af37;
 --gold-light: #f0d97c;
 --gold-deep: #b8912a;
 --gold-grad: linear-gradient(135deg, #b8912a, #f0d97c);
 --text: #ecebe7;
 --muted: #a6a49c;
 --line: rgba(212, 175, 55, .25);
 --paper: #faf9f6;
 --ink: #141414;
 --ink-muted: #55534d;
 --wa-green: #25D366;
 --font-head: "Playfair Display", Georgia, serif;
 --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
 --container: 1160px;
 --radius: 10px;
 --shadow: 0 10px 30px rgba(0, 0, 0, .35);
 --shadow-light: 0 8px 24px rgba(20, 20, 20, .1);
 --header-h: 72px;
 --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
 -webkit-text-size-adjust: 100%;
 scroll-behavior: smooth;
 scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
 margin: 0;
 font-family: var(--font-body);
 font-size: 1rem;
 line-height: 1.65;
 color: var(--text);
 background: var(--black);
 -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
 font-family: var(--font-head);
 font-weight: 700;
 line-height: 1.15;
 margin: 0 0 .6em;
 letter-spacing: .01em;
}

h1 { font-size: clamp(2.1rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.35rem); font-weight: 600; }

p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

a { color: var(--gold-light); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }

:focus-visible {
 outline: 2px solid var(--gold);
 outline-offset: 3px;
 border-radius: 2px;
}

::selection { background: var(--gold); color: var(--black); }

/* ---------- Utilities ---------- */
.container {
 width: 100%;
 max-width: var(--container);
 margin-inline: auto;
 padding-inline: 20px;
}

.skip-link {
 position: absolute;
 top: -100px;
 left: 16px;
 z-index: 200;
 padding: 10px 18px;
 background: var(--gold);
 color: var(--black);
 font-weight: 600;
 border-radius: 0 0 8px 8px;
 transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: var(--black); }

.visually-hidden {
 position: absolute;
 width: 1px; height: 1px;
 margin: -1px; padding: 0;
 overflow: hidden;
 clip: rect(0 0 0 0);
 white-space: nowrap;
 border: 0;
}

/* Honeypot - must stay off-screen, not display:none */
.hp-field { position: absolute; left: -9999px; }

/* ---------- Buttons ---------- */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: .55em;
 padding: 14px 28px;
 font-family: var(--font-body);
 font-size: .95rem;
 font-weight: 600;
 letter-spacing: .03em;
 line-height: 1.2;
 border-radius: 6px;
 border: 1.5px solid transparent;
 cursor: pointer;
 text-align: center;
 transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-gold {
 background: var(--gold-grad);
 color: var(--black);
 box-shadow: 0 6px 18px rgba(212, 175, 55, .25);
}
.btn-gold:hover { color: var(--black); box-shadow: 0 10px 26px rgba(212, 175, 55, .38); }

.btn-ghost {
 background: transparent;
 color: var(--gold-light);
 border-color: var(--gold);
}
.btn-ghost:hover { background: rgba(212, 175, 55, .12); color: var(--gold-light); }

.section-light .btn-ghost { color: var(--gold-deep); border-color: var(--gold-deep); }
.section-light .btn-ghost:hover { background: rgba(184, 145, 42, .1); color: var(--gold-deep); }

.btn-sm { padding: 10px 18px; font-size: .88rem; }

/* ---------- Header / nav ---------- */
.site-header {
 position: sticky;
 top: 0;
 z-index: 100;
 background: rgba(11, 11, 13, .92);
 -webkit-backdrop-filter: blur(10px);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--line);
}

.header-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
 min-height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; flex: none; }
.logo img { height: 44px; width: auto; }

.nav-toggle {
 display: inline-flex;
 flex-direction: column;
 justify-content: center;
 gap: 5px;
 width: 44px;
 height: 44px;
 padding: 10px;
 background: none;
 border: 1px solid var(--line);
 border-radius: 6px;
 cursor: pointer;
}
.nav-toggle span {
 display: block;
 width: 100%;
 height: 2px;
 background: var(--gold);
 border-radius: 2px;
 transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
 position: absolute;
 top: 100%;
 left: 0;
 right: 0;
 background: var(--charcoal);
 border-bottom: 1px solid var(--line);
 max-height: 0;
 overflow: hidden;
 transition: max-height .35s var(--ease);
}
.nav-open .site-nav { max-height: 480px; box-shadow: var(--shadow); }

.nav-list {
 list-style: none;
 margin: 0;
 padding: 12px 20px 20px;
 display: flex;
 flex-direction: column;
 gap: 2px;
}
.nav-list a:not(.btn) {
 display: block;
 padding: 12px 4px;
 font-weight: 500;
 font-size: 1rem;
 color: var(--text);
 border-bottom: 1px solid rgba(212, 175, 55, .1);
}
.nav-list a:not(.btn):hover { color: var(--gold-light); }
.nav-list a[aria-current="page"] { color: var(--gold); }
.nav-cta { margin-top: 14px; }
.nav-cta .btn { width: 100%; }

@media (min-width: 1024px) {
 .nav-toggle { display: none; }
 .site-nav {
 position: static;
 max-height: none;
 overflow: visible;
 background: none;
 border: 0;
 flex: 1;
 }
 .nav-list {
 flex-direction: row;
 align-items: center;
 justify-content: flex-end;
 gap: 26px;
 padding: 0;
 }
 .nav-list a:not(.btn) {
 padding: 6px 0;
 border-bottom: 0;
 font-size: .95rem;
 position: relative;
 }
 .nav-list a:not(.btn)::after {
 content: "";
 position: absolute;
 left: 0; right: 100%;
 bottom: -2px;
 height: 2px;
 background: var(--gold-grad);
 transition: right .25s var(--ease);
 }
 .nav-list a:not(.btn):hover::after,
 .nav-list a[aria-current="page"]::after { right: 0; }
 .nav-cta { margin: 0 0 0 8px; }
 .nav-cta .btn { width: auto; }
}

/* ---------- Hero ---------- */
.hero {
 position: relative;
 display: flex;
 align-items: center;
 min-height: min(88vh, 760px);
 padding: 96px 0;
 overflow: hidden;
 isolation: isolate;
}
.hero-bg {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: -2;
}
.hero::after {
 content: "";
 position: absolute;
 inset: 0;
 background: linear-gradient(rgba(10, 10, 12, .72), rgba(10, 10, 12, .72));
 z-index: -1;
}
.hero-inner { max-width: 780px; }
.hero-eyebrow {
 display: inline-block;
 margin-bottom: 18px;
 padding: 7px 16px;
 border: 1px solid var(--line);
 border-radius: 999px;
 font-size: .8rem;
 font-weight: 600;
 letter-spacing: .14em;
 text-transform: uppercase;
 color: var(--gold-light);
 background: rgba(212, 175, 55, .08);
}
.hero h1 { margin-bottom: .4em; }
.hero h1 .gold,
.page-hero h1 .gold {
 background: var(--gold-grad);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent;
}
.hero-sub {
 font-size: clamp(1.02rem, 2.2vw, 1.2rem);
 color: var(--text);
 max-width: 640px;
 margin-bottom: 1.8em;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-micro { font-size: .88rem; color: var(--muted); margin: 0; }

/* Inner-page hero (shorter) */
.page-hero {
 position: relative;
 padding: 84px 0 64px;
 overflow: hidden;
 isolation: isolate;
}
.page-hero .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero::after {
 content: "";
 position: absolute;
 inset: 0;
 background: linear-gradient(rgba(10, 10, 12, .78), rgba(10, 10, 12, .78));
 z-index: -1;
}
.page-hero .hero-sub { margin-bottom: 0; }

/* Breadcrumbs (inner pages) */
.breadcrumbs { font-size: .84rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "›"; margin-right: 6px; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs [aria-current="page"] { color: var(--gold-light); }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-dark { background: var(--charcoal); color: var(--text); }
.section-dark:nth-of-type(even) { background: var(--black); }
.section-black { background: var(--black); }
.section-light { background: var(--paper); color: var(--ink); }
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: var(--ink); }
.section-light p { color: #3c3a35; }
.section-light a:not(.btn) { color: var(--gold-deep); }
.section-light a:not(.btn):hover { color: #8a6d1f; }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
 display: block;
 font-size: .8rem;
 font-weight: 600;
 letter-spacing: .16em;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 12px;
}
.section-title { margin-bottom: .35em; }
.section-title::after {
 content: "";
 display: block;
 width: 64px;
 height: 3px;
 border-radius: 2px;
 background: var(--gold-grad);
 margin-top: 16px;
}
.section-head.center .section-title::after { margin-inline: auto; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section-light .section-sub { color: var(--ink-muted); }

.section-foot { margin-top: 40px; text-align: center; }
.section-foot .btn { margin: 6px; }

.arrow-link { font-weight: 600; white-space: nowrap; }
.arrow-link::after { content: " →"; }

/* Entity / intro paragraph (GEO) */
.entity {
 border-left: 3px solid var(--gold);
 padding-left: 22px;
 font-size: 1.02rem;
 color: var(--muted);
 max-width: 900px;
 margin: 0;
}
.entity strong { color: var(--text); font-weight: 600; }

/* ---------- Stats band ---------- */
.stats {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 1px;
 background: var(--line);
 border: 1px solid var(--line);
 border-radius: var(--radius);
 overflow: hidden;
}
.stat {
 background: var(--surface);
 padding: 28px 18px;
 text-align: center;
}
.stat-num {
 display: block;
 font-family: var(--font-head);
 font-weight: 700;
 font-size: clamp(1.9rem, 4.5vw, 2.6rem);
 line-height: 1.1;
 background: var(--gold-grad);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent;
}
.stat-label {
 display: block;
 margin-top: 8px;
 font-size: .85rem;
 color: var(--muted);
 letter-spacing: .02em;
}

.stat-fbr {
 display: flex;
 flex-wrap: wrap;
 align-items: baseline;
 justify-content: center;
 gap: 8px 10px;
 grid-column: 1 / -1;
 background: rgba(212, 175, 55, .08);
}
.stat-fbr .stat-num { font-size: clamp(1.3rem, 3vw, 1.6rem); }
.stat-fbr .stat-label { margin-top: 0; }

@media (min-width: 720px) { .stats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .stats { grid-template-columns: repeat(6, 1fr); } }

/* ---------- Cards grid (services, projects pages) ---------- */
.cards-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 26px;
}
@media (min-width: 720px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
 display: flex;
 flex-direction: column;
 background: #ffffff;
 border: 1px solid rgba(20, 20, 20, .08);
 border-radius: var(--radius);
 overflow: hidden;
 box-shadow: var(--shadow-light);
 transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(20, 20, 20, .16); }

.section-dark .card, .section-black .card {
 background: var(--surface);
 border-color: var(--line);
 box-shadow: var(--shadow);
}

.card-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.card-media img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform .5s var(--ease);
}
.card:hover .card-media img { transform: scale(1.05); }
.card-media img[src*="founder-yasin-shah"] { object-position: 50% 14%; }

.card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.card-title { margin-bottom: .5em; }
.card-title a { color: inherit; }
.card-text { font-size: .95rem; margin-bottom: 1.2em; flex: 1; }
.card-link { font-weight: 600; font-size: .92rem; margin-top: auto; align-self: flex-start; }
.card-link::after { content: " →"; transition: margin-left .2s var(--ease); }
.card-link:hover::after { margin-left: 4px; }

/* ---------- Features / Why us ---------- */
.features-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 22px;
}
@media (min-width: 720px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature {
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: var(--radius);
 padding: 30px 26px;
 transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.feature:hover { transform: translateY(-5px); border-color: rgba(212, 175, 55, .55); }
.feature-icon {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 48px;
 height: 48px;
 margin-bottom: 18px;
 border-radius: 50%;
 background: rgba(212, 175, 55, .12);
 border: 1px solid var(--line);
 color: var(--gold);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { margin-bottom: .45em; }
.feature p { font-size: .93rem; color: var(--muted); margin: 0; }

/* ---------- Process steps ---------- */
.process {
 display: grid;
 grid-template-columns: 1fr;
 gap: 26px;
 counter-reset: step;
}
@media (min-width: 720px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process { grid-template-columns: repeat(4, 1fr); } }

.step { position: relative; padding-top: 6px; }
.step-num {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 54px;
 height: 54px;
 margin-bottom: 18px;
 border-radius: 50%;
 background: var(--gold-grad);
 color: var(--black);
 font-family: var(--font-head);
 font-weight: 700;
 font-size: 1.35rem;
 box-shadow: 0 6px 16px rgba(212, 175, 55, .3);
}
.step h3 { margin-bottom: .45em; }
.step p { font-size: .93rem; margin: 0; }
.section-light .step p { color: var(--ink-muted); }

@media (min-width: 1024px) {
 .step:not(:last-child)::after {
 content: "";
 position: absolute;
 top: 32px;
 left: 72px;
 right: -8px;
 height: 1px;
 background: linear-gradient(90deg, var(--gold-deep), transparent);
 opacity: .45;
 }
}

/* ---------- Projects strip ---------- */
.projects-strip {
 display: grid;
 grid-template-columns: 1fr;
 gap: 22px;
}
@media (min-width: 720px) { .projects-strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .projects-strip { grid-template-columns: repeat(4, 1fr); } }

.project-card {
 position: relative;
 display: block;
 border-radius: var(--radius);
 overflow: hidden;
 aspect-ratio: 4 / 5;
 border: 1px solid var(--line);
}
.project-card img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform .5s var(--ease);
}
.project-card:hover img { transform: scale(1.06); }
.project-overlay {
 position: absolute;
 inset: 0;
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
 padding: 22px;
 background: linear-gradient(180deg, rgba(11, 11, 13, 0) 35%, rgba(11, 11, 13, .88) 100%);
}
.project-overlay h3 { color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.project-overlay p { color: var(--gold-light); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 26px;
}
@media (min-width: 720px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
 position: relative;
 background: #ffffff;
 border: 1px solid rgba(20, 20, 20, .08);
 border-radius: var(--radius);
 padding: 34px 28px 28px;
 box-shadow: var(--shadow-light);
}
.section-dark .testimonial, .section-black .testimonial { background: var(--surface); border-color: var(--line); box-shadow: var(--shadow); }
.testimonial::before {
 content: "\201C";
 position: absolute;
 top: 6px;
 left: 22px;
 font-family: var(--font-head);
 font-size: 4rem;
 line-height: 1;
 background: var(--gold-grad);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent;
}
.testimonial blockquote { margin: 0 0 18px; padding-top: 20px; font-size: .97rem; font-style: italic; }
.testimonial figcaption { font-weight: 600; font-size: .9rem; color: var(--gold-deep); }
.section-dark .testimonial figcaption, .section-black .testimonial figcaption { color: var(--gold-light); }
.testimonial figcaption .stars { display: block; color: var(--gold); font-size: .85rem; letter-spacing: .18em; margin-bottom: 6px; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
 border: 1px solid var(--line);
 border-radius: var(--radius);
 background: var(--surface);
 margin-bottom: 14px;
 overflow: hidden;
}
.faq-item summary {
 list-style: none;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 18px;
 padding: 20px 24px;
 transition: background-color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(212, 175, 55, .06); }
.faq-item summary h3 {
 font-family: var(--font-body);
 font-size: 1.02rem;
 font-weight: 600;
 margin: 0;
 color: var(--text);
}
.faq-item summary::after {
 content: "+";
 flex: none;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 30px;
 height: 30px;
 border: 1px solid var(--gold);
 border-radius: 50%;
 color: var(--gold);
 font-size: 1.2rem;
 font-weight: 400;
 transition: transform .25s var(--ease), background-color .2s var(--ease);
}
.faq-item[open] summary::after {
 transform: rotate(45deg);
 background: var(--gold);
 color: var(--black);
}
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-answer { padding: 18px 24px 22px; }
.faq-answer p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
 position: relative;
 background: var(--surface);
 border-block: 1px solid var(--line);
 padding: 80px 0;
 text-align: center;
 overflow: hidden;
}
.cta-band::before {
 content: "";
 position: absolute;
 inset: 0;
 background:
 radial-gradient(ellipse 60% 80% at 50% 120%, rgba(212, 175, 55, .16), transparent);
 pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 {
 background: var(--gold-grad);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent;
 margin-bottom: .35em;
}
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 1.8em; font-size: 1.05rem; }
.cta-band .btn { margin: 6px; }

/* ---------- Contact page ---------- */
.contact-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 44px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; align-items: start; } }

.contact-details { display: grid; gap: 6px; }
.contact-item {
 display: flex;
 gap: 16px;
 align-items: flex-start;
 padding: 16px 0;
 border-bottom: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: 0; }
.contact-icon {
 flex: none;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 44px;
 height: 44px;
 border-radius: 50%;
 background: rgba(212, 175, 55, .12);
 border: 1px solid var(--line);
 color: var(--gold);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item h3 { font-family: var(--font-body); font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item p { margin: 0; font-size: .98rem; }

/* ---------- Forms ---------- */
.form-card {
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: var(--radius);
 padding: 32px 26px;
}
@media (min-width: 720px) { .form-card { padding: 40px 38px; } }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) {
 .form-grid { grid-template-columns: 1fr 1fr; }
 .form-field.full { grid-column: 1 / -1; }
}

.form-field label {
 display: block;
 font-size: .86rem;
 font-weight: 600;
 letter-spacing: .04em;
 margin-bottom: 8px;
 color: var(--text);
}
.form-field input,
.form-field select,
.form-field textarea {
 width: 100%;
 padding: 13px 15px;
 font-family: var(--font-body);
 font-size: .96rem;
 color: var(--text);
 background: var(--charcoal);
 border: 1px solid rgba(212, 175, 55, .3);
 border-radius: 6px;
 transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(166, 164, 156, .65); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
 outline: none;
 border-color: var(--gold);
 box-shadow: 0 0 0 3px rgba(212, 175, 55, .18);
}
.form-actions { margin-top: 6px; }
.form-actions .btn[disabled] { opacity: .6; cursor: wait; transform: none; }
.cf-turnstile { margin: 10px 0 6px; grid-column: 1 / -1; }

.form-status {
 display: none;
 margin-top: 18px;
 padding: 15px 18px;
 border-radius: 6px;
 font-size: .95rem;
 border: 1px solid transparent;
}
.form-status.is-success {
 display: block;
 background: rgba(37, 211, 102, .1);
 border-color: rgba(37, 211, 102, .45);
 color: #7fe0a7;
}
.form-status.is-error {
 display: block;
 background: rgba(220, 76, 76, .12);
 border-color: rgba(220, 76, 76, .5);
 color: #f0a0a0;
}

/* ---------- Map embed ---------- */
.map-wrap {
 border: 1px solid var(--line);
 border-radius: var(--radius);
 overflow: hidden;
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }
.map-caption { margin-top: 14px; font-size: .9rem; color: var(--muted); }

/* ---------- Two-column feature blocks (about/services pages) ---------- */
.split {
 display: grid;
 grid-template-columns: 1fr;
 gap: 36px;
 align-items: center;
}
@media (min-width: 1024px) {
 .split { grid-template-columns: 1fr 1fr; gap: 60px; }
 .split.flip > .split-media { order: 2; }
}
.split-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 10px; font-size: .96rem; }
.check-list li::before {
 content: "✓";
 position: absolute;
 left: 0;
 top: 0;
 color: var(--gold);
 font-weight: 700;
}

.note { font-size: .88rem; color: var(--muted); font-style: italic; }
.section-light .note { color: var(--ink-muted); }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
 position: fixed;
 bottom: 22px;
 right: 22px;
 z-index: 90;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 58px;
 height: 58px;
 border-radius: 50%;
 background: var(--wa-green);
 color: #fff;
 box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
 transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover {
 transform: translateY(-4px) scale(1.05);
 color: #fff;
 box-shadow: 0 12px 30px rgba(37, 211, 102, .55);
}
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Floating Facebook page widget ---------- */
.fb-float-btn {
 position: fixed;
 bottom: 22px;
 left: 22px;
 z-index: 90;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 58px;
 height: 58px;
 border-radius: 50%;
 background: #1877F2;
 color: #fff;
 box-shadow: 0 8px 24px rgba(24, 119, 242, .45);
 transition: transform .25s var(--ease), box-shadow .25s var(--ease);
 border: 0;
 cursor: pointer;
}
.fb-float-btn:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 30px rgba(24, 119, 242, .55); }
.fb-float-btn svg { width: 28px; height: 28px; }

.fb-float-panel {
 position: fixed;
 bottom: 90px;
 left: 22px;
 z-index: 91;
 width: 340px;
 max-width: calc(100vw - 44px);
 background: var(--charcoal);
 border: 1px solid var(--line);
 border-radius: var(--radius);
 box-shadow: 0 24px 60px rgba(0,0,0,.5);
 overflow: hidden;
 opacity: 0;
 transform: translateY(16px) scale(.97);
 pointer-events: none;
 transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.fb-float-panel.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fb-float-panel-head {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 12px 16px;
 background: linear-gradient(135deg, #1877F2, #0d5bc7);
 color: #fff;
 font-weight: 600;
 font-size: .92rem;
}
.fb-float-panel-close {
 background: rgba(255,255,255,.15);
 border: 0;
 color: #fff;
 width: 26px;
 height: 26px;
 border-radius: 50%;
 cursor: pointer;
 font-size: 1rem;
 line-height: 1;
 display: inline-flex;
 align-items: center;
 justify-content: center;
}
.fb-float-panel-body { min-height: 220px; max-height: 60vh; overflow-y: auto; background: #fff; }
.fb-float-fallback { padding: 24px 18px; text-align: center; font-size: .88rem; color: var(--ink-muted, #444); }
.fb-float-fallback a { color: #1877F2; font-weight: 600; }

@media (max-width: 480px) {
 .fb-float-btn { left: 16px; bottom: 16px; }
 .fb-float-panel { left: 16px; bottom: 84px; width: calc(100vw - 32px); }
}

/* ---------- Footer ---------- */
.site-footer {
 background: var(--black);
 border-top: 1px solid var(--line);
 padding: 64px 0 0;
 color: var(--muted);
 font-size: .93rem;
}
.footer-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 40px;
 padding-bottom: 48px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1.2fr 1.4fr; } }

.footer-col h3 {
 font-family: var(--font-body);
 font-size: .84rem;
 font-weight: 600;
 letter-spacing: .14em;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 18px;
}
.footer-logo { margin-bottom: 18px; }
.footer-logo img { height: 48px; width: auto; }
.footer-about p { margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 40px;
 height: 40px;
 border-radius: 50%;
 border: 1px solid var(--line);
 color: var(--gold);
 transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--gold-light); }

.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--gold); }
.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
 border-top: 1px solid rgba(212, 175, 55, .12);
 padding: 20px 0;
 text-align: center;
 font-size: .84rem;
 color: rgba(166, 164, 156, .8);
}
.footer-bottom p { margin: 0; }

/* ---------- Reveal animations ---------- */
.reveal {
 opacity: 0;
 transform: translateY(26px);
 transition: opacity .7s var(--ease), transform .7s var(--ease);
 transition-delay: var(--reveal-delay, 0s);
 will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Stagger helpers - set on children of grids */
.reveal-d1 { --reveal-delay: .08s; }
.reveal-d2 { --reveal-delay: .16s; }
.reveal-d3 { --reveal-delay: .24s; }
.reveal-d4 { --reveal-delay: .32s; }
.reveal-d5 { --reveal-delay: .40s; }

/* No-JS + reduced motion: never hide content */
.no-js .reveal { opacity: 1; transform: none; }

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

/* ---------- Print ---------- */
@media print {
 .site-header, .wa-float, .cta-band, .nav-toggle { display: none !important; }
 body { background: #fff; color: #000; }
}

/* ============================================================
 Inner pages
 ============================================================ */

/* Two-wide card grid (about page "two arms") */
@media (min-width: 1024px) {
 .cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Button rows inside split blocks */
.split-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* Project gallery (projects.html) */
.gallery-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 22px;
}
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
 margin: 0;
 display: flex;
 flex-direction: column;
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: var(--radius);
 overflow: hidden;
 transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); border-color: rgba(212, 175, 55, .55); }
.gallery-media { overflow: hidden; aspect-ratio: 4 / 3; }
.gallery-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover .gallery-media img { transform: scale(1.05); }
.gallery-media img[src*="founder-yasin-shah"] { object-position: 50% 18%; }
.gallery-item figcaption { padding: 14px 16px 16px; font-size: .88rem; color: var(--muted); flex: 1; }
.gallery-item figcaption strong {
 display: block;
 color: var(--text);
 font-family: var(--font-head);
 font-size: 1rem;
 font-weight: 600;
 margin-bottom: 2px;
}
