/* ==========================================
   SAI SANKET INSURANCE — MAIN STYLESHEET
   ========================================== */

:root {
  --teal: #1a7a6e;
  --teal-light: #e8f5f3;
  --teal-mid: #2fa897;
  --amber: #e8913a;
  --amber-light: #fdf3e8;
  --warm: #f7f4ef;
  --white: #ffffff;
  --text: #1e2a2a;
  --text-muted: #5a6e6e;
  --border: #dde8e6;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 32px rgba(26,122,110,0.14);
  --wa-green: #25d366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ==================== NAV ==================== */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: white;
  border: none;
  padding: 9px 22px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover { background: #155f56; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
  display: block;
}


/* LIGHTBOX BACKGROUND */

.lightbox img {
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* IMAGE */
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* CLOSE BUTTON */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  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);
  transition: all 0.3s;
  text-decoration: none;
}
.whatsapp-float svg { width: 30px; height: 30px; color: white; }
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: #1a3c2a;
  color: white;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  font-family: 'DM Sans', sans-serif;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a3c2a;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}
.whatsapp-float { animation: waPulse 2.5s ease-in-out infinite; }
.whatsapp-float:hover { animation: none; }

/* ==================== HERO ==================== */
.hero {
  background: linear-gradient(135deg, #f0faf8 0%, #fdf8f2 60%, #faf5ec 100%);
  padding: 90px 2rem 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: rgba(26,122,110,0.05);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(232,145,58,0.06);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-light);
  color: var(--teal);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text);
}
.hero h1 em { color: var(--teal); font-style: italic; }
.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--teal);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: #155f56; transform: translateY(-2px); }
.btn-wa {
  background: #25d366;
  color: white;
  border: none;
  padding: 13px 24px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-wa:hover { background: #1da851; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 12px 26px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { background: var(--teal-light); }

/* TRUST CARDS */
.hero-right { position: relative; z-index: 1; }
.trust-cards {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.trust-item {
  padding: 16px;
  background: var(--warm);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.trust-item:hover { background: var(--teal-light); }
.trust-num {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--teal);
  font-family: 'DM Serif Display', serif;
  line-height: 1;
}
.trust-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.dot {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 1.8s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ==================== WHY US STRIP ==================== */
.why-us {
  background: var(--teal);
  padding: 32px 2rem;
}
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: white;
}
.why-icon { font-size: 1.6rem; flex-shrink: 0; }
.why-item strong { display: block; font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.why-item p { font-size: 0.82rem; opacity: 0.8; line-height: 1.6; }

/* ==================== SECTION SHELLS ==================== */
section { padding: 80px 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.1rem;
  margin-bottom: 12px;
  color: var(--text);
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
section.alt { background: var(--warm); }

/* ==================== INSURANCE OVERVIEW CARDS ==================== */
.ins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.ins-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
  cursor: pointer;
}
.ins-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--teal-mid);
}
.ins-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.ins-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.ins-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.ins-tag-list { display: flex; flex-wrap: wrap; gap: 6px; }
.ins-tag { padding: 4px 10px; border-radius: 20px; font-size: 0.73rem; font-weight: 500; }

/* ==================== PLAN DETAIL SECTIONS ==================== */
.enquire-btn.secondary {
  background: #eef3ff;
  color: #1a2e2c;
}
.plans-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.plans-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 84px;
}
.plan-nav-btn {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  text-align: left;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  transition: all 0.2s;
  color: var(--text);
  font-weight: 500;
}
.plan-nav-btn:hover { background: var(--teal-light); border-color: var(--teal); color: var(--teal); }
.plan-nav-btn.active { background: var(--teal); color: white; border-color: var(--teal); }
.plan-detail { display: none; }
.plan-detail.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: translateX(0); } }
.plan-detail h3 { font-family: 'DM Serif Display', serif; font-size: 1.55rem; margin-bottom: 8px; }
.plan-detail .tagline { color: var(--teal); font-size: 0.88rem; font-weight: 500; margin-bottom: 16px; }
.plan-detail .desc { font-size: 0.93rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--teal-light);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}
.feature-check { color: var(--teal); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; font-weight: 600; }
.feature-item p { font-size: 0.83rem; color: var(--text); font-weight: 500; line-height: 1.45; }
.premium-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.premium-badge {
  background: var(--amber-light);
  color: var(--amber);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}
