/* ===== IDENVIS PREMIUM DESIGN SYSTEM v2.0 ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* ── Luxury Brand Board: Royal Slate Navy & Luminous Gold Palette ── */
  --bg-deep:        #0B0E17; /* Elite Deep Slate Navy (matches the brand card texture) */
  --bg-card:        #121622; /* Rich textured slate card background */
  --bg-card-hover:  #181D2C; /* Elevated card surface on hover */
  --bg-surface:     #0E121C; /* Elegant secondary matte slate */
  --emerald:        #E2B865; /* Luminous Warm Metallic Gold (matches the graphic symbol embossment) */
  --emerald-light:  #F5D698; /* Brilliant pale gold highlights */
  --teal:           #C59E4B; /* Rich Satin Gold/Bronze accent */
  --emerald-glow:   rgba(226, 184, 101, 0.20); /* Soft gold ambient glow */
  --emerald-glow-s: rgba(226, 184, 101, 0.08); /* Faint gold highlights */
  --teal-glow:      rgba(197, 158, 75, 0.15); /* Faint gold-bronze highlights */
  --ivory:          #F8F7F5; /* Soft silk warm alabaster white */
  --white:          #FFFFFF;
  --text-muted:     #8E9CAE; /* Sophisticated warm slate-grey */
  --text-dim:       #5C6877; /* Muted steel slate-charcoal */
  --border-subtle:  rgba(226, 184, 101, 0.15); /* Delicate gold border wireframe */
  --border-card:    rgba(255, 255, 255, 0.04); /* Transparent glassmorphic card outline */
  --danger:         #EF4444;

  /* ── Utils ── */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.25s ease;
  --shadow-glow: 0 0 30px var(--emerald-glow);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-elevated: 0 20px 60px rgba(0,0,0,0.4);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-max: 1280px;
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Background Ambient ── */
.bg-gradient-overlay {
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(226, 184, 101, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(197, 158, 75, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(11, 14, 23, 0) 0%, var(--bg-deep) 100%);
  z-index: -1; pointer-events: none;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

.accent { color: var(--emerald); }
.text-gradient {
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(8, 8, 12, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: var(--container-max);
  margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.brand-logo-img {
  height: 48px;
  width: 48px;
  display: block;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease, height 0.4s ease, width 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}
.logo-brand:hover .brand-logo-img {
  transform: scale(1.06) rotate(3deg) translateY(-1px);
  filter: drop-shadow(0 0 15px var(--emerald-glow)) brightness(1.15);
}
header.site-header .brand-logo-img {
  height: 48px;
  width: 48px;
}
header.site-header.scrolled .brand-logo-img {
  height: 38px;
  width: 38px;
}
.logo-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.logo-brand:hover .logo-icon-wrap {
  transform: scale(1.08) rotate(-4deg);
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo-brand h2 {
  font-family: var(--font-heading);
  font-size: 1.48rem;
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--white) 30%, var(--emerald-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin: 0;
  transition: var(--transition);
}
.logo-brand:hover h2 {
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4.5px;
}
.logo-brand .tagline {
  font-size: 0.58rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-top: 2px;
  text-transform: uppercase;
  font-weight: 700;
  transition: var(--transition);
}
.logo-brand:hover .tagline {
  color: var(--emerald-light);
  letter-spacing: 2.3px;
}
.site-header.scrolled .logo-brand h2 {
  font-size: 1.35rem;
  letter-spacing: 3.5px;
}
.site-header.scrolled .logo-brand:hover h2 {
  letter-spacing: 4px;
}
.site-header.scrolled .logo-brand .tagline {
  font-size: 0.52rem;
  letter-spacing: 1.8px;
  margin-top: 1px;
}
.site-header.scrolled .logo-brand:hover .tagline {
  letter-spacing: 2px;
}

/* Nav Links */
.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a {
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-muted); padding: 6px 0;
  position: relative;
}
.main-nav a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  border-radius: 2px; transition: width 0.3s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

/* Nav CTA Button */
.nav-cta, .btn-enquiry {
  background: linear-gradient(135deg, var(--emerald), var(--teal)) !important;
  color: var(--bg-deep) !important;
  padding: 10px 26px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important; font-size: 0.82rem !important;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px var(--emerald-glow);
  transition: var(--transition) !important;
  border: none;
}
.nav-cta:hover, .btn-enquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--emerald-glow), var(--shadow-glow);
}
.nav-cta::after { display: none !important; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--white); font-size: 1.5rem;
  padding: 8px; cursor: pointer; z-index: 1002;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-weight: 700; font-size: 0.9rem;
  transition: var(--transition);
  letter-spacing: 0.3px; gap: 8px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  color: var(--bg-deep);
  box-shadow: 0 4px 20px var(--emerald-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px var(--emerald-glow), var(--shadow-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--emerald);
  border: 1.5px solid var(--emerald);
}
.btn-secondary:hover {
  background: var(--emerald-glow-s);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--emerald-glow);
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px; /* Protects content from fixed header overlap */
}
.hero-bg-video-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.08); /* Brighter, high-quality picture rendering */
  transition: opacity 1s ease;
}
.hero-bg-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 14, 23, 0.45) 0%, rgba(11, 14, 23, 0.65) 50%, rgba(11, 14, 23, 0.88) 100%); /* Clean dark overlay for text readability without muddy gold spots */
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 750px; padding: 0 24px; margin-left: 8%;
}
.hero-label {
  display: inline-block; padding: 8px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 600;
  color: var(--emerald); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 28px;
  background: var(--emerald-glow-s);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px var(--emerald-glow-s); }
  50% { box-shadow: 0 0 30px var(--emerald-glow); }
}
.hero-headline {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.05; margin-bottom: 24px;
  font-weight: 800;
}
.hero-headline .accent { display: block; }
.hero-description {
  color: var(--text-muted); font-size: 1.1rem;
  max-width: 580px; margin-bottom: 40px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════ */
section { position: relative; }

.section-padding { padding: 100px 0; }

.section-header {
  text-align: center; max-width: 700px;
  margin: 0 auto 60px;
}
.section-header .section-label {
  display: inline-block; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--emerald);
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* Gradient Divider */
.gradient-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--emerald) 50%, transparent 100%);
  opacity: 0.25;
}

