/* ═══════════════════════════════════════════════════════════
   BLITZCLEAN PRO SERVICES — styles.css  (single merged file)
   Covers: index.html · blog.html · post.html
   "Clean spaces, clear minds."
═══════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   SECTION 1 — BASE + HOMEPAGE + BLOG CARD STYLES
════════════════════════════════════════════════════════ */
/* ============================================================
   BLITZCLEAN PRO SERVICES — Main Stylesheet
   Color Palette derived from brand logo:
   Navy #0D1E35 | Green #2A6B3F | Gold #C99A2E | Cream #F6F2EA
   ============================================================ */



/* ── CSS VARIABLES ── */
:root {
  --navy:        #0D1E35;
  --navy-light:  #162840;
  --navy-mid:    #1E3A55;
  --green:       #2A6B3F;
  --green-mid:   #3A8A54;
  --green-light: #C2E0CB;
  --green-pale:  #EAF4EE;
  --gold:        #C99A2E;
  --gold-light:  #E8C46A;
  --gold-pale:   #FBF3DC;
  --cream:       #F6F2EA;
  --white:       #FFFFFF;
  --text:        #0D1E35;
  --muted:       #6B7A8D;
  --border:      #D6E4DA;
  --shadow-sm:   0 2px 12px rgba(13,30,53,0.07);
  --shadow-md:   0 8px 32px rgba(13,30,53,0.12);
  --shadow-lg:   0 20px 60px rgba(13,30,53,0.16);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.25s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── UTILITY ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-tag {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 56px;
  font-weight: 300;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 15px 36px;
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: background var(--transition), color var(--transition);
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 15px 36px;
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color var(--transition), color var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,30,53,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,154,46,0.18);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.35); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav-logo { display: flex; align-items: center; gap: 13px; }
.nav-logo img { width: 46px; height: 46px; object-fit: cover; border-radius: 50%; border: 2px solid var(--gold); box-shadow: 0 0 0 2px rgba(201,154,46,0.2); background: white; }
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.nav-brand-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 12.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: rgba(13,30,53,0.98);
  padding: 28px 40px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  z-index: 999;
  gap: 22px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold-light); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 70% 40%, rgba(42,107,63,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 8% 85%, rgba(201,154,46,0.14) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 92% 88%, rgba(42,107,63,0.1) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(201,154,46,0.1);
  border: 1px solid rgba(201,154,46,0.28);
  border-radius: 40px;
  padding: 7px 18px;
  margin-bottom: 28px;
}
.hero-tag span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 66px;
  line-height: 1.02;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-content h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero-logo-wrap {
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px dashed rgba(201,154,46,0.2);
  animation: spin 22s linear infinite;
}
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.hero-logo-wrap img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201,154,46,0.15);
  background: white;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45));
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  width: 100%;
}
.stat-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 20px 14px;
  text-align: center;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.stat-item:hover { background: rgba(255,255,255,0.07); }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-l {
  font-size: 10.5px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5px;
}
.hero-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  justify-content: center;
}
.hero-slogan::before,
.hero-slogan::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,154,46,0.28);
}

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
#services {
  padding: 100px 40px;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.svc-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.svc-card.featured .svc-title { color: #fff; }
.svc-card.featured .svc-desc { color: rgba(255,255,255,0.5); }
.svc-icon { font-size: 38px; margin-bottom: 20px; display: block; }
.svc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ════════════════════════════════════════
   WHY US
════════════════════════════════════════ */
#why { padding: 100px 40px; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.why-img-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(42,107,63,0.28) 0%, transparent 60%);
}
.why-img-block img {
  width: 210px;
  height: 210px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.4));
}
.why-badge {
  position: absolute;
  bottom: 32px; right: 32px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  z-index: 2;
  line-height: 1;
}
.why-badge small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.why-list { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-num {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.why-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.why-text p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
#testimonials {
  padding: 100px 40px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(42,107,63,0.2) 0%, transparent 55%);
}
#testimonials .section-tag { color: var(--gold-light); }
#testimonials .section-title { color: #fff; }
#testimonials .section-sub { color: rgba(255,255,255,0.48); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: background var(--transition), transform var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testi-stars span { color: var(--gold); font-size: 14px; }
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 26px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; color: #fff; }
.testi-role { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 2px; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
#faq { padding: 100px 40px; background: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 3px; margin-top: 40px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  transition: background var(--transition);
  gap: 16px;
}
.faq-q:hover { background: var(--green-pale); }
.faq-q span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  transition: all 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--green);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-a p {
  padding: 2px 24px 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-aside { position: sticky; top: 100px; margin-top: 40px; }
.faq-aside-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff;
}
.faq-aside-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
.faq-aside-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  margin-bottom: 28px;
}
.faq-services { margin-top: 32px; display: flex; flex-direction: column; gap: 11px; }
.faq-svc {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
}
.faq-svc::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ════════════════════════════════════════
   BOOKING