.enquire-btn {
  background: var(--teal);
  color: white;
  border: none;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s;
}
.enquire-btn:hover { background: #155f56; transform: translateY(-1px); }

/* ==================== SIP CALCULATOR ==================== */
.sip-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 52px;
}
.calc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.calc-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 6px; }
.calc-card .sub { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 8px; color: var(--text); }
.form-group input[type=range] { width: 100%; accent-color: var(--teal); cursor: pointer; }
.form-group select, .form-group input[type=number] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group select:focus, .form-group input:focus { border-color: var(--teal); }
.range-labels { display: flex; justify-content: space-between; font-size: 0.73rem; color: var(--text-muted); margin-top: 4px; }
.range-value { font-weight: 600; color: var(--teal); font-size: 0.88rem; }
.sip-suggestion {
  background: var(--amber-light);
  border-left: 3px solid var(--amber);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.83rem;
  color: var(--text);
  line-height: 1.65;
}
.result-card {
  background: linear-gradient(135deg, var(--teal) 0%, #0e4f47 100%);
  border-radius: var(--radius);
  padding: 32px;
  color: white;
  box-shadow: 0 8px 32px rgba(26,122,110,0.3);
}
.result-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin-bottom: 24px; opacity: 0.9; }
.result-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.result-row:last-of-type { border-bottom: none; }
.result-label { font-size: 0.83rem; opacity: 0.75; }
.result-val { font-size: 1.05rem; font-weight: 600; }
.result-val.big { font-size: 1.55rem; color: #a8f0e8; }
.invest-note {
  margin-top: 16px;
  background: #fff8f0;
  border: 1px solid #f0d0a8;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* MUTUAL FUND CARDS */
.mf-section-header { text-align: center; margin: 0 0 28px; }
.mf-section-header h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; margin-bottom: 8px; }
.mf-section-header p { font-size: 0.9rem; color: var(--text-muted); }
.mf-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.mf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: all 0.2s;
}
.mf-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.mf-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 500; margin-bottom: 12px; }
.badge-low { background: #e8f5f0; color: #1a7a5a; }
.badge-mid { background: #fdf3e8; color: #c87a20; }
.badge-high { background: #fde8e8; color: #c02020; }
.mf-card h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.mf-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.mf-returns { display: flex; gap: 10px; }
.mf-ret { text-align: center; flex: 1; background: var(--warm); border-radius: var(--radius-sm); padding: 8px 6px; }
.mf-ret .r { font-size: 0.95rem; font-weight: 600; color: var(--teal); }
.mf-ret .l { font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }

/* ==================== CONTACT ==================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 44px; }
.contact-info { }
.info-block { margin-bottom: 28px; }
.info-block h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.info-line { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.9rem; line-height: 1.6; color: var(--text); }
.info-icon { width: 20px; flex-shrink: 0; text-align: center; margin-top: 1px; }
.map-embed {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 20px;
  height: 220px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* QUERY FORM */
.query-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.query-form h3 { font-family: 'DM Serif Display', serif; font-size: 1.45rem; margin-bottom: 6px; }
.query-form .sub { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.83rem; font-weight: 500; margin-bottom: 7px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,122,110,0.1);
}
.submit-btn {
  background: var(--teal);
  color: white;
  border: none;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}
.submit-btn:hover { background: #155f56; transform: translateY(-1px); }
.success-msg {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--teal);
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.7;
}

.star-rating .star {
  font-size: 1.8rem;
  color: #ccc;
  cursor: pointer;
}

.star-rating .star.active {
  color: #f5a623;
}
=========GALLERY=========

.gallery-btn {
  display: block !important;
  z-index: 99999 !important;
}
.gallery-container {
  position: relative;
  margin-top: 30px;
}

.gallery-track {
  display: flex;
  overflow-x: auto;   /* 🔥 THIS MAKES IT SCROLLABLE */
  scroll-behavior: smooth;
  gap: 15px;
  padding: 10px;
}

/* Uniform images */
.gallery-track img {
  min-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

/* Hide scrollbar */
.gallery-track::-webkit-scrollbar {
  display: none;
}

/* Buttons (FORCED VISIBLE) */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: black;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  font-size: 20px;
  opacity: 0.9;
}

.gallery-btn.prev { left: 0; }
.gallery-btn.next { right: 0; }

/* ==================== MODAL ==================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 440px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.92) translateY(12px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--warm);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text);
  transition: background 0.2s;
}
.modal-close:hover { background: var(--border); }
.modal h3 { font-family: 'DM Serif Display', serif; font-size: 1.35rem; margin-bottom: 6px; }
.modal-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 22px; }
.wa-modal-btn {
  background: #25d366;
  color: white;
  border: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}
.wa-modal-btn:hover { background: #1da851; }

/* ==================== FOOTER ==================== */
footer {
  background: #0e1f1e;
  color: #9cb8b5;
  padding: 56px 2rem 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-logo-icon svg { width: 20px; }
.footer-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: white;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 12px;
  max-width: 320px;
}
.footer-address { font-size: 0.8rem; margin-bottom: 18px; line-height: 1.6; }
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25d366;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-wa-btn:hover { background: rgba(37,211,102,0.25); }
.footer-col h5 { color: white; font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.83rem; color: #9cb8b5; text-decoration: none; margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal-mid); }
.footer-bottom {
  border-top: 1px solid #1e3332;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-bottom p:last-child { font-size: 0.72rem; opacity: 0.55; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 960px) {
  .nav-links, #navCta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.3rem; }
  .hero::before, .hero::after { display: none; }
  .trust-cards { max-width: 400px; }
  .plans-wrapper { grid-template-columns: 1fr; }
  .plans-nav { flex-direction: row; flex-wrap: wrap; position: static; }
  .plan-nav-btn { flex: 1; min-width: 130px; text-align: center; }
  .sip-wrapper { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ins-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.9rem; }
  .trust-cards { grid-template-columns: 1fr 1fr; }
  section { padding: 56px 1.2rem; }
  .section-header h2 { font-size: 1.7rem; }
  .footer-top { grid-template-columns: 1fr; }
  .ins-grid { grid-template-columns: 1fr; }
  .modal { padding: 24px; }
  .whatsapp-float { bottom: 20px; right: 18px; width: 52px; height: 52px; }
}

/* Mobile nav open styles (injected via JS) */
.nav-mobile-open .nav-links {
  display: flex !important;
  flex-direction: column !important;
  position: absolute !important;
  top: 68px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  gap: 0.5rem !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 199;
}
.nav-mobile-open #navCta {
  display: block !important;
  margin: 0 2rem 1rem;
  text-align: center;
}


/* ===== BLOG PAGE STYLES ===== */

.blog-container {
  max-width: 850px;
  margin: auto;
  padding: 50px 20px;
}

.blog-container h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.blog-container h2 {
  margin-top: 35px;
  color: #eaeaea;
}

.blog-container p {
  color: #bbb;
  font-size: 16px;
  line-height: 1.7;
}

.blog-container ul {
  padding-left: 20px;
}

.blog-container li {
  margin-bottom: 8px;
}

.blog-container img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  margin: 20px 0;
}

.whatsapp {
  display: inline-block;
  margin-top: 25px;
  background: #25D366;
  padding: 12px 18px;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

.highlight {
  color: #00c896;
}

/* ===== BLOG DARK THEME FIX ===== */

body.blog-page {
  background-color: #0f0f0f !important;
  color: #ffffff !important;
}

/* Blog container */
.blog-container {
  max-width: 850px;
  margin: auto;
  padding: 50px 20px;
}

/* Headings */
.blog-container h1,
.blog-container h2,
.blog-container h3 {
  color: #ffffff !important;
}

/* Paragraphs */
.blog-container p {
  color: #cccccc !important;
  font-size: 16px;
  line-height: 1.7;
}

/* Lists */
.blog-container li {
  color: #dddddd !important;
}

/* Images */
.blog-container img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  margin: 20px 0;
  background: #1a1a1a;
}

/* Section spacing */
.blog-container h2 {
  margin-top: 35px;
}

/* WhatsApp Button */
.whatsapp {
  display: inline-block;
  margin-top: 25px;
  background: #25D366;
  padding: 12px 18px;
  color: white !important;
  text-decoration: none;
  border-radius: 8px;
}

/* Highlight text */
.highlight {
  color: #00c896;
}