/* Alt Background */
.alt-bg {
  background: var(--bg-surface);
}

/* ═══════════════════════════════════════
   SERVICE GRID (Homepage)
   ═══════════════════════════════════════ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px; padding: 0 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover {
  border-color: var(--border-subtle);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), 0 0 40px var(--emerald-glow-s);
}
.service-card:hover::before { opacity: 1; }
.service-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--emerald-glow), var(--teal-glow));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  box-shadow: var(--shadow-glow);
  transform: scale(1.1);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 20px; }
.service-card ul { padding: 0; }
.service-card ul li {
  color: var(--text-muted); font-size: 0.85rem;
  padding: 6px 0; padding-left: 20px; position: relative;
}
.service-card ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald);
}

/* ═══════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px; text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #071018 100%);
  text-align: center;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--text-muted); margin-bottom: 36px; max-width: 600px; margin-inline: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   PAGE HEADER (Sub-pages)
   ═══════════════════════════════════════ */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--emerald-glow-s) 0%, transparent 100%);
  position: relative;
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald-glow), transparent);
}
.page-header h1 { margin-bottom: 12px; }
.page-subtitle {
  color: var(--emerald); font-size: 1.1rem;
  font-weight: 500; letter-spacing: 1px;
}

/* ═══════════════════════════════════════
   CONTENT SECTION (Sub-pages)
   ═══════════════════════════════════════ */
.content-section {
  padding: 80px 0;
}
.content-section h2 {
  margin-bottom: 20px;
}
.content-section p {
  color: var(--text-muted); font-size: 1rem;
  max-width: 800px; line-height: 1.8;
  margin-bottom: 16px;
}
.content-section .highlight {
  color: var(--emerald-light);
  border-left: 3px solid var(--emerald);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
}

/* ═══════════════════════════════════════
   SERVICE DETAIL CARDS (Corporate/Marketing)
   ═══════════════════════════════════════ */
.services-detail { padding: 80px 0; }
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.service-detail-card:hover {
  border-color: var(--border-subtle);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.service-header {
  padding: 28px 28px 0;
}
.service-header h3 { font-size: 1.15rem; }
.service-body {
  padding: 16px 28px 28px;
}
.service-body p {
  color: var(--text-muted); font-size: 0.9rem;
  margin-bottom: 16px;
}
.service-features {
  padding: 0;
}
.service-features li {
  color: var(--text-muted); font-size: 0.85rem;
  padding: 5px 0 5px 22px; position: relative;
}
.service-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--emerald); font-weight: 700; font-size: 0.8rem;
}

.service-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 12px 24px;
  background: rgba(37, 211, 102, 0.08);
  border: 1.5px solid rgba(37, 211, 102, 0.25);
  color: #25D366;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  transition: all 0.3s ease;
  text-decoration: none;
}
.service-wa-btn svg {
  fill: #25D366;
  transition: transform 0.3s ease;
}
.service-wa-btn:hover {
  background: #25D366;
  color: #0b0e17; /* Matches var(--bg-deep) */
  border-color: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}
.service-wa-btn:hover svg {
  fill: #0b0e17;
  transform: scale(1.1);
}
.service-detail-card:hover .service-wa-btn {
  border-color: rgba(37, 211, 102, 0.6);
  background: rgba(37, 211, 102, 0.12);
}

/* ═══════════════════════════════════════
   WHY CHOOSE / PHILOSOPHY GRIDS
   ═══════════════════════════════════════ */
.why-services-grid, .philosophy-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-service-card, .philosophy-card, .why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}
.why-service-card:hover, .philosophy-card:hover, .why-card:hover {
  border-color: var(--border-subtle);
  transform: translateY(-4px);
}
.why-service-card h4, .philosophy-card h4, .why-card h4 {
  color: var(--emerald); margin-bottom: 12px;
}
.why-service-card p, .philosophy-card p, .why-card p {
  color: var(--text-muted); font-size: 0.9rem;
}

/* ═══════════════════════════════════════
   PROCESS FLOW
   ═══════════════════════════════════════ */
.process-section { padding: 80px 0; }
.process-flow, .process-steps {
  display: flex; justify-content: center;
  align-items: flex-start; gap: 16px;
  flex-wrap: wrap; margin-top: 40px;
}
.process-box, .step {
  flex: 1; min-width: 180px; max-width: 240px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  transition: var(--transition);
}
.process-box:hover, .step:hover {
  border-color: var(--border-subtle);
  transform: translateY(-4px);
}
.process-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--bg-deep);
  font-size: 0.9rem; margin-bottom: 16px;
}
.process-box h4, .step h4 { color: var(--emerald); margin-bottom: 8px; font-size: 1rem; }
.process-box p, .step p { color: var(--text-muted); font-size: 0.85rem; }
.process-arrow {
  color: var(--emerald); font-size: 1.5rem;
  align-self: center; opacity: 0.5;
}

/* ═══════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════ */
.portfolio-section { padding: 80px 0; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
}
.portfolio-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.portfolio-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-card);
}
.portfolio-image {
  height: 180px; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-card));
}
.portfolio-placeholder {
  height: 100%; display: flex;
  align-items: center; justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--emerald-glow-s), var(--teal-glow));
}
.portfolio-content { padding: 24px 28px; }
.portfolio-content h4 { margin-bottom: 6px; }
.portfolio-category {
  color: var(--emerald); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 12px;
}
.portfolio-content p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; }
.portfolio-results { display: flex; flex-direction: column; gap: 6px; }
.portfolio-results span {
  color: var(--emerald-light); font-size: 0.82rem; font-weight: 500;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials-section { padding: 80px 0; }
.testimonials-expanded {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-expanded {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px; transition: var(--transition);
}
.testimonial-expanded:hover {
  border-color: var(--border-subtle);
  transform: translateY(-4px);
}
.testimonial-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--emerald-glow), var(--teal-glow));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.testimonial-header h4 { font-size: 1rem; margin-bottom: 2px; }
.testimonial-header p { color: var(--text-muted); font-size: 0.8rem; }
.testimonial-text { color: var(--text-muted); font-size: 0.9rem; font-style: italic; line-height: 1.7; margin-bottom: 12px; }
.testimonial-rating { font-size: 0.9rem; }