════════════════════════════════════════ */
#booking { padding: 100px 40px; background: var(--white); }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.booking-info .section-sub { margin-bottom: 44px; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 32px;
}
.step:last-child { padding-bottom: 0; }
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.step p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.booking-form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.booking-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.booking-form-wrap > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(42,107,63,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 17px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), opacity var(--transition);
  margin-top: 8px;
}
.btn-submit:hover:not(:disabled) { background: var(--green); border-color: var(--green); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
#cta-banner {
  padding: 84px 40px;
  background: linear-gradient(135deg, var(--green) 0%, #1b4d2e 100%);
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 82% 50%, rgba(201,154,46,0.18) 0%, transparent 50%);
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.cta-text p { font-size: 16px; color: rgba(255,255,255,0.65); font-weight: 300; }
.cta-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold-light);
  margin-top: 10px;
}
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }
.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  padding: 16px 36px;
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.btn-white:hover { background: var(--gold); color: var(--navy); }
.btn-ghost-white {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.38);
  color: #fff;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 76px 40px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.footer-logo img { width: 50px; height: 50px; object-fit: cover; border-radius: 50%; border: 2px solid var(--gold); box-shadow: 0 0 0 3px rgba(201,154,46,0.15); background: white; }
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.footer-logo-text small {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.17em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 300;
}
.footer-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold-light);
}
.footer-col h4 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.52);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 11.5px;
  color: rgba(255,255,255,0.22);
}
.footer-policy { display: flex; gap: 24px; }
.footer-policy a {
  font-size: 11.5px;
  color: rgba(255,255,255,0.22);
  transition: color var(--transition);
}
.footer-policy a:hover { color: rgba(255,255,255,0.5); }

/* ════════════════════════════════════════
   TOAST NOTIFICATION
════════════════════════════════════════ */
#toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--green);
  color: #fff;
  padding: 16px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
}
#toast.show { transform: translateY(0); opacity: 1; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section-title { font-size: 40px; }
  .hero-content h1 { font-size: 54px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; text-align: center; }
  .hero-content h1 { font-size: 46px; }
  .hero-sub { margin: 0 auto 44px; }
  .hero-btns { justify-content: center; }
  .hero-right { align-items: center; }
  .why-grid, .booking-grid, .faq-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .services-grid, .testi-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 36px; }
  .section-title { font-size: 30px; }
  .hero-logo-wrap { width: 260px; height: 260px; }
  .hero-logo-wrap img { width: 190px; height: 190px; }
  .cta-text h2 { font-size: 30px; }
  .cta-inner { text-align: center; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  #services, #why, #testimonials, #faq, #booking { padding: 72px 24px; }
  .nav-inner, .hero-inner { padding-left: 24px; padding-right: 24px; }
  #cta-banner { padding: 60px 24px; }
  footer { padding: 56px 24px 28px; }
}


/* ── HERO ILLUSTRATION ── */
.hero-right { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.hero-illustration {
  width: 100%;
  max-width: 540px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,154,46,0.1);
  position: relative;
}
.hero-illus-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* ── WHY ILLUSTRATION ── */
.why-illustration-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 64px rgba(13,30,53,0.25);
}
.why-illus-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Remove old why-img-block styles that are no longer needed */
.why-img-block { display: none; }



