/* ============================================================
   MODERN TILES — Luxury Premium Stylesheet
   Palette: Slate #3b4345  •  Sand/Gold #ccae84
   Type: Cormorant Garamond (display serif) + Jost (sans)
   ============================================================ */

:root {
  --slate: #3b4345;
  --slate-deep: #2c3334;
  --slate-soft: #545d5f;
  --sand: #ccae84;
  --sand-deep: #b8975f;
  --sand-soft: #e3d3b8;
  --ivory: #f7f4ee;
  --cream: #fbf9f5;
  --paper: #ffffff;
  --ink: #20262700;

  --text: #2a3132;
  --text-soft: #5c6566;
  --line: #e7e1d6;

  --font-serif: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-urdu: 'IBM Plex Sans Arabic', 'Noto Sans Arabic', 'Segoe UI', sans-serif;

  --container: 1240px;
  --radius: 4px;
  --shadow-sm: 0 4px 20px rgba(43, 51, 52, 0.06);
  --shadow-md: 0 18px 50px rgba(43, 51, 52, 0.12);
  --shadow-lg: 0 30px 80px rgba(43, 51, 52, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --z-nav: 50;
  --z-overlay: 60;
  --z-modal: 70;

  /* Floating action buttons (WhatsApp + scroll-to-top) */
  --fab-size: 56px;
  --fab-gap: 14px;
  --fab-edge: 24px;
  --fab-bottom: calc(env(safe-area-inset-bottom, 0px) + var(--fab-edge));
}

/* ----------  Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection { background: var(--sand); color: var(--slate-deep); }

/* ----------  Typography  ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.18; color: var(--slate-deep); letter-spacing: -0.015em; }
.section-title, .hero h1, .cta-banner h2 { font-weight: 400; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--sand-deep); display: inline-block; }
.eyebrow.center::after { content: ""; width: 34px; height: 1px; background: var(--sand-deep); display: inline-block; }

.section-title { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 1rem 0 1.1rem; }
.lead { font-size: 1.06rem; color: var(--text-soft); max-width: 56ch; }

/* ----------  Layout  ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(72px, 11vw, 140px) 0; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.center .eyebrow { justify-content: center; }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1.05rem 2.1rem; border-radius: var(--radius);
  transition: all 0.35s var(--ease); cursor: pointer; white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.btn-primary { background: var(--sand); color: var(--slate-deep); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--sand-deep); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-dark { background: var(--slate); color: var(--ivory); }
.btn-dark:hover { background: var(--slate-deep); }
.btn-dark:hover svg { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--slate-deep); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--slate); background: var(--slate); color: var(--ivory); }
.btn-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn-light:hover { background: var(--sand); color: var(--slate-deep); border-color: var(--sand); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate-deep); position: relative;
}
.link-arrow svg { width: 15px; height: 15px; transition: transform 0.35s var(--ease); }
.link-arrow:hover { color: var(--sand-deep); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ----------  Top bar  ---------- */
.topbar {
  background: var(--slate-deep); color: rgba(247,244,238,0.85);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 40px; gap: 1rem; }
.topbar a:hover { color: var(--sand); }
.topbar-social { display: flex; gap: 1.3rem; align-items: center; }
.topbar-social svg { width: 15px; height: 15px; }
@media (max-width: 720px) { .topbar-left span:nth-child(2) { display: none; } }

/* ----------  Header / Nav  ---------- */
.header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(251,249,245,0.88); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 92px; transition: height 0.4s var(--ease); }
.header.shrink .container { height: 70px; }

/* Logo lockup (official brand image) */
.logo { display: inline-flex; align-items: center; }
.logo img { height: 48px; width: auto; display: block; transition: height 0.4s var(--ease); }
.header.shrink .logo img { height: 40px; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a {
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  color: var(--slate); position: relative; padding: 6px 0;
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--sand-deep); transition: width 0.35s var(--ease); }
.nav a:hover, .nav a.active { color: var(--slate-deep); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.icon-btn { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--slate); transition: all 0.3s var(--ease); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn:hover { background: var(--ivory); color: var(--sand-deep); }

.burger { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.burger span { width: 24px; height: 1.6px; background: var(--slate-deep); transition: all 0.35s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: var(--z-overlay); pointer-events: none; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(32,38,39,0.5); opacity: 0; transition: opacity 0.4s var(--ease); backdrop-filter: blur(2px); }
.drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 380px);
  background: var(--cream); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform 0.45s var(--ease);
  padding: 30px 32px; display: flex; flex-direction: column;
}
.drawer.open { pointer-events: auto; }
.drawer.open .drawer-backdrop { opacity: 1; }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.4rem; }
.drawer-nav { display: flex; flex-direction: column; gap: 0.4rem; }
.drawer-nav a { font-family: var(--font-serif); font-size: 1.7rem; color: var(--slate-deep); padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.drawer-nav a:hover { color: var(--sand-deep); padding-left: 8px; transition: all 0.3s var(--ease); }
.drawer-foot { margin-top: auto; font-size: 0.8rem; color: var(--text-soft); letter-spacing: 0.04em; }
.drawer-foot a { color: var(--sand-deep); }

/* ----------  Hero  ---------- */
.hero { position: relative; min-height: clamp(620px, 92vh, 940px); display: flex; align-items: center; overflow: hidden; background: var(--slate-deep); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 16s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(32,38,39,0.86) 0%, rgba(32,38,39,0.55) 45%, rgba(32,38,39,0.2) 100%); }
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 720px; color: var(--ivory); }
.hero .eyebrow { color: var(--sand); }
.hero .eyebrow::before { background: var(--sand); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.2vw, 4.3rem); font-weight: 500; line-height: 1.15; margin: 1.2rem 0 1.5rem; }
.hero h1 em { font-style: italic; color: var(--sand); }
.hero p { font-size: 1.15rem; color: rgba(247,244,238,0.82); max-width: 50ch; margin-bottom: 2.4rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 3rem; margin-top: 3.6rem; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-serif); font-size: 2.4rem; color: var(--sand); line-height: 1; }
.hero-stats .lbl { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,244,238,0.7); margin-top: 6px; }
.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; color: rgba(247,244,238,0.7); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-hint .line { width: 1px; height: 46px; background: rgba(255,255,255,0.4); position: relative; overflow: hidden; }
.scroll-hint .line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--sand); animation: scrollDot 2s var(--ease) infinite; }
@keyframes scrollDot { 0% { top: -50%; } 100% { top: 100%; } }

/* ----------  Marquee / trust strip  ---------- */
.marquee { background: var(--slate); color: var(--ivory); overflow: hidden; border-block: 1px solid rgba(204,174,132,0.18); }
.marquee-track { display: flex; gap: 4rem; padding: 18px 0; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: rgba(247,244,238,0.75); display: inline-flex; align-items: center; gap: 4rem; }
.marquee-track span::after { content: "✦"; color: var(--sand); font-style: normal; font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------  Categories / Collections  ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 3.5rem; }
.cat-card { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3/4; cursor: pointer; box-shadow: var(--shadow-sm); }
.cat-card.tall { grid-row: span 2; aspect-ratio: auto; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(32,38,39,0.82) 0%, rgba(32,38,39,0.15) 55%, rgba(32,38,39,0.05) 100%); transition: opacity 0.5s; }
.cat-card:hover img { transform: scale(1.07); }
.cat-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px; z-index: 2; color: #fff; }
.cat-body .ix { font-size: 0.7rem; letter-spacing: 0.3em; color: var(--sand); text-transform: uppercase; }
.cat-body h3 { color: #fff; font-size: 1.85rem; margin: 0.4rem 0 0.5rem; }
.cat-body p { font-size: 0.92rem; color: rgba(247,244,238,0.82); margin-bottom: 1rem; max-width: 38ch; opacity: 0; max-height: 0; transition: all 0.5s var(--ease); }
.cat-card:hover .cat-body p { opacity: 1; max-height: 80px; }
.cat-body .more { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand); display: inline-flex; gap: 0.5rem; align-items: center; }
.cat-body .more svg { width: 14px; height: 14px; }