/* ═══════════════════════════════════════
   BLOG / INSIGHTS
   ═══════════════════════════════════════ */
.blog-section { padding: 80px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px; transition: var(--transition);
}
.blog-card:hover {
  border-color: var(--border-subtle);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.blog-header h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-header h3 a { color: var(--white); }
.blog-header h3 a:hover { color: var(--emerald); }
.blog-meta { color: var(--emerald); font-size: 0.78rem; font-weight: 600; margin-bottom: 14px; }
.blog-excerpt { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.7; }
.blog-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.blog-tags span {
  font-size: 0.72rem; padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--emerald-glow-s);
  color: var(--emerald); font-weight: 600;
}
.blog-read-more {
  color: var(--emerald); font-weight: 600; font-size: 0.85rem;
}
.blog-read-more:hover { color: var(--teal); }

/* Blog Card Enhancements */
.blog-card {
  position: relative;
  overflow: hidden;
}
.blog-card-top-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.blog-card:hover .blog-card-top-accent {
  opacity: 1;
}
.blog-date-line {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.blog-date-line svg {
  stroke: var(--text-dim);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   INSIGHTS FEATURED ARTICLE
   ═══════════════════════════════════════ */
.insights-featured-section {
  padding: 60px 0 40px;
}
.insights-featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.insights-featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--teal), var(--emerald));
  background-size: 200% 100%;
  animation: shimmer-gradient 3s ease-in-out infinite;
}
@keyframes shimmer-gradient {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.insights-featured-card:hover {
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-card), 0 0 60px var(--emerald-glow-s);
}
.insights-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--emerald-glow), var(--teal-glow));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--emerald);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.insights-featured-badge svg {
  fill: var(--emerald);
}
.insights-featured-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 20px;
  line-height: 1.3;
}
.insights-featured-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 900px;
}
.insights-featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.insights-category-badge {
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  color: var(--bg-deep);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}
.insights-date {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 500;
}
.insights-read-time {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 500;
  padding-left: 16px;
  border-left: 1px solid var(--border-card);
}
.insights-featured-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-card);
}
.insights-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.insights-author-name {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.insights-author-role {
  display: block;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 500;
}
.insights-featured-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.insights-featured-tags span {
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--emerald-glow-s);
  color: var(--emerald);
  font-weight: 600;
}

/* ═══════════════════════════════════════
   INSIGHTS CATEGORY FILTER BAR
   ═══════════════════════════════════════ */
.insights-filter-section {
  padding: 24px 0 0;
}
.insights-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 16px 0;
}
.insights-filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
}
.insights-filter-btn:hover {
  border-color: var(--border-subtle);
  color: var(--white);
  background: var(--bg-card-hover);
}
.insights-filter-btn.active {
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  color: var(--bg-deep);
  border-color: transparent;
  box-shadow: 0 4px 20px var(--emerald-glow);
}

/* ═══════════════════════════════════════
   INSIGHTS RESOURCES SECTION
   ═══════════════════════════════════════ */