/* ════════════════════════════════════════
   BLOG SECTION
════════════════════════════════════════ */
#blog {
  padding: 100px 40px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#blog::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 50%, var(--green) 100%);
}
.blog-inner { padding: 0 0; }
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.blog-header .section-sub { margin-bottom: 0; }
.blog-header-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.btn-blog-all {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-blog-all:hover { background: var(--navy); color: #fff; }
.blog-powered {
  font-size: 11px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.06em;
}
.blog-powered strong { color: var(--navy); }

/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* BLOG CARD */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(13,30,53,0.13);
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A55 100%);
  position: relative;
  overflow: hidden;
}
.blog-card-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(42,107,63,0.35) 0%, transparent 60%);
}
.blog-card-img-placeholder span {
  font-size: 52px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
.blog-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'DM Mono', monospace;
  z-index: 2;
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.blog-card-date {
  font-size: 11.5px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
}
.blog-card-read {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.blog-card:hover .blog-card-read { gap: 9px; }

/* SKELETON LOADERS */
@keyframes shimmer {
  0% { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}
.shimmer-bg {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 600px 100%;
  animation: shimmer 1.6s infinite linear;
  border-radius: 4px;
}
.blog-skeleton {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0 0 24px;
}
.skel-img { height: 200px; background: linear-gradient(90deg,#e8f0ec 25%,#d8e8dc 50%,#e8f0ec 75%); background-size:600px 100%; animation:shimmer 1.6s infinite linear; }
.skel-tag { height: 20px; width: 80px; margin: 20px 24px 0; background: linear-gradient(90deg,#f0f4f2 25%,#e0eae4 50%,#f0f4f2 75%); background-size:600px 100%; animation:shimmer 1.6s infinite linear; border-radius:10px; }
.skel-title { height: 18px; margin: 12px 24px 0; background: linear-gradient(90deg,#f0f4f2 25%,#e0eae4 50%,#f0f4f2 75%); background-size:600px 100%; animation:shimmer 1.8s infinite linear; border-radius:4px; }
.skel-title.short { width: 70%; }
.skel-text { height: 13px; margin: 10px 24px 0; background: linear-gradient(90deg,#f4f4f4 25%,#eaeaea 50%,#f4f4f4 75%); background-size:600px 100%; animation:shimmer 2s infinite linear; border-radius:4px; }
.skel-text.short { width: 55%; }
.skel-meta { height: 13px; width: 100px; margin: 18px 24px 0; background: linear-gradient(90deg,#f0f4f2 25%,#e0eae4 50%,#f0f4f2 75%); background-size:600px 100%; animation:shimmer 1.6s infinite linear; border-radius:4px; }

/* BLOG ERROR STATE */
.blog-error { padding: 60px 20px; }
.blog-error-inner {
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
  padding: 52px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.blog-error-icon { font-size: 52px; display: block; margin-bottom: 20px; }
.blog-error-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.blog-error-inner p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }

/* LOAD MORE */
.blog-load-more { text-align: center; margin-top: 44px; }
.btn-load-more {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--navy);
  padding: 14px 40px;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-load-more:hover { border-color: var(--green); color: var(--green); }
.btn-load-more:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── BLOG MODAL ── */
.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.blog-modal.open { opacity: 1; pointer-events: all; }
.blog-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,30,53,0.75);
  backdrop-filter: blur(6px);
}
.blog-modal-content {
  position: relative;
  z-index: 1;
  background: var(--white);
  width: 90%;
  max-width: 760px;
  max-height: 88vh;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(30px);
  transition: transform 0.35s ease;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.blog-modal.open .blog-modal-content { transform: translateY(0); }
.blog-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition);
}
.blog-modal-close:hover { background: var(--navy); color: #fff; }
.blog-modal-body {
  overflow-y: auto;
  flex: 1;
  padding: 0;
}
.blog-modal-body::-webkit-scrollbar { width: 5px; }
.blog-modal-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* Modal content styles */
.modal-cover {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.modal-cover-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A55 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.modal-cover-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(42,107,63,0.3) 0%, transparent 60%);
}
.modal-text { padding: 36px 40px 48px; }
.modal-cat {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'DM Mono', monospace;
  margin-bottom: 16px;
  border: 1px solid rgba(201,154,46,0.25);
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}
.modal-date {
  font-size: 12px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-date::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--border); }
.modal-content-text {
  font-size: 15px;
  line-height: 1.85;
  color: #3a4a5c;
}
.modal-content-text p { margin-bottom: 18px; }
.modal-content-text h2, .modal-content-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}
.modal-content-text h2 { font-size: 24px; }
.modal-content-text h3 { font-size: 20px; }
.modal-content-text ul, .modal-content-text ol { padding-left: 24px; margin-bottom: 18px; }
.modal-content-text li { margin-bottom: 8px; line-height: 1.7; }
.modal-content-text strong { color: var(--navy); font-weight: 700; }
.modal-content-text a { color: var(--green); text-decoration: underline; }
.modal-cta {
  margin-top: 32px;
  padding: 24px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.modal-cta p { font-size: 14px; color: var(--navy); font-weight: 600; }
.modal-cta small { font-size: 12px; color: var(--muted); font-weight: 400; display: block; margin-top: 2px; }

/* BLOG RESPONSIVE */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-header { flex-direction: column; align-items: flex-start; }
  .blog-header-cta { align-items: flex-start; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .modal-text { padding: 24px; }
  .modal-title { font-size: 24px; }
  #blog { padding: 72px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   BLITZCLEAN PRO — Shared Blog Styles
   Used by: index.html, blog.html, post.html
═══════════════════════════════════════════════════════════ */

/* ── BLOG CARD GRID ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(13,30,53,0.13);
}
.blog-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
  flex-shrink: 0;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.blog-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A55 100%);
  position: relative; overflow: hidden;
}
.blog-card-img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(42,107,63,0.3) 0%, transparent 60%);
}
.blog-card-img-placeholder span { font-size: 52px; position: relative; z-index: 1; }
.blog-card-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--navy);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px;
  border-radius: 20px; font-family: 'DM Mono', monospace; z-index: 2;
}
.blog-card-body {
  padding: 24px; display: flex; flex-direction: column;
  flex: 1; gap: 10px;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700; color: var(--navy);
  line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-excerpt {
  font-size: 13.5px; color: var(--muted); line-height: 1.7; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-meta {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto;
}
.blog-card-date {
  font-size: 11.5px; color: var(--muted);
  font-family: 'DM Mono', monospace; letter-spacing: 0.04em;
}
.blog-card-read {
  font-size: 12px; font-weight: 700; color: var(--green);
  letter-spacing: 0.06em; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
  transition: gap var(--transition);
}
.blog-card:hover .blog-card-read { gap: 9px; }

/* ── SKELETON LOADERS ── */
@keyframes shimmer {
  0% { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}
.blog-skeleton {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; padding: 0 0 24px;
}
.skel-img { height: 210px; }
.skel-tag { height: 20px; width: 80px; margin: 20px 24px 0; border-radius: 10px; }
.skel-title { height: 18px; margin: 12px 24px 0; border-radius: 4px; }
.skel-title.short { width: 70%; }
.skel-text { height: 13px; margin: 10px 24px 0; border-radius: 4px; }
.skel-text.short { width: 55%; }
.skel-meta { height: 13px; width: 100px; margin: 18px 24px 0; border-radius: 4px; }
.skel-img,.skel-tag,.skel-title,.skel-text,.skel-meta {
  background: linear-gradient(90deg,#f0f4f2 25%,#e0eae4 50%,#f0f4f2 75%);
  background-size: 600px 100%;
  animation: shimmer 1.8s infinite linear;
}

/* ── LOAD MORE / PAGINATION ── */
.blog-pagination {
  display: flex; align-items: center;
  justify-content: center; gap: 12px;
  margin-top: 52px; flex-wrap: wrap;
}
.btn-load-more {
  background: transparent; border: 2px solid var(--border);
  color: var(--navy); padding: 14px 40px;
  border-radius: var(--radius); font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; transition: all var(--transition);
}
.btn-load-more:hover { border-color: var(--green); color: var(--green); }
.btn-load-more:disabled { opacity: 0.5; cursor: not-allowed; }
.blog-page-info {
  font-family: 'DM Mono', monospace; font-size: 11.5px; color: var(--muted);
}

/* ── ERROR STATE ── */
.blog-error {
  grid-column: 1 / -1; text-align: center;
  padding: 52px 20px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.blog-error-icon { font-size: 52px; display: block; margin-bottom: 18px; }
.blog-error h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.blog-error p { font-size: 14px; color: var(--muted); margin-bottom: 22px; }

/* ── SHARED NAV / HEADER FOR INNER PAGES ── */
.inner-page-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,30,53,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,154,46,0.18);
  transition: box-shadow 0.25s;
}
.inner-page-nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.35); }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--muted); margin-bottom: 24px;
  font-family: 'DM Mono', monospace; flex-wrap: wrap;
}
.breadcrumb a { color: var(--green); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--border); }

/* ── BLOG RESPONSIVE ── */
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .blog-grid { grid-template-columns: 1fr; } }


/* ════════════════════════════════════════════════════════
   SECTION 2 — BLOG ARCHIVE PAGE  (blog.html)
════════════════════════════════════════════════════════ */
/* ── ARCHIVE PAGE SPECIFIC ── */
.archive-hero {
  background: var(--navy);
  padding: 130px 40px 72px;
  position: relative; overflow: hidden;
}
.archive-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(42,107,63,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 80%, rgba(201,154,46,0.12) 0%, transparent 50%);
}
.archive-hero-inner {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
}
.archive-hero .section-tag { color: var(--gold-light); }
.archive-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 700; color: #fff;
  line-height: 1.05; letter-spacing: -0.5px; margin-bottom: 14px;
}
.archive-hero h1 em { font-style: italic; color: var(--gold-light); }
.archive-hero p {
  font-size: 17px; color: rgba(255,255,255,0.52);
  font-weight: 300; max-width: 560px; line-height: 1.7;
}
.archive-hero-slogan {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 15px; color: var(--gold-light); margin-top: 24px;
}
.archive-hero-slogan::before,.archive-hero-slogan::after {
  content: ''; display: inline-block; width: 28px;
  height: 1px; background: var(--gold);
}

/* ── FILTER BAR ── */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 40px; position: sticky; top: 74px; z-index: 90;
}
.filter-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.filter-cats { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-btn {
  font-family: 'DM Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 20px;
  border: 1px solid var(--border); background: transparent;
  color: var(--muted); cursor: pointer;
  transition: all 0.2s; font-weight: 500;
}
.cat-btn:hover { border-color: var(--green); color: var(--green); }
.cat-btn.active {
  background: var(--green); border-color: var(--green);
  color: #fff;
}
.filter-count {
  font-family: 'DM Mono', monospace; font-size: 11.5px; color: var(--muted);
  white-space: nowrap;
}

/* ── ARCHIVE MAIN ── */
.archive-main {
  max-width: 1200px; margin: 0 auto; padding: 60px 40px 88px;
}
.archive-grid-wrap { position: relative; min-height: 300px; }

/* ── SEARCH BAR ── */
.search-wrap {
  display: flex; gap: 10px; margin-bottom: 36px; max-width: 480px;
}
.search-input {
  flex: 1; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: 'Jost', sans-serif;
  font-size: 14px; color: var(--text); background: var(--white);
  outline: none; transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--green); }
.search-btn {
  background: var(--navy); color: #fff; border: none;
  border-radius: var(--radius); padding: 12px 20px;
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.search-btn:hover { background: var(--green); }

/* ── ARCHIVE FOOTER ── */
.archive-cta {
  background: linear-gradient(135deg, var(--green) 0%, #1b4d2e 100%);
  padding: 72px 40px; position: relative; overflow: hidden;
}
.archive-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,154,46,0.2) 0%, transparent 50%);
}
.archive-cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  position: relative; z-index: 1; flex-wrap: wrap;
}
.archive-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.archive-cta p { font-size: 15px; color: rgba(255,255,255,0.65); }

