/* ══════════════════════════════════════════════════════════════
   SITE.CSS — K S Raghu & Co  |  All styles in one file
   Combines: style.css · advanced.css · nav.css · topbar.css
             pages.css · legal.css · blog.css · chatbot.css
   ══════════════════════════════════════════════════════════════ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1. RESET & BASE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0b1f4b;
  --navy2:     #122566;
  --gold:      #b8892e;
  --gold2:     #d4a84b;
  --gold-light:#f5e6c8;
  --light:     #f5f7fa;
  --white:     #ffffff;
  --text:      #1a1a2e;
  --muted:     #5a6078;
  --border:    #dde3ef;
  --accent:    #1565c0;
  --green:     #25d366;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: .6rem; }

p { color: var(--muted); margin-bottom: .9rem; }

a { text-decoration: none; color: inherit; }

.section { padding: 90px 0; }

.section-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}

.section-desc { max-width: 600px; margin: 0 auto 3rem; }

.center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold2); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn.full { width: 100%; text-align: center; }
.mt { margin-top: 1.5rem; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .35s, box-shadow .35s;
}
#navbar.scrolled { background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { font-size: 2rem; color: var(--gold); }
.logo-icon.small { font-size: 1.4rem; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--white); }
.logo-tag { font-size: .68rem; color: var(--gold); letter-spacing: .06em; }

/* Nav links (homepage) */
.nav-links { display: flex; list-style: none; gap: 36px; }
.nav-links a { color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #070f2b 0%, var(--navy) 50%, var(--navy2) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,.08) 0%, transparent 40%);
}
.hero-overlay {
  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='%23c9a84c' fill-opacity='0.04'%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-content { position: relative; z-index: 2; padding: 120px 0 80px; }
.hero-sub { color: var(--gold); font-size: .82rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); color: var(--white); margin-bottom: 1.2rem; }
.hero h1 span { color: var(--gold); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 580px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.4); font-size: .75rem; letter-spacing: .1em;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── SERVICE CARD IMAGE ── */
.svc-img {
  display: block;
  height: 155px;
  background-size: cover;
  background-position: center;
  margin: -28px -22px 18px;
  width: calc(100% + 44px);
  border-radius: 14px 14px 0 0;
  flex-shrink: 0;
}

/* ── HERO SLIDESHOW ── */
.hero-slider { position:relative; height:100vh; min-height:600px; overflow:hidden; }
.hs-slides { width:100%; height:100%; position:relative; }
.hs-slide {
  position:absolute; inset:0; display:flex; align-items:center;
  opacity:0; transition:opacity .9s ease; z-index:0;
}
.hs-slide.active { opacity:1; z-index:1; }
.hs-pattern {
  position:absolute; inset:0;
  background:
    linear-gradient(to right, rgba(4,10,30,.82) 0%, rgba(4,10,30,.55) 55%, rgba(4,10,30,.25) 100%),
    radial-gradient(circle at 15% 50%,rgba(184,137,46,.18) 0%,transparent 50%),
    radial-gradient(circle at 80% 15%,rgba(184,137,46,.10) 0%,transparent 40%);
}
.hs-content { position:relative; z-index:2; color:#fff; max-width:700px; padding:120px 0 80px; }
.hs-sub { font-size:.78rem; font-weight:700; letter-spacing:.22em; color:var(--gold); text-transform:uppercase; margin-bottom:1.1rem; }
.hs-title {
  font-family:'Playfair Display',serif; font-size:clamp(2.4rem,5.5vw,4.2rem);
  font-weight:700; color:#fff; line-height:1.15; margin-bottom:1rem;
}
.hs-tagline { font-size:clamp(.95rem,2vw,1.2rem); color:var(--gold); font-weight:600; margin-bottom:.9rem; }
.hs-desc { font-size:.98rem; color:rgba(255,255,255,.78); margin-bottom:2rem; line-height:1.8; max-width:560px; }
.hs-btns { display:flex; gap:14px; flex-wrap:wrap; }

/* Arrows */
.hs-arrow {
  position:absolute; top:50%; transform:translateY(-50%); z-index:10;
  background:rgba(255,255,255,.12); border:1.5px solid rgba(255,255,255,.25);
  color:#fff; font-size:1.1rem; width:46px; height:46px; border-radius:50%;
  cursor:pointer; transition:all .25s; backdrop-filter:blur(6px);
}
.hs-arrow:hover { background:rgba(184,137,46,.55); border-color:var(--gold); }
.hs-prev { left:22px; }
.hs-next { right:22px; }

/* Dots */
.hs-dots { position:absolute; bottom:64px; left:50%; transform:translateX(-50%); display:flex; gap:10px; z-index:10; }
.hs-dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.35); cursor:pointer; transition:all .3s; }
.hs-dot.active { background:var(--gold); transform:scale(1.4); }

/* Scroll hint */
.hs-scroll {
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  color:rgba(255,255,255,.4); font-size:.72rem; letter-spacing:.12em;
  animation:bounce 2s infinite; z-index:10; white-space:nowrap;
}

@media (max-width:768px) {
  .hs-arrow { display:none; }
  .hs-title { font-size:2rem; }
  .hs-content { padding:100px 0 60px; }
}

/* ── STATS STRIP ── */
.stats-strip { background: var(--gold); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { padding: 8px; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-label { font-size: .82rem; font-weight: 600; color: var(--navy); opacity: .75; text-transform: uppercase; letter-spacing: .06em; margin-top: 6px; }

/* ── ABOUT ── */
.about { background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.owner-photo-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.owner-photo-frame { position: relative; width: 340px; height: 400px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(13,27,62,.25); border: 4px solid var(--gold); }
.owner-photo-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,62,.35) 0%, transparent 50%); pointer-events: none; }
.owner-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .4s ease; }
.owner-photo-frame:hover .owner-photo { transform: scale(1.04); }
.owner-name-card { background: var(--navy); border: 1px solid rgba(201,168,76,.3); border-radius: 10px; padding: 14px 28px; text-align: center; width: 100%; max-width: 340px; }
.owner-name-card strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--white); margin-bottom: 4px; }
.owner-name-card span { font-size: .8rem; color: var(--gold); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.about-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 1.4rem 0; }
.about-list li { color: var(--navy); font-weight: 500; font-size: .9rem; }

/* ── SERVICES (HOMEPAGE) ── */
.services { background: var(--white); }
.service-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 2.5rem; }
.stab { padding: 9px 22px; border-radius: 30px; border: 1.5px solid var(--border); background: var(--white); color: var(--muted); font-size: .84rem; font-weight: 600; cursor: pointer; transition: all .2s; }
.stab:hover { border-color: var(--gold); color: var(--navy); }
.stab.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.service-tag { display: inline-block; margin-top: 10px; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--gold-light); color: var(--navy); padding: 3px 10px; border-radius: 20px; }
.service-card.hidden { display: none; }
.maps-link { display: inline-block; margin-top: 4px; color: var(--gold); font-size: .88rem; font-weight: 600; text-decoration: none; transition: color .2s; }
.maps-link:hover { color: var(--navy); }
.map-section { line-height: 0; }
.map-section iframe { display: block; filter: grayscale(20%) contrast(1.05); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 2.5rem; }
.service-card { background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 28px 22px; transition: transform .25s, box-shadow .25s, border-color .25s; overflow: hidden; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,27,62,.1); border-color: var(--gold); }
.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-card p { font-size: .88rem; margin: 0; }