.insights-resources-section {
  padding: 100px 0;
}
.insights-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.insights-resource-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.insights-resource-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.insights-resource-card:hover {
  border-color: var(--border-subtle);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 40px var(--emerald-glow-s);
}
.insights-resource-card:hover::before {
  opacity: 1;
}
.insights-resource-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--emerald-glow), var(--teal-glow));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.insights-resource-icon svg {
  stroke: var(--emerald);
}
.insights-resource-card:hover .insights-resource-icon {
  box-shadow: var(--shadow-glow);
  transform: scale(1.08);
}
.insights-resource-card h4 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.insights-resource-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.insights-resource-type {
  color: var(--emerald);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   INSIGHTS RESPONSIVE OVERRIDES
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .insights-featured-card {
    padding: 28px 20px;
  }
  .insights-featured-content h2 {
    font-size: 1.4rem;
  }
  .insights-featured-meta {
    gap: 10px;
  }
  .insights-read-time {
    padding-left: 0;
    border-left: none;
  }
  .insights-filter-bar {
    gap: 8px;
  }
  .insights-filter-btn {
    padding: 8px 18px;
    font-size: 0.78rem;
  }
  .insights-resources-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════
   ARTICLE DETAIL PAGE
   ═══════════════════════════════════════ */
.article-breadcrumb {
  padding: 120px 0 20px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.breadcrumb-nav a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.breadcrumb-nav a:hover {
  color: var(--emerald);
}
.breadcrumb-sep {
  color: var(--text-dim);
  font-size: 0.7rem;
}

.article-hero {
  padding: 20px 0 40px;
}
.article-hero-inner {
  max-width: 820px;
}
.article-hero .insights-category-badge {
  margin-bottom: 16px;
  display: inline-block;
}
.article-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-card);
}
.article-hero-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-hero-author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.article-hero-author-info span {
  display: block;
}
.article-hero-author-info .author-name {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.article-hero-author-info .author-role {
  color: var(--text-dim);
  font-size: 0.75rem;
}
.article-meta-item {
  color: var(--text-dim);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-meta-item svg {
  flex-shrink: 0;
}

.article-body-section {
  padding: 50px 0 80px;
}
.article-body {
  max-width: 780px;
}
.article-body h2 {
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-card);
}
.article-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.article-body h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 14px;
  color: var(--emerald-light);
}
.article-body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  padding-left: 0;
  margin-bottom: 24px;
}
.article-body ul li, .article-body ol li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 6px 0 6px 24px;
  position: relative;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald);
}
.article-body ol {
  counter-reset: article-counter;
  list-style: none;
}
.article-body ol li {
  counter-increment: article-counter;
}
.article-body ol li::before {
  content: counter(article-counter) '.';
  position: absolute;
  left: 0; top: 6px;
  color: var(--emerald);
  font-weight: 700;
  font-size: 0.9rem;
}
.article-body strong {
  color: var(--ivory);
  font-weight: 600;
}
.article-body blockquote {
  border-left: 3px solid var(--emerald);
  padding: 20px 24px;
  margin: 28px 0;
  background: var(--emerald-glow-s);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-body blockquote p {
  color: var(--emerald-light);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.article-key-takeaway {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
}
.article-key-takeaway h4 {
  color: var(--emerald);
  font-size: 0.92rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-key-takeaway ul {
  margin-bottom: 0;
}

.article-tags-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  margin-top: 40px;
  border-top: 1px solid var(--border-card);
}
.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.article-tags span {
  font-size: 0.72rem;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: var(--emerald-glow-s);
  color: var(--emerald);
  font-weight: 600;
}

.article-author-bio {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 48px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.article-author-bio-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.article-author-bio h4 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}
.article-author-bio .bio-role {
  color: var(--emerald);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.article-author-bio p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.related-articles-section {
  padding: 80px 0;
}
.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .article-hero h1 {
    font-size: 1.6rem;
  }
  .article-hero-meta {
    gap: 12px;
  }
  .article-body h2 {
    font-size: 1.35rem;
  }
  .article-author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .article-tags-share {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Newsletter */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--emerald-glow-s), var(--teal-glow));
}
.newsletter-content { text-align: center; max-width: 600px; margin: 0 auto; }
.newsletter-content h2 { margin-bottom: 12px; }
.newsletter-content p { color: var(--text-muted); margin-bottom: 28px; }
.newsletter-form {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1; min-width: 240px;
  padding: 14px 20px; border-radius: var(--radius-full);
  background: var(--bg-card); border: 1px solid var(--border-card);
  color: var(--ivory); font-size: 0.9rem;
}
.newsletter-form input:focus {
  outline: none; border-color: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-glow-s);
}
.newsletter-note { color: var(--text-dim); font-size: 0.78rem; margin-top: 12px; }

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.contact-section { padding: 80px 0; }
.contact-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}
.contact-form-wrapper, .contact-info-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrapper h2, .contact-info-wrapper h2 {
  font-size: 1.5rem; margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; color: var(--text-muted);
  font-size: 0.82rem; font-weight: 600;
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--ivory); font-family: var(--font-body); font-size: 0.9rem;
  transition: var(--transition-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-glow-s);
}
.form-group.checkbox {
  display: flex; align-items: flex-start; gap: 10px;
}
.form-group.checkbox input { width: auto; margin-top: 3px; accent-color: var(--emerald); }
.form-group.checkbox label { font-size: 0.82rem; margin-bottom: 0; }

/* Contact Methods */
.contact-methods { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-method { padding: 16px 0; border-bottom: 1px solid var(--border-card); }
.contact-method:last-child { border-bottom: none; }
.contact-method h4 { font-size: 1rem; margin-bottom: 6px; }
.contact-method a { color: var(--emerald); font-weight: 500; }
.contact-method a:hover { color: var(--teal); }
.contact-note { color: var(--text-dim); font-size: 0.78rem; margin-top: 4px; }
.response-info { margin-bottom: 24px; }
.response-info h4 { color: var(--emerald); margin-bottom: 12px; }
.response-info li { color: var(--text-muted); font-size: 0.85rem; padding: 4px 0; }
.social-section h4 { color: var(--emerald); margin-bottom: 12px; }
.social-links-contact { display: flex; gap: 12px; }
.social-links-contact a {
  padding: 8px 18px; border-radius: var(--radius-full);
  background: var(--bg-surface); border: 1px solid var(--border-card);
  color: var(--text-muted); font-size: 0.82rem; font-weight: 500;
}
.social-links-contact a:hover {
  border-color: var(--emerald); color: var(--emerald);
  background: var(--emerald-glow-s);
}

/* Booking Options */
.quick-booking { padding: 80px 0; }
.booking-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-top: 32px;
}
.booking-option {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 28px; text-align: center;
  transition: var(--transition);
}
.booking-option:hover {
  border-color: var(--border-subtle);
  transform: translateY(-4px);
}
.booking-option h4 { margin-bottom: 10px; }
.booking-option p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 20px; }

/* FAQ */
.faq-section { padding: 80px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px; margin-top: 32px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 28px; transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--border-subtle);
}
.faq-item h4 { color: var(--emerald); font-size: 1rem; margin-bottom: 10px; }
.faq-item p { color: var(--text-muted); font-size: 0.88rem; }

/* Final CTA */
.final-cta-section { padding: 100px 0; text-align: center; }
.premium-gradient {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
}
.cta-container h2 { margin-bottom: 16px; }
.cta-container p { color: var(--text-muted); margin-bottom: 32px; }

/* Services Summary */
.services-summary { padding: 80px 0; }
.services-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; margin-top: 32px;
}
.service-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px;
}
.service-summary h4 { margin-bottom: 16px; }
.service-summary li { color: var(--text-muted); font-size: 0.88rem; padding: 5px 0; }

/* ═══════════════════════════════════════
   FLOATING CONTACT SIDEBAR
   ═══════════════════════════════════════ */