/* ════════════════════════════════════════════════════════
   SECTION 3 — SINGLE POST PAGE  (post.html)
════════════════════════════════════════════════════════ */
/* ── POST PAGE ── */
.post-hero {
  background: var(--navy);
  padding: 130px 40px 64px;
  position: relative; overflow: hidden;
}
.post-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(42,107,63,0.28) 0%, transparent 60%);
}
.post-hero-inner {
  max-width: 800px; margin: 0 auto; position: relative; z-index: 1;
}
.post-cat {
  display: inline-block;
  background: rgba(201,154,46,0.15); border: 1px solid rgba(201,154,46,0.3);
  color: var(--gold-light); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  font-family: 'DM Mono', monospace; margin-bottom: 20px;
}
.post-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 700; color: #fff;
  line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 20px;
}
.post-hero-meta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.post-meta-item {
  font-family: 'DM Mono', monospace; font-size: 11.5px;
  color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 6px;
}
.post-meta-item::before { content: ''; display:inline-block; width:14px; height:1px; background:rgba(255,255,255,0.2); }

/* ── POST COVER IMAGE ── */
.post-cover {
  max-width: 800px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.post-cover img {
  width: 100%; height: 420px;
  object-fit: cover; display: block;
}
.post-cover-placeholder {
  width: 100%; height: 320px;
  background: linear-gradient(135deg, #1E3A55 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 96px; position: relative; overflow: hidden;
}
.post-cover-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(42,107,63,0.3) 0%, transparent 60%);
}

