/* ═══════════════════════════════════════════
   KARWAN-E-RAZA — Design System
   ═══════════════════════════════════════════ */

:root {
  --clr-topbar:     #0F1F4B;
  --clr-nav:        #FFFFFF;
  --clr-nav-border: #E2E8F0;
  --clr-blue:       #1B3C8C;
  --clr-blue-mid:   #2D5CC8;
  --clr-blue-light: #EEF2FF;
  --clr-gold:       #F5B800;
  --clr-gold-light: #FFD54F;
  --clr-gold-dark:  #D49E00;
  --clr-deep-green: #1B3C8C;
  --clr-text-dark:  #1A2340;
  --clr-text-mid:   #4A5568;
  --clr-white:      #FFFFFF;
  --clr-bg:         #F8FAFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui:      'Inter', system-ui, sans-serif;

  --topbar-h: 38px;
  --nav-h:    76px;

  --shadow-nav: 0 2px 20px rgba(27,60,140,0.10);
}

/* ─── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-ui); background: var(--clr-bg); color: var(--clr-text-dark); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; }

/* ═══════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════ */
.topbar {
  background: var(--clr-topbar);
  height: var(--topbar-h);
  position: relative;
  z-index: 200;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Live dot */
.live-dot-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #a0c4ff;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 0 0 rgba(96,165,250,0.6);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(96,165,250,0.6); }
  60%  { box-shadow: 0 0 0 6px rgba(96,165,250,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.live-label { color: #a0c4ff; }

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Phone links */
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 11.5px;
  transition: color 0.2s;
}
.topbar-phone svg { color: var(--clr-gold); flex-shrink: 0; }
.topbar-phone strong { color: var(--clr-white); font-weight: 600; }
.topbar-phone:hover { color: var(--clr-white); }

/* License badge */
.license-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.license-badge svg { color: var(--clr-gold); }

/* Mobile GL badge: hidden by default (desktop), shown on mobile via @media */
.license-badge--mobile { display: none; }
/* Desktop GL badge: shown by default */
.license-badge--desktop { display: flex; }

/* WhatsApp button */
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: var(--clr-white);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  transition: background 0.2s, transform 0.15s;
}
.whatsapp-btn:hover { background: #1ebe5c; transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  background: var(--clr-nav);
  border-bottom: 1px solid var(--clr-nav-border);
  box-shadow: var(--shadow-nav);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ─── Brand ───────────────────────────────── */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-text-dark);
  letter-spacing: -0.01em;
}

.brand-sub {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--clr-text-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Nav Links ───────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text-mid);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--clr-text-dark);
  background: rgba(0,0,0,0.03);
}

.nav-link.active {
  color: var(--clr-text-dark);
  font-weight: 600;
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

/* ─── Nav Actions ─────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Live Chat pill */
.live-chat-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--clr-blue);
  color: var(--clr-blue);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.chat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 0 0 rgba(96,165,250,0.5);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

.live-chat-pill:hover {
  background: var(--clr-blue);
  color: var(--clr-white);
}