/* ----------  Split / About  ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.split.rev { direction: rtl; } .split.rev > * { direction: ltr; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split-media .badge {
  position: absolute; bottom: -28px; right: -28px; background: var(--sand); color: var(--slate-deep);
  width: 168px; height: 168px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow-md); padding: 1rem;
}
.split-media .badge .b-num { font-family: var(--font-serif); font-size: 2.8rem; line-height: 1; }
.split-media .badge .b-txt { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 6px; }
.feature-list { margin-top: 2rem; display: grid; gap: 1.4rem; }
.feature-list li { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature-list .fi { flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--ivory); display: grid; place-items: center; color: var(--sand-deep); }
.feature-list .fi svg { width: 22px; height: 22px; }
.feature-list h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; color: var(--slate-deep); margin-bottom: 2px; }
.feature-list p { font-size: 0.92rem; color: var(--text-soft); margin: 0; }

/* ----------  Why / Values strip  ---------- */
.values { background: var(--slate-deep); color: var(--ivory); }
.values .eyebrow { color: var(--sand); }
.values .eyebrow::before, .values .eyebrow.center::after { background: var(--sand); }
.values .section-title { color: #fff; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(204,174,132,0.18); border: 1px solid rgba(204,174,132,0.18); margin-top: 3.5rem; border-radius: var(--radius); overflow: hidden; }
.value-cell { background: var(--slate-deep); padding: 42px 30px; transition: background 0.4s var(--ease); }
.value-cell:hover { background: var(--slate); }
.value-cell .vi { width: 52px; height: 52px; color: var(--sand); margin-bottom: 1.4rem; }
.value-cell .vi svg { width: 100%; height: 100%; }
.value-cell h3 { color: #fff; font-size: 1.45rem; margin-bottom: 0.6rem; }
.value-cell p { font-size: 0.9rem; color: rgba(247,244,238,0.72); margin: 0; }

/* ----------  Catalogue (PDF) section  ---------- */
.catalogues { background: var(--ivory); }
.cat-pdf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 3.5rem; }
.pdf-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  display: flex; flex-direction: column; cursor: pointer;
}
.pdf-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.pdf-cover { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--slate); }
.pdf-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.pdf-card:hover .pdf-cover img { transform: scale(1.06); }
.pdf-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(32,38,39,0.45), transparent 60%); }
.pdf-tag { position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(251,249,245,0.92); color: var(--slate-deep); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; font-weight: 600; }
.pdf-view { position: absolute; bottom: 16px; right: 16px; z-index: 2; width: 50px; height: 50px; border-radius: 50%; background: var(--sand); color: var(--slate-deep); display: grid; place-items: center; transform: translateY(8px); opacity: 0; transition: all 0.4s var(--ease); }
.pdf-view svg { width: 22px; height: 22px; }
.pdf-card:hover .pdf-view { transform: translateY(0); opacity: 1; }
.pdf-info { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.pdf-info h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.pdf-info p { font-size: 0.9rem; color: var(--text-soft); margin: 0 0 1.3rem; flex: 1; }
.pdf-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--line); }
.pdf-meta .size { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); display: inline-flex; align-items: center; gap: 0.5rem; }
.pdf-meta .size svg { width: 16px; height: 16px; color: var(--sand-deep); }
.pdf-meta .open { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand-deep); font-weight: 600; display: inline-flex; align-items: center; gap: 0.45rem; }
.pdf-meta .open svg { width: 15px; height: 15px; }
.brand-group { margin-top: 3.6rem; }
.brand-group:first-of-type { margin-top: 3.5rem; }
.brand-head { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.8rem; }
.brand-head h3 { font-size: 1.6rem; font-weight: 500; white-space: nowrap; }
.brand-head .meta { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand-deep); font-weight: 500; white-space: nowrap; }
.brand-head .rule { flex: 1; height: 1px; background: var(--line); }
.proj-list span { font-size: 0.92rem; color: var(--text-soft); }
.catalogue-note { margin-top: 2.6rem; text-align: center; font-size: 0.86rem; color: var(--text-soft); }
.catalogue-note code { background: var(--paper); border: 1px solid var(--line); padding: 2px 8px; border-radius: 4px; font-size: 0.82rem; color: var(--slate-deep); }

/* ----------  Gallery / Lookbook  ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; margin-top: 3.2rem; }
.g-item { overflow: hidden; border-radius: var(--radius); position: relative; cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.g-item:hover img { transform: scale(1.08); }
.g-item::after { content: ""; position: absolute; inset: 0; background: rgba(59,67,69,0); transition: background 0.4s; }
.g-item:hover::after { background: rgba(59,67,69,0.18); }
.g-item .zoom { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transition: opacity 0.4s; z-index: 2; }
.g-item .zoom span { width: 50px; height: 50px; border-radius: 50%; background: rgba(251,249,245,0.92); color: var(--slate-deep); display: grid; place-items: center; }
.g-item .zoom svg { width: 20px; height: 20px; }
.g-item:hover .zoom { opacity: 1; }
.g-item.w2 { grid-column: span 2; } .g-item.h2 { grid-row: span 2; }

/* ----------  Process / Steps  ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 3.5rem; }
.step { position: relative; padding-top: 2rem; }
.step .n { font-family: var(--font-serif); font-size: 3.2rem; color: var(--sand); line-height: 1; opacity: 0.55; }
.step h3 { font-size: 1.4rem; margin: 0.8rem 0 0.6rem; }
.step p { font-size: 0.92rem; color: var(--text-soft); margin: 0; }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 46px; height: 2px; background: var(--sand); }

/* ----------  Testimonials  ---------- */
.testimonials { background: var(--cream); }
.quote-wrap { max-width: 860px; margin: 3rem auto 0; text-align: center; position: relative; }
.quote-mark { font-family: var(--font-serif); font-size: 8rem; color: var(--sand); line-height: 0.6; opacity: 0.4; height: 60px; }
.quote { display: none; }
.quote.active { display: block; animation: fadeUp 0.6s var(--ease); }
.quote p { font-family: var(--font-serif); font-size: clamp(1.4rem, 3vw, 2.1rem); font-style: italic; color: var(--slate-deep); line-height: 1.45; margin-bottom: 1.8rem; }
.quote .who { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand-deep); font-weight: 600; }
.quote .role { font-size: 0.8rem; color: var(--text-soft); letter-spacing: 0.04em; text-transform: none; margin-top: 4px; }
.quote-dots { display: flex; gap: 0.7rem; justify-content: center; margin-top: 2.4rem; }
.quote-dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: all 0.3s; }
.quote-dots button.active { background: var(--sand-deep); width: 26px; border-radius: 100px; }

/* ----------  CTA banner  ---------- */
.cta-banner { position: relative; overflow: hidden; background: var(--slate-deep); }
.cta-banner .bg { position: absolute; inset: 0; opacity: 0.22; }
.cta-banner .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner .container { position: relative; z-index: 2; text-align: center; }
.cta-banner h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); }
.cta-banner p { color: rgba(247,244,238,0.8); max-width: 50ch; margin: 1.2rem auto 2.2rem; }
.cta-banner .hero-cta { justify-content: center; }