/* ── POST BODY ── */
.post-layout {
  max-width: 800px; margin: 0 auto;
  padding: 56px 40px 80px; position: relative;
}
.post-body {
  font-size: 16px; line-height: 1.9; color: #2a3a4c;
}
.post-body p { margin-bottom: 22px; }
.post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 700; color: var(--navy);
  margin: 40px 0 16px; line-height: 1.2;
}
.post-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700; color: var(--navy);
  margin: 32px 0 14px;
}
.post-body h4 {
  font-size: 17px; font-weight: 700; color: var(--navy); margin: 24px 0 10px;
}
.post-body ul, .post-body ol {
  padding-left: 28px; margin-bottom: 22px;
}
.post-body li { margin-bottom: 10px; line-height: 1.75; }
.post-body strong { color: var(--navy); font-weight: 700; }
.post-body em { font-style: italic; }
.post-body a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.post-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px; margin: 28px 0;
  background: var(--gold-pale); border-radius: 0 8px 8px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 20px; color: var(--navy);
}
.post-body img {
  width: 100%; border-radius: var(--radius); margin: 28px 0;
}
.post-divider {
  border: none; height: 1px;
  background: var(--border); margin: 40px 0;
}

/* ── POST CTA ── */
.post-cta {
  background: var(--green-pale); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  margin-top: 48px; flex-wrap: wrap;
}
.post-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 6px;
}
.post-cta p { font-size: 14px; color: var(--muted); }

