/* AZ Railings and Renovations — shared stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;600;700&family=Noto+Nastaliq+Urdu:wght@400;600;700&display=swap');

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

:root {
  --black: #17181b;
  --charcoal: #232428;
  --charcoal-light: #2f3136;
  --steel: #5a5d66;
  --steel-light: #9a9da6;
  --fog: #f3f2ef;
  --white: #ffffff;
  --bronze: #b9852f;
  --bronze-light: #d9a94f;
  --bronze-dark: #8f6420;
  --text: #1c1d20;
  --text-soft: #55575c;
  --shadow: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-display {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* ── language-specific fonts ── */
html[lang="hi"] body { font-family: 'Noto Sans Devanagari', 'Inter', system-ui, sans-serif; }
html[lang="hi"] h1, html[lang="hi"] h2, html[lang="hi"] h3, html[lang="hi"] h4, html[lang="hi"] .font-display {
  font-family: 'Noto Sans Devanagari', 'Playfair Display', serif;
}
html[lang="ur"] body { font-family: 'Noto Nastaliq Urdu', 'Inter', system-ui, sans-serif; line-height: 2; }
html[lang="ur"] h1, html[lang="ur"] h2, html[lang="ur"] h3, html[lang="ur"] h4, html[lang="ur"] .font-display {
  font-family: 'Noto Nastaliq Urdu', 'Playfair Display', serif;
  line-height: 1.8;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.section { padding: 5.5rem 0; }
.section.tight { padding: 3.5rem 0; }
.section-alt { background: var(--fog); }
.section-dark { background: var(--black); color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--bronze);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--bronze);
  display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.9rem; }