/* ----------  Footer  ---------- */
.footer { background: var(--slate-deep); color: rgba(247,244,238,0.75); padding-top: 80px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(204,174,132,0.18); }
.footer .logo .word b { color: #fff; }
.footer-brand p { font-size: 0.92rem; margin: 1.4rem 0 1.6rem; max-width: 34ch; color: rgba(247,244,238,0.62); }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(204,174,132,0.3); display: grid; place-items: center; color: var(--sand); transition: all 0.3s var(--ease); }
.footer-social a:hover { background: var(--sand); color: var(--slate-deep); border-color: var(--sand); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.4rem; font-weight: 600; }
.footer-col ul { display: grid; gap: 0.8rem; }
.footer-col a { font-size: 0.92rem; color: rgba(247,244,238,0.66); transition: color 0.3s, padding 0.3s; }
.footer-col a:hover { color: var(--sand); padding-left: 5px; }
.footer-contact li { display: flex; gap: 0.8rem; font-size: 0.9rem; margin-bottom: 1rem; align-items: flex-start; color: rgba(247,244,238,0.66); }
.footer-contact svg { width: 18px; height: 18px; color: var(--sand); flex: none; margin-top: 2px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: 0.8rem; color: rgba(247,244,238,0.5); flex-wrap: wrap; gap: 1rem; }
.footer-bottom a:hover { color: var(--sand); }

/* ----------  Lightbox  ---------- */
.lightbox { position: fixed; inset: 0; z-index: var(--z-modal); background: rgba(20,24,25,0.94); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; animation: fade 0.3s ease; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 24px; right: 28px; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; display: grid; place-items: center; transition: background 0.3s; }
.lightbox-close:hover { background: var(--sand); color: var(--slate-deep); }
.lightbox-close svg { width: 24px; height: 24px; }

/* ----------  Scroll reveal  ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

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

/* ----------  Language switcher  ---------- */
.lang-switch { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; background: var(--paper); }
.lang-switch button { padding: 7px 13px; font-size: 0.72rem; letter-spacing: 0.08em; font-weight: 500; color: var(--slate); transition: all 0.3s var(--ease); line-height: 1; }
.lang-switch button.active { background: var(--slate); color: var(--ivory); }
.lang-switch button:not(.active):hover { color: var(--sand-deep); }
.lang-switch .urdu { font-family: var(--font-urdu); font-size: 0.92rem; }
.drawer .lang-switch { margin: 1.6rem 0 0; }

/* ----------  Founder / CEO section  ---------- */
.founder { background: var(--cream); }
.founder-card {
  display: grid; grid-template-columns: 0.82fr 1.18fr; align-items: stretch;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md); margin-top: 3.4rem;
}
.founder-portrait { position: relative; background: var(--slate); }
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; min-height: 460px; }
.founder-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(32,38,39,0.35), transparent 45%); }
.founder-portrait .tag { position: absolute; left: 24px; bottom: 24px; z-index: 2; background: var(--sand); color: var(--slate-deep); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; padding: 8px 16px; border-radius: 100px; }
.founder-body { padding: clamp(34px, 4vw, 62px); display: flex; flex-direction: column; justify-content: center; }
.founder-body h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0 0.3rem; }
.founder-role { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand-deep); font-weight: 600; }
.founder-body .quote-lg { font-family: var(--font-serif); font-weight: 400; font-style: italic; font-size: clamp(1.15rem, 2.2vw, 1.5rem); color: var(--slate-deep); line-height: 1.5; margin: 1.6rem 0; position: relative; padding-left: 22px; border-left: 2px solid var(--sand); }
.founder-body p.intro { color: var(--text-soft); margin-bottom: 1.6rem; }
.founder-sign { display: flex; align-items: center; gap: 1rem; margin-top: 0.6rem; }
.founder-sign .name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--slate-deep); }
.founder-sign .line { flex: 1; height: 1px; background: var(--line); }

/* Google Business button */
.btn-google { background: var(--paper); color: var(--slate-deep); border: 1px solid var(--line); }
.btn-google:hover { border-color: var(--sand); background: var(--ivory); }
.btn-google .g { width: 17px; height: 17px; }
.btn .stars { color: #fbbc04; letter-spacing: 1px; }

/* ============================================================
   RTL / URDU SUPPORT
   ============================================================ */
html[lang="ur"] body { font-family: var(--font-urdu); font-weight: 300; line-height: 1.95; font-size: 16.5px; }
html[lang="ur"] h1, html[lang="ur"] h2, html[lang="ur"] h3, html[lang="ur"] h4 { font-family: var(--font-urdu); font-weight: 500; line-height: 1.55; letter-spacing: 0; }
html[lang="ur"] .hero h1 { line-height: 1.4; font-weight: 600; }
html[lang="ur"] .lead, html[lang="ur"] .founder-body p.intro { line-height: 2; }

/* Urdu must not be uppercased or letter-spaced */
html[lang="ur"] .eyebrow, html[lang="ur"] .nav a, html[lang="ur"] .btn, html[lang="ur"] .link-arrow,
html[lang="ur"] .topbar, html[lang="ur"] .pdf-tag, html[lang="ur"] .pdf-meta .size, html[lang="ur"] .pdf-meta .open,
html[lang="ur"] .footer-col h4, html[lang="ur"] .quote .who, html[lang="ur"] .hero-stats .lbl, html[lang="ur"] .cat-body .ix,
html[lang="ur"] .cat-body .more, html[lang="ur"] .founder-role, html[lang="ur"] .founder-portrait .tag,
html[lang="ur"] .split-media .badge .b-txt, html[lang="ur"] .value-cell, html[lang="ur"] .drawer-foot,
html[lang="ur"] .footer-bottom, html[lang="ur"] .scroll-hint, html[lang="ur"] .lang-switch button {
  text-transform: none; letter-spacing: 0;
}
html[lang="ur"] .eyebrow { gap: 0.6rem; }

/* RTL layout direction */
[dir="rtl"] { direction: rtl; }
[dir="rtl"] .feature-list li, [dir="rtl"] .footer-contact li, [dir="rtl"] .pdf-meta .size, [dir="rtl"] .pdf-meta .open { text-align: right; }
/* Flip directional arrows */
[dir="rtl"] .btn svg, [dir="rtl"] .link-arrow svg, [dir="rtl"] .cat-body .more svg, [dir="rtl"] .pdf-meta .open svg, [dir="rtl"] .founder-sign + * svg { transform: scaleX(-1); }
[dir="rtl"] .btn-primary:hover svg, [dir="rtl"] .btn-dark:hover svg, [dir="rtl"] .btn-light:hover svg { transform: scaleX(-1) translateX(4px); }
[dir="rtl"] .link-arrow:hover svg, [dir="rtl"] .cat-body .more svg { transform: scaleX(-1); }
[dir="rtl"] .nav a::after { left: auto; right: 0; }
[dir="rtl"] .step::before { left: auto; right: 0; }
[dir="rtl"] .founder-body .quote-lg { padding-left: 0; padding-right: 22px; border-left: none; border-right: 2px solid var(--sand); }
[dir="rtl"] .footer-col a:hover { padding-left: 0; padding-right: 5px; }
[dir="rtl"] .drawer-nav a:hover { padding-left: 0; padding-right: 8px; }
/* Drawer slides from left in RTL */
[dir="rtl"] .drawer-panel { right: auto; left: 0; transform: translateX(-100%); }
[dir="rtl"] .drawer.open .drawer-panel { transform: translateX(0); }
/* Badge & decorative offsets */
[dir="rtl"] .split-media .badge { right: auto; left: -28px; }
[dir="rtl"] .founder-portrait .tag { left: auto; right: 24px; }
[dir="rtl"] .pdf-tag { left: auto; right: 16px; }
[dir="rtl"] .pdf-view { right: auto; left: 16px; }
[dir="rtl"] .to-top { right: auto; left: 28px; }

/* Back to top — bottom anchor of the floating column */
.to-top { position: fixed; bottom: var(--fab-bottom); right: var(--fab-edge); width: var(--fab-size); height: var(--fab-size); border-radius: 50%; background: var(--slate); color: var(--ivory); display: grid; place-items: center; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(14px); transition: opacity 0.4s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease); z-index: var(--z-nav); }
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--sand); color: var(--slate-deep); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.to-top svg { width: 22px; height: 22px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 60px; }
  .split.rev { direction: ltr; }
  .split-media { max-width: 520px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-portrait img { min-height: 380px; }
}
@media (max-width: 880px) {
  .nav, .header-actions .icon-btn { display: none; }
  .burger { display: flex; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-card.tall { grid-row: span 1; aspect-ratio: 3/4; }
  .cat-pdf-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .cat-grid, .cat-pdf-grid, .gallery-grid, .value-grid, .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 240px; }
  .g-item.w2 { grid-column: span 1; } .g-item.h2 { grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats { gap: 2rem; }
  .split-media .badge { width: 130px; height: 130px; right: -10px; bottom: -20px; }
  .hero-cta .btn { flex: 1; justify-content: center; }
  .brand-head { flex-wrap: wrap; gap: 0.3rem 1rem; }
  .brand-head .rule { display: none; }
  .proj-list { grid-template-columns: 1fr !important; }
}

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

/* ============================================================
   PRODUCTION UPDATE — new components
   ============================================================ */

/* ---------- Premium tile intro ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 200;
  background: radial-gradient(120% 120% at 50% 40%, #414a4c 0%, var(--slate-deep) 55%, #262c2d 100%);
  display: grid; place-items: center; transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#preloader.done { opacity: 0; visibility: hidden; }
#preloader .pl-inner { position: relative; display: grid; place-items: center; }
#preloader .pl-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr);
  gap: 10px; width: min(230px, 54vw); aspect-ratio: 1;
}
#preloader .pl-tile {
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(204,174,132,0.95), rgba(184,151,95,0.75));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 6px 18px rgba(0,0,0,0.25);
  opacity: 0; transform: scale(0.3) rotate(-8deg);
  animation: plTileIn 0.62s var(--ease) forwards, plTileOut 0.7s var(--ease) 1.5s forwards;
}
/* staggered assembly like tiles being laid */
#preloader .pl-tile:nth-child(1){animation-delay:0.05s,1.55s}
#preloader .pl-tile:nth-child(2){animation-delay:0.13s,1.58s}
#preloader .pl-tile:nth-child(3){animation-delay:0.21s,1.61s}
#preloader .pl-tile:nth-child(4){animation-delay:0.17s,1.58s}
#preloader .pl-tile:nth-child(5){animation-delay:0.25s,1.62s}
#preloader .pl-tile:nth-child(6){animation-delay:0.33s,1.65s}
#preloader .pl-tile:nth-child(7){animation-delay:0.29s,1.62s}
#preloader .pl-tile:nth-child(8){animation-delay:0.37s,1.66s}
#preloader .pl-tile:nth-child(9){animation-delay:0.45s,1.69s}
#preloader .pl-logo {
  position: absolute; width: min(210px, 50vw); opacity: 0; transform: translateY(10px) scale(0.94);
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
  animation: plLogoIn 0.9s var(--ease) 1.5s forwards;
}
@keyframes plTileIn { to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes plTileOut { to { opacity: 0; transform: scale(1.35); } }
@keyframes plLogoIn { 0% { opacity: 0; transform: translateY(10px) scale(0.94); } 100% { opacity: 1; transform: none; } }
body.loading { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  #preloader .pl-tile { opacity: 1; transform: none; animation: none; }
  #preloader .pl-logo { opacity: 1; transform: none; animation: none; }
}

/* ---------- Premium ticker ---------- */
.ticker { background: var(--slate-deep); border-block: 1px solid rgba(204,174,132,0.2); overflow: hidden; position: relative; }
.ticker::before, .ticker::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.ticker::before { left: 0; background: linear-gradient(90deg, var(--slate-deep), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--slate-deep), transparent); }
.ticker-track { display: flex; align-items: center; gap: 2.4rem; padding: 20px 0; width: max-content; animation: tickerScroll 40s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 2.4rem; font-family: var(--font-serif); font-weight: 400; font-size: 1.05rem; letter-spacing: 0.02em; color: rgba(247,244,238,0.9); white-space: nowrap; }
.ticker-item::after { content: ""; width: 7px; height: 7px; background: var(--sand); transform: rotate(45deg); flex: none; opacity: 0.9; }
@keyframes tickerScroll { to { transform: translateX(-50%); } }
html[lang="ur"] .ticker-item { font-family: var(--font-urdu); font-size: 1rem; }