/* ── WHY US ── */
.why-us { background: var(--navy); }
.why-us .section-label { color: var(--gold); }
.why-us h2 { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 2.5rem; }
.why-card { background: rgba(255,255,255,.06); border: 1px solid rgba(201,168,76,.2); border-radius: 10px; padding: 30px 24px; transition: background .25s, border-color .25s; }
.why-card:hover { background: rgba(201,168,76,.1); border-color: var(--gold); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.why-card p { font-size: .87rem; color: rgba(255,255,255,.6); margin: 0; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--light); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 2.5rem; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 30px 26px; position: relative; }
.testi-card::before { content: '\201C'; font-size: 5rem; color: var(--gold); opacity: .25; position: absolute; top: 8px; left: 18px; font-family: Georgia, serif; line-height: 1; }
.testi-card p { font-size: .9rem; font-style: italic; color: var(--text); margin-bottom: 1.4rem; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; background: var(--navy); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.testi-author strong { display: block; font-size: .9rem; color: var(--navy); }
.testi-author span { font-size: .78rem; color: var(--muted); }

/* ── CONTACT (HOMEPAGE) ── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.info-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 22px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; color: var(--navy); font-size: .9rem; margin-bottom: 3px; }
.info-item p { font-size: .88rem; margin: 0; }
.contact-form-wrap { background: var(--light); border: 1px solid var(--border); border-radius: 12px; padding: 36px 32px; }
.contact-form h3 { font-size: 1.35rem; margin-bottom: 1.5rem; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 6px; font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--text); background: var(--white); outline: none; transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-note { font-size: .82rem; color: green; margin-top: .6rem; text-align: center; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .86rem; color: rgba(255,255,255,.55); }
.footer h4 { font-family: 'Inter', sans-serif; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links ul, .footer-services ul { list-style: none; }
.footer-links li, .footer-services li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-services li { color: rgba(255,255,255,.6); font-size: .88rem; }
.footer-contact p { color: rgba(255,255,255,.6); font-size: .88rem; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-legal-strip { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; background: rgba(0,0,0,.2); }
.footer-legal-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.footer-legal-links { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center; }
.footer-legal-links a { font-size: .82rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer-legal-links a:hover { color: var(--gold); }
.footer-legal-links span { color: rgba(255,255,255,.2); font-size: .7rem; }
.footer-legal-strip p { font-size: .78rem; color: rgba(255,255,255,.35); margin: 0; }

/* ── BLOG SECTION (HOMEPAGE) ── */
.blog { background: var(--light); }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 2.5rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(11,31,75,.12); }
.blog-badge { padding: 8px 16px; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: white; }
.blog-badge.gst     { background: #e65100; }
.blog-badge.it      { background: #1565c0; }
.blog-badge.startup { background: #2e7d32; }
.blog-badge.finance { background: #6a1b9a; }
.blog-content { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-date { font-size: .75rem; color: var(--muted); margin: 0; }
.blog-content h3 { font-size: 1rem; line-height: 1.4; margin: 0; }
.blog-content h3 a { color: var(--navy); text-decoration: none; transition: color .2s; }
.blog-content h3 a:hover { color: var(--gold); }
.blog-content p { font-size: .84rem; margin: 0; flex: 1; }
.blog-read { display: inline-block; margin-top: 10px; font-size: .82rem; font-weight: 700; color: var(--gold); text-decoration: none; transition: color .2s; }
.blog-read:hover { color: var(--navy); }
.blog-cta { text-align: center; margin-top: 2.5rem; }

/* ── END-TO-END BANNER ── */
.e2e-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.e2e-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(180,137,46,.12) 0%, transparent 60%); }
.e2e-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 36px; }
.e2e-text .section-label { color: var(--gold2); }
.e2e-text h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.8rem); }
.e2e-text p  { color: rgba(255,255,255,.72); max-width: 680px; margin: .8rem auto 0; font-size: 1rem; }
.e2e-pillars { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.pillar { background: rgba(255,255,255,.08); border: 1px solid rgba(180,137,46,.35); color: var(--gold2); font-size: .85rem; font-weight: 600; padding: 9px 20px; border-radius: 30px; display: flex; align-items: center; gap: 8px; transition: background .2s, border-color .2s; }
.pillar:hover { background: rgba(180,137,46,.15); border-color: var(--gold2); }
.pillar span { font-size: .5rem; color: var(--gold2); }

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn { position: fixed; bottom: 86px; right: 24px; background: var(--green); color: var(--white); display: flex; align-items: center; gap: 10px; padding: 12px 20px 12px 14px; border-radius: 50px; font-size: .88rem; font-weight: 600; box-shadow: 0 6px 24px rgba(37,211,102,.4); z-index: 1000; text-decoration: none; transition: transform .25s, box-shadow .25s; animation: wa-pulse 2.5s infinite; }
.whatsapp-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 32px rgba(37,211,102,.55); animation: none; }
.whatsapp-btn span { white-space: nowrap; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 6px 36px rgba(37,211,102,.7); }
}

