/* ============================================================
   ISLAMABAD HOME MAID SERVICES — style.css
   Brushup Premium Theme
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --gold:       #C8993A;
  --gold-light: #E8BB5C;
  --gold-pale:  #FDF4E3;
  --navy:       #0F1F3D;
  --navy-mid:   #1A3260;
  --navy-light: #243F78;
  --white:      #FFFFFF;
  --off-white:  #F8F6F1;
  --text:       #2C2C2C;
  --text-muted: #6B7280;
  --border:     #E5DDD0;
  --shadow-sm:  0 2px 12px rgba(15,31,61,.08);
  --shadow-md:  0 8px 32px rgba(15,31,61,.14);
  --shadow-lg:  0 20px 60px rgba(15,31,61,.18);
  --radius:     12px;
  --radius-lg:  20px;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', system-ui, sans-serif;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── Section Labels ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,153,58,.35);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 6px 28px rgba(200,153,58,.5); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--gold-pale); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn svg { width: 18px; height: 18px; }

/* ═══════════════════════════════
   TOP BAR
═══════════════════════════════ */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-left a { color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar-left a:hover { color: var(--gold-light); }
.topbar-right { display: flex; gap: 12px; align-items: center; }
.topbar-right a { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.8); transition: all .2s; font-size: .75rem; }
.topbar-right a:hover { background: var(--gold); color: var(--white); }

/* ═══════════════════════════════
   HEADER / NAV
═══════════════════════════════ */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: var(--shadow-sm);
  padding: 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 28px; height: 28px; fill: var(--gold); }
.logo-text { line-height: 1.1; }
.logo-text .brand { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--navy); display: block; }
.logo-text .tagline { font-size: .7rem; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 16px;
  font-size: .88rem; font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--gold-pale); }
.nav-link svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 240px;
  padding: 8px;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 999;
}
.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-size: .85rem; color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
}
.dropdown a:hover { background: var(--gold-pale); color: var(--navy); padding-left: 18px; }
.dropdown a::before { content: '→'; color: var(--gold); font-size: .8rem; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.header-phone svg { color: var(--gold); }

/* Mobile menu toggle */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* ═══════════════════════════════
   HERO (Home Page)
═══════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #162952 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8993A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-decor {
  position: absolute; right: 0; top: 0; width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(200,153,58,.08) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--gold); }
.hero-title { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; margin-bottom: 22px; }
.hero-title span { color: var(--gold-light); }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.8); line-height: 1.8; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }
.hero-image-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-img-frame {
  width: 100%; max-width: 440px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(200,153,58,.2), rgba(200,153,58,.05));
  border: 1px solid rgba(200,153,58,.3);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.hero-img-badge {
  position: absolute;
  bottom: -12px; left: -12px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  font-size: .85rem; font-weight: 600; color: var(--navy);
  white-space: nowrap;
}
.hero-img-badge .badge-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.hero-scroll { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.5); font-size: .8rem; margin-top: 20px; }
.hero-scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,.3); }

/* ── Floating Service Quick Links ── */
.hero-quick {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
.hero-quick-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.quick-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 8px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
}
.quick-item:hover { background: var(--gold-pale); transform: translateY(-3px); }
.quick-icon { font-size: 1.8rem; line-height: 1; }
.quick-label { font-size: .72rem; font-weight: 600; color: var(--navy); line-height: 1.2; }

/* ═══════════════════════════════
   PAGE HERO (Interior Pages)
═══════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 80px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(200,153,58,.08);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,.4); }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; line-height: 1.15; margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 560px; line-height: 1.75; }

/* ═══════════════════════════════
   SERVICES GRID
═══════════════════════════════ */
.services-section { background: var(--off-white); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative; overflow: hidden;
}
.service-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(15,31,61,.3));
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-icon { font-size: 2.2rem; margin-bottom: 12px; }
.service-card-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.service-card-link { color: var(--gold); font-weight: 600; font-size: .85rem; display: flex; align-items: center; gap: 6px; transition: gap .2s; margin-top: auto; }
.service-card:hover .service-card-link { gap: 10px; }