/* CTA button */
.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-text-dark);
  color: var(--clr-white);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.cta-btn:hover {
  background: var(--clr-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(27,60,140,0.35);
}

.cta-btn svg {
  transition: transform 0.2s;
}

.cta-btn:hover svg {
  transform: translateX(3px);
}

/* ─── Hamburger ───────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: 6px;
  transition: background 0.2s;
}

.hamburger:hover { background: rgba(0,0,0,0.05); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Menu ─────────────────────────── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-nav-border);
  padding: 16px 24px 24px;
  gap: 4px;
  position: relative;
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-text-mid);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--clr-text-dark);
  padding-left: 16px;
}

.mobile-nav-link.active {
  font-weight: 600;
  color: var(--clr-blue);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.mobile-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: var(--clr-white);
  font-size: 14px;
  font-weight: 600;
  padding: 13px;
  border-radius: 8px;
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-text-dark);
  color: var(--clr-white);
  font-size: 14px;
  font-weight: 600;
  padding: 13px;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-cta:hover { background: var(--clr-deep-green); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .topbar-phone { font-size: 11px; }
  .topbar-phone--desktop:last-of-type { display: none; }
  .topbar-divider.topbar-phone--desktop { display: none; }
  .license-badge--desktop { display: none; }
  .license-badge--mobile { display: none; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .brand { margin-right: 0; }
  .navbar-inner { gap: 12px; }
}

/* Mobile: show GL badge left, WhatsApp right */
@media (max-width: 600px) {
  .topbar { height: auto; min-height: 36px; }
  .topbar-inner { padding: 5px 14px; flex-wrap: nowrap; justify-content: space-between; }
  .topbar-left { gap: 0; }
  /* Hide desktop phones on mobile */
  .topbar-phone--desktop { display: none !important; }
  .topbar-divider { display: none !important; }
  /* Show mobile GL badge */
  .license-badge--mobile {
    display: flex !important;
    color: #fff;
    font-size: 10.5px;
    font-weight: 500;
    gap: 5px;
  }
  .license-badge--mobile svg { color: var(--clr-gold); width: 11px; height: 11px; }
  /* Hide desktop GL badge */
  .license-badge--desktop { display: none !important; }
  /* WhatsApp compact */
  .whatsapp-btn { font-size: 10.5px; padding: 4px 10px; }
  /* Navbar */
  .navbar-inner { padding: 0 16px 0 30px; }
  .brand-sub { display: none; }
  .mobile-menu { padding: 10px 14px 18px; }
}

/* ═══════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a1628;
}

/* ─── Slider track ────────────────────────── */
.hero-slider {
  display: flex;
  width: 100%;
}

.hero-slide {
  position: relative;
  min-width: 100%;
  height: 580px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  flex-shrink: 0;
}

/* Only active slide shows — we use absolute stacking */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* Keep height consistent when slides are absolute */
.hero-slider {
  position: relative;
  height: 580px;
}

/* ─── Overlay ─────────────────────────────── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 15, 35, 0.72) 0%,
    rgba(10, 25, 55, 0.55) 40%,
    rgba(5, 15, 35, 0.65) 100%
  );
  z-index: 1;
}

/* ─── Content ─────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Eyebrow */
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Title block */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-explore {
  font-family: var(--font-ui);
  font-size: clamp(28px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #fff;
  text-transform: uppercase;
}

.hero-the-world {
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1;
}

.hero-the {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 3.5vw, 42px);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.hero-world {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(52px, 10vw, 120px);
  font-weight: 700;
  color: var(--clr-gold);
  text-shadow: 0 4px 30px rgba(201,168,76,0.4);
  line-height: 0.9;
}

/* Taglines */
.hero-tagline-top {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 4px;
}

.hero-tagline-script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 3vw, 28px);
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin-top: 2px;
}

.hero-tagline-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 3.5vw, 34px);
  color: var(--clr-gold-light);
  font-weight: 600;
  margin-bottom: 20px;
}

/* ─── Service Badges ──────────────────────── */
.hero-badges {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
}

.hero-badge svg {
  width: 28px;
  height: 28px;
  color: var(--clr-gold);
  stroke: var(--clr-gold);
}

.hero-badge span {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.3;
  color: rgba(255,255,255,0.8);
}

/* ─── CTA Pill ────────────────────────────── */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: 40px;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.hero-cta:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: #111;
  transform: translateY(-2px);
}

.cta-sep {
  opacity: 0.45;
  font-weight: 300;
}

/* ─── Dots ────────────────────────────────── */
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.hero-dot.active {
  background: var(--clr-gold);
  transform: scale(1.35);
}

/* ─── Arrows ──────────────────────────────── */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.hero-arrow:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: #111;
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* ─── Responsive ──────────────────────────── */
@media (max-width: 768px) {
  .hero-slider,
  .hero-slide { height: 520px; }
  .hero-slide { background-position: center center; background-size: cover; }

  .hero-tagline-top { display: none; }
  .hero-badges { gap: 14px; }
  .hero-badge svg { width: 22px; height: 22px; }
  .hero-badge span { font-size: 8.5px; }
  .hero-cta { font-size: 11px; padding: 11px 24px; letter-spacing: 0.14em; }
  .hero-arrow { display: none; }
  .hero-content { padding: 0 18px; }
}