.contact-sidebar {
  position: fixed; right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  display: flex; flex-direction: column; gap: 4px;
}
.contact-pill {
  display: flex; align-items: center;
  padding: 12px 14px;
  border-radius: 28px 0 0 28px;
  transform: translateX(calc(100% - 52px));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.3s ease;
  cursor: pointer; text-decoration: none;
  min-width: 180px; gap: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.contact-pill:hover {
  transform: translateX(0);
}
.contact-pill .pill-icon {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-pill .pill-label {
  font-size: 0.8rem; font-weight: 600;
  white-space: nowrap; opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}
.contact-pill:hover .pill-label { opacity: 1; }

/* WhatsApp */
.pill-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-right: none;
}
.pill-whatsapp .pill-icon { background: #25D366; color: white; }
.pill-whatsapp .pill-label { color: #25D366; }
.pill-whatsapp:hover { box-shadow: 0 0 25px rgba(37,211,102,0.3); }

/* Instagram */
.pill-instagram {
  background: rgba(228, 64, 95, 0.15);
  border: 1px solid rgba(228, 64, 95, 0.3);
  border-right: none;
}
.pill-instagram .pill-icon {
  background: linear-gradient(135deg, #833AB4, #E4405F, #FCAF45);
  color: white;
}
.pill-instagram .pill-label { color: #E4405F; }
.pill-instagram:hover { box-shadow: 0 0 25px rgba(228,64,95,0.3); }

/* Email */
.pill-email {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-right: none;
}
.pill-email .pill-icon { background: var(--emerald); color: white; }
.pill-email .pill-label { color: var(--emerald); }
.pill-email:hover { box-shadow: 0 0 25px var(--emerald-glow); }

/* Phone */
.pill-phone {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-right: none;
}
.pill-phone .pill-icon { background: #3B82F6; color: white; }
.pill-phone .pill-label { color: #3B82F6; }
.pill-phone:hover { box-shadow: 0 0 25px rgba(59,130,246,0.3); }

.whatsapp-mobile-fab {
  position: fixed; bottom: 24px; right: 20px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45); text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-mobile-fab svg {
  width: 30px; height: 30px; fill: white;
}
.whatsapp-mobile-fab:active {
  transform: scale(0.9);
}

/* ═══════════════════════════════════════
   CHATBOT WIDGET
   ═══════════════════════════════════════ */
.chatbot-bubble {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 1002;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 25px var(--emerald-glow), 0 0 0 0 rgba(226, 184, 101, 0.4);
  transition: var(--transition);
  animation: chat-pulse 2.5s ease-in-out infinite;
}
@keyframes chat-pulse {
  0%, 100% { box-shadow: 0 6px 25px var(--emerald-glow), 0 0 0 0 rgba(226, 184, 101, 0.3); }
  50% { box-shadow: 0 6px 25px var(--emerald-glow), 0 0 0 12px rgba(226, 184, 101, 0); }
}
.chatbot-bubble:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 8px 35px var(--emerald-glow);
}
.chatbot-bubble svg { width: 28px; height: 28px; fill: white; }
.chatbot-bubble.open svg.chat-icon { display: none; }
.chatbot-bubble.open svg.close-icon { display: block; }
.chatbot-bubble svg.close-icon { display: none; }

.chatbot-panel {
  position: fixed; bottom: 100px; right: 28px;
  width: 380px; max-height: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden; z-index: 1003;
  box-shadow: var(--shadow-elevated);
  display: flex; flex-direction: column;
  transform: scale(0.8) translateY(20px);
  opacity: 0; visibility: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: bottom right;
}
.chatbot-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1; visibility: visible;
}
.chatbot-header {
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  padding: 20px 24px;
  color: var(--bg-deep);
}
.chatbot-header h4 {
  color: var(--bg-deep); font-size: 1.05rem;
  margin-bottom: 2px;
}
.chatbot-header p { font-size: 0.78rem; opacity: 0.8; }
.chatbot-status {
  display: flex; align-items: center; gap: 6px;
  margin-top: 6px; font-size: 0.72rem; font-weight: 600;
}
.chatbot-status::before {
  content: ''; width: 8px; height: 8px;
  background: var(--bg-deep); border-radius: 50%;
  animation: status-pulse 1.5s infinite;
}
@keyframes status-pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}

.chatbot-messages {
  flex: 1; padding: 20px;
  overflow-y: auto; display: flex;
  flex-direction: column; gap: 12px;
  max-height: 320px;
}
.chat-msg {
  max-width: 85%; padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem; line-height: 1.5;
  animation: msg-in 0.3s ease;
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  color: var(--ivory);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  color: var(--bg-deep); font-weight: 500;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Chatbot Typing Indicator */
.chat-msg.typing {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px;
  width: 60px;
}
.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  opacity: 0.4;
  animation: typing-blink 1.4s infinite both;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-blink {
  0% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.4; transform: scale(1); }
}

.quick-replies {
  display: flex; flex-wrap: wrap; gap: 8px; padding: 0 20px 16px;
}
.quick-reply-btn {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--emerald-glow-s);
  border: 1px solid var(--border-subtle);
  color: var(--emerald); font-size: 0.78rem;
  font-weight: 600; cursor: pointer;
  transition: var(--transition-fast);
}
.quick-reply-btn:hover {
  background: var(--emerald);
  color: var(--bg-deep);
  border-color: var(--emerald);
}

.chatbot-input {
  display: flex; gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid var(--border-card);
  background: var(--bg-surface);
}
.chatbot-input input {
  flex: 1; padding: 10px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--ivory); font-size: 0.85rem;
}
.chatbot-input input:focus {
  outline: none; border-color: var(--emerald);
}
.chatbot-input button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
}
.chatbot-input button:hover { transform: scale(1.1); }
.chatbot-input button svg { width: 18px; height: 18px; fill: var(--bg-deep); }

/* ═══════════════════════════════════════
   UNIFIED MOBILE SUPPORT FAB & CHAT CLOSE
   ═══════════════════════════════════════ */
.chat-close-btn {
  position: absolute;
  right: 16px;
  top: 16px;
  background: transparent;
  color: var(--bg-deep);
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.chat-close-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.mobile-support-fab-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1002;
  display: none; /* Hidden on desktop */
}

.fab-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 25px var(--emerald-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab-trigger:active {
  transform: scale(0.9);
}

.fab-trigger .trigger-icon-chat {
  display: block;
}

.fab-trigger .trigger-icon-close {
  display: none;
}

.mobile-support-fab-container.open .fab-trigger .trigger-icon-chat {
  display: none;
}

.mobile-support-fab-container.open .fab-trigger .trigger-icon-close {
  display: block;
}

.fab-options {
  position: absolute;
  bottom: 68px;
  right: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-support-fab-container.open .fab-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fab-option {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.fab-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.fab-option:active .fab-icon-wrap {
  transform: scale(0.9);
}

.option-whatsapp .fab-icon-wrap {
  background: #25D366;
  color: white;
}

.option-call .fab-icon-wrap {
  background: #3B82F6;
  color: white;
}

.option-chat .fab-icon-wrap {
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  color: var(--bg-deep);
}

.fab-label {
  background: rgba(18, 22, 34, 0.95);
  border: 1px solid var(--border-subtle);
  color: var(--ivory);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: var(--font-body);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-support-fab-container.open .fab-label {
  opacity: 1;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: #040406;
  padding: 80px 24px 40px;
  border-top: 1px solid var(--border-subtle);
}
.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-section h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-section h4 {
  color: var(--white); font-size: 0.95rem;
  margin-bottom: 18px; font-weight: 700;
}
.footer-section p, .footer-description {
  color: var(--text-muted); font-size: 0.88rem; line-height: 1.7;
}
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul li a {
  color: var(--text-muted); font-size: 0.85rem;
}
.footer-section ul li a:hover { color: var(--emerald); }
.footer-section a { color: var(--emerald); }
.footer-section a:hover { color: var(--teal); }
.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.footer-bottom {
  text-align: center; margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-card);
}
.footer-bottom p {
  color: var(--text-dim); font-size: 0.78rem;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--emerald); }

/* ═══════════════════════════════════════
   MODAL (Quick Enquiry)
   ═══════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000; display: none;
  align-items: center; justify-content: center;
}
.modal-content {
  background: var(--bg-card);
  width: 90%; max-width: 480px;
  padding: 40px; border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
  box-shadow: var(--shadow-elevated);
  animation: modal-in 0.3s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-content h2 { color: var(--emerald); margin-bottom: 24px; font-size: 1.5rem; }
.close-modal {
  position: absolute; top: 16px; right: 20px;
  color: var(--text-muted); font-size: 1.5rem;
  cursor: pointer; transition: var(--transition-fast);
}
.close-modal:hover { color: var(--white); }
.form-input {
  width: 100%; padding: 13px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--ivory); font-size: 0.9rem;
  margin-bottom: 14px; font-family: var(--font-body);
  transition: var(--transition-fast);
}
.form-input:focus {
  outline: none; border-color: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-glow-s);
}

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1; transform: translateY(0);
}
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════
   CONTENT TWO-COLUMN LAYOUT (Text + Image)
   ═══════════════════════════════════════ */
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.content-two-col img {
  width: 100%;
  display: block;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

/* --- Tablet and up: show full sidebar --- */
@media (min-width: 1025px) {
  .contact-sidebar {
    left: auto;
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    flex-direction: column;
  }
  .contact-pill {
    transform: translateX(calc(100% - 52px));
    border-radius: 28px 0 0 28px;
    min-width: 180px;
    width: auto;
    height: auto;
    padding: 12px 14px;
    justify-content: flex-start;
    border: 1px solid !important;
  }
  .contact-pill .pill-label {
    display: inline;
  }
  .contact-pill:hover {
    transform: translateX(0);
  }
  .contact-sidebar .pill-instagram,
  .contact-sidebar .pill-email {
    display: flex;
  }
}

/* ─── TABLET: ≤ 1024px ─── */
@media (max-width: 1024px) {
  .footer-content { grid-template-columns: 1fr 1fr; }
  .contact-container { grid-template-columns: 1fr; }

  /* Two-column content → still 2-col but tighter */
  .content-two-col {
    gap: 32px;
  }
}

/* ─── MOBILE: ≤ 768px ─── */
@media (max-width: 768px) {

  /* ── Global Spacing ── */
  .container { padding: 0 16px; }
  .section-padding { padding: 64px 0; }
  h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  h3 { font-size: clamp(1.1rem, 3.5vw, 1.4rem); }
  .section-header { margin-bottom: 36px; }
  .section-header p { font-size: 0.92rem; }

  /* ── Navigation ── */
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--bg-card);
    flex-direction: column; gap: 0;
    padding: 80px 32px 32px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border-subtle);
    z-index: 1001;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-card);
    width: 100%;
  }
  .main-nav a::after { display: none; }
  .nav-cta {
    margin-top: 12px;
    text-align: center !important;
    width: 100% !important;
  }

  /* ── Hero ── */
  .hero-section { min-height: 85vh; padding-top: 80px; }
  .hero-content { margin-left: 0; padding: 0 20px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-description { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-label { font-size: 0.68rem; letter-spacing: 2px; padding: 6px 16px; margin-bottom: 20px; }

  /* ── Content Two-Column (Text + Image) → Stack ── */
  .content-two-col {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .content-two-col img {
    max-height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
  }
  .content-section { padding: 60px 0; }
  .content-section p { font-size: 0.92rem; }
  .content-section .highlight { padding-left: 16px; font-size: 0.9rem; }

  /* ── Grids → Single Column ── */
  .service-grid,
  .services-list,
  .portfolio-grid,
  .blog-grid,
  .testimonials-expanded,
  .services-summary-grid,
  .why-services-grid,
  .philosophy-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .service-grid { padding: 0; }

  /* ── Service Cards ── */
  .service-card { padding: 28px 24px; }
  .service-detail-card .service-header { padding: 20px 20px 0; }
  .service-detail-card .service-body { padding: 14px 20px 24px; }

  /* ── Process Steps → Stack ── */
  .process-flow, .process-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .process-box, .step {
    max-width: 100%;
    min-width: auto;
  }
  .process-arrow { display: none; }
  .process-section { padding: 60px 0; }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 2.4rem; }

  /* ── Testimonials ── */
  .testimonials-section { padding: 60px 0; }
  .testimonial-expanded { padding: 24px; }

  /* ── Portfolio ── */
  .portfolio-section { padding: 60px 0; }
  .portfolio-grid { grid-template-columns: 1fr; }

  /* ── Blog/Insights Grid ── */
  .blog-section { padding: 60px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { padding: 24px; }

  /* ── Page Header (sub-pages) ── */
  .page-header {
    padding: 120px 0 48px;
  }
  .page-subtitle { font-size: 0.95rem; }

  /* ── Contact Page ── */
  .contact-section { padding: 60px 0; }
  .contact-container { grid-template-columns: 1fr; gap: 24px; }
  .contact-form-wrapper, .contact-info-wrapper { padding: 24px; }
  .contact-form-wrapper h2, .contact-info-wrapper h2 { font-size: 1.3rem; }
  .social-links-contact { flex-wrap: wrap; }

  /* ── Booking Options ── */
  .quick-booking { padding: 60px 0; }
  .booking-options { grid-template-columns: 1fr; }

  /* ── FAQ ── */
  .faq-section { padding: 60px 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-card .faq-question-wrap { padding: 18px 20px; }
  .faq-card .faq-question-wrap h3 { font-size: 1rem; margin-right: 12px; }
  .faq-answer-inner { padding: 0 20px 20px; font-size: 0.88rem; }

  /* ── CTA Section ── */
  .cta-section { padding: 80px 0; }
  .final-cta-section { padding: 72px 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; text-align: center; }

  /* ── Footer ── */
  .site-footer { padding: 48px 16px 32px; }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .footer-section ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 16px; }
  .footer-bottom { margin-top: 28px; }

  /* ── Contact Sidebar → hide on mobile ── */
  .contact-sidebar {
    display: none !important;
  }

  /* ── Chatbot ── */
  .chatbot-panel { width: calc(100vw - 32px); right: 16px; bottom: 90px; max-height: 70vh; }
  .chatbot-bubble { display: none !important; }
  .whatsapp-mobile-fab { display: none !important; }
  .mobile-support-fab-container { display: block; }

  /* ── Modal ── */
  .modal-content { padding: 28px 20px; width: 95%; }

  /* ── Newsletter ── */
  .newsletter-section { padding: 60px 0; }
  .newsletter-form { flex-direction: column; align-items: center; }
  .newsletter-form input { min-width: auto; width: 100%; }

  /* ── Philosophy / Why Cards ── */
  .philosophy-grid, .why-grid, .why-services-grid {
    grid-template-columns: 1fr;
  }
  .philosophy-card, .why-card, .why-service-card {
    padding: 24px 20px;
  }

  /* ── Services Detail ── */
  .services-detail { padding: 60px 0; }

  /* ── About Page specific ── */
  .services-summary { padding: 60px 0; }

  /* ── Estimator ── */
  .estimator-section { padding: 60px 0; }
  .estimator-container { grid-template-columns: 1fr; }
  .estimator-wizard { padding: 24px; }
  .estimator-summary {
    position: static;
    padding: 24px;
  }
  .estimator-options-grid { grid-template-columns: 1fr; }
  .estimator-total-value { font-size: 1.8rem; }

  /* ── Lightbox ── */
  .lightbox-card {
    grid-template-columns: 1fr;
    max-height: 90vh;
  }
  .lightbox-media {
    min-height: 200px;
    height: 200px;
  }
  .lightbox-details {
    padding: 24px;
  }
  .lightbox-details h2 { font-size: 1.4rem; }
}

/* ─── SMALL PHONE: ≤ 480px ─── */
@media (max-width: 480px) {
  .hero-section { min-height: 80vh; }
  .hero-headline { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .hero-description { font-size: 0.88rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 2rem; }

  .booking-options { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .service-card { padding: 24px 18px; }
  .service-card h3 { font-size: 1.1rem; }

  .page-header { padding: 110px 0 40px; }

  .logo-brand h2 { font-size: 1.2rem; letter-spacing: 2.5px; }
  .logo-brand .tagline { font-size: 0.48rem; letter-spacing: 1.5px; }

  .content-two-col img { max-height: 220px; }

  .testimonial-expanded { padding: 20px 16px; }
  .testimonial-text { font-size: 0.85rem; }

  .chatbot-panel { width: calc(100vw - 24px); right: 12px; bottom: 80px; }
}

/* ==========================================================================
   FEATURE 2: PREMIUM BUSINESS SETUP & BRANDING COST CALCULATOR
   ========================================================================== */
.estimator-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.estimator-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
.estimator-wizard {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.estimator-step {
  margin-bottom: 36px;
}
.estimator-step:last-child {
  margin-bottom: 0;
}
.estimator-step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.estimator-step-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  color: var(--bg-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.estimator-step-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
.estimator-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.estimator-option-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  user-select: none;
}
.estimator-option-card:hover {
  border-color: var(--border-subtle);
  transform: translateY(-2px);
}
.estimator-option-card.selected {
  border-color: var(--emerald);
  background: var(--emerald-glow-s);
  box-shadow: 0 0 15px var(--emerald-glow-s);
}
.estimator-option-card input[type="radio"] {
  display: none;
}
.estimator-option-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.estimator-option-card.selected .estimator-option-title {
  color: var(--emerald-light);
}
.estimator-option-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.estimator-option-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--text-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.estimator-option-card.selected .estimator-option-badge {
  border-color: var(--emerald);
  background: var(--emerald);
}
.estimator-option-badge::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--bg-deep);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition-fast);
}
.estimator-option-card.selected .estimator-option-badge::after {
  opacity: 1;
}

/* Slider Style for Visas */
.estimator-slider-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px 30px;
}
.estimator-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.estimator-slider-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.estimator-slider-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--emerald-light);
}
.estimator-slider {
  width: 100%;
  height: 6px;
  background: var(--bg-deep);
  border-radius: var(--radius-full);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.estimator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  box-shadow: 0 0 10px var(--emerald-glow);
  transition: transform 0.1s ease;
}
.estimator-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Estimator Bill Summary Card */
.estimator-summary {
  background: var(--bg-card);
  border: 1.5px solid var(--emerald);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-elevated), 0 0 35px var(--emerald-glow-s);
  position: sticky;
  top: 100px;
}
.estimator-summary h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 24px;
  color: var(--emerald-light);
}
.estimator-summary-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 20px;
}
.estimator-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.estimator-summary-item span:first-child {
  font-weight: 500;
}
.estimator-summary-item span:last-child {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
}
.estimator-total-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.estimator-total-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.estimator-total-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-whatsapp-estimate {
  background: #25D366 !important;
  color: var(--white) !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3) !important;
  width: 100%;
  justify-content: center;
}
.btn-whatsapp-estimate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5) !important;
}