/* ── RELATED POSTS ── */
.related-section {
  background: var(--cream); padding: 72px 40px;
  border-top: 1px solid var(--border);
}
.related-inner { max-width: 1200px; margin: 0 auto; }
.related-section .section-tag { margin-bottom: 12px; display: block; }
.related-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 700; color: var(--navy); margin-bottom: 36px;
}

/* ── LOADING SKELETON FOR POST ── */
.post-skeleton { max-width: 800px; margin: 0 auto; padding: 52px 40px; }
.post-skel-cat { height:22px;width:100px;border-radius:11px;margin-bottom:20px; }
.post-skel-h1 { height:36px;border-radius:4px;margin-bottom:14px; }
.post-skel-h1.s { width:70%; }
.post-skel-meta { height:14px;width:200px;border-radius:4px;margin-bottom:0; }
.post-skel-cover { height:360px;border-radius:var(--radius);margin:36px 0; }
.post-skel-p { height:14px;border-radius:4px;margin-bottom:12px; }
.post-skel-p.s { width:80%; }
.post-skel-p.xs { width:55%; }
.post-skel-cat,.post-skel-h1,.post-skel-meta,.post-skel-cover,.post-skel-p {
  background: linear-gradient(90deg,#e8f0ec 25%,#d8e8dc 50%,#e8f0ec 75%);
  background-size:600px 100%; animation:shimmer 1.8s infinite linear;
}
@keyframes shimmer { 0%{background-position:-600px 0} 100%{background-position:600px 0} }

/* ── NOT FOUND ── */
.post-not-found {
  text-align: center; padding: 80px 40px; max-width: 480px; margin: 0 auto;
}
.post-not-found h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 700; color: var(--navy); margin-bottom: 14px;
}
.post-not-found p { color: var(--muted); font-size: 15px; margin-bottom: 28px; line-height: 1.7; }

/* ── SHARE ── */
.post-share {
  display: flex; align-items: center; gap: 12px; margin-top: 36px; flex-wrap: wrap;
}
.post-share-label {
  font-size: 12.5px; font-weight: 600; color: var(--navy); letter-spacing: 0.06em;
  text-transform: uppercase; font-family: 'DM Mono', monospace;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: var(--radius);
  font-size: 12.5px; font-weight: 600; cursor: pointer;
  border: none; transition: all 0.2s; text-decoration: none;
}
.share-wa { background: #25D366; color: #fff; }
.share-wa:hover { background: #1da851; }
.share-copy { background: var(--cream); color: var(--navy); border: 1px solid var(--border); }
.share-copy:hover { background: var(--navy); color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .post-hero { padding: 110px 24px 48px; }
  .post-hero h1 { font-size: 32px; }
  .post-layout { padding: 36px 24px 60px; }
  .post-cta { flex-direction: column; }
  .related-section { padding: 52px 24px; }
  .post-cover img { height: 240px; }
}



/* ════════════════════════════════════════════════════════
   SERVICE SUB-PAGES — styles
   Used by: service-*.html
════════════════════════════════════════════════════════ */

/* ── HERO ── */
.svc-hero {
  background: var(--navy);
  padding: 130px 40px 72px;
  position: relative; overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 80% at 90% 50%, rgba(42,107,63,.28) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 80%, rgba(201,154,46,.12) 0%, transparent 50%);
}
.svc-hero-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1; max-width: 760px;
}
.svc-hero .section-tag { color: var(--gold-light); margin-bottom: 12px; }
.svc-hero-icon {
  font-size: 72px; display: block;
  margin-bottom: 20px; line-height: 1;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.3));
}
.svc-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 700; color: #fff;
  line-height: 1.1; letter-spacing: -.5px; margin-bottom: 18px;
}
.svc-hero-sub {
  font-size: 17px; color: rgba(255,255,255,.55);
  font-weight: 300; line-height: 1.75;
  max-width: 600px; margin-bottom: 36px;
}
.svc-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── MAIN CONTENT ── */
.svc-what {
  padding: 80px 40px;
  background: var(--white);
}
.svc-content-inner {
  max-width: 1200px; margin: 0 auto;
}
.svc-two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px; align-items: start;
}