/* ---------- Why choose ---------- */
.why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 3.4rem; align-items: stretch; }
.why-card { display: flex; flex-direction: column; }
.why-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.why-ic { width: 54px; height: 54px; border-radius: 14px; background: var(--ivory); display: grid; place-items: center; color: var(--sand-deep); margin-bottom: 1.3rem; transition: background 0.4s var(--ease), color 0.4s var(--ease); }
.why-card:hover .why-ic { background: var(--sand); color: var(--slate-deep); }
.why-ic svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.94rem; color: var(--text-soft); margin: 0; }
.why-cta { display: flex; justify-content: center; margin-top: 3rem; }

/* ---------- Logo showcases (clients / partners) ---------- */
.logo-strip { display: grid; gap: 20px; margin-top: 3.2rem; }
.clients-grid { grid-template-columns: repeat(5, 1fr); }
.partners-grid { grid-template-columns: repeat(4, 1fr); }
.logo-cell {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  display: grid; place-items: center; padding: 30px 24px; min-height: 150px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.logo-cell img { max-height: 92px; max-width: 100%; width: auto; object-fit: contain; }
.logo-cell:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sand); }
/* clients: elegant grayscale, colour on hover */
.clients-grid .logo-cell img { filter: grayscale(1); opacity: 0.72; transition: filter 0.4s var(--ease), opacity 0.4s var(--ease); }
.clients-grid .logo-cell:hover img { filter: grayscale(0); opacity: 1; }
.partners-grid .logo-cell { padding: 26px; min-height: 160px; }

/* ---------- View-all button row ---------- */
.cat-all { display: flex; justify-content: center; margin-top: 2.8rem; }

/* ---------- Reviews grid ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 3.2rem; max-width: 960px; margin-left: auto; margin-right: auto; }
.review-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 34px 32px; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-card .stars { color: #e8b84b; letter-spacing: 3px; font-size: 1rem; display: block; margin-bottom: 1.1rem; }
.review-card p { font-size: 1.02rem; color: var(--slate-deep); line-height: 1.6; margin: 0; }
.reviews-cta { display: flex; justify-content: center; margin-top: 2.8rem; }

/* ---------- Nav highlighted Catalogues ---------- */
.nav a.nav-cta { color: var(--slate-deep); border: 1px solid var(--sand); border-radius: 100px; padding: 8px 18px; font-weight: 600; }
.nav a.nav-cta::after { display: none; }
.nav a.nav-cta:hover { background: var(--sand); color: var(--slate-deep); }