/* ==========================================================================
   FEATURE 5: ACCORDION FAQ SECTION (CSS GRID ANIMATED)
   ========================================================================== */
.faq-section {
  padding: 100px 0;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.faq-card:hover {
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-card);
}
.faq-card.open {
  border-color: var(--emerald);
}
.faq-question-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  user-select: none;
}
.faq-question-wrap h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-right: 20px;
  transition: var(--transition-fast);
}
.faq-card.open .faq-question-wrap h3 {
  color: var(--emerald-light);
}
.faq-trigger-icon {
  font-size: 1rem;
  color: var(--emerald);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.faq-card.open .faq-trigger-icon {
  transform: rotate(180deg);
}

/* Perfect CSS Grid Height: Auto Transition */
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.faq-card.open .faq-answer-wrap {
  grid-template-rows: 1fr;
}
.faq-answer {
  overflow: hidden;
}
.faq-answer-inner {
  padding: 0 30px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ==========================================================================
   FEATURE 4: PORTFOLIO LIGHTBOX MODAL
   ========================================================================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 16, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 24px;
}
.lightbox-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 1080px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: var(--shadow-elevated), 0 0 60px var(--emerald-glow-s);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}
.lightbox-overlay.open .lightbox-card {
  transform: scale(1) translateY(0);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}