/* ═══════════════════════════════
   WHY CHOOSE US
═══════════════════════════════ */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image-wrap { position: relative; }
.why-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
}
.why-main-img img { width: 100%; height: 100%; object-fit: cover; }
.why-badge-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.why-badge-card .num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; line-height: 1; }
.why-badge-card .lbl { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-top: 4px; }
.why-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px; border-radius: var(--radius); transition: var(--transition); }
.why-item:hover { background: var(--gold-pale); }
.why-item-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-pale); border: 1.5px solid rgba(200,153,58,.3); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.why-item-title { font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.why-item-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════
   PROCESS SECTION
═══════════════════════════════ */
.process-section { background: var(--navy); color: var(--white); }
.process-section .section-title { color: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 52px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute; top: 28px; left: 14%; right: 14%; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(200,153,58,.3));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(200,153,58,.4);
}
.step-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.testimonials-section { background: var(--off-white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card::before {
  content: '"';
  font-family: var(--font-head); font-size: 5rem; font-weight: 800;
  color: var(--gold-pale);
  position: absolute; top: 12px; right: 20px;
  line-height: 1; pointer-events: none;
}
.stars { color: var(--gold); margin-bottom: 14px; font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: .9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--gold)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.author-name { font-weight: 600; color: var(--navy); font-size: .9rem; }
.author-role { font-size: .77rem; color: var(--text-muted); }

/* ═══════════════════════════════
   CTA BANNER
═══════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--gold), #A07020);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-banner p { font-size: 1.05rem; opacity: .9; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-banner .btn-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ═══════════════════════════════
   ABOUT PAGE
═══════════════════════════════ */
.about-intro { padding: 90px 0; background: var(--white); }
.about-story { background: var(--off-white); padding: 90px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { padding: 32px 28px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); text-align: center; transition: var(--transition); }
.value-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-icon { font-size: 2.8rem; margin-bottom: 16px; }
.value-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-desc { font-size: .87rem; color: var(--text-muted); line-height: 1.7; }
.team-section { background: var(--white); padding: 90px 0; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.team-card { text-align: center; }
.team-avatar { width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--navy-light), var(--navy)); display: flex; align-items: center; justify-content: center; font-size: 4rem; margin-bottom: 16px; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: .8rem; color: var(--gold); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }

/* ═══════════════════════════════
   SERVICES PAGE (All Services)
═══════════════════════════════ */
.services-all-section { padding: 90px 0; background: var(--off-white); }
.services-all-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ═══════════════════════════════
   SERVICE DETAIL PAGE
═══════════════════════════════ */
.service-detail { padding: 90px 0; background: var(--white); }
.service-detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: start; }
.service-detail-content h2 { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.service-detail-content h2:first-child { margin-top: 0; }
.service-detail-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; font-size: .95rem; }
.service-detail-content ul { padding-left: 0; margin-bottom: 20px; display: flex; flex-direction: column; gap: 10px; }
.service-detail-content ul li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text); }
.service-detail-content ul li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.service-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--off-white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.sidebar-card.cta { background: var(--navy); color: var(--white); }
.sidebar-card.cta h3 { color: var(--white); }
.sidebar-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.service-list-links { display: flex; flex-direction: column; gap: 4px; }
.service-list-links a { padding: 10px 12px; border-radius: 8px; font-size: .85rem; color: var(--text); display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.service-list-links a:hover, .service-list-links a.active { background: var(--gold-pale); color: var(--navy); padding-left: 16px; }
.service-list-links a::before { content: '→'; color: var(--gold); font-size: .8rem; }
.contact-mini { display: flex; flex-direction: column; gap: 14px; }
.contact-mini-item { display: flex; align-items: center; gap: 12px; font-size: .87rem; color: rgba(255,255,255,.85); }
.contact-mini-item svg { color: var(--gold-light); flex-shrink: 0; }

/* ═══════════════════════════════
   BLOG PAGE
═══════════════════════════════ */
.blog-section { padding: 90px 0; background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.blog-posts { display: flex; flex-direction: column; gap: 32px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); display: flex; gap: 0; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { width: 260px; flex-shrink: 0; background: linear-gradient(135deg, var(--navy), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 3rem; min-height: 200px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: .77rem; color: var(--text-muted); margin-bottom: 10px; flex-wrap: wrap; }
.blog-tag { background: var(--gold-pale); color: var(--gold); padding: 3px 10px; border-radius: 50px; font-weight: 600; font-size: .72rem; }
.blog-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.blog-excerpt { font-size: .87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.blog-read-more { color: var(--gold); font-weight: 600; font-size: .85rem; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.blog-card:hover .blog-read-more { gap: 10px; }
.blog-sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.sidebar-widget h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold-pale); }
.recent-posts { display: flex; flex-direction: column; gap: 16px; }
.recent-post { display: flex; gap: 12px; align-items: flex-start; }
.recent-post-img { width: 64px; height: 64px; border-radius: 8px; background: linear-gradient(135deg, var(--navy), var(--gold)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; overflow: hidden; }
.recent-post-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-title { font-size: .83rem; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 4px; }
.recent-post-date { font-size: .75rem; color: var(--text-muted); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a { background: var(--off-white); color: var(--text-muted); padding: 6px 14px; border-radius: 50px; font-size: .78rem; font-weight: 500; transition: var(--transition); }
.tag-cloud a:hover { background: var(--gold); color: var(--white); }

/* ═══════════════════════════════
   CONTACT PAGE
═══════════════════════════════ */
.contact-section { padding: 90px 0; background: var(--off-white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); display: flex; align-items: flex-start; gap: 16px; transition: var(--transition); }
.contact-info-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.contact-info-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--gold-pale); border: 1.5px solid rgba(200,153,58,.3); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-info-title { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: .9rem; }
.contact-info-detail { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.form-title { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-subtitle { font-size: .9rem; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .83rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,153,58,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.map-embed { margin-top: 56px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.map-embed iframe { display: block; width: 100%; height: 360px; border: none; }

/* ═══════════════════════════════
   STATS BANNER
═══════════════════════════════ */
.stats-band { background: var(--navy); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.stat-card { text-align: center; }
.stat-card .num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--gold-light); line-height: 1; margin-bottom: 8px; }
.stat-card .label { font-size: .82rem; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; }
.stat-divider { width: 1px; background: rgba(255,255,255,.1); margin: 0 auto; display: none; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer { background: #091728; color: rgba(255,255,255,.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .brand-text .name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.footer-brand .brand-text .sub { font-size: .7rem; color: rgba(255,255,255,.4); letter-spacing: .08em; text-transform: uppercase; }
.footer-about { font-size: .85rem; line-height: 1.75; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: rgba(255,255,255,.7); transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col ul a::before { content: '›'; color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; line-height: 1.6; margin-bottom: 12px; }
.footer-contact-item .fi { font-size: 1rem; margin-top: 2px; flex-shrink: 0; color: var(--gold-light); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ═══════════════════════════════
   FAQ ACCORDION
═══════════════════════════════ */
.faq-section { background: var(--white); padding: 90px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--gold); box-shadow: 0 4px 20px rgba(200,153,58,.12); }
.faq-q {
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer;
  font-weight: 600; color: var(--navy); font-size: .92rem;
}
.faq-q-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .9rem; color: var(--gold); transition: transform .3s; font-weight: 700; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { padding: 0 22px 18px; max-height: 300px; }
.faq-a p { font-size: .88rem; color: var(--text-muted); line-height: 1.75; }

/* ═══════════════════════════════
   FLOATING WHATSAPP BUTTON
═══════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--white);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ═══════════════════════════════
   MOBILE RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .services-all-grid { grid-template-columns: repeat(2,1fr); }
  .testimonial-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .topbar .container { flex-direction: column; gap: 6px; text-align: center; }
  .header-inner { flex-wrap: wrap; }
  .nav { display: none; flex-direction: column; width: 100%; background: var(--white); padding: 12px 0; border-top: 1px solid var(--border); }
  .nav.open { display: flex; }
  .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border: none; background: var(--off-white); margin: 4px 0; }
  .menu-toggle { display: block; }
  .header-cta .btn { display: none; }
  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { display: none; }
  .hero-quick-grid { grid-template-columns: repeat(3,1fr); }
  .grid-2, .why-grid, .contact-layout, .blog-grid, .service-detail-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-all-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-card { flex-direction: column; }
  .blog-card-img { width: 100%; height: 180px; }
  .section-pad { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-quick-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats { gap: 20px; }
  .cta-banner .btn-actions { flex-direction: column; align-items: center; }
}