@media (max-width: 480px) {
  .hero-slider,
  .hero-slide { height: 480px; }
  .hero-explore { letter-spacing: 0.12em; }
  .hero-badges { gap: 10px; }
  .hero-badge:nth-child(3),
  .hero-badge:nth-child(4) { display: none; }
}

/* ═══════════════════════════════════════════
   BANNER IMAGE SLIDER
═══════════════════════════════════════════ */

.banner-section {
  background: var(--clr-bg);
  padding: 28px 32px;
}

.banner-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

/* ─── Slider ──────────────────────────────── */
.banner-slider {
  position: relative;
  width: 100%;
  height: 320px;
  background: #0a1628;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.banner-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ─── Dots ────────────────────────────────── */
.banner-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.banner-dot.active {
  background: var(--clr-gold);
  transform: scale(1.35);
}

/* ─── Arrows ──────────────────────────────── */
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.banner-arrow:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: #111;
}

.banner-prev { left: 16px; }
.banner-next { right: 16px; }

/* ─── Responsive ──────────────────────────── */
@media (max-width: 768px) {
  .banner-section { padding: 20px 16px; }
  .banner-slider   { height: 220px; }
  .banner-wrap     { border-radius: 12px; }
}

@media (max-width: 480px) {
  .banner-section { padding: 14px 10px; }
  .banner-slider   { height: 200px; }
  .banner-wrap     { border-radius: 10px; }
  .banner-arrow    { display: none; }
}

/* ═══════════════════════════════════════════
   SHARED UTILITIES
═══════════════════════════════════════════ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Section header */
.section-header {
  text-align: center;
  padding: 72px 24px 48px;
  max-width: 640px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--clr-text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title .gold { color: var(--clr-gold); }

.section-subtitle {
  font-size: 15px;
  color: var(--clr-text-mid);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */

.about-section {
  background: var(--clr-bg);
  padding-bottom: 0;
}

/* ─── Story row ───────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}

.about-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  flex-shrink: 0;
}

.about-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

/* Floating badge */
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--clr-blue);
  color: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(27,60,140,0.35);
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.about-badge-txt {
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
}

/* Story text */
.about-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.about-story-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--clr-text-dark);
  line-height: 1.25;
  margin-bottom: 18px;
}

.about-story-text p {
  font-size: 14.5px;
  color: var(--clr-text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Stats */
.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--clr-nav-border);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--clr-blue);
  line-height: 1;
}

.stat-lbl {
  font-size: 11px;
  color: var(--clr-text-mid);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.about-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-nav-border);
  flex-shrink: 0;
}

/* ─── Mission & Vision Cards ──────────────── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-bottom: 0;
}

.mv-card {
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mv-mission {
  background: var(--clr-blue);
  color: #fff;
}

.mv-vision {
  background: var(--clr-text-dark);
  color: #fff;
}

.mv-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mv-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--clr-gold);
}

.mv-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.mv-divider {
  width: 40px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  margin-bottom: 16px;
}

.mv-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

.mv-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.mv-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.mv-list li svg {
  width: 15px;
  height: 15px;
  stroke: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Values strip ────────────────────────── */
.values-strip {
  background: var(--clr-text-dark);
  margin-top: 56px;
  padding: 28px 0;
}

.values-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.value-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--clr-gold);
  flex-shrink: 0;
}

.value-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ─── Responsive ──────────────────────────── */
@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; gap: 56px; }
  .about-image-wrap { padding-bottom: 36px; } /* room for floating badge */
  .about-image-wrap img { height: 280px; }
  .about-badge { bottom: -32px; right: 16px; }
  .mv-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
}

@media (max-width: 600px) {
  .section-header { padding: 40px 20px 28px; }
  .mv-card { padding: 24px 18px; }
  .mv-grid { gap: 16px; }
  .values-inner { gap: 12px; justify-content: flex-start; }
  .value-item { padding: 0 12px; }
  .value-sep { display: none; }
  .about-stats { gap: 0; }
  .about-story { padding-bottom: 60px; } /* ensure badge never overlaps next section */
}

