/* =============================================
   LEAP Business Solutions – Main Stylesheet
   Brand: #1A4F78 Primary | #3299C2 Secondary
   Fonts: Playfair Display + Inter
   ============================================= */

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

:root {
  /* ── Your Brand Colors ── */
  --primary:           #1A4F78;
  --primary-dark:      #184E77;
  --secondary:         #3299C2;
  --secondary-faint:   rgba(50, 153, 194, 0.07);
  --secondary-light:   rgba(50, 153, 194, 0.14);

  --text-primary:      #333333;
  --text-secondary:    #666666;

  --border:            #D9D9D9;
  --background-light:  #F5F7F9;
  --white:             #FFFFFF;

  /* ── Aliases (keeps all components working) ── */
  --navy:      #1A4F78;
  --navy-mid:  #184E77;
  --navy-light:#3299C2;
  --gold:      #3299C2;
  --gold-light:#3299C2;
  --grey-light:#D9D9D9;
  --grey-mid:  #666666;
  --off-white: #F5F7F9;
  --text:      #333333;
  --text-muted:#666666;

  /* ── Shadows ── */
  --shadow:    0 4px 24px rgba(26, 79, 120, 0.09);
  --shadow-lg: 0 8px 48px rgba(26, 79, 120, 0.13);

  /* ── Shape & Motion ── */
  --radius:    8px;
  --radius-lg: 16px;
  --transition:0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--primary);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 56px 0; }

.tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  background: var(--secondary-light);
  border: 1px solid rgba(50, 153, 194, 0.28);
  padding: 4px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}

.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; color: var(--primary); }
.section-sub { font-family: 'Inter', sans-serif; font-size: 17px; color: var(--text-secondary); max-width: 580px; margin-bottom: 48px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 79, 120, 0.28);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.60);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 79, 120, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.22); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  /* Logo has white bg — add slight brightness filter on dark navbar */
  border-radius: 6px;
  padding: 3px 8px;
  background: rgba(255,255,255,0.95);
}
/* Footer logo */
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 4px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.76);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.09); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}
.nav-cta { margin-left: 16px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px); left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  color: var(--text-primary) !important;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 6px;
  background: none !important;
}
.dropdown-menu a:hover { background: var(--background-light) !important; color: var(--primary) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  outline: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
/* Animate hamburger → X */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-cta-link { color: var(--secondary) !important; font-weight: 700 !important; }
.mobile-menu {
  display: none;
  background: var(--primary);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.80);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, #1b5a8c 55%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-geo {
  position: absolute;
  right: -80px; top: 10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.24);
  color: rgba(255,255,255,0.92);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero-badge::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

.hero-title { font-size: clamp(36px, 5vw, 58px); color: var(--white); margin-bottom: 20px; line-height: 1.15; }
.hero-title span { color: rgba(255,255,255,0.90); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.45); text-underline-offset: 6px; }
.hero-desc { font-family: 'Inter', sans-serif; font-size: 18px; color: rgba(255,255,255,0.73); margin-bottom: 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px;
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.stat-item { text-align: left; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--white); line-height: 1; }
.stat-label { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,0.52); margin-top: 4px; }

/* Hero card */
.hero-card-wrap { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
}
.hero-card-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); margin-bottom: 8px; }
.hero-card-sub { font-family: 'Inter', sans-serif; font-size: 14px; color: rgba(255,255,255,0.52); margin-bottom: 28px; }
.compliance-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.17);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 40px;
  transition: var(--transition);
}
.pill:hover { background: rgba(50,153,194,0.30); border-color: var(--secondary); }
.pill.active { background: var(--secondary); border-color: var(--secondary); }
.free-audit-banner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.fab-text { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; color: var(--primary); }
.fab-sub { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-secondary); margin-top: 2px; }
.fab-btn {
  background: var(--primary);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  white-space: nowrap;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.fab-btn:hover { background: var(--primary-dark); transform: scale(1.04); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--background-light); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.trust-icon { font-size: 20px; }
.trust-divider { width: 1px; height: 28px; background: var(--border); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { border-color: rgba(50,153,194,0.35); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--secondary-faint);
  border: 1px solid rgba(50,153,194,0.16);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); border-color: var(--primary); }
.service-name { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--primary); margin-bottom: 10px; }
.service-desc { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.service-link { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--secondary); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-link:hover { gap: 10px; color: var(--primary); }

/* ── FREE AUDIT CTA ── */
.audit-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #1b5a8c 100%);
  position: relative;
  overflow: hidden;
}
.audit-cta::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(50,153,194,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.audit-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.audit-title { font-size: clamp(24px, 3.5vw, 38px); color: var(--white); margin-bottom: 12px; }
.audit-desc { font-family: 'Inter', sans-serif; font-size: 16px; color: rgba(255,255,255,0.65); }
.audit-box {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  text-align: center;
  min-width: 260px;
}
.audit-free-tag { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.78); margin-bottom: 8px; }
.audit-time { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--white); margin-bottom: 4px; }
.audit-sub { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,0.50); margin-bottom: 24px; }
.audit-phone {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--white);
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}
.audit-phone:hover { background: var(--background-light); transform: scale(1.03); }