.section-head p { color: var(--text-soft); font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--bronze); color: var(--black); }
.btn-primary:hover { background: var(--bronze-light); box-shadow: 0 8px 20px rgba(185,133,47,0.35); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--charcoal-light); }
.btn-outline { border-color: currentColor; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-outline.on-light:hover { background: rgba(0,0,0,0.05); }
.btn-block { width: 100%; justify-content: center; }

/* ── NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(23,24,27,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(185,133,47,0.25);
  transition: padding 0.25s ease;
}
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.75rem;
  max-width: 1180px; margin: 0 auto;
  transition: padding 0.25s ease;
}
.site-header.shrink .navbar { padding-top: 0.7rem; padding-bottom: 0.7rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--white); }
.brand-mark {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 2px solid var(--bronze);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bronze);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text .brand-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.02em; }
.brand-text .brand-sub { font-size: 0.62rem; color: var(--steel-light); letter-spacing: 0.14em; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 2.1rem;
}
.nav-links a {
  text-decoration: none; color: var(--fog); font-weight: 600; font-size: 0.92rem;
  position: relative; padding: 0.3rem 0; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--bronze); transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--bronze-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.4rem; }

.lang-switch {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1.5px solid rgba(185,133,47,0.4);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Inter', system-ui, sans-serif;
  cursor: pointer;
}
.lang-switch:hover { border-color: var(--bronze); }
.lang-switch option { background: var(--black); color: var(--white); }
.nav-phone { display: flex; align-items: center; gap: 0.5rem; color: var(--white); font-weight: 700; font-size: 0.92rem; text-decoration: none; }
.nav-phone svg { color: var(--bronze); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 0.4rem;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--black) 0%, var(--charcoal) 55%, #1e1f22 100%);
  color: var(--white);
  padding: 6.5rem 0 5.5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cg fill='none' stroke='%23b9852f' stroke-opacity='0.10' stroke-width='2'%3E%3Cpath d='M0 45h90M45 0v90'/%3E%3Ccircle cx='45' cy='45' r='3' fill='%23b9852f' fill-opacity='0.18' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center;
}
.hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin-bottom: 1.1rem; }
.hero h1 span { color: var(--bronze-light); }
.hero p.lead { color: var(--steel-light); font-size: 1.12rem; max-width: 520px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badges { display: flex; gap: 1.6rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 0.6rem; color: var(--fog); font-size: 0.86rem; font-weight: 600; }
.hero-badge svg { color: var(--bronze); flex-shrink: 0; }

.hero-visual {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow);
}

/* Generic decorative "photo" placeholder */
.photo-block {
  position: relative;
  background: linear-gradient(135deg, var(--charcoal-light), var(--black));
  display: flex; align-items: flex-end; justify-content: flex-start;
  overflow: hidden; color: var(--white);
}
.photo-block::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%),
    repeating-linear-gradient(115deg, rgba(185,133,47,0.10) 0 2px, transparent 2px 26px);
}
.photo-block img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.photo-block .tag {
  position: relative; z-index: 1; padding: 1.2rem 1.4rem;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
}
.photo-block .tag small { display: block; font-weight: 500; font-size: 0.72rem; color: var(--steel-light); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.2rem; }
.photo-block.rail { background: linear-gradient(135deg, #2b2c30, #17181b); }
.photo-block.kitchen { background: linear-gradient(135deg, #33291a, #17181b); }
.photo-block.bath { background: linear-gradient(135deg, #1c2a2c, #17181b); }
.photo-block.fence { background: linear-gradient(135deg, #2a2418, #17181b); }
.photo-block.glass { background: linear-gradient(135deg, #202832, #17181b); }
.photo-block.stair { background: linear-gradient(135deg, #262629, #17181b); }

/* ── hero slideshow ── */
.hero-slideshow { position: relative; }
.hero-slideshow .photo-block {
  position: absolute; inset: 0;
  opacity: 0; z-index: 0; transition: opacity 1.2s ease;
}
.hero-slideshow .photo-block.active { opacity: 1; z-index: 1; }
.hero-slideshow-dots {
  position: absolute; z-index: 2; bottom: 1.2rem; right: 1.4rem;
  display: flex; gap: 0.5rem;
}
.hero-slideshow-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.35); padding: 0; cursor: pointer;
}
.hero-slideshow-dots button.active { background: var(--bronze); }

/* ── homepage project slideshow ── */
.project-slideshow { position: relative; max-width: 900px; margin: 0 auto; }
.project-slides {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.project-slides .photo-block {
  position: absolute; inset: 0;
  opacity: 0; z-index: 0; transition: opacity 1.1s ease;
}
.project-slides .photo-block.active { opacity: 1; z-index: 1; }
.project-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.project-arrow:hover { background: rgba(185,133,47,0.25); }
.project-arrow.prev { left: -60px; }
.project-arrow.next { right: -60px; }
@media (max-width: 980px) { .project-arrow { display: none; } }
.project-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 1.6rem; }
.project-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,0.25); padding: 0; cursor: pointer; }
.project-dots button.active { background: var(--bronze); }

/* ── stat strip ── */
.stat-strip { background: var(--fog); padding: 2.6rem 0; border-bottom: 1px solid #e6e4de; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--bronze-dark); font-weight: 700; }
.stat-label { color: var(--text-soft); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em; margin-top: 0.3rem; }

/* ── cards / grids ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.card {
  background: var(--white);
  border: 1px solid #eae8e2;
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(185,133,47,0.35); }
.card-icon {
  width: 56px; height: 56px; border-radius: 10px;
  background: rgba(185,133,47,0.12); color: var(--bronze-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
.card p { color: var(--text-soft); font-size: 0.95rem; }
.card ul { margin-top: 1rem; }
.card ul li { position: relative; padding-left: 1.2rem; font-size: 0.9rem; color: var(--text-soft); margin-bottom: 0.4rem; }
.card ul li::before { content: '—'; position: absolute; left: 0; color: var(--bronze); }
.card-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.2rem; font-weight: 700; font-size: 0.88rem; color: var(--bronze-dark); text-decoration: none; }
.card-link svg { transition: transform 0.2s; }
.card-link:hover svg { transform: translateX(4px); }

/* ── process ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.process-step { position: relative; padding: 2rem 1.6rem 1.6rem; background: var(--white); border-radius: var(--radius); border: 1px solid #eae8e2; }
.process-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -18px; left: 1.6rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--black); color: var(--bronze-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: 'Playfair Display', serif;
}
.process-step h4 { margin-top: 0.6rem; margin-bottom: 0.5rem; font-size: 1.05rem; }
.process-step p { color: var(--text-soft); font-size: 0.9rem; }

/* ── testimonials ── */
.testimonial-wrap { max-width: 760px; margin: 0 auto; position: relative; }
.testimonial-slide { display: none; text-align: center; }
.testimonial-slide.active { display: block; animation: fadeUp 0.5s ease; }
.testimonial-slide p.quote { font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 2.4vw, 1.55rem); font-style: italic; color: var(--white); margin-bottom: 1.6rem; }
.testimonial-stars { color: var(--bronze-light); margin-bottom: 1.2rem; letter-spacing: 0.2em; }
.testimonial-name { font-weight: 700; color: var(--white); }
.testimonial-role { color: var(--steel-light); font-size: 0.85rem; margin-top: 0.15rem; }
.testimonial-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 2.2rem; }
.testimonial-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,0.25); padding: 0; }
.testimonial-dots button.active { background: var(--bronze); }
.testimonial-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.testimonial-arrow:hover { background: rgba(185,133,47,0.25); }
.testimonial-arrow.prev { left: -60px; }
.testimonial-arrow.next { right: -60px; }
@media (max-width: 860px) { .testimonial-arrow { display: none; } }

@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ── CTA banner ── */
.cta-banner {
  background: linear-gradient(120deg, var(--bronze-dark), var(--bronze));
  color: var(--black); border-radius: var(--radius);
  padding: 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-banner h3 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.cta-banner p { color: rgba(0,0,0,0.7); }

/* ── footer ── */
.site-footer { background: var(--black); color: var(--fog); padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-grid h5 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-grid p, .footer-grid a { color: var(--steel-light); font-size: 0.9rem; text-decoration: none; }
.footer-grid li { margin-bottom: 0.6rem; }
.footer-grid a:hover { color: var(--bronze-light); }
.footer-brand p { max-width: 300px; margin-top: 1rem; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.3rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; }
.footer-social a:hover { background: rgba(185,133,47,0.18); border-color: var(--bronze); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.4rem; display: flex; justify-content: space-between; color: var(--steel-light); font-size: 0.82rem; flex-wrap: wrap; gap: 0.6rem; }

/* ── back to top ── */
.back-to-top {
  position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: 150;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--bronze); color: var(--black); border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ── reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── page banner (interior pages) ── */
.page-banner {
  background: linear-gradient(160deg, var(--black), var(--charcoal));
  color: var(--white); padding: 3.6rem 0 3rem; position: relative; overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cg fill='none' stroke='%23b9852f' stroke-opacity='0.10' stroke-width='2'%3E%3Cpath d='M0 45h90M45 0v90'/%3E%3C/g%3E%3C/svg%3E");
}
.page-banner .inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 0.5rem; color: var(--steel-light); font-size: 0.85rem; margin-bottom: 0.9rem; }
.breadcrumb a { color: var(--steel-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--bronze-light); }
.page-banner h1 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.page-banner p { color: var(--steel-light); max-width: 560px; margin-top: 0.8rem; }

/* ── filter buttons (gallery) ── */
.filter-bar { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  border: 1.5px solid #ddd9d0; background: var(--white); color: var(--text-soft);
  padding: 0.5rem 1.15rem; border-radius: 999px; font-weight: 600; font-size: 0.85rem;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--bronze); color: var(--bronze-dark); }
.filter-btn.active { background: var(--black); border-color: var(--black); color: var(--white); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; position: relative; }
.gallery-item .photo-block { width: 100%; height: 100%; }
.gallery-item::after {
  content: '\2315'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white);
  background: rgba(185,133,47,0.0);
  opacity: 0; transition: opacity 0.25s ease, background 0.25s ease;
}
.gallery-item:hover::after { opacity: 1; background: rgba(23,24,27,0.35); }
.gallery-item.hide { display: none; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(10,10,11,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s;
  padding: 2rem;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner { max-width: 720px; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-inner .photo-block { width: 100%; height: 100%; }
.lightbox-close {
  position: absolute; top: -50px; right: 0; background: none; border: none; color: var(--white);
  font-size: 1.8rem; line-height: 1;
}
.lightbox-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.2rem 1.4rem; color: var(--white); background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75)); }

/* ── FAQ accordion ── */
.faq-item { border-bottom: 1px solid #e6e4de; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.3rem 0; display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 1rem; color: var(--text);
}
.faq-q svg { transition: transform 0.25s ease; color: var(--bronze); flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { color: var(--text-soft); padding-bottom: 1.3rem; max-width: 640px; font-size: 0.95rem; }

/* ── values / about ── */
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.value-item { display: flex; gap: 1.1rem; }
.value-item .card-icon { margin-bottom: 0; flex-shrink: 0; }
.value-item h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.value-item p { color: var(--text-soft); font-size: 0.92rem; }

.badge-row { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.6rem; }
.badge-pill { display: flex; align-items: center; gap: 0.5rem; border: 1px solid #e6e4de; padding: 0.6rem 1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600; color: var(--text-soft); }
.badge-pill svg { color: var(--bronze-dark); }

/* ── contact page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info-card { background: var(--black); color: var(--white); border-radius: var(--radius); padding: 2.4rem; }
.contact-info-card h3 { margin-bottom: 1.6rem; color: var(--white); }
.contact-row { display: flex; gap: 1rem; margin-bottom: 1.4rem; }
.contact-row .card-icon { width: 44px; height: 44px; margin-bottom: 0; background: rgba(185,133,47,0.16); flex-shrink: 0; }
.contact-row h5 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.contact-row p, .contact-row a { color: var(--steel-light); font-size: 0.9rem; text-decoration: none; }
.contact-row a:hover { color: var(--bronze-light); }
.map-placeholder {
  margin-top: 1.6rem; border-radius: 8px; overflow: hidden; aspect-ratio: 16/9;
  background: repeating-linear-gradient(45deg, #2a2b2f, #2a2b2f 10px, #232428 10px, #232428 20px);
  display: flex; align-items: center; justify-content: center; color: var(--steel-light); font-size: 0.85rem; text-align: center; padding: 1rem;
}

.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.45rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid #ddd9d0; border-radius: 6px;
  font-family: inherit; font-size: 0.95rem; transition: border-color 0.2s;
  background: var(--white); color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--bronze); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field-error { color: #b3261e; font-size: 0.8rem; margin-top: 0.35rem; display: none; }
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea { border-color: #b3261e; }
.form-group.invalid .field-error { display: block; }
.form-success {
  display: none; background: rgba(185,133,47,0.12); border: 1px solid var(--bronze);
  color: var(--bronze-dark); padding: 1rem 1.2rem; border-radius: 8px; margin-bottom: 1.3rem; font-weight: 600; font-size: 0.9rem;
}
.form-success.show { display: flex; align-items: center; gap: 0.6rem; }

.hours-list { margin-top: 1.4rem; }
.hours-list li { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 0.4rem 0; border-bottom: 1px dashed rgba(255,255,255,0.1); color: var(--steel-light); }
.hours-list li span:last-child { color: var(--white); font-weight: 600; }

/* ── RTL (Urdu) ── */
html[dir="rtl"] { direction: rtl; }
html[dir="rtl"] .eyebrow::before { order: 2; }
html[dir="rtl"] .card-link { flex-direction: row-reverse; }
html[dir="rtl"] .card-link svg { transform: scaleX(-1); }
html[dir="rtl"] .card-link:hover svg { transform: scaleX(-1) translateX(4px); }
html[dir="rtl"] .card ul li { padding-left: 0; padding-right: 1.2rem; }
html[dir="rtl"] .card ul li::before { left: auto; right: 0; }
html[dir="rtl"] .hero-badge,
html[dir="rtl"] .value-item,
html[dir="rtl"] .contact-row,
html[dir="rtl"] .badge-pill { flex-direction: row-reverse; }
html[dir="rtl"] .testimonial-arrow.prev { left: auto; right: -60px; }
html[dir="rtl"] .testimonial-arrow.next { right: auto; left: -60px; }
html[dir="rtl"] .breadcrumb { flex-direction: row-reverse; justify-content: flex-end; }
html[dir="rtl"] .back-to-top { right: auto; left: 1.6rem; }
html[dir="rtl"] .hours-list li,
html[dir="rtl"] .footer-bottom,
html[dir="rtl"] .cta-banner,
html[dir="rtl"] .stat-strip .stat-grid > div { direction: rtl; }
html[dir="rtl"] .process-step::before { left: auto; right: 1.6rem; }
html[dir="rtl"] .faq-q { flex-direction: row-reverse; }

/* ── responsive ── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16/9; }
  .grid-3, .process-grid, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .nav-phone span { display: none; }
  .site-header.mobile-open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black); padding: 1.4rem 1.75rem; gap: 1.1rem; border-top: 1px solid rgba(185,133,47,0.2);
  }
  .grid-3, .value-grid, .grid-2, .process-grid, .grid-4, .gallery-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