/* ═══════════════════════════════════════════
   BRAND LOGO — Faizan-e-Ashrafi
═══════════════════════════════════════════ */

.brand-logo-wrap {
  width: 64px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-sub2 {
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-blue);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.brand-sub {
  font-size: 9px;
  font-weight: 500;
  color: var(--clr-text-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

/* Topbar — richer blue tone */
.topbar {
  background: var(--clr-topbar) !important;
}

/* Nav active link — blue underline */
.nav-link::after {
  background: var(--clr-gold) !important;
}

.nav-link.active,
.nav-link:hover {
  color: var(--clr-blue) !important;
}

/* ═══════════════════════════════════════════
   PROMISE / PACKAGES — Staggered Gallery
═══════════════════════════════════════════ */

.promise-section {
  background: #F5EFE6;
  overflow: hidden;
}

.promise-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px 64px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: center;
}

/* ─── Left: Heading ───────────────────────── */
.promise-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.promise-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  color: #1B3C5A;
  line-height: 1.25;
  margin-bottom: 14px;
  margin-top: 10px;
}

.promise-desc {
  font-size: 14.5px;
  color: var(--clr-text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.promise-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-blue);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 8px;
  width: fit-content;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 36px;
}

.promise-cta:hover {
  background: var(--clr-gold);
  color: #1A2340;
  transform: translateY(-1px);
}

.promise-cta svg { transition: transform 0.2s; }
.promise-cta:hover svg { transform: translateX(3px); }

/* Desktop stats under heading */
.promise-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid rgba(27,60,140,0.12);
}

.promise-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.promise-stat svg {
  width: 22px;
  height: 22px;
  stroke: var(--clr-gold);
  flex-shrink: 0;
}

.ps-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-blue);
  line-height: 1;
  min-width: 70px;
}

.ps-lbl {
  font-size: 12.5px;
  color: var(--clr-text-mid);
  font-weight: 500;
}

/* ─── Right: Staggered image fan ─────────── */
.promise-gallery {
  position: relative;
  height: 440px;
  display: block;
}

.pg-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease, z-index 0s;
  cursor: pointer;
}

.pg-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
  z-index: 10 !important;
}

.pg-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pg-card:hover img { transform: scale(1.04); }

/* Label badge */
.pg-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s;
}

.pg-card:hover .pg-label { opacity: 1; }

/* Card positions — mirroring reference fan layout */
/* Card 1 — far left, small, low */
.pg-card--1 {
  width: 130px;
  height: 170px;
  left: 0;
  top: 140px;
  transform: rotate(-4deg);
  z-index: 1;
}
.pg-card--1:hover { transform: rotate(0deg) scale(1.06); }

/* Card 2 — second, medium, mid-low */
.pg-card--2 {
  width: 165px;
  height: 210px;
  left: 90px;
  top: 105px;
  transform: rotate(-2deg);
  z-index: 2;
}
.pg-card--2:hover { transform: rotate(0deg) scale(1.05); }

/* Card 3 — center, largest, tallest */
.pg-card--3 {
  width: 210px;
  height: 300px;
  left: 218px;
  top: 48px;
  transform: rotate(1deg);
  z-index: 3;
}
.pg-card--3:hover { transform: rotate(0deg) scale(1.04); }

/* Card 4 — right-center, medium */
.pg-card--4 {
  width: 170px;
  height: 220px;
  left: 390px;
  top: 95px;
  transform: rotate(3deg);
  z-index: 2;
}
.pg-card--4:hover { transform: rotate(0deg) scale(1.05); }

/* Card 5 — far right, smaller */
.pg-card--5 {
  width: 135px;
  height: 175px;
  left: 520px;
  top: 145px;
  transform: rotate(5deg);
  z-index: 1;
}
.pg-card--5:hover { transform: rotate(0deg) scale(1.06); }

/* ─── Mobile image strip ──────────────────── */
.promise-mobile-strip {
  display: none;
  padding: 0 20px 32px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.promise-mobile-strip::-webkit-scrollbar { display: none; }

.pms-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding-bottom: 4px;
}

.pms-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.pms-card img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
}

.pms-card:first-child img,
.pms-card:last-child img {
  width: 160px;
  height: 200px;
  margin-top: 24px;
}