/* ---------- Footer redesign ---------- */
.footer-info { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-bottom: 52px; border-bottom: 1px solid rgba(204,174,132,0.18); }
.footer-info .fi-col h4 { font-family: var(--font-sans); font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.1rem; font-weight: 600; }
.footer-info .fi-col p, .footer-info .fi-col a { font-size: 0.94rem; color: rgba(247,244,238,0.7); line-height: 1.9; display: block; }
.footer-info .fi-col a:hover { color: var(--sand); }
.footer-info .fi-social { display: flex; gap: 0.7rem; }
.footer-info .fi-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(204,174,132,0.3); display: grid; place-items: center; color: var(--sand); transition: all 0.3s var(--ease); }
.footer-info .fi-social a:hover { background: var(--sand); color: var(--slate-deep); border-color: var(--sand); }
.footer-info .fi-social svg { width: 18px; height: 18px; }
.footer-lower { display: flex; align-items: center; justify-content: space-between; padding: 34px 0 40px; gap: 2rem; flex-wrap: wrap; }
.footer-lower .fl-brand { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-lower .fl-brand img { height: 92px; width: auto; }
.footer-lower .fl-brand span { font-size: 0.82rem; color: rgba(247,244,238,0.5); }
.footer-lower .fl-right { text-align: right; }
.footer-lower .fl-right .big { font-family: var(--font-serif); font-size: 1.5rem; color: #fff; }
.footer-lower .fl-right .small { font-size: 0.84rem; color: var(--sand); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; }
html[lang="ur"] .footer-info .fi-col h4, html[lang="ur"] .footer-lower .fl-right .small { text-transform: none; letter-spacing: 0; }

/* ---------- Topbar phones ---------- */
.topbar-phones { display: flex; gap: 1.6rem; align-items: center; }
.topbar-phones a { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar-phones svg { width: 13px; height: 13px; color: var(--sand); }

/* ---------- Responsive for new blocks ---------- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-info { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 880px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-lower { flex-direction: column; align-items: flex-start; gap: 1.6rem; }
  .footer-lower .fl-right { text-align: left; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .footer-info { grid-template-columns: 1fr; gap: 30px; }
  .topbar-phones { gap: 1rem; }
  .ticker-item { font-size: 0.96rem; gap: 1.8rem; }
  .ticker-track { gap: 1.8rem; }
}

/* RTL tweaks for new blocks */
[dir="rtl"] .ticker-track { animation-name: tickerScrollRtl; }
@keyframes tickerScrollRtl { to { transform: translateX(50%); } }

/* ============================================================
   PHASE 2 — polish components
   ============================================================ */

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 90; background: transparent; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--sand-deep), var(--sand)); transition: width 0.1s linear; }

/* ---------- Header WhatsApp icon ---------- */
.wa-head {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; flex: none;
  color: #fff; background: linear-gradient(145deg, #25d366, #1ebe5a);
  box-shadow: 0 6px 16px rgba(37,211,102,0.32); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.wa-head svg { width: 22px; height: 22px; }
.wa-head:hover { transform: translateY(-2px) scale(1.06); box-shadow: 0 10px 22px rgba(37,211,102,0.45); }
.header.shrink .wa-head { width: 38px; height: 38px; }
@media (max-width: 880px) { .wa-head { display: none; } }

/* ---------- Collections (balanced full-width grid: 3-up + 2-up) ---------- */
.col-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-top: 3.6rem; }
.col-card {
  position: relative; overflow: hidden; border-radius: 16px; grid-column: span 2;
  height: clamp(320px, 30vw, 410px); box-shadow: var(--shadow-sm); cursor: pointer; isolation: isolate;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.col-card:nth-child(4), .col-card:nth-child(5) { grid-column: span 3; }
.col-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.col-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(26,31,32,0.92) 0%, rgba(26,31,32,0.55) 30%, rgba(26,31,32,0.12) 62%, rgba(26,31,32,0) 100%); transition: opacity 0.5s; }
.col-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.col-card:hover img { transform: scale(1.07); }
.col-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 30px 30px 28px; color: #fff; }
.col-body .ix { font-family: var(--font-serif); font-size: 0.82rem; letter-spacing: 0.22em; color: var(--sand); }
.col-body h3 { color: #fff; font-size: 1.65rem; margin: 0.4rem 0 0.55rem; transition: transform 0.45s var(--ease); }
.col-card:hover .col-body h3 { transform: translateY(-2px); }
.col-body p { font-size: 0.94rem; color: rgba(247,244,238,0.9); margin: 0 0 1rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.5s var(--ease), opacity 0.45s var(--ease), margin 0.5s var(--ease); }
.col-card:hover .col-body p { max-height: 90px; opacity: 1; }
.col-body .more { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand); font-weight: 600; }
.col-body .more svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.col-card:hover .col-body .more svg { transform: translateX(5px); }
html[lang="ur"] .col-body .more { text-transform: none; letter-spacing: 0; }
@media (max-width: 1024px) {
  .col-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .col-card, .col-card:nth-child(4), .col-card:nth-child(5) { grid-column: span 1; }
  .col-card:nth-child(5) { grid-column: 1 / -1; }
  .col-card { height: clamp(280px, 44vw, 380px); }
}
@media (max-width: 600px) {
  .col-grid { grid-template-columns: 1fr; gap: 16px; }
  .col-card, .col-card:nth-child(4), .col-card:nth-child(5) { grid-column: 1 / -1; }
  .col-card { height: 300px; }
  .col-body p { max-height: 90px; opacity: 1; }
}

/* ---------- Featured catalogues (3 in a row, brand covers) ---------- */
.cat-featured { grid-template-columns: repeat(3, 1fr); max-width: 1040px; margin-left: auto; margin-right: auto; }
.pdf-cover img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Clients infinite carousel ---------- */
.clients-sec .logo-marquee { margin-top: 3.2rem; overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logo-marquee-track { display: flex; gap: 26px; width: max-content; animation: lmScroll 34s linear infinite; }
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
.lm-cell {
  flex: 0 0 auto; width: clamp(220px, 30vw, 300px); height: 168px; display: grid; place-items: center;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.lm-cell img { max-height: 100px; max-width: 84%; object-fit: contain; transition: transform 0.5s var(--ease); }
.lm-cell:hover { transform: scale(1.05); box-shadow: var(--shadow-md); border-color: var(--sand); }
@keyframes lmScroll { to { transform: translateX(-50%); } }
[dir="rtl"] .logo-marquee-track { animation-name: lmScrollRtl; }
@keyframes lmScrollRtl { to { transform: translateX(50%); } }

/* ---------- Partners premium showcase ---------- */
.partners-showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 3.4rem; }
.partner-cell {
  position: relative; display: grid; place-items: center; min-height: 180px; padding: 34px 28px;
  background: linear-gradient(160deg, #ffffff, #f4efe6); border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.partner-cell::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% 0%, rgba(204,174,132,0.16), transparent 60%); opacity: 0; transition: opacity 0.45s var(--ease); }
.partner-cell img { max-height: 110px; max-width: 80%; object-fit: contain; position: relative; z-index: 1; transition: transform 0.5s var(--ease); }
.partner-cell:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--sand); }
.partner-cell:hover::before { opacity: 1; }
.partner-cell:hover img { transform: scale(1.06); }

/* ---------- Reviews carousel ---------- */
.rev-carousel { max-width: 860px; margin: 3rem auto 0; }
.rev-viewport { overflow: hidden; }
.rev-track { display: flex; transition: transform 0.6s var(--ease); }
.rev-slide { flex: 0 0 100%; padding: 6px 10px; box-sizing: border-box; }
.rev-card {
  position: relative; background: rgba(255,255,255,0.72); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.9); border-radius: 22px; padding: 48px 46px 44px; text-align: center;
  box-shadow: 0 26px 60px rgba(43,51,52,0.12); overflow: hidden;
}
.rev-card::before { content: ""; position: absolute; inset: 0; border-radius: 22px; padding: 1px; background: linear-gradient(140deg, rgba(204,174,132,0.6), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.rev-quote { position: absolute; top: 6px; left: 26px; font-family: var(--font-serif); font-size: 6rem; line-height: 1; color: var(--sand); opacity: 0.28; }
.rev-card .stars { color: #e8b84b; letter-spacing: 4px; font-size: 1.1rem; display: block; margin-bottom: 1.1rem; }
.rev-card p { font-size: clamp(1.05rem, 2.2vw, 1.35rem); line-height: 1.6; color: var(--slate-deep); margin: 0; position: relative; z-index: 1; }
.rev-dots { display: flex; gap: 0.6rem; justify-content: center; margin-top: 2rem; }
.rev-dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: all 0.3s var(--ease); cursor: pointer; }
.rev-dots button.active { background: var(--sand-deep); width: 28px; border-radius: 100px; }
html[lang="ur"] .rev-quote { left: auto; right: 26px; }

/* ---------- Contact info section ---------- */
.contact-info-sec { background: var(--ivory); }
.ci-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 3.4rem; }
.ci-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 34px 30px; text-align: center;
  display: flex; flex-direction: column; align-items: center; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.ci-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.ci-ic { width: 58px; height: 58px; border-radius: 16px; background: var(--ivory); display: grid; place-items: center; color: var(--sand-deep); margin-bottom: 1.2rem; transition: background 0.4s var(--ease), color 0.4s var(--ease); }
.ci-card:hover .ci-ic { background: var(--sand); color: var(--slate-deep); }
.ci-ic svg { width: 26px; height: 26px; }
.ci-card h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
.ci-card a, .ci-card p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.7; display: block; }
.ci-card a:hover { color: var(--sand-deep); }
.ci-card .ci-closed { color: #b3543f; font-weight: 500; }
.ci-social { display: flex; gap: 0.6rem; margin-top: 0.2rem; }
.ci-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--slate); transition: all 0.3s var(--ease); }
.ci-social a:hover { background: var(--slate); color: #fff; border-color: var(--slate); }
.ci-social svg { width: 17px; height: 17px; }

/* ---------- Footer simple ---------- */
.footer-simple { padding-top: 64px; padding-bottom: 30px; }
.footer-simple .footer-center { display: flex; justify-content: center; padding-bottom: 34px; }
.footer-simple .footer-center img { height: 118px; width: auto; }
.footer-bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid rgba(204,174,132,0.18); }
.footer-bottom-row span { font-size: 0.86rem; color: rgba(247,244,238,0.68); line-height: 1.4; }
.footer-bottom-row .fb-right { color: var(--sand); }
[dir="rtl"] .footer-bottom-row { direction: ltr; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: var(--fab-edge); z-index: var(--z-nav);
  bottom: calc(var(--fab-bottom) + var(--fab-size) + var(--fab-gap));
  width: var(--fab-size); height: var(--fab-size); border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(145deg, rgba(37,211,102,0.95), rgba(30,190,90,0.95)); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35); box-shadow: 0 12px 30px rgba(37,211,102,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
  animation: waIn 0.6s var(--ease) 2.2s both;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 18px 40px rgba(37,211,102,0.55); }