.lightbox-close:hover {
  background: var(--emerald-glow-s);
  border-color: var(--emerald);
  color: var(--emerald);
  transform: scale(1.05);
}
.lightbox-media {
  background: linear-gradient(135deg, var(--bg-deep), var(--bg-surface));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 380px;
}
.lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lightbox-details {
  padding: 48px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lightbox-category {
  color: var(--emerald);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lightbox-details h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.2;
}
.lightbox-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.lightbox-results-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--emerald-light);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lightbox-results-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.lightbox-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}
.lightbox-result-item::before {
  content: '✓';
  color: var(--emerald);
  font-weight: 900;
}
.lightbox-cta {
  width: 100%;
  justify-content: center;
}

/* Estimator Mobile / Responsive Adaptations */
@media (max-width: 991px) {
  .estimator-container {
    grid-template-columns: 1fr;
  }
  .estimator-summary {
    position: static;
    top: 0;
  }
  .lightbox-card {
    grid-template-columns: 1fr;
    max-height: 90vh;
  }
  .lightbox-media {
    min-height: 240px;
    height: 240px;
  }
  .lightbox-details {
    padding: 32px;
  }
}

/* ==========================================================================
   FEATURE 6: PREMIUM ARTICLE PAGE DESIGN
   ========================================================================== */