/* ── MAIN CONTENT BODY ── */
.svc-main-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 700;
  color: var(--navy); margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.svc-main-content p {
  font-size: 15px; color: #3a4a5c;
  line-height: 1.85; margin-bottom: 16px;
}

/* ── CHECKLIST ── */
.svc-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 8px;
}
.svc-check-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
  transition: box-shadow var(--transition);
}
.svc-check-item:hover { box-shadow: var(--shadow-sm); }
.svc-check-icon {
  width: 26px; height: 26px;
  background: var(--green); color: #fff;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}
.svc-check-item strong {
  font-size: 13.5px; font-weight: 700;
  color: var(--navy); display: block;
  margin-bottom: 4px;
}
.svc-check-item p {
  font-size: 12.5px; color: var(--muted);
  line-height: 1.6; margin: 0;
}

/* ── PROCESS ── */
.svc-process {
  display: flex; flex-direction: column; gap: 0;
}
.svc-step {
  display: flex; gap: 18px;
  align-items: flex-start;
  padding-bottom: 28px; position: relative;
}
.svc-step:not(:last-child)::before {
  content: '';
  position: absolute; left: 17px; top: 38px;
  bottom: 0; width: 2px;
  background: var(--border);
}
.svc-step-num {
  width: 36px; height: 36px;
  background: var(--navy); color: #fff;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 700;
  flex-shrink: 0;
}
.svc-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 5px;
}
.svc-step p {
  font-size: 13.5px; color: var(--muted);
  line-height: 1.65; margin: 0;
}

/* ── SIDEBAR ── */
.svc-sidebar {
  display: flex; flex-direction: column;
  gap: 20px; position: sticky; top: 90px;
}
.svc-sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px; text-align: center;
}
.svc-sidebar-icon {
  font-size: 52px; display: block;
  margin-bottom: 14px;
}
.svc-sidebar-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.svc-sidebar-cta p {
  font-size: 13.5px; color: rgba(255,255,255,.5);
  line-height: 1.6; margin-bottom: 20px;
}
.svc-wa-btn {
  display: block; margin-top: 12px;
  padding: 12px; background: rgba(37,211,102,.15);
  border: 1px solid rgba(37,211,102,.3);
  color: #6EF0A0; border-radius: var(--radius);
  font-size: 13px; font-weight: 600;
  text-decoration: none; text-align: center;
  transition: background var(--transition);
}
.svc-wa-btn:hover { background: rgba(37,211,102,.25); }

.svc-sidebar-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.svc-sidebar-box h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}

/* ── AREA TAGS ── */
.svc-areas {
  display: flex; flex-wrap: wrap; gap: 7px;
}
.svc-area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 12px;
  font-size: 12px; color: var(--navy);
  font-weight: 500;
}

/* ── OTHER SERVICE LINKS ── */
.svc-other-links {
  display: flex; flex-direction: column; gap: 8px;
}
.svc-other-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13.5px; color: var(--navy);
  text-decoration: none; font-weight: 500;
  transition: all var(--transition);
}
.svc-other-link:hover {
  background: var(--green-pale);
  border-color: var(--green);
  color: var(--green);
}
.svc-other-link span { font-size: 18px; }

/* ── FAQ SECTION ── */
.svc-faq {
  margin-top: 72px;
  padding-top: 52px;
  border-top: 1px solid var(--border);
}
.svc-faq h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 700;
  color: var(--navy); margin-bottom: 32px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .svc-two-col { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
}
@media (max-width: 680px) {
  .svc-hero { padding: 110px 24px 52px; }
  .svc-hero h1 { font-size: 34px; }
  .svc-what { padding: 52px 24px; }
  .svc-checklist { grid-template-columns: 1fr; }
  .svc-hero-actions { flex-direction: column; }
}

.svc-learn-more {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 12px; font-size: 12.5px; font-weight: 700;
  color: var(--green); letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}