.wa-float .wa-badge {
  position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px;
  background: #e5484d; color: #fff; font-size: 0.7rem; font-weight: 700; display: grid; place-items: center;
  border: 2px solid var(--cream); box-shadow: 0 2px 6px rgba(0,0,0,0.25); animation: waPulse 2s ease-in-out infinite;
}
@keyframes waIn { from { opacity: 0; transform: scale(0.4) translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes waPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }
/* RTL: mirror the column to the bottom-left */
[dir="rtl"] .wa-float { right: auto; left: var(--fab-edge); }
[dir="rtl"] .wa-float .wa-badge { right: auto; left: -4px; }
[dir="rtl"] .to-top { right: auto; left: var(--fab-edge); }
/* Mobile: smaller buttons + tighter edge, but still perfectly aligned via shared vars */
@media (max-width: 600px) {
  :root { --fab-size: 50px; --fab-gap: 12px; --fab-edge: 16px; }
  .wa-float svg { width: 25px; height: 25px; }
}

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px; border-radius: 50%; pointer-events: none; z-index: 5;
  transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.4s ease;
  background: radial-gradient(circle, rgba(204,174,132,0.13), transparent 62%);
}
@media (hover: none), (pointer: coarse) { .cursor-glow { display: none; } }

/* ---------- Phone numbers always LTR ---------- */
a[href^="tel:"], .topbar-phones, .ci-card a[href^="tel:"] { direction: ltr; unicode-bidi: isolate; }
.topbar-phones a { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar-phones a span { direction: ltr; unicode-bidi: isolate; }

/* ---------- Fix: never mirror brand/Google logos in RTL ---------- */
[dir="rtl"] .btn-google .g, [dir="rtl"] .btn-wa svg, [dir="rtl"] .wa-head svg, [dir="rtl"] .wa-float svg, [dir="rtl"] .fi-social svg, [dir="rtl"] .ci-social svg, [dir="rtl"] .topbar-social svg { transform: none !important; }

/* ---------- Bigger, bolder Urdu buttons ---------- */
html[lang="ur"] .btn { font-size: 0.98rem; font-weight: 500; padding: 1.15rem 2.3rem; letter-spacing: 0; line-height: 1.2; }
html[lang="ur"] .nav a { font-size: 0.98rem; }
html[lang="ur"] .lang-switch button { font-size: 0.9rem; }
html[lang="ur"] .lang-switch .urdu { font-size: 1rem; }

/* ---------- Phase 2 responsive ---------- */
@media (max-width: 1024px) {
  .ci-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-showcase { grid-template-columns: repeat(2, 1fr); }
  .cat-featured { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .lm-cell { width: clamp(200px, 44vw, 260px); }
}
@media (max-width: 760px) {
  .cat-featured { grid-template-columns: 1fr; max-width: 420px; }
  .lm-cell { width: 72vw; }
}
@media (max-width: 600px) {
  .ci-grid { grid-template-columns: 1fr; }
  .footer-bottom-row { justify-content: center; text-align: center; }
  .footer-simple .footer-center img { height: 96px; }
}

/* ============================================================
   PHASE 2.1 — carousels, contact merge, icons, RTL fixes
   ============================================================ */

/* ---------- Coverflow carousel (clients + partners) ---------- */
.lcar { position: relative; max-width: 1120px; margin: 3.4rem auto 0; }
.lcar-viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%); }
.lcar-track { display: flex; direction: ltr; will-change: transform; }
.lcar-slide { flex: 0 0 42%; display: flex; justify-content: center; padding: 30px 14px; box-sizing: border-box; opacity: 0.32; transform: scale(0.82); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.lcar-slide.is-near { opacity: 0.6; transform: scale(0.9); }
.lcar-slide.is-active { opacity: 1; transform: scale(1); }
.lcar-card { width: 100%; max-width: 300px; height: 172px; display: grid; place-items: center; padding: 30px; background: rgba(255,255,255,0.9); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 18px 44px rgba(43,51,52,0.09); transition: box-shadow 0.5s var(--ease), border-color 0.5s var(--ease); overflow: hidden; }
.lcar-card img { max-height: 104px; max-width: 82%; object-fit: contain; display: block; }
.lcar-slide.is-active .lcar-card { box-shadow: 0 28px 64px rgba(43,51,52,0.18); border-color: var(--sand); }
.lcar-dots { display: flex; gap: 0.55rem; justify-content: center; margin-top: 1.8rem; }
.lcar-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; transition: all 0.3s var(--ease); padding: 0; }
.lcar-dots button.active { background: var(--sand-deep); width: 26px; border-radius: 100px; }
@media (max-width: 1024px) { .lcar-slide { flex-basis: 56%; } }
@media (max-width: 680px) { .lcar-slide { flex-basis: 82%; padding: 22px 10px; } .lcar-card { height: 150px; } }

/* ---------- Reviews: keep carousel LTR so RTL never clips it ---------- */
.rev-viewport, .rev-track, .rev-slide { direction: ltr; }
html[lang="ur"] .rev-card p { direction: rtl; }
.rev-card { will-change: transform; }

/* ---------- Contact: map link + CTA ---------- */
.ci-card.ci-maplink { text-decoration: none; }
.ci-maplink p { transition: color 0.3s var(--ease); }
.ci-maplink .ci-maptag { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--sand-deep); }
.ci-maplink .ci-maptag svg { width: 13px; height: 13px; }
.ci-maplink:hover p { color: var(--slate-deep); }
.ci-maplink:hover .ci-maptag { color: var(--slate-deep); }
html[lang="ur"] .ci-maplink .ci-maptag { text-transform: none; letter-spacing: 0; }
.ci-cta { display: flex; justify-content: center; margin-top: 3rem; }