/* ── SOCIAL LINKS ── */
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-link { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .2s, box-shadow .2s; color: white; }
.social-link:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.3); }
.social-link.linkedin  { background: #0077B5; }
.social-link.instagram { background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-link.facebook  { background: #1877F2; }
.social-link.youtube   { background: #FF0000; }

/* ── NAV BOOK BTN ── */
.nav-book-btn { background: var(--gold); color: var(--navy); border: none; padding: 10px 20px; border-radius: 6px; font-size: .85rem; font-weight: 700; cursor: pointer; transition: background .2s, transform .2s; white-space: nowrap; }
.nav-book-btn:hover { background: var(--gold2); transform: translateY(-1px); }

/* ── FLOAT BOOK BTN ── */
.float-book-btn { position: fixed; bottom: 150px; right: 24px; background: var(--navy); color: var(--gold); border: 2px solid var(--gold); padding: 11px 18px; border-radius: 50px; font-size: .82rem; font-weight: 700; cursor: pointer; box-shadow: 0 6px 20px rgba(11,31,75,.35); z-index: 1000; transition: transform .25s, box-shadow .25s, background .2s; white-space: nowrap; }
.float-book-btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(11,31,75,.4); }

/* ── BOOKING MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(7,15,43,.75); backdrop-filter: blur(6px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box { background: var(--white); border-radius: 16px; width: 100%; max-width: 520px; padding: 36px 32px 28px; position: relative; box-shadow: 0 30px 80px rgba(7,15,43,.4); transform: translateY(20px); transition: transform .3s ease; }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 1.6rem; color: var(--muted); cursor: pointer; line-height: 1; transition: color .2s; }
.modal-close:hover { color: var(--navy); }
.modal-header { text-align: center; margin-bottom: 26px; }
.modal-icon { font-size: 2.4rem; display: block; margin-bottom: 8px; }
.modal-header h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
.modal-header p  { font-size: .88rem; color: var(--muted); margin: 0; }
.booking-options { display: flex; flex-direction: column; gap: 12px; }
.booking-card { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: 10px; border: 1.5px solid var(--border); text-decoration: none; transition: border-color .2s, box-shadow .2s, transform .2s; background: var(--light); }
.booking-card:hover { border-color: var(--gold); box-shadow: 0 6px 20px rgba(11,31,75,.1); transform: translateX(4px); }
.bc-icon { flex-shrink: 0; }
.bc-text { flex: 1; }
.bc-text strong { display: block; font-size: .95rem; color: var(--navy); margin-bottom: 3px; }
.bc-text span   { font-size: .8rem; color: var(--muted); }
.bc-arrow { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.calendly-card:hover { border-color: #006BFF; }
.gmeet-card:hover    { border-color: #00832D; }
.wa-card:hover       { border-color: #25D366; }
.phone-card:hover    { border-color: var(--navy); }
.modal-note { text-align: center; font-size: .8rem; color: var(--muted); margin-top: 18px; margin-bottom: 0; padding: 10px 16px; background: #fff8ec; border-radius: 8px; border: 1px solid #f5e6c8; }
.modal-note strong { color: var(--navy); }

/* ── BACK TO TOP ── */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; background: var(--gold); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 999; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   2. ADVANCED — Dark Mode, Pricing etc.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.dark {
  --navy:      #e8eaf6;
  --navy2:     #c5cae9;
  --gold:      #ffd54f;
  --gold2:     #ffe082;
  --gold-light:#3e3520;
  --light:     #121212;
  --white:     #1e1e1e;
  --text:      #e0e0e0;
  --muted:     #9e9e9e;
  --border:    #333333;
  background:  #121212;
  color:       #e0e0e0;
}
body.dark .hero { background: linear-gradient(135deg,#040812 0%,#0d1a3a 60%,#101f45 100%); }
body.dark #navbar.scrolled { background: #0d0d0d; }
body.dark .stats-strip { background: #1a1400; }
body.dark .stat-num, body.dark .stat-label { color: var(--gold); }
body.dark .service-card, body.dark .testi-card, body.dark .blog-card { background: #252525; border-color: #333; }
body.dark .contact-form-wrap { background: #1e1e1e; border-color:#333; }
body.dark .form-group input, body.dark .form-group select, body.dark .form-group textarea { background:#2a2a2a; border-color:#444; color:#e0e0e0; }
body.dark .owner-name-card { background:#111; }
body.dark .pricing-card { background:#1e1e1e; border-color:#333; }
body.dark .faq-item { background:#1e1e1e; border-color:#333; }
body.dark .faq-q { color:#e0e0e0; background:#1e1e1e; }
body.dark .faq-a { background:#252525; }
body.dark .dl-card { background:#1e1e1e; border-color:#333; }
body.dark .chatbot-messages { background:#181818; }
body.dark .chat-msg.bot span { background:#252525; border-color:#444; color:#e0e0e0; }

.dark-mode-toggle { background: none; border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all .2s; flex-shrink: 0; }
.dark-mode-toggle:hover { border-color: var(--gold); color: var(--gold); }

/* ── CERTIFICATIONS STRIP ── */
.cert-strip { background: var(--navy); padding: 40px 0; }
.cert-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cert-label { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); white-space: nowrap; margin-right: 8px; }
.cert-badges { display: flex; gap: 16px; flex-wrap: wrap; flex: 1; }
.cert-badge { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(201,168,76,.25); border-radius: 8px; padding: 10px 16px; transition: border-color .2s; }
.cert-badge:hover { border-color: var(--gold); }
.cert-icon { font-size: 1.4rem; }
.cert-badge strong { display: block; color: #fff; font-size: .82rem; }
.cert-badge span { font-size: .7rem; color: rgba(255,255,255,.55); }

/* ── PRICING (HOMEPAGE) ── */
.pricing { background: var(--light); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 2.5rem; align-items: start; }
.pricing-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 32px 28px; position: relative; transition: transform .25s, box-shadow .25s; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(11,31,75,.12); }
.pricing-card.featured { border-color: var(--gold); box-shadow: 0 8px 40px rgba(184,137,46,.18); transform: scale(1.03); }
.pricing-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: 5px 16px; border-radius: 20px; white-space: nowrap; }
.pricing-tier { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 10px; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 12px; }
.pricing-price span { font-size: 1rem; font-family:'Inter',sans-serif; color: var(--muted); font-weight: 400; }
.pricing-desc { font-size: .85rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.pricing-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.pricing-features li { font-size: .85rem; color: var(--text); }
.pricing-features li.dim { color: var(--muted); opacity: .5; }
.btn-outline-navy { display: inline-block; width: 100%; text-align: center; padding: 12px 24px; border: 2px solid var(--navy); color: var(--navy); border-radius: 6px; font-size: .9rem; font-weight: 600; text-decoration: none; transition: all .2s; }
.btn-outline-navy:hover { background: var(--navy); color: var(--gold); }
.pricing-note { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 2rem; }
.pricing-note a { color: var(--gold); font-weight: 600; }

/* ── FAQ (HOMEPAGE) ── */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 2.5rem; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--white); }
.faq-q { width: 100%; text-align: left; background: var(--white); border: none; padding: 16px 20px; font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background .2s; }
.faq-q:hover { background: var(--light); }
.faq-q span { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 16px; background: var(--light); border-top: 1px solid var(--border); }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: .87rem; margin: 12px 0 0; line-height: 1.7; }

/* ── NEWSLETTER ── */
.newsletter-section { background: linear-gradient(135deg, var(--navy) 0%, #122566 100%); padding: 60px 0; }
.newsletter-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.nl-text { flex: 1; min-width: 240px; }
.nl-text h3 { font-family:'Playfair Display',serif; font-size: 1.5rem; color: var(--white); margin-bottom: 8px; }
.nl-text p { font-size: .88rem; color: rgba(255,255,255,.65); margin: 0; }
.nl-form { display: flex; gap: 10px; flex-wrap: wrap; flex: 1.2; min-width: 300px; }
.nl-form input { flex: 1; min-width: 180px; padding: 12px 16px; border-radius: 6px; border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); color: white; font-family: 'Inter', sans-serif; font-size: .88rem; outline: none; transition: border-color .2s; }
.nl-form input::placeholder { color: rgba(255,255,255,.45); }
.nl-form input:focus { border-color: var(--gold); }
.nl-note { width: 100%; font-size: .78rem; color: rgba(255,255,255,.5); margin: 6px 0 0; text-align: center; }

/* ── DOWNLOAD CENTER (HOMEPAGE) ── */
.downloads { background: var(--light); }
.downloads-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 2.5rem; }
.dl-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 24px 20px; text-align: center; transition: transform .25s, box-shadow .25s, border-color .25s; }
.dl-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(11,31,75,.09); border-color: var(--gold); }
.dl-icon { font-size: 2.2rem; margin-bottom: 12px; }
.dl-card h4 { font-size: .95rem; color: var(--navy); margin-bottom: 8px; }
.dl-card p { font-size: .82rem; color: var(--muted); margin: 0 0 16px; }
.dl-btn { display: inline-block; padding: 9px 20px; background: var(--navy); color: var(--gold); border-radius: 6px; font-size: .8rem; font-weight: 700; text-decoration: none; transition: background .2s; }
.dl-btn:hover { background: var(--gold); color: var(--navy); }
.dl-note { text-align: center; margin-top: 1.8rem; font-size: .8rem; color: var(--muted); }
.dl-note a { color: var(--gold); font-weight: 600; }


/* ── SECURITY BADGES ── */
.footer-security { background: rgba(0,0,0,.25); border-top: 1px solid rgba(255,255,255,.06); padding: 14px 0; }
.footer-security-inner { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.sec-badge { display: flex; align-items: center; gap: 6px; font-size: .75rem; color: rgba(255,255,255,.5); font-weight: 500; }
.sec-badge span { font-size: .95rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. NAV — Shared Dropdown Navbar
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > .nav-parent { color: rgba(255,255,255,.88); font-size: .85rem; font-weight: 500; padding: 8px 13px; border-radius: 6px; display: flex; align-items: center; gap: 4px; cursor: pointer; transition: color .2s, background .2s; background: none; border: none; font-family: 'Inter', sans-serif; white-space: nowrap; }
.nav-links > li > a:hover, .nav-links > li > .nav-parent:hover { color: var(--gold); background: rgba(255,255,255,.07); }
.nav-links > li > a.active, .nav-links > li > .nav-parent.active { color: var(--gold); }
.nav-parent::after { content: '▾'; font-size: .65rem; margin-left: 2px; }
.nav-dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--navy); border: 1px solid rgba(201,168,76,.2); border-radius: 10px; min-width: 220px; padding: 8px 0; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .2s, transform .2s; box-shadow: 0 16px 40px rgba(0,0,0,.4); z-index: 2000; }
.nav-links > li:hover .nav-dropdown, .nav-links > li:focus-within .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 18px; color: rgba(255,255,255,.8); font-size: .84rem; text-decoration: none; transition: background .15s, color .15s; }
.nav-dropdown a:hover { background: rgba(201,168,76,.12); color: var(--gold); }
.nav-dropdown a .dd-icon { font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; }
.nav-dropdown .dd-divider { height: 1px; background: rgba(255,255,255,.08); margin: 6px 14px; }
.nav-links > li > a.current { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: 16px; }
.hamburger { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; padding: 4px; }

@media (max-width: 960px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #0b1f4b; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 0 16px; box-shadow: 0 8px 24px rgba(0,0,0,.4); border-top: 1px solid rgba(255,255,255,.08); }
  .nav-links.open { display: flex; }
  .nav-links > li > a, .nav-links > li > .nav-parent { padding: 12px 20px; border-radius: 0; justify-content: space-between; }
  .nav-dropdown { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border: none; border-radius: 0; background: rgba(255,255,255,.04); padding: 0; display: none; }
  .nav-links > li.dd-open .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 10px 36px; font-size: .82rem; }
  .hamburger { display: block; }
  .nav-right { gap: 6px; }
  .nav-book-btn { font-size: .76rem; padding: 8px 14px; }
  .dark-mode-toggle { width: 32px; height: 32px; font-size: .9rem; }
}
@media (max-width: 540px) { .nav-book-btn span { display: none; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. TOPBAR — Quick Links Top Bar
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.top-quick-bar { background: #060f26; border-bottom: 1px solid rgba(201,168,76,.25); width: 100%; z-index: 1100; position: fixed; top: 0; left: 0; right: 0; height: 38px; }
.top-quick-bar + #navbar { top: 38px !important; }
.tqb-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 38px; gap: 16px; }
.tqb-left { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.tqb-item { display: flex; align-items: center; gap: 6px; padding: 0 14px; height: 38px; border-right: 1px solid rgba(255,255,255,.08); text-decoration: none; color: rgba(255,255,255,.72); font-size: .73rem; font-family: 'Inter', sans-serif; font-weight: 500; transition: color .2s, background .2s; white-space: nowrap; cursor: pointer; }
.tqb-item:first-child { padding-left: 0; }
.tqb-item:last-child  { border-right: none; }
.tqb-item:hover { color: var(--gold); background: rgba(201,168,76,.06); }
.tqb-item-icon { font-size: .85rem; flex-shrink: 0; }
.tqb-item-text { line-height: 1; }
.tqb-right { display: flex; align-items: center; gap: 4px; flex-shrink: 0; margin-left: auto; }
.tqb-social { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 6px; color: rgba(255,255,255,.55); text-decoration: none; font-size: .9rem; transition: color .2s, background .2s; border: 1px solid transparent; }
.tqb-social:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: var(--gold); }
.tqb-social svg { width: 14px; height: 14px; fill: currentColor; }
.tqb-divider-v { width: 1px; height: 20px; background: rgba(255,255,255,.1); margin: 0 8px; }
.tqb-wa-btn { display: flex; align-items: center; gap: 5px; background: #25d366; color: white; text-decoration: none; font-size: .7rem; font-weight: 700; font-family: 'Inter', sans-serif; padding: 5px 12px; border-radius: 14px; transition: opacity .2s, transform .15s; white-space: nowrap; }
.tqb-wa-btn:hover { opacity: .88; transform: translateY(-1px); }
.tqb-wa-btn-icon { font-size: .85rem; }

/* Page-specific quick links sub-bar */
.page-quick-links-bar { background: var(--light); border-bottom: 1px solid var(--border); width: 100%; }
.pqlb-inner { display: flex; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 24px; gap: 0; flex-wrap: wrap; min-height: 42px; }
.pqlb-label { font-size: .68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; padding-right: 16px; border-right: 1px solid var(--border); margin-right: 4px; white-space: nowrap; flex-shrink: 0; padding-top: 2px; }
.pqlb-link { display: flex; align-items: center; gap: 5px; padding: 0 14px; height: 42px; border-right: 1px solid var(--border); font-size: .75rem; font-weight: 600; color: var(--navy); text-decoration: none; font-family: 'Inter', sans-serif; transition: color .2s, background .2s; white-space: nowrap; }
.pqlb-link:last-child { border-right: none; }
.pqlb-link:hover { color: var(--gold); background: rgba(201,168,76,.06); }
.pqlb-link.active { color: var(--gold); background: rgba(201,168,76,.08); border-bottom: 2px solid var(--gold); }
.pqlb-icon { font-size: .9rem; }
.pqlb-cta { margin-left: auto; display: flex; align-items: center; gap: 8px; padding-left: 16px; flex-shrink: 0; }
.pqlb-cta-btn { display: flex; align-items: center; gap: 5px; padding: 6px 14px; border-radius: 16px; font-size: .72rem; font-weight: 700; font-family: 'Inter', sans-serif; text-decoration: none; border: none; cursor: pointer; transition: opacity .2s, transform .15s; white-space: nowrap; }
.pqlb-cta-btn:hover { opacity: .88; transform: translateY(-1px); }
.pqlb-cta-btn.primary { background: var(--navy); color: var(--gold); }
.pqlb-cta-btn.wa { background: #25d366; color: white; }

/* Topbar responsive */
@media (max-width: 860px) { .tqb-item:nth-child(3) { display: none; } }
@media (max-width: 640px) { .tqb-item:nth-child(2) { display: none; } .tqb-item-text { display: none; } .tqb-item { padding: 0 10px; } }
@media (max-width: 480px) { .tqb-left { display: none; } }
@media (max-width: 700px) { .pqlb-label { display: none; } .pqlb-link { padding: 0 10px; font-size: .7rem; } .pqlb-cta { display: none; } }
@media (max-width: 480px) { .page-quick-links-bar { display: none; } }

/* Topbar dark mode */
body.dark .top-quick-bar { background: #000510; border-color: rgba(201,168,76,.15); }
body.dark .page-quick-links-bar { background: #1a1a2e; border-color: #333; }
body.dark .pqlb-label { color: #666; border-color: #333; }
body.dark .pqlb-link  { color: #ccc; border-color: #333; }
body.dark .pqlb-link:hover { color: var(--gold); background: rgba(201,168,76,.06); }
body.dark .pqlb-link.active { color: var(--gold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. PAGES — Shared Sub-page Styles
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn-outline { padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: .95rem; border: 2px solid var(--gold); color: var(--gold); background: transparent; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, color .2s; }
.btn-outline:hover { background: var(--gold); color: #fff; }

.page-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a3a72 100%); padding: 70px 0 60px; color: white; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); margin: .5rem 0 1rem; color: white; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.78); max-width: 600px; margin: 0 auto; }
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: .5rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.page-section { padding: 72px 0; background: var(--white); }
.page-section.alt-bg { background: var(--light); }
.page-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--navy); margin: .4rem 0 1.2rem; }
.page-section h2.center { text-align: center; }
.page-section p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }

/* Founder */
.founder-grid { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
@media(max-width:900px){ .founder-grid{ grid-template-columns:1fr; } }
.founder-photo-col { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.founder-frame { width: 260px; height: 300px; border-radius: 16px; overflow: hidden; border: 4px solid var(--gold); box-shadow: 0 12px 40px rgba(11,31,75,.15); }
.founder-frame .founder-img { width: 100%; height: 100%; object-fit: cover; }
.founder-card { background: var(--navy); color: white; border-radius: 12px; padding: 16px 20px; text-align: center; width: 100%; }
.founder-card strong { display: block; font-size: 1.05rem; font-weight: 600; }
.founder-card span { font-size: .82rem; color: var(--gold); display: block; margin-top: 2px; }
.founder-creds { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.founder-creds span { font-size: .78rem; color: rgba(255,255,255,.7); }
.founder-social { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.founder-social .social-link { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: white; text-decoration: none; transition: transform .2s, opacity .2s; }
.founder-social .social-link:hover { transform: translateY(-2px); opacity: .85; }
.founder-social .social-link.linkedin { background: #0077b5; }
.founder-bio { padding-top: 4px; }
.founder-bio h2 { margin-bottom: 1rem; }
.bio-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 1.5rem 0; }
@media(max-width:600px){ .bio-highlights{ grid-template-columns:repeat(2,1fr); } }
.bio-hl { background: var(--light); border-radius: 10px; padding: 14px 10px; text-align: center; display: flex; flex-direction: column; gap: 4px; }
.bio-hl .bio-num { font-size: 1.4rem; font-weight: 700; color: var(--navy); font-family: 'Playfair Display', serif; }
.bio-hl span:last-child { font-size: .74rem; color: var(--muted); font-weight: 500; }

/* Two column */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media(max-width:860px){ .two-col{ grid-template-columns:1fr; } }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 18px; padding-bottom: 28px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ''; position: absolute; left: 9px; top: 20px; bottom: 0; width: 2px; background: var(--border); }
.tl-item:last-child::before { display: none; }
.tl-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--border); border: 3px solid white; flex-shrink: 0; margin-top: 2px; position: relative; z-index: 1; box-shadow: 0 0 0 2px var(--border); }
.tl-dot.active { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.tl-content { padding-top: 0; }
.tl-content strong { display: block; color: var(--navy); font-weight: 600; font-size: .95rem; }
.tl-content span { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* Mission Vision Values */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 2rem; }
@media(max-width:860px){ .mvv-grid{ grid-template-columns:1fr; } }
.mvv-card { border-radius: 14px; padding: 32px 28px; border: 1px solid var(--border); background: white; transition: transform .25s, box-shadow .25s; }
.mvv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(11,31,75,.1); }
.mvv-card.mission { border-top: 4px solid var(--navy); }
.mvv-card.vision  { border-top: 4px solid var(--gold); }
.mvv-card.values  { border-top: 4px solid #25d366; }
.mvv-icon { font-size: 2.2rem; margin-bottom: 12px; }
.mvv-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: .75rem; font-weight: 700; }
.mvv-card p, .mvv-card li { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.mvv-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }

/* Certifications page */
.cert-page-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 2rem; }
@media(max-width:900px){ .cert-page-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:540px){ .cert-page-grid{ grid-template-columns:1fr; } }
.cert-page-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 28px 22px; text-align: center; transition: transform .25s, box-shadow .25s; }
.cert-page-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(11,31,75,.1); }
.cp-icon { font-size: 2.4rem; margin-bottom: 12px; }
.cert-page-card h4 { font-size: .95rem; color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.cert-page-card p { font-size: .8rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* Page CTA section */
.page-cta-section { background: linear-gradient(135deg, var(--navy) 0%, #1a3a72 100%); padding: 60px 0; }
.page-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.page-cta-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 2rem); color: white; margin-bottom: .5rem; }
.page-cta-inner p { color: rgba(255,255,255,.75); margin: 0; font-size: .95rem; }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-btns .btn-outline { color: white; border-color: rgba(255,255,255,.6); }
.cta-btns .btn-outline:hover { background: rgba(255,255,255,.15); color: white; }

/* Services page */
.services-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 2rem; }
.sf-btn { padding: 8px 20px; border-radius: 20px; border: 1.5px solid var(--border); background: white; color: var(--muted); font-size: .82rem; font-weight: 600; cursor: pointer; transition: all .2s; font-family: 'Inter', sans-serif; }
.sf-btn.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.sf-btn:hover:not(.active) { border-color: var(--navy); color: var(--navy); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media(max-width:900px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:540px){ .services-grid{ grid-template-columns:1fr; } }
.svc-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 28px 22px; transition: transform .25s, box-shadow .25s, border-color .2s; cursor: default; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(11,31,75,.1); border-color: var(--gold); }
.svc-card.hidden { display: none; }
.svc-icon { font-size: 2rem; margin-bottom: 12px; }
.svc-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.svc-card p { font-size: .82rem; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.svc-tag { display: inline-block; background: var(--light); color: var(--navy); font-size: .7rem; font-weight: 600; padding: 3px 9px; border-radius: 12px; border: 1px solid var(--border); }
.svc-card-link { display: inline-flex; align-items: center; gap: 5px; font-size: .8rem; color: var(--navy); font-weight: 600; text-decoration: none; margin-top: 8px; transition: color .2s; }
.svc-card-link:hover { color: var(--gold); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
@media(max-width:860px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info-panel { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: var(--navy); color: white; border-radius: 14px; padding: 28px 24px; }
.contact-info-card h3 { font-size: 1.05rem; color: var(--gold); margin-bottom: 16px; }
.contact-info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.contact-info-item:last-child { margin-bottom: 0; }
.ci-icon { font-size: 1.2rem; margin-top: 1px; flex-shrink: 0; }
.ci-text { font-size: .84rem; line-height: 1.6; color: rgba(255,255,255,.82); }
.ci-text strong { display: block; color: white; font-size: .88rem; margin-bottom: 2px; }
.ci-text a { color: var(--gold); text-decoration: none; }
.contact-quick-btns { display: flex; flex-direction: column; gap: 10px; }
.cq-btn { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 10px; border: none; font-family: 'Inter', sans-serif; font-size: .88rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: opacity .2s; }
.cq-btn:hover { opacity: .88; }
.cq-btn.whatsapp { background: #25d366; color: white; }
.cq-btn.call     { background: var(--navy); color: white; }
.cq-btn.email    { background: #ea4335; color: white; }
.contact-form-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 36px 32px; box-shadow: 0 4px 20px rgba(11,31,75,.06); }
@media(max-width:540px){ .contact-form-card{ padding: 24px 18px; } }
.contact-form-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 1.5rem; font-weight: 700; }
@media(max-width:540px){ .form-row{ grid-template-columns:1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: .87rem; color: var(--text); background: white; transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; margin-top: 6px; }
.form-msg { font-size: .84rem; color: #4caf50; margin-top: 10px; min-height: 20px; }
.contact-map-row { margin-top: 3rem; }
.contact-map-row h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 1rem; font-weight: 700; }
.map-frame { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }

/* Pricing page */
.price-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 36px 28px; display: flex; flex-direction: column; gap: 8px; position: relative; transition: transform .25s, box-shadow .25s; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(11,31,75,.12); }
.price-card.featured { background: var(--navy); color: white; border-color: var(--gold); transform: scale(1.03); box-shadow: 0 20px 60px rgba(11,31,75,.25); }
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.price-tier { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 4px; }
.price-card.featured .price-tier { color: var(--gold); }
.price-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); font-weight: 700; }
.price-card.featured .price-name { color: white; }
.price-amount { font-size: 2rem; font-weight: 800; color: var(--navy); margin: 8px 0; }
.price-card.featured .price-amount { color: var(--gold); }
.price-amount sup { font-size: 1rem; font-weight: 600; }
.price-amount span { font-size: .85rem; font-weight: 400; color: var(--muted); }
.price-card.featured .price-amount span { color: rgba(255,255,255,.6); }
.price-desc { font-size: .82rem; color: var(--muted); margin-bottom: 8px; line-height: 1.5; }
.price-card.featured .price-desc { color: rgba(255,255,255,.7); }
.price-divider { height: 1px; background: var(--border); margin: 12px 0; }
.price-card.featured .price-divider { background: rgba(255,255,255,.15); }
.price-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: .83rem; color: var(--muted); }
.price-card.featured .price-features li { color: rgba(255,255,255,.82); }
.price-features li::before { content: '✓'; color: #4caf50; font-weight: 700; flex-shrink: 0; }
.price-features li.no::before { content: '✗'; color: #ef5350; }
.price-features li.no { opacity: .55; }
.price-btn { margin-top: 16px; text-align: center; }
.price-btn a { display: block; padding: 13px; border-radius: 10px; font-weight: 700; font-size: .9rem; text-decoration: none; transition: all .2s; background: var(--navy); color: white; }
.price-card.featured .price-btn a { background: var(--gold); color: var(--navy); }
.price-btn a:hover { opacity: .88; }
.pricing-compare { margin-top: 4rem; }
.pricing-compare h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 1.5rem; }
.compare-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.compare-table th { background: var(--navy); color: white; padding: 14px 18px; text-align: left; font-size: .85rem; }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td { padding: 12px 18px; font-size: .83rem; border-bottom: 1px solid var(--border); color: var(--text); }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) { background: var(--light); }
.compare-table .yes { color: #4caf50; font-weight: 700; }
.compare-table .no  { color: #ef5350; }
@media(max-width:860px){ .pricing-grid{ grid-template-columns:1fr; max-width:420px; margin-left:auto; margin-right:auto; } }

/* FAQ page */
.faq-page-list { max-width: 800px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-page-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: white; transition: box-shadow .2s; }
.faq-page-item:hover { box-shadow: 0 4px 16px rgba(11,31,75,.08); }
.faq-page-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; background: none; border: none; cursor: pointer; font-family: 'Inter', sans-serif; font-size: .93rem; font-weight: 600; color: var(--navy); text-align: left; gap: 12px; }
.faq-page-q .faq-arrow { font-size: .7rem; flex-shrink: 0; transition: transform .25s; color: var(--gold); }
.faq-page-item.open .faq-page-q .faq-arrow { transform: rotate(180deg); }
.faq-page-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .25s; font-size: .87rem; color: var(--muted); line-height: 1.7; padding: 0 22px; }
.faq-page-item.open .faq-page-a { max-height: 300px; padding: 0 22px 18px; }
.faq-cats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 2rem; justify-content: center; }
.faq-cat-btn { padding: 7px 18px; border-radius: 20px; border: 1.5px solid var(--border); background: white; color: var(--muted); font-size: .8rem; font-weight: 600; cursor: pointer; transition: all .2s; font-family: 'Inter', sans-serif; }
.faq-cat-btn.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* Downloads page */
.dl-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 26px 22px; display: flex; flex-direction: column; gap: 10px; transition: transform .25s, box-shadow .25s; }
.dl-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(11,31,75,.1); }
.dl-card h3 { font-size: .95rem; color: var(--navy); font-weight: 700; margin: 0; }
.dl-card p { font-size: .8rem; color: var(--muted); line-height: 1.6; margin: 0; flex: 1; }
.dl-meta { display: flex; gap: 8px; align-items: center; }
.dl-type { font-size: .7rem; background: var(--light); color: var(--navy); padding: 3px 8px; border-radius: 10px; font-weight: 600; border: 1px solid var(--border); }
.dl-size { font-size: .7rem; color: var(--muted); }
.dl-btn { display: flex; align-items: center; gap: 7px; padding: 10px 14px; border-radius: 8px; background: var(--navy); color: white; text-decoration: none; font-size: .82rem; font-weight: 600; border: none; cursor: pointer; font-family: 'Inter', sans-serif; transition: opacity .2s; width: fit-content; }
.dl-btn:hover { opacity: .85; }
.downloads-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 2rem; }
@media(max-width:900px){ .downloads-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:540px){ .downloads-grid{ grid-template-columns:1fr; } }

/* Blog listing page */
.blog-grid-page { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 2rem; }
@media(max-width:900px){ .blog-grid-page{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:540px){ .blog-grid-page{ grid-template-columns:1fr; } }
.blog-card-page { background: white; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.blog-card-page:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(11,31,75,.1); }
.blog-card-banner { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 20px; }
.blog-cat-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--gold); }
.blog-card-body h3 { font-size: 1rem; color: var(--navy); font-weight: 700; margin: 6px 0 8px; line-height: 1.4; }
.blog-card-body p { font-size: .81rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.blog-read-more { font-size: .8rem; font-weight: 700; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 4px; }
.blog-read-more:hover { color: var(--gold); }
.blog-meta-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; border-top: 1px solid var(--border); font-size: .75rem; color: var(--muted); }

/* Pages dark mode */
body.dark .page-section { background: #1a1a2e; }
body.dark .page-section.alt-bg { background: #121212; }
body.dark .page-section h2 { color: #e8eaf6; }
body.dark .page-section p { color: #aaa; }
body.dark .founder-card { background: #0d47a1; }
body.dark .bio-hl { background: #1e1e2e; }
body.dark .bio-num { color: #e8eaf6; }
body.dark .mvv-card { background: #1a1a2e; border-color: #333; }
body.dark .mvv-card h3 { color: #e8eaf6; }
body.dark .cert-page-card { background: #1a1a2e; border-color: #333; }
body.dark .cert-page-card h4 { color: #e8eaf6; }
body.dark .tl-content strong { color: #e8eaf6; }
body.dark .svc-card { background: #1a1a2e; border-color: #333; }
body.dark .svc-card h3 { color: #e8eaf6; }
body.dark .svc-tag { background: #0d47a1; color: #e8eaf6; border-color: #333; }
body.dark .sf-btn { background: #1a1a2e; border-color: #333; color: #aaa; }
body.dark .sf-btn.active { background: #0d47a1; }
body.dark .contact-form-card { background: #1a1a2e; border-color: #333; }
body.dark .contact-form-card h3 { color: #e8eaf6; }
body.dark .form-group label { color: #e8eaf6; }
body.dark .form-group input, body.dark .form-group select, body.dark .form-group textarea { background: #121212; color: #e8eaf6; border-color: #444; }
body.dark .price-card { background: #1a1a2e; border-color: #333; }
body.dark .price-card.featured { background: var(--navy); }
body.dark .price-name { color: #e8eaf6; }
body.dark .price-amount { color: #e8eaf6; }
body.dark .faq-page-item { background: #1a1a2e; border-color: #333; }
body.dark .faq-page-q { color: #e8eaf6; }
body.dark .dl-card { background: #1a1a2e; border-color: #333; }
body.dark .dl-card h3 { color: #e8eaf6; }
body.dark .dl-type { background: #0d47a1; color: #e8eaf6; border-color: #333; }
body.dark .blog-card-page { background: #1a1a2e; border-color: #333; }
body.dark .blog-card-body h3 { color: #e8eaf6; }
body.dark .compare-table th { background: #0d47a1; }
body.dark .compare-table td { color: #aaa; border-color: #333; }
body.dark .compare-table tr:nth-child(even) { background: #121212; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   6. LEGAL PAGES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#navbar { background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.logo { text-decoration: none; }
.legal-hero { background: linear-gradient(135deg, #070f2b 0%, var(--navy) 60%, var(--navy2) 100%); padding: 70px 0 60px; text-align: center; }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: .5rem; }
.legal-hero p { color: rgba(255,255,255,.55); font-size: .9rem; margin: 0; }
.legal-hero .section-label { color: var(--gold); margin-bottom: .5rem; }
.legal-body { padding: 60px 0 80px; background: var(--light); }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-intro { background: white; border-left: 4px solid var(--gold); border-radius: 0 10px 10px 0; padding: 22px 26px; margin-bottom: 36px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.legal-intro p { font-size: 1rem; color: var(--text); margin: 0; line-height: 1.8; }
.legal-section { background: white; border-radius: 10px; padding: 28px 30px; margin-bottom: 20px; box-shadow: 0 2px 12px rgba(0,0,0,.05); border: 1px solid var(--border); }
.legal-section h2 { font-size: 1.15rem; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.legal-section p { color: var(--text); font-size: .93rem; line-height: 1.8; margin-bottom: .7rem; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { padding-left: 20px; margin: 10px 0; }
.legal-section ul li { color: var(--muted); font-size: .92rem; line-height: 1.7; margin-bottom: 7px; }
.legal-section ul li strong { color: var(--navy); }
.legal-section a { color: var(--gold); text-decoration: underline; }
.legal-contact-box { background: var(--light); border: 1px solid var(--border); border-radius: 8px; padding: 18px 22px; margin-top: 14px; }
.legal-contact-box p { font-size: .9rem; margin-bottom: 8px; }
.legal-contact-box a { color: var(--navy); font-weight: 600; }
.legal-footer { background: var(--navy); padding: 24px 0; }
.legal-footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.legal-footer p { font-size: .82rem; color: rgba(255,255,255,.4); margin: 0; }
.legal-footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.legal-footer-links a { font-size: .82rem; color: rgba(255,255,255,.55); transition: color .2s; text-decoration: none; }
.legal-footer-links a:hover { color: var(--gold); }
@media (max-width: 600px) { .legal-section { padding: 20px 18px; } .legal-footer-inner { justify-content: center; text-align: center; } .legal-footer-links { justify-content: center; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   7. BLOG ARTICLE PAGES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.blog-cta-box { background: linear-gradient(135deg, var(--navy) 0%, #122566 100%); border-radius: 12px; padding: 30px 30px; margin-top: 30px; color: white; }
.blog-cta-box h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 10px; }
.blog-cta-box p { color: rgba(255,255,255,.78); font-size: .93rem; margin: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   8. CHATBOT WIDGET
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.chatbot-fab { position: fixed; bottom: 220px; right: 24px; background: linear-gradient(135deg, var(--navy) 0%, #1565c0 100%); color: white; border: none; border-radius: 50px; padding: 12px 18px 12px 14px; display: flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 700; cursor: pointer; box-shadow: 0 6px 24px rgba(11,31,75,.45); z-index: 1000; transition: transform .25s, box-shadow .25s; animation: fab-glow 3s ease-in-out infinite; }
.chatbot-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 32px rgba(11,31,75,.55); animation: none; }
@keyframes fab-glow { 0%,100% { box-shadow: 0 6px 24px rgba(21,101,192,.45); } 50% { box-shadow: 0 6px 36px rgba(21,101,192,.7); } }
.fab-icon { font-size: 1.2rem; }
.fab-label { white-space: nowrap; }
.fab-badge { position: absolute; top: -5px; right: -5px; background: #e53935; color: white; font-size: .65rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid white; }
.chatbot-widget { position: fixed; bottom: 290px; right: 24px; width: 360px; max-height: 520px; background: var(--white); border-radius: 16px; box-shadow: 0 20px 60px rgba(11,31,75,.3); z-index: 1001; display: flex; flex-direction: column; opacity: 0; pointer-events: none; transform: translateY(20px) scale(.97); transition: opacity .3s ease, transform .3s ease; overflow: hidden; border: 1px solid var(--border); }
.chatbot-widget.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.chatbot-header { background: linear-gradient(135deg, var(--navy) 0%, #1565c0 100%); padding: 14px 16px; display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.chatbot-avatar { width: 38px; height: 38px; background: var(--gold); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.chatbot-title { flex: 1; }
.chatbot-title strong { display: block; color: white; font-size: .95rem; }
.chatbot-title span { font-size: .72rem; color: rgba(255,255,255,.7); }
.chatbot-title span::before { content: '●'; color: #4caf50; margin-right: 4px; font-size: .6rem; }
.chatbot-close { background: none; border: none; color: rgba(255,255,255,.7); font-size: 1.4rem; cursor: pointer; line-height: 1; padding: 0 4px; transition: color .2s; }
.chatbot-close:hover { color: white; }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; background: #f8f9fc; scroll-behavior: smooth; }
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.chat-msg { max-width: 88%; animation: msgIn .3s ease; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.chat-msg span { display: inline-block; padding: 10px 14px; border-radius: 12px; font-size: .84rem; line-height: 1.6; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.bot span { background: white; color: var(--text); border-radius: 4px 12px 12px 12px; box-shadow: 0 2px 8px rgba(0,0,0,.07); border: 1px solid var(--border); }
.chat-msg.bot a { color: var(--gold); font-weight: 600; }
.chat-msg.user { align-self: flex-end; }
.chat-msg.user span { background: linear-gradient(135deg, var(--navy), #1565c0); color: white; border-radius: 12px 4px 12px 12px; }
.chat-quickbtns { display: flex; flex-wrap: wrap; gap: 7px; padding: 4px 0 0; }
.qbtn { background: white; border: 1.5px solid var(--border); color: var(--navy); font-size: .75rem; font-weight: 600; padding: 6px 12px; border-radius: 20px; cursor: pointer; transition: all .2s; }
.qbtn:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.chatbot-input-wrap { display: flex; gap: 0; padding: 10px 12px; border-top: 1px solid var(--border); background: white; flex-shrink: 0; }
#chatbotInput { flex: 1; border: 1.5px solid var(--border); border-right: none; border-radius: 8px 0 0 8px; padding: 10px 14px; font-size: .86rem; font-family: 'Inter', sans-serif; outline: none; color: var(--text); background: var(--light); transition: border-color .2s; }
#chatbotInput:focus { border-color: var(--navy); background: white; }
#chatbotSend { background: linear-gradient(135deg, var(--navy), #1565c0); color: white; border: none; border-radius: 0 8px 8px 0; padding: 10px 16px; font-size: 1rem; cursor: pointer; transition: opacity .2s; }
#chatbotSend:hover { opacity: .85; }
@media (max-width: 480px) { .chatbot-widget { right: 12px; left: 12px; width: auto; bottom: 260px; } .chatbot-fab { right: 20px; } .fab-label { display: none; } .chatbot-fab { padding: 13px; border-radius: 50%; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   9. CALCULATOR PAGE (inline styles)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.calc-section { padding: 60px 0 80px; background: var(--light); }
.calc-tabs { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:36px; }
.calc-tab { padding:10px 24px; border-radius:30px; border:1.5px solid var(--border); background:var(--white); color:var(--muted); font-size:.88rem; font-weight:600; cursor:pointer; transition:all .2s; }
.calc-tab.active { background:var(--navy); color:var(--gold); border-color:var(--navy); }
.calc-panel { display:none; } .calc-panel.active { display:block; }
.calc-box { background:var(--white); border:1px solid var(--border); border-radius:14px; padding:36px; max-width:720px; }
.calc-box h3 { font-size:1.3rem; color:var(--navy); margin-bottom:6px; }
.calc-box .sub { font-size:.84rem; color:var(--muted); margin-bottom:24px; }
.cg { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.cg.single { grid-template-columns:1fr; }
@media(max-width:600px){ .cg { grid-template-columns:1fr; } }
.cf { display:flex; flex-direction:column; gap:6px; }
.cf label { font-size:.8rem; font-weight:600; color:var(--navy); }
.cf input, .cf select { padding:11px 14px; border:1.5px solid var(--border); border-radius:8px; font-family:'Inter',sans-serif; font-size:.9rem; color:var(--text); outline:none; transition:border-color .2s; }
.cf input:focus, .cf select:focus { border-color:var(--gold); }
.calc-btn { margin-top:20px; padding:13px 32px; background:var(--navy); color:var(--gold); border:none; border-radius:8px; font-family:'Inter',sans-serif; font-size:.95rem; font-weight:700; cursor:pointer; transition:background .2s; }
.calc-btn:hover { background:#122566; }
.calc-result { margin-top:24px; background:linear-gradient(135deg,var(--navy),#122566); border-radius:12px; padding:24px; display:none; }
.calc-result.show { display:block; }
.result-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:14px; }
.result-item { background:rgba(255,255,255,.1); border-radius:8px; padding:14px; text-align:center; }
.result-val { display:block; font-family:'Playfair Display',serif; font-size:1.4rem; font-weight:700; color:var(--gold); }
.result-lbl { font-size:.73rem; color:rgba(255,255,255,.7); margin-top:4px; display:block; }
.result-note { font-size:.8rem; color:rgba(255,255,255,.6); margin-top:16px; text-align:center; }
.result-note a { color:var(--gold); }
.regime-compare { margin-top:24px; }
.regime-compare table { width:100%; border-collapse:collapse; }
.regime-compare th, .regime-compare td { padding:10px 14px; font-size:.83rem; border-bottom:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.85); text-align:left; }
.regime-compare th { color:var(--gold); font-weight:700; }
.regime-compare .winner { color:#4caf50; font-weight:700; }
.cal-section { padding: 60px 0 80px; background: var(--light); }
.cal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:1024px){ .cal-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .cal-grid { grid-template-columns: 1fr; } }
.cal-card { background: white; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.cal-card-header { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.cal-card.gst .cal-card-header     { background: linear-gradient(135deg,#e65100,#ef6c00); }
.cal-card.it .cal-card-header      { background: linear-gradient(135deg,#1565c0,#1976d2); }
.cal-card.tds .cal-card-header     { background: linear-gradient(135deg,#6a1b9a,#8e24aa); }
.cal-card.adv .cal-card-header     { background: linear-gradient(135deg,#2e7d32,#388e3c); }
.cal-card.roc .cal-card-header     { background: linear-gradient(135deg,#00838f,#00acc1); }
.cal-card.misc .cal-card-header    { background: linear-gradient(135deg,#37474f,#546e7a); }
.cal-icon { font-size: 1.5rem; }
.cal-card-header h3 { color: white; font-size: 1rem; font-weight: 700; margin: 0; }
.cal-table { width: 100%; border-collapse: collapse; }
.cal-table tr:nth-child(even) { background: var(--light); }
.cal-table td { padding: 10px 16px; font-size: .82rem; color: var(--text); border-bottom: 1px solid var(--border); }
.cal-table td:first-child { font-weight: 600; color: var(--navy); width: 40%; }
.cal-table tr:last-child td { border-bottom: none; }
.cal-note { background: linear-gradient(135deg,var(--navy),#122566); border-radius: 12px; padding: 24px 28px; margin-top: 2.5rem; color: white; font-size: .9rem; line-height: 1.7; }
.cal-note a { color: var(--gold); font-weight: 600; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   10. RESPONSIVE (shared)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .downloads-grid { grid-template-columns: repeat(2,1fr); }
  .cert-badges { gap: 12px; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .owner-photo-frame { width: 260px; height: 310px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; gap: 24px; }
.cert-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-list { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 13px; border-radius: 50%; bottom: 86px; right: 20px; }
  .float-book-btn { font-size: .75rem; padding: 9px 14px; bottom: 152px; right: 20px; }
  .nav-book-btn { display: none; }
  .e2e-pillars { gap: 10px; }
  .pillar { font-size: .78rem; padding: 7px 14px; }
  .modal-box { padding: 28px 20px 22px; }
  .downloads-grid { grid-template-columns: 1fr; }
.blog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════
   SERVICE CATEGORY PAGES — svc-page-* classes
   ════════════════════════════════════════════ */

/* ── HERO BANNER ── */
.svc-page-banner {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.svc-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,45,90,.9) 0%, rgba(30,45,90,.65) 100%);
}
.svc-page-banner-inner {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 680px;
}
.svc-page-banner .breadcrumb { color: rgba(255,255,255,.7); margin-bottom: 12px; font-size: .85rem; }
.svc-page-banner .breadcrumb a { color: var(--gold); }
.svc-page-banner h1 { font-size: clamp(2rem,5vw,3rem); color: #fff; margin-bottom: 16px; }
.svc-page-banner p  { font-size: 1.1rem; color: rgba(255,255,255,.88); max-width: 560px; line-height: 1.7; }
.banner-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.banner-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.banner-btns .btn-banner-primary {
  background: var(--gold); color: #fff; padding: 12px 28px;
  border-radius: 8px; font-weight: 600; font-size: .95rem;
  text-decoration: none; transition: opacity .2s;
}
.banner-btns .btn-banner-primary:hover { opacity: .88; }
.banner-btns .btn-banner-outline {
  border: 2px solid rgba(255,255,255,.6); color: #fff; padding: 10px 26px;
  border-radius: 8px; font-weight: 600; font-size: .95rem;
  text-decoration: none; transition: border-color .2s;
}
.banner-btns .btn-banner-outline:hover { border-color: #fff; }

/* ── OVERVIEW 2-COL ── */
.svc-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.svc-overview-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(30,45,90,.14);
}
.svc-overview-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.svc-overview-text h2 { margin-bottom: 16px; }
.svc-overview-text p  { color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.svc-checklist { list-style: none; padding: 0; margin: 20px 0; }
.svc-checklist li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: .92rem; color: var(--text); }
.svc-checklist li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── STATS ROW ── */
.svc-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 44px 0;
  text-align: center;
}
.svc-stat-num   { font-family: 'Playfair Display',serif; font-size: 2.2rem; color: var(--navy); font-weight: 700; display: block; }
.svc-stat-label { font-size: .82rem; color: var(--muted); margin-top: 4px; display: block; }

/* ── FEATURES GRID ── */
.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 22px;
  margin-top: 40px;
}
.svc-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.svc-feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(30,45,90,.1); }
.svc-feature-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.svc-feature-card h4 { font-family:'Playfair Display',serif; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.svc-feature-card p  { font-size: .85rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── WHAT WE DO ── */
.svc-whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px,1fr));
  gap: 18px;
  margin-top: 40px;
}
.svc-whatwedo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: border-color .2s, box-shadow .2s;
}
.svc-whatwedo-item:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(30,45,90,.08); }
.svc-whatwedo-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 1px; }
.svc-whatwedo-item h4 { font-size: .92rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.svc-whatwedo-item p  { font-size: .82rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── PROCESS STEPS ── */
.svc-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 0;
  margin-top: 40px;
  counter-reset: step;
}
.svc-step {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}
.svc-step::after {
  content: '';
  position: absolute;
  top: 42px; right: 0;
  width: 50%; height: 2px;
  background: var(--border);
}
.svc-step:last-child::after { display: none; }
.svc-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.svc-step h4 { font-size: .92rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.svc-step p  { font-size: .82rem; color: var(--muted); line-height: 1.5; margin: 0; }

/* ── RELATED SERVICES ── */
.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px,1fr));
  gap: 18px;
  margin-top: 32px;
}
.svc-related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  text-decoration: none;
  display: block;
  transition: all .25s;
}
.svc-related-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(30,45,90,.1); }
.svc-related-icon { font-size: 1.7rem; margin-bottom: 10px; display: block; }
.svc-related-card h4 { font-size: .95rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.svc-related-card p  { font-size: .8rem; color: var(--muted); margin: 0; }

/* ── ALT SECTION BG ── */
.svc-section-alt { background: var(--light); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .svc-overview-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-overview-img img { height: 260px; }
}
@media (max-width: 600px) {
  .svc-page-banner { min-height: 340px; }
  .svc-process-steps { grid-template-columns: 1fr 1fr; }
  .svc-step::after { display: none; }
}


/* ════════════════════════════════════════════
   11. RESPONSIVE HARDENING — all devices
   (mobile <540 / phablet 540-768 / tablet 768-1024 / desktop)
   ════════════════════════════════════════════ */

/* fluid media everywhere — nothing can force horizontal scroll */
img { max-width: 100%; height: auto; }
iframe, video, embed, object { max-width: 100%; }
body { overflow-x: hidden; }

/* auto-fit grids: never wider than the viewport on small phones */
.svc-stats-row      { grid-template-columns: repeat(auto-fit, minmax(min(150px,100%),1fr)); }
.svc-features-grid  { grid-template-columns: repeat(auto-fit, minmax(min(220px,100%),1fr)); }
.svc-whatwedo-grid  { grid-template-columns: repeat(auto-fit, minmax(min(290px,100%),1fr)); }
.svc-process-steps  { grid-template-columns: repeat(auto-fit, minmax(min(200px,100%),1fr)); }
.svc-related-grid   { grid-template-columns: repeat(auto-fit, minmax(min(210px,100%),1fr)); }

/* tables: wrap long cells, allow horizontal scroll as last resort */
.cal-table { width: 100%; }
.cal-table td { word-break: break-word; }

/* modal never taller than screen */
.modal-box { max-height: 90vh; overflow-y: auto; }

/* ── TABLET (768px – 1024px) ── */
@media (max-width: 1024px) {
  .svc-overview-grid { gap: 36px; }
  .hs-content { max-width: 600px; }
}

/* ── PHABLET / LARGE PHONE (≤768px) ── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hs-tagline { font-size: .95rem; }
  .hs-desc { font-size: .9rem; }
  .svc-page-banner h1 { font-size: 1.9rem; }
  .svc-page-banner p { font-size: .98rem; }
  .svc-overview-img img { height: 240px; }
  .page-hero h1 { font-size: 1.9rem; }
  .section-head h2 { font-size: 1.7rem; }
}

/* ── SMALL PHONE (≤540px) ── */
@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .hs-title { font-size: 1.65rem; }
  .hs-sub { font-size: .68rem; letter-spacing: .16em; }
  .hs-content { padding: 90px 0 70px; }
  .hs-btns { flex-direction: column; align-items: stretch; }
  .hs-btns .btn { width: 100%; text-align: center; }
  .hs-scroll { display: none; }
  .svc-page-banner { min-height: 300px; }
  .svc-page-banner h1 { font-size: 1.6rem; }
  .banner-btns { flex-direction: column; }
  .banner-btns .btn-banner-primary,
  .banner-btns .btn-banner-outline { width: 100%; text-align: center; }
  .svc-stats-row { grid-template-columns: 1fr 1fr; }
  .svc-process-steps { grid-template-columns: 1fr; }
  .svc-step { margin-bottom: 18px; }
  .footer-grid { gap: 28px; }
  .footer-legal-inner { flex-direction: column; gap: 10px; text-align: center; justify-content: center; }
  .footer-legal-links { justify-content: center; flex-wrap: wrap; }
  .breadcrumb { font-size: .78rem; }
  .page-hero h1 { font-size: 1.6rem; }
  .cal-table td { font-size: .82rem; padding: 8px 6px; }
}

/* ── TINY PHONE (≤360px) ── */
@media (max-width: 360px) {
  .hs-title { font-size: 1.45rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .svc-stats-row { grid-template-columns: 1fr; }
  .stab, .sf-btn { font-size: .78rem; padding: 8px 16px; }
}

/* ── TOUCH DEVICES: bigger tap targets ── */
@media (hover: none) and (pointer: coarse) {
  .nav-dropdown a, .nav-links > li > a { min-height: 44px; }
  .svc-card-link, .qbtn { padding-top: 8px; padding-bottom: 8px; }
}