.svc-learn-more:hover { gap: 8px; color: var(--navy); }
.svc-card.featured .svc-learn-more { color: var(--gold-light); }
.svc-card.featured .svc-learn-more:hover { color: #fff; }

/* ════════════════════════════════════════════════════════════════
   SERVICE PAGE — Related Articles Section
════════════════════════════════════════════════════════════════ */
.svc-related {
  padding: 72px 40px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.svc-related-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.svc-related-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}
.svc-related-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}
.svc-related-header a {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.svc-related-header a:hover { gap: 10px; }

#svcRelatedPosts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.svc-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.svc-related-img {
  height: 200px;
  overflow: hidden;
}
.svc-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.svc-related-card:hover .svc-related-img img {
  transform: scale(1.04);
}
.svc-post-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A55 100%);
}
.svc-related-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-related-date {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--muted);
  text-transform: uppercase;
}
.svc-related-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.svc-related-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.svc-related-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.svc-no-posts {
  color: var(--muted);
  font-size: 14px;
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
}

@media (max-width: 900px) {
  #svcRelatedPosts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .svc-related { padding: 52px 24px; }
  #svcRelatedPosts { grid-template-columns: 1fr; }
  .svc-related-header h2 { font-size: 26px; }
}

/* ── BLOG CARD — Editorial Magazine Style ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .28s, box-shadow .28s;
  border: 1px solid var(--border);
}
/* Gold left-edge accent on hover */
.blog-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--gold);
  transition: width .25s;
  z-index: 2;
  border-radius: 3px 0 0 3px;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(13,30,53,.14); }
.blog-card:hover::before { width: 4px; }

/* IMAGE — full bleed with gradient overlay */
.blog-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
/* Gradient overlay on image */
.blog-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(13,30,53,.0) 40%,
    rgba(13,30,53,.55) 100%);
  pointer-events: none;
}
/* Category badge — positioned over image */
.blog-card-cat {
  position: absolute;
  top: 14px; left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(13,30,53,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(201,154,46,.35);
  border-radius: 20px;
  padding: 4px 12px;
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
/* Post number ghost text over image */
.blog-card-num {
  position: absolute;
  bottom: 10px; right: 14px;
  z-index: 3;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: rgba(255,255,255,.18);
  line-height: 1;
  letter-spacing: -.02em;
  pointer-events: none;
}
/* Placeholder when no image */
.blog-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, #1B3555 60%, #0a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-card-img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,154,46,.15) 0%, transparent 60%);
}
.blog-card-img-placeholder span {
  font-size: 56px; position: relative; z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
}

/* BODY */
.blog-card-body {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
/* Thin gold rule */
.blog-card-rule {
  width: 32px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width .3s;
}
.blog-card:hover .blog-card-rule { width: 56px; }
/* Title */
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Excerpt — fades in on hover */
.blog-card-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: opacity .3s, max-height .3s;
}
.blog-card:hover .blog-card-excerpt {
  opacity: 1;
  max-height: 60px;
}
/* Meta row */
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.blog-card-date {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: .04em;
}
.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: gap .2s, color .2s;
}
.blog-card:hover .blog-card-read { gap: 9px; color: var(--gold); }

/* ── BLOG VIEW ALL STRIP ── */
.blog-view-all-strip {
  text-align: center;
  margin-top: 40px;
}
.blog-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .2s, gap .2s;
  border: 2px solid transparent;
}
.blog-view-all-btn:hover {
  background: var(--green);
  gap: 16px;
}
.blog-view-all-arrow {
  font-size: 16px;
  transition: transform .2s;
}
.blog-view-all-btn:hover .blog-view-all-arrow { transform: translateX(4px); }

/* ── BTN-BLOG-ALL (header CTA) ── */
.btn-blog-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s, gap .2s;
  white-space: nowrap;
}
.btn-blog-all:hover { background: var(--navy); color: #fff; }
.btn-blog-arrow { transition: transform .2s; }
.btn-blog-all:hover .btn-blog-arrow { transform: translateX(4px); }

/* ── POLICY NAV LINKS — all visible + clickable ── */
.pol-nav a {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  transition: all .2s;
  display: inline-block;
}
.pol-nav a:hover {
  background: rgba(255,255,255,.16);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.pol-nav a.pol-nav-current,
.pol-nav .pol-nav-current {
  color: #fff !important;
  background: rgba(201,154,46,.28) !important;
  border-color: rgba(201,154,46,.6) !important;
  font-weight: 700 !important;
  text-decoration: none;
}
.pol-nav-label {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-right: 6px;
  padding: 5px 0;
  display: inline-block;
}
.pol-nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