/* ── WHY CHOOSE ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.why-item-icon { font-size: 28px; margin-bottom: 12px; }
.why-item-title { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--primary); margin-bottom: 6px; }
.why-item-desc { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.why-visual {
  position: relative;
  padding: 32px;
  background: linear-gradient(135deg, var(--primary), #1b5a8c);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-visual-bg { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E"); }
.compliance-map { position: relative; z-index: 1; }
.map-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); margin-bottom: 24px; text-align: center; }
.states-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.state-tag {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.17);
  color: rgba(255,255,255,0.78);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 40px;
}
.state-tag.highlight { background: rgba(50,153,194,0.30); border-color: var(--secondary); color: rgba(255,255,255,0.95); }

/* ── CHECKLIST ── */
.checklist-section { background: var(--secondary-faint); }
.checklist-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.checklist-preview { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--border); }
.checklist-header {
  background: var(--primary);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.checklist-header h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--white); }
.checklist-badge { font-family: 'Inter', sans-serif; font-size: 11px; background: var(--secondary); color: var(--white); padding: 4px 10px; border-radius: 40px; font-weight: 700; }
.checklist-body { padding: 24px; }
.check-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
}
.check-item:last-child { border-bottom: none; }
.check-box { width: 20px; height: 20px; border-radius: 4px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 12px; flex-shrink: 0; }
.check-box.partial { background: var(--secondary); }
.check-box.empty { background: var(--border); }
.checklist-footer { padding: 0 24px 24px; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: rgba(50, 153, 194, 0.42); box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  cursor: pointer;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition);
  gap: 16px;
}
.faq-q:hover { background: var(--background-light); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--background-light); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: var(--transition); color: var(--primary); }
.faq-item.open .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 24px 20px; font-family: 'Inter', sans-serif; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; }
.contact-info-block { margin-bottom: 28px; }
.contact-info-label { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--secondary); margin-bottom: 6px; }
.contact-info-val { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--text-primary); font-weight: 500; }
.contact-info-val a { color: var(--primary); }
.contact-info-val a:hover { color: var(--secondary); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.contact-form { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 40px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(50, 153, 194, 0.11); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(50,153,194,0.30); }
.blog-thumb { height: 180px; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-body { padding: 24px; }
.blog-cat { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--secondary); margin-bottom: 10px; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--primary); margin-bottom: 10px; line-height: 1.3; }
.blog-excerpt { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }

/* ── FOOTER ── */
footer { background: var(--primary); color: rgba(255,255,255,0.68); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.7; margin-top: 16px; }
.footer-col h5 { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--white); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.11); }
.footer-col a { display: block; font-family: 'Inter', sans-serif; font-size: 14px; color: rgba(255,255,255,0.60); padding: 5px 0; transition: var(--transition); }
.footer-col a:hover { color: rgba(255,255,255,0.95); padding-left: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.09); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); text-decoration: none; color: rgba(255,255,255,0.68); }
.social-btn:hover { background: var(--secondary); color: var(--white); }
.footer-newsletter input { width: 100%; padding: 11px 16px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); color: var(--white); font-family: 'Inter', sans-serif; font-size: 14px; margin-bottom: 10px; outline: none; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.33); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.09); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-family: 'Inter', sans-serif; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.48); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ── WHATSAPP ── */
.whatsapp-fab { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45); z-index: 999; transition: var(--transition); text-decoration: none; }
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-tooltip { position: absolute; right: 68px; background: var(--primary); color: var(--white); font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; padding: 8px 14px; border-radius: 6px; white-space: nowrap; opacity: 0; transition: var(--transition); pointer-events: none; }
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--primary) 0%, #1b5a8c 100%); padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,0.52); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.52); transition: var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.90); }
.page-hero-title { font-size: clamp(32px, 5vw, 52px); color: var(--white); margin-bottom: 16px; }
.page-hero-desc { font-family: 'Inter', sans-serif; font-size: 18px; color: rgba(255,255,255,0.63); max-width: 580px; margin: 0 auto; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 100px; right: 28px; background: var(--primary); color: var(--white); padding: 16px 24px; border-radius: var(--radius); box-shadow: var(--shadow-lg); font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; z-index: 9999; transform: translateY(20px); opacity: 0; transition: var(--transition); border-left: 4px solid var(--secondary); }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-card-wrap { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .checklist-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .audit-inner { grid-template-columns: 1fr; text-align: center; }
  .audit-box { margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 20px; }
  .trust-divider { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── STOCK IMAGES ── */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-rounded { border-radius: var(--radius-lg); overflow: hidden; }
.stock-hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.stock-section-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.blog-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--primary);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
}
.about-img-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 28px; color: #fff; }
.about-img-badge span { font-size: 13px; color: rgba(255,255,255,0.72); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.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; }