/* ---------- Premium Follow Us icons ---------- */
.ci-social { display: flex; gap: 0.7rem; margin-top: 0.4rem; }
.ci-social a { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: var(--slate); background: var(--ivory); border: 1px solid var(--line); transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.ci-social a:hover { transform: translateY(-3px); background: var(--slate); color: #fff; border-color: var(--slate); box-shadow: var(--shadow-md); }
.ci-social svg { width: 20px; height: 20px; }

/* ---------- Footer logo interactive ---------- */
.footer-logo-link { display: inline-block; cursor: pointer; transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.footer-logo-link:hover { transform: translateY(-3px); opacity: 0.9; }

/* ---------- RTL arrow direction for collection cards ---------- */
[dir="rtl"] .col-body .more svg { transform: scaleX(-1); }
[dir="rtl"] .col-card:hover .col-body .more svg { transform: scaleX(-1) translateX(5px); }

/* ============================================================
   PHASE 2.2 — logo wall, premium reviews, contact background
   ============================================================ */

/* ---------- Continuous logo wall (clients + partners) ---------- */
.logo-wall { position: relative; margin: 3.4rem auto 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%); }
.logo-wall-track { display: flex; align-items: center; gap: 28px; width: max-content; padding: 54px 16px; animation: lwScroll var(--lw-dur, 42s) linear infinite; will-change: transform; transform: translateZ(0); backface-visibility: hidden; }
.logo-wall[data-reverse="1"] .logo-wall-track { animation-direction: reverse; }
@keyframes lwScroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
.lw-card {
  flex: 0 0 auto; width: clamp(216px, 23vw, 272px); height: 158px; display: grid; place-items: center; padding: 30px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 10px 30px rgba(43,51,52,0.10);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.lw-card img { max-height: 94px; max-width: 82%; object-fit: contain; display: block; }
.lw-card:hover { transform: translateY(-6px) scale(1.04); box-shadow: 0 20px 46px rgba(43,51,52,0.18); border-color: var(--sand); }
@media (max-width: 680px) { .lw-card { width: 74vw; } .logo-wall-track { padding: 44px 12px; } }

/* ---------- Premium reviews ---------- */
.rev-carousel { position: relative; overflow: visible; }
.rev-viewport { padding: 14px; margin: -14px; }        /* breathing room so shadows never clip */
.rev-card::before { display: none !important; }         /* drop the old harsh gradient border */
.rev-card {
  position: relative; text-align: center; overflow: visible;
  background: linear-gradient(158deg, rgba(255,255,255,0.96) 0%, rgba(247,244,238,0.82) 100%);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.9); border-radius: 28px;
  padding: 58px 54px 50px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 2px 8px rgba(43,51,52,0.05), 0 22px 44px rgba(43,51,52,0.10), 0 46px 90px rgba(43,51,52,0.09);
}
.rev-quote { position: absolute; top: 8px; left: 34px; font-family: var(--font-serif); font-size: 8.5rem; line-height: 1; color: var(--sand); opacity: 0.22; pointer-events: none; }
html[lang="ur"] .rev-quote { left: auto; right: 34px; }
.rev-card .stars { color: #e8b84b; letter-spacing: 5px; font-size: 1.15rem; display: block; margin-bottom: 1.3rem; position: relative; z-index: 1; }
.rev-card p { font-size: clamp(1.1rem, 2.2vw, 1.4rem); line-height: 1.65; color: var(--slate-deep); margin: 0; position: relative; z-index: 1; }
.rev-dots { margin-top: 2.2rem; }
/* Arrows outside the card */
.rev-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  background: var(--paper); color: var(--slate); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.rev-arrow svg { width: 22px; height: 22px; }
.rev-arrow:hover { background: var(--slate); color: #fff; border-color: var(--slate); box-shadow: var(--shadow-md); }
.rev-prev { left: -68px; } .rev-next { right: -68px; }
.rev-arrow:hover.rev-prev { transform: translateY(-50%) translateX(-2px); }
.rev-arrow:hover.rev-next { transform: translateY(-50%) translateX(2px); }
@media (max-width: 1040px) { .rev-prev { left: -6px; } .rev-next { right: -6px; } }
@media (max-width: 760px) { .rev-arrow { display: none; } }
.reviews-cta .btn-google { transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.reviews-cta .btn-google:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Contact section with luxury background ---------- */
.contact-info-sec.has-bg { background: var(--slate-deep); position: relative; overflow: hidden; }
.contact-info-sec.has-bg .ci-bg { position: absolute; inset: 0; z-index: 0; }
.contact-info-sec.has-bg .ci-bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-info-sec.has-bg .ci-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,31,32,0.9) 0%, rgba(26,31,32,0.82) 45%, rgba(26,31,32,0.92) 100%); }
.contact-info-sec.has-bg > .container { position: relative; z-index: 1; }
.contact-info-sec.has-bg .section-title { color: #fff; }
.contact-info-sec.has-bg .lead { color: rgba(247,244,238,0.84); }
.contact-info-sec.has-bg .eyebrow { color: var(--sand); }
.contact-info-sec.has-bg .eyebrow::before, .contact-info-sec.has-bg .eyebrow.center::after { background: var(--sand); }
/* refined glass cards on the dark image */
.contact-info-sec.has-bg .ci-card {
  background: rgba(255,255,255,0.96); border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28); backdrop-filter: blur(8px);
}
.contact-info-sec.has-bg .ci-card:hover { transform: translateY(-8px); box-shadow: 0 30px 66px rgba(0,0,0,0.36); border-color: var(--sand); }

/* ---------- Mobile Urdu header padding ---------- */
@media (max-width: 880px) {
  html[lang="ur"] .header-actions { gap: 0.7rem; }
  html[lang="ur"] .lang-switch button { padding: 6px 10px; }
}

/* ============================================================
   PHASE 4 — shared carousel, embossed reviews, badge, header, FAB
   ============================================================ */

/* ---------- Shared 3-per-view carousel (clients + partners) ---------- */
.tcar { position: relative; max-width: 1080px; margin: 3.4rem auto 0; }
.tcar-viewport { overflow: hidden; padding: 44px 0; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%); }
.tcar-track { display: flex; direction: ltr; will-change: transform; transform: translate3d(0,0,0); backface-visibility: hidden; }
.tcar-slide { flex: 0 0 33.3333%; display: flex; justify-content: center; padding: 0 12px; box-sizing: border-box; opacity: 0.38; transform: scale(0.86); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.tcar-slide.is-active { opacity: 1; transform: scale(1); }
.tcar-card {
  width: 100%; max-width: 282px; height: 168px; display: grid; place-items: center; padding: 28px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 8px 22px rgba(43,51,52,0.08);
  transition: box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.tcar-card img { max-height: 100px; max-width: 82%; width: auto; object-fit: contain; display: block; }
.tcar-slide.is-active .tcar-card { border-color: var(--sand); box-shadow: 0 12px 30px rgba(43,51,52,0.13); }
@media (max-width: 1024px) { .tcar-slide { flex-basis: 50%; } }
@media (max-width: 680px) { .tcar-slide { flex-basis: 100%; } .tcar-viewport { padding: 34px 0; } }

/* ---------- Reviews: embossed (no heavy shadow), clean container ---------- */
.rev-carousel { overflow: visible; }
.rev-card {
  background: linear-gradient(160deg, #ffffff 0%, #f6f2ea 100%) !important;
  border: 1px solid rgba(43,51,52,0.09) !important; border-radius: 24px !important; overflow: visible !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), inset 0 0 0 1px rgba(255,255,255,0.4), 0 6px 18px rgba(43,51,52,0.06) !important;
  padding: 52px 50px 46px !important;
}
.rev-card::before { display: none !important; }
.rev-quote { top: 6px; opacity: 0.18; font-size: 7.5rem; }
.rev-card .stars { letter-spacing: 4px; margin-bottom: 1.15rem; }
.rev-card p { color: var(--slate-deep); }

/* ---------- About badge (premium plaque, not a circle) ---------- */
.split-media { position: relative; overflow: visible; }
.about-badge {
  position: absolute; left: -20px; bottom: 30px; z-index: 3;
  display: inline-flex; flex-direction: column; align-items: flex-start;
  background: linear-gradient(150deg, var(--sand) 0%, var(--sand-deep) 100%); color: var(--slate-deep);
  padding: 18px 26px 20px; border-radius: 16px;
  box-shadow: 0 18px 40px rgba(184,151,95,0.42), inset 0 1px 0 rgba(255,255,255,0.4);
}
.about-badge .ab-eyebrow { font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600; opacity: 0.82; }
.about-badge .ab-year { font-family: var(--font-serif); font-size: 2.7rem; font-weight: 600; line-height: 1; margin-top: 3px; }
.about-badge .ab-sep { width: 32px; height: 2px; background: rgba(44,51,52,0.5); margin: 11px 0 9px; }
.about-badge .ab-place { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
[dir="rtl"] .about-badge { left: auto; right: -20px; align-items: flex-end; }
html[lang="ur"] .about-badge .ab-eyebrow, html[lang="ur"] .about-badge .ab-place { text-transform: none; letter-spacing: 0; }
@media (max-width: 600px) {
  .about-badge { left: 12px; bottom: 14px; padding: 14px 20px 16px; }
  [dir="rtl"] .about-badge { left: auto; right: 12px; }
  .about-badge .ab-year { font-size: 2.2rem; }
}

/* ---------- Time / phone: always LTR in RTL ---------- */
.ci-time bdi, .ci-time { direction: ltr; unicode-bidi: isolate; }
html[lang="ur"] .ci-time { unicode-bidi: plaintext; }

/* ---------- Contact cards: embossed on the dark image ---------- */
.ci-grid { gap: 26px; }
.contact-info-sec.has-bg .ci-card {
  background: rgba(255,255,255,0.97); border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.9) !important; backdrop-filter: blur(8px);
}
.contact-info-sec.has-bg .ci-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.9) !important; border-color: var(--sand); }

/* ---------- Consistent mobile header (no jump on scroll) ---------- */
@media (max-width: 880px) {
  .header .container, .header.shrink .container { height: 66px; align-items: center; }
  .logo img, .header.shrink .logo img { height: 34px; }
  .header, .header.shrink { padding: 0; }
}

/* ---------- Premium floating WhatsApp (glass + embossed) ---------- */
.wa-float {
  background: radial-gradient(120% 120% at 30% 25%, #2ee06a 0%, #22c35c 55%, #1aa74e 100%);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 10px 26px rgba(37,211,102,0.4), inset 0 1.5px 0 rgba(255,255,255,0.55), inset 0 -3px 8px rgba(0,0,0,0.14);
}
.wa-float svg { width: 27px; height: 27px; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15)); }
.wa-float:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 16px 38px rgba(37,211,102,0.55), inset 0 1.5px 0 rgba(255,255,255,0.6); }
.wa-float:active { transform: translateY(-1px) scale(0.98); }
.wa-float .wa-badge {
  top: -3px; right: -3px; width: 21px; height: 21px; min-width: 0; padding: 0; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.68rem; line-height: 1;
  border: 2px solid var(--cream); box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}