.pms-card span {
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-text-mid);
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Stats strip (full-width bottom) ────── */
.promise-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-blue);
  padding: 28px 40px;
  gap: 0;
  flex-wrap: wrap;
}

.pss-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 48px;
  color: #fff;
}

.pss-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--clr-gold);
}

.pss-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.pss-lbl {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

.pss-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ─── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .promise-inner {
    grid-template-columns: 1fr;
    padding: 52px 32px 32px;
    gap: 32px;
  }
  .promise-gallery { display: none; }
  .promise-mobile-strip { display: block; }
  .promise-stats { flex-direction: row; flex-wrap: wrap; gap: 20px 32px; border-top: none; padding-top: 0; }
  .promise-stat { flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 600px) {
  .promise-inner { padding: 40px 20px 24px; }
  .promise-stats-strip { padding: 22px 16px; gap: 12px; }
  .pss-item { padding: 0 16px; }
  .pss-divider { display: none; }
  .pss-num { font-size: 22px; }
}

/* ═══════════════════════════════════════════
   PACKAGES — Positional Swapping Carousel
═══════════════════════════════════════════ */

.promise-section {
  background: #FAF6F0;
  padding: 72px 0 0;
  overflow: hidden;
}

/* ─── Header ──────────────────────────────── */
.promise-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.promise-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 16px;
}

.promise-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 700;
  color: #0D3B36;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.promise-divider {
  width: 48px;
  height: 1.5px;
  background: rgba(201,168,76,0.6);
  margin: 0 auto;
}

/* ─── Stage wrapper ───────────────────────── */
.pkc-stage-wrap {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Stage: fixed height, cards are absolute inside */
.pkc-stage {
  position: relative;
  width: 100%;
  height: 530px;
  user-select: none;
}

/* ─── Cards: exact same as reference ─────── */
.carousel-card {
  position: absolute;
  overflow: hidden;
  cursor: pointer;
  background: #EFE9DE;
  border: 1px solid rgba(239,233,222,0.8);
  /* All transitions match reference exactly */
  transition:
    left   1.2s cubic-bezier(0.4, 0, 0.2, 1),
    top    1.2s cubic-bezier(0.4, 0, 0.2, 1),
    width  1.2s cubic-bezier(0.4, 0, 0.2, 1),
    height 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    transform     1.2s cubic-bezier(0.4, 0, 0.2, 1),
    opacity       1.2s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow    1.2s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: left, top, width, height, transform, opacity;
  transform: translate(-50%, -50%);
}

@media (prefers-reduced-motion: reduce) {
  .carousel-card { transition-duration: 0.01ms !important; }
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.7s ease;
}

.carousel-card:hover img {
  transform: scale(1.05);
}

/* Focal overlay on center card */
.pkc-focal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,40,36,0.25) 0%, transparent 50%);
  pointer-events: none;
}

/* ─── Caption ─────────────────────────────── */
.promise-caption {
  text-align: center;
  font-size: 14.5px;
  color: rgba(13,59,54,0.7);
  max-width: 520px;
  margin: 28px auto 0;
  line-height: 1.75;
  font-weight: 300;
  padding: 0 24px;
}

/* ─── Stats strip ─────────────────────────── */
.promise-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-blue);
  padding: 30px 40px;
  flex-wrap: wrap;
  margin-top: 52px;
  gap: 0;
}

.pss-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 52px;
  color: #fff;
}

.pss-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--clr-gold);
}

.pss-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.pss-lbl {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

.pss-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ─── Responsive stage heights ────────────── */
@media (max-width: 1024px) {
  .pkc-stage { height: 460px; }
}

@media (max-width: 640px) {
  .pkc-stage       { height: 300px; }
  .promise-section { padding-top: 52px; }
  .pss-item        { padding: 10px 18px; }
  .pss-num         { font-size: 22px; }
  .pss-divider     { display: none; }
  .promise-stats-strip { justify-content: space-around; padding: 22px 12px; }
}

/* ─── Logo image ──────────────────────────── */
.brand-logo-img {
  width: 130px;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 600px) {
  .brand-logo-img { width: 100px; }
}