.article-breadcrumb {
  padding: 110px 0 20px; /* clear header height of 80px */
}
.breadcrumb-nav {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-nav a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.breadcrumb-nav a:hover {
  color: var(--emerald);
}
.breadcrumb-sep {
  color: var(--text-dim);
}

.article-hero {
  padding: 30px 0 50px;
}
.article-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.article-hero-inner .insights-category-badge {
  display: inline-block;
  background: var(--emerald-glow-s);
  border: 1px solid var(--border-subtle);
  color: var(--emerald);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.article-hero-inner h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.25;
  margin-bottom: 32px;
  background: linear-gradient(135deg, var(--white) 30%, var(--emerald-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  padding: 20px 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.article-hero-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-hero-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.article-hero-author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.article-hero-author-info .author-name {
  color: var(--white);
  font-weight: 600;
}
.article-hero-author-info .author-role {
  font-size: 0.75rem;
}
.article-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-meta-item svg {
  color: var(--emerald);
}

.article-body-section {
  padding-bottom: 100px;
}
.article-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ivory);
}
.article-body p {
  margin-bottom: 24px;
  color: #d1dbe5; /* slightly brighter than text-muted for readability on dark backgrounds */
}
.article-body h2 {
  font-size: 1.8rem;
  margin: 48px 0 24px;
  color: var(--white);
}
.article-body h3 {
  font-size: 1.4rem;
  margin: 36px 0 18px;
  color: var(--emerald-light);
}
.article-body blockquote {
  border-left: 3px solid var(--emerald);
  padding-left: 28px;
  margin: 36px 0;
  font-style: italic;
  color: var(--emerald-light);
  font-size: 1.25rem;
}
.article-body blockquote p {
  color: var(--emerald-light);
  margin-bottom: 0;
}
.article-body ul, .article-body ol {
  margin-bottom: 32px;
  padding-left: 24px;
}
.article-body ul li {
  list-style-type: disc;
  margin-bottom: 12px;
  color: #d1dbe5;
}
.article-body ol li {
  list-style-type: decimal;
  margin-bottom: 12px;
  color: #d1dbe5;
}

.article-key-takeaway {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 40px 0;
  box-shadow: var(--shadow-card);
}
.article-key-takeaway h4 {
  color: var(--emerald);
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-key-takeaway h4 svg {
  color: var(--emerald);
}
.article-key-takeaway ul {
  margin-bottom: 0;
  padding-left: 20px;
}
.article-key-takeaway ul li {
  margin-bottom: 10px;
  list-style-type: none;
}
.article-key-takeaway ul li:last-child {
  margin-bottom: 0;
}

.article-tags-share {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-card);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article-tags span {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
}

.article-author-bio {
  margin-top: 48px;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.article-author-bio-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.article-author-bio h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 4px;
}
.article-author-bio .bio-role {
  display: block;
  font-size: 0.8rem;
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.article-author-bio p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

.related-articles-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
}
.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .related-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .article-breadcrumb {
    padding-top: 90px;
  }
  .article-author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }
  .related-articles-grid {
    grid-template-columns: 1fr;
  }
}