[dir="rtl"] .wa-float .wa-badge { right: auto; left: -3px; }

/* ============================================================
   PHASE 5 — carousel dots, blink guard, mobile review arrows
   ============================================================ */

/* Blink fix: freeze slide transitions during the instant loop-snap */
.tcar-track.tcar-snap .tcar-slide { transition: none !important; }

/* Carousel pagination dots (clients + partners) */
.tcar-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.6rem; }
.tcar-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: none; padding: 0; cursor: pointer; transition: all 0.3s var(--ease); }
.tcar-dots button:hover { background: var(--sand); }
.tcar-dots button.active { background: var(--sand-deep); width: 24px; border-radius: 100px; }

/* Review arrows on mobile — sit beside the dots, never over the text */
@media (max-width: 760px) {
  .rev-arrow { display: grid; top: auto; bottom: 0; transform: none; width: 42px; height: 42px; }
  .rev-prev { left: calc(50% - 92px); right: auto; }
  .rev-next { right: calc(50% - 92px); left: auto; }
  .rev-arrow:hover.rev-prev, .rev-arrow:hover.rev-next { transform: none; }
  .rev-arrow:active { transform: scale(0.94); }
  .rev-dots { margin-top: 1.7rem; }
}

/* ============================================================
   PHASE 6 — header/social redesign, drawer social, small-screen
   ============================================================ */

/* Remove testimonial arrows entirely (both languages, all views) */
.rev-arrow { display: none !important; }

/* Hide the top bar on mobile — keep only logo + menu */
@media (max-width: 880px) { .topbar { display: none; } }

/* Desktop social icons — cleaner, circular, aligned with the phone row */
.topbar .container { align-items: center; }
.topbar-social { gap: 0.5rem; align-items: center; }
.topbar-social a {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  color: rgba(247,244,238,0.9); border: 1px solid rgba(204,174,132,0.35);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.topbar-social a:hover { background: var(--sand); color: var(--slate-deep); border-color: var(--sand); transform: translateY(-1px); }
.topbar-social svg { width: 15px; height: 15px; display: block; }
.topbar-phones a { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar-phones svg { width: 13px; height: 13px; }

/* Mobile drawer social icons (under the menu, tidy padding) */
.drawer-social { display: flex; gap: 0.85rem; margin-top: 1.9rem; padding-top: 1.7rem; border-top: 1px solid var(--line); }
.drawer-social a {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  color: var(--slate); background: var(--ivory); border: 1px solid var(--line);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.drawer-social a:hover { background: var(--slate); color: #fff; border-color: var(--slate); transform: translateY(-2px); }
.drawer-social svg { width: 21px; height: 21px; display: block; }

/* Contact WhatsApp button — icon before text, never mirrored in RTL */
.btn-wa svg { order: -1; }
[dir="rtl"] .btn-wa svg { transform: none !important; }

/* ---------- Small-screen responsiveness (phones < 400px / < 360px) ---------- */
@media (max-width: 480px) {
  .section { padding: clamp(56px, 13vw, 84px) 0; }
  .hero { min-height: 88vh; }
  .hero h1 { font-size: clamp(1.95rem, 8.6vw, 2.7rem); }
  .hero p { font-size: 1rem; }
  .section-title { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .lead { font-size: 0.98rem; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
}
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .why-card { padding: 26px 22px; }
  .ci-card { padding: 28px 22px; }
  .rev-card { padding: 40px 26px 36px !important; }
  .rev-quote { font-size: 6rem; left: 22px; }
  html[lang="ur"] .rev-quote { right: 22px; left: auto; }
  .founder-body { padding: 30px 24px; }
  .founder-body .quote-lg { font-size: 1.1rem; padding-left: 16px; }
  [dir="rtl"] .founder-body .quote-lg { padding-right: 16px; }
  .col-body { padding: 22px 20px; }
  .ticker-item { font-size: 0.9rem; }
  .btn { padding: 0.95rem 1.5rem; }
}
@media (max-width: 360px) {
  .container { padding: 0 13px; }
  .logo img, .header.shrink .logo img { height: 30px; }
  .hero h1 { font-size: clamp(1.75rem, 8.8vw, 2.2rem); }
  .section-title { font-size: clamp(1.7rem, 8.4vw, 2.1rem); }
  .lang-switch button { padding: 6px 9px; font-size: 0.7rem; }
  .tcar-card { height: 140px; padding: 22px; }
  .about-badge { padding: 12px 16px 14px; }
  .about-badge .ab-year { font-size: 2rem; }
}

/* Prevent nav labels from wrapping */
.nav a { white-space: nowrap; }

/* Contact card email — LTR, wraps cleanly, tighter size */
.ci-card .ci-email { font-size: 0.86rem; margin-top: 0.5rem; word-break: break-word; direction: ltr; unicode-bidi: isolate; }
