/* ═══════════════════════════════════════════════════════════════
   FOGS Consultants — fogs-master.css
   Single production stylesheet for the entire site.
   Merges: fogs-combined.css  +  epf.css
   Navbar & Footer are preserved exactly from style.css.
   ═══════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════
   GLOBAL STYLES
   ─ Design tokens, reset, base element rules
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand Palette */
  --clr-brand-deep:  #5cb6f9;   /* sky blue      */
  --clr-brand-mid:   #56aeff;   /* soft blue     */
  --clr-brand-light: #7dcfff;   /* light blue    */
  --clr-brand-red:   #E63946;   /* logo dot red  */
  /* Neutrals */
  --clr-bg:          #0A0E1A;
  --clr-bg-2:        #0F1629;
  --clr-surface:     #141B2D;
  --clr-surface-2:   #1C2540;
  --clr-border:      rgba(86, 174, 255, 0.18);
  --clr-text:        #E8EAFF;
  --clr-text-muted:  #8891B5;
  --clr-white:       #ffffff;
  /* Gradients */
  --g-brand:  linear-gradient(135deg, var(--clr-brand-deep), var(--clr-brand-mid));
  --g-accent: linear-gradient(135deg, var(--clr-brand-mid),  var(--clr-brand-light));
  --g-hero:   linear-gradient(135deg, #0D0621 0%, #0A1628 50%, #061225 100%);
  
  /* Spacing Scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 4rem;

  /* Typography */
  --ff-head: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --ff-body: 'Inter', sans-serif;

  /* Border Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-card:       0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow:       0 0 40px rgba(86, 174, 255, 0.25);
  --shadow-glow-light: 0 0 20px rgba(125, 207, 255, 0.2);

  /* Transition */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}


/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ─ Container, section wrappers, grid helpers
   ═══════════════════════════════════════════════════════════════ */

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

.section {
  padding: var(--space-2xl) 0;
}

/* Standard centred section header (max 640px) */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

/* Wide variant for descriptive intros */
.section-header--wide {
  max-width: 800px;
}

/* EPF pricing page — clears fixed navbar (120px top) */
.page-main {
  padding: 120px 0 60px;
}

/* EPF sub-pages — clears navbar (80px top) */
main.page-main {
  padding-top: 100px;
  padding-bottom: 20px;
}


/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ─ Headings, eyebrow labels, gradient text, hero text scale
   ═══════════════════════════════════════════════════════════════ */

/* Eyebrow pill label — block + centred on all pages */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-brand-light);
  background: rgba(125, 207, 255, 0.1);
  border: 1px solid rgba(125, 207, 255, 0.25);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.section-title.tl {
  text-align: left;
}

.section-sub {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: justify;
}

/* Sub-section heading used inside content areas */
.section-title-sm {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  color: var(--clr-white);
  margin: 3rem 0 1.5rem;
}

.gradient-text {
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub-hero {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

/* Hero-section intro block (EPF sub-pages) */
.section-intro {
  padding: 3rem 0 2rem;
  text-align: center;
}

.section-intro h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.section-intro p {
  color: var(--clr-text-muted);
  line-height: 1.85;
  font-size: 1.05rem;
}


/* ═══════════════════════════════════════════════════════════════
   COMPONENTS
   ─ Buttons, cards, badges, trust items, pricing, FAQ,
     policy toggle, breadcrumb, CTA, form elements
   ═══════════════════════════════════════════════════════════════ */

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--r-full);
  padding: 0.65rem 1.6rem;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--g-brand);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(86, 174, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(86, 174, 255, 0.35);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-lg    { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-arrow { transition: var(--transition); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* Standalone CTA pill (EPF sub-page contact boxes) */
.btn-cta {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--g-brand);
  color: #fff;
  text-decoration: none;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(86, 174, 255, 0.55);
}

/* ── Hero badge ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-brand-light);
  background: rgba(125, 207, 255, 0.08);
  border: 1px solid rgba(125, 207, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease both;
}

/* ── Trust badges ───────────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 0 3rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-full);
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  padding: 14px 0;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.88rem;
}

.breadcrumb a          { color: var(--clr-brand-light); text-decoration: none; }
.breadcrumb a:hover    { text-decoration: underline; }
.breadcrumb span       { color: var(--clr-text-muted); }
.breadcrumb .sep       { color: var(--clr-text-muted); margin: 0 0.5rem; }

/* ── Pricing grid & cards ───────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin: 2rem 0;
}

.pricing-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--clr-brand-mid);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.pricing-card.popular {
  border: 2px solid var(--clr-brand-mid);
  box-shadow: var(--shadow-glow);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--g-accent);
  color: var(--clr-bg);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--r-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.package-name {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.4rem;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-brand-light);
  margin-bottom: 0.2rem;
}

.price-validity {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.best-for {
  background: rgba(86, 174, 255, 0.1);
  border-left: 3px solid var(--clr-brand-mid);
  padding: 1rem;
  border-radius: var(--r-md);
  margin: 1.25rem 0;
  font-size: 0.88rem;
  color: var(--clr-text);
}

.best-for strong {
  color: var(--clr-brand-light);
  display: block;
  margin-bottom: 0.25rem;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  flex-grow: 1;
}

.services-list li {
  color: var(--clr-text-muted);
  padding: 0.45rem 0 0.45rem 1.8rem;
  position: relative;
  font-size: 0.92rem;
}

.services-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-brand-light);
  font-weight: 700;
}

.services-list li.disabled        { opacity: 0.38; }
.services-list li.disabled::before { content: '○'; color: var(--clr-text-muted); }

.card-cta { margin-top: auto; }

/* ── Hint box ───────────────────────────────────────────────── */
.hint-box {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0 3rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
}

.hint-box a  { color: var(--clr-brand-light); text-decoration: underline; }
.highlight   { color: var(--clr-brand-light); font-weight: 600; }

/* ── Policy toggle ──────────────────────────────────────────── */
.policy-toggle-wrapper { margin: 2rem 0 3rem; }

.policy-toggle-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 1.4rem 2rem;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: var(--transition);
}

.policy-toggle-btn:hover {
  border-color: var(--clr-brand-mid);
  box-shadow: var(--shadow-glow);
}

.policy-toggle-btn.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

.policy-toggle-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-toggle-label .emoji { font-size: 1.4rem; }

.policy-toggle-label .text {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-white);
}

.policy-toggle-label .sub {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-left: 0.25rem;
}

.policy-toggle-arrow {
  font-size: 1rem;
  color: var(--clr-brand-light);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.policy-toggle-btn.open .policy-toggle-arrow { transform: rotate(180deg); }

/* ── Policy section body ────────────────────────────────────── */
.policy-section {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-top: none;
  border-bottom-left-radius: var(--r-xl);
  border-bottom-right-radius: var(--r-xl);
  padding: 0 3rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.policy-section.open {
  max-height: 9999px;
  padding: 2.5rem 3rem 3rem;
}

.policy-section h2 {
  font-family: var(--ff-head);
  font-size: 1.75rem;
  color: var(--clr-white);
  margin: 2rem 0 1rem;
}

.policy-section h2:first-of-type { margin-top: 0; }

.policy-section h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  color: var(--clr-brand-light);
  margin: 1.5rem 0 0.75rem;
}

.policy-section p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.5rem;
}

.policy-list li {
  color: var(--clr-text-muted);
  padding: 0.45rem 0 0.45rem 1.75rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.7;
}

.policy-list li::before {
  content: '•';
  position: absolute;
  left: 0.4rem;
  color: var(--clr-brand-light);
  font-size: 1.1rem;
  line-height: 1.5;
}

.policy-note {
  background: rgba(125, 207, 255, 0.05);
  border: 1px solid rgba(125, 207, 255, 0.18);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
}

.policy-note p { margin-bottom: 0; }

.contact-block {
  background: var(--clr-surface-2);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1.5rem;
  text-align: center;
}

.contact-block-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.contact-block-item .cb-icon         { font-size: 1.8rem; }
.contact-block-item a                 { color: var(--clr-brand-light); font-weight: 600; font-size: 0.95rem; }
.contact-block-item a:hover           { text-decoration: underline; }

.agreement-banner {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-brand-mid);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin: 2rem 0 0;
  text-align: center;
}

.agreement-banner p { color: var(--clr-text); font-size: 1rem; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-section { padding: 50px 0; }

.faq-section h2 {
  font-family: var(--ff-head);
  text-align: center;
  margin-bottom: 2rem;
  color: var(--clr-white);
}

.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: rgba(86, 174, 255, 0.4);
  box-shadow: 0 4px 20px rgba(86, 174, 255, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 18px 22px;
  color: var(--clr-brand-light);
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
}

.faq-arrow {
  display: inline-block;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-arrow    { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 16px 22px 18px;
  border-top: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  line-height: 1.75;
  font-size: 0.93rem;
}

.faq-item.active .faq-answer   { display: block; }

/* ── Related service tags ───────────────────────────────────── */
.related-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.related-tag {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid var(--clr-brand-mid);
  border-radius: var(--r-full);
  color: var(--clr-brand-light);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.related-tag:hover { background: rgba(86, 174, 255, 0.12); }

/* ── Contact CTA section (EPF.html standalone section) ─────── */
.contact-cta {
  text-align: center;
  padding: 4rem 0;
  width: 100%;
}

.contact-cta h3 {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.75rem;
}

.contact-cta .section-sub {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}

/* ── Contact CTA boxed card (EPF sub-pages) ─────────────────── */
.contact-cta-box {
  text-align: center;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 4rem 2.5rem;
  margin: 4rem 0 5rem;
  box-shadow: var(--shadow-card);
}

.contact-cta-box h3 {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.75rem;
}

/* Shared CTA row — used by both .contact-cta and .contact-cta-box */
.cta-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* .icon used in EPF.html; .cta-icon used in sub-pages */
.cta-contact-item .icon,
.cta-icon {
  font-size: 1.6rem;
  line-height: 1;
  display: inline-block;
}

.cta-contact-item .whatsapp-icon,
.whatsapp-icon {
  color: #25D366;
  font-size: 1.8rem;
}

.cta-contact-item a {
  color: var(--clr-brand-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color var(--transition);
}

.cta-contact-item a:hover { text-decoration: underline; }

/* .cta-sub used in sub-page boxed card */
.cta-sub {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  margin: 0.5rem auto 0;
}

/* EPF.html uses margin: 3rem; sub-pages use 2.5rem — EPF.html wins */
.cta-button-wrapper { margin: 3rem 0 1rem; }

.response-note-wrapper { margin-top: 2.5rem; }

/* Merged from both files — all properties combined */
.response-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin: 0;
}

.check-icon { font-size: 1.2rem; display: inline-block; }

/* ── Contact form (main site) ───────────────────────────────── */
.contact {
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--g-accent);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-desc {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cd-icon {
  width: 46px; height: 46px;
  background: rgba(86, 174, 255, 0.12);
  border: 1px solid rgba(86, 174, 255, 0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail > div { display: flex; flex-direction: column; gap: 2px; }

.contact-detail strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-text-muted);
}

.contact-detail a,
.contact-detail span {
  font-size: 0.95rem;
  color: var(--clr-white);
  font-weight: 500;
}

.contact-detail a:hover { color: var(--clr-brand-light); }

.contact-form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 0.8rem 1rem;
  color: var(--clr-white);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238891B5' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option { background: var(--clr-surface); }

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136, 145, 181, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-brand-mid);
  box-shadow: 0 0 0 3px rgba(86, 174, 255, 0.15);
}

.form-success {
  display: none;
  font-size: 0.9rem;
  color: #4ade80;
  text-align: center;
  padding: 1rem;
  background: rgba(74, 222, 128, 0.08);
  border-radius: var(--r-md);
  margin-top: 0.75rem;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.form-error {
  display: none;
  font-size: 0.88rem;
  color: #f87171;
  text-align: center;
  padding: 1rem;
  background: rgba(248, 113, 113, 0.08);
  border-radius: var(--r-md);
  margin-top: 0.75rem;
  border: 1px solid rgba(248, 113, 113, 0.2);
}


/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ─ Hero, Services, About, Process, Locations,
     Testimonials, Founder, EPF step grid
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--g-hero);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.shape-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--clr-brand-deep), transparent); top: -150px;  left: -150px; }
.shape-2 { width: 500px; height: 500px; background: radial-gradient(circle, var(--clr-brand-mid),  transparent); bottom: -100px; right: -100px; opacity: 0.2; }
.shape-3 { width: 300px; height: 300px; background: radial-gradient(circle, var(--clr-brand-light),transparent); top: 40%;     left: 50%;    opacity: 0.1; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 0.7s 0.4s ease both;
}

.stat          { display: flex; flex-direction: column; }
.stat-number   { font-family: var(--ff-head); font-size: 1.8rem; font-weight: 800; color: var(--clr-white); line-height: 1; }
.stat-label    { font-size: 0.78rem; color: var(--clr-text-muted); margin-top: 0.25rem; }
.stat-divider  { width: 1px; height: 40px; background: var(--clr-border); }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  animation: fadeIn 1s 0.5s ease both;
}

.hero-globe {
  position: relative;
  width: 260px; height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  animation: spin linear infinite;
}

.ring-1 { width: 100%;  height: 100%;  border-color: rgba(86, 174, 255, 0.3);  animation-duration: 12s; }
.ring-2 { width: 130%;  height: 130%;  top: -15%;  left: -15%;  border-color: rgba(125, 207, 255, 0.15); border-style: dashed; animation-duration: 20s; animation-direction: reverse; }
.ring-3 { width: 160%;  height: 160%;  top: -30%;  left: -30%;  border-color: rgba(86, 174, 255, 0.08); animation-duration: 30s; }

.globe-core {
  width: 120px; height: 120px;
  background: var(--clr-surface);
  border-radius: 50%;
  border: 2px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  z-index: 2;
  overflow: hidden;
  position: relative;
}

.globe-logo  { width: 80px; height: 80px; object-fit: contain; }

.globe-dot {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--clr-bg);
  z-index: 3;
  animation: pulse-dot 2s ease-in-out infinite;
}

.dot-uk    { top: 12%;   left: 38%;  background: #7dcfff; animation-delay: 0s; }
.dot-india { bottom: 18%; right: 25%; background: #FF6B35; animation-delay: 1s; }

.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(20, 27, 45, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 0.85rem 1.2rem;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  z-index: 10;
}

.hero-card:nth-child(1) { top: 8%;     right: 5%; }
.hero-card:nth-child(2) { bottom: 20%; left: -5%; }
.hero-card:nth-child(3) { bottom: 5%;  right: 8%; }

.hcard-icon  { font-size: 1.6rem; }
.hcard-title { font-size: 0.88rem; font-weight: 700; color: var(--clr-white); }
.hcard-sub   { font-size: 0.73rem; color: var(--clr-text-muted); margin-top: 1px; }

/* ── Services ───────────────────────────────────────────────── */
.services { background: var(--clr-bg-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* EPF sub-page grid: larger gap + bottom margin */
main.page-main .services-grid { gap: 24px; margin-bottom: 1rem; }

/* EPF.html services section: explicitly 3-col */
#epfsupport .services-grid { grid-template-columns: repeat(3, 1fr); }

.service-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

/* EPF pages: flex column to anchor "Learn More" at bottom */
main.page-main .service-card {
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-accent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(86, 174, 255, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.service-card:hover::before { opacity: 1; }

/* Main-site icon (with border) */
.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(86, 174, 255, 0.12);
  border: 1px solid rgba(86, 174, 255, 0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap { background: rgba(86, 174, 255, 0.2); transform: scale(1.05); }

/* Sub-page icon (no border) */
.service-icon-box {
  width: 56px; height: 56px;
  background: rgba(86, 174, 255, 0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-card h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.65rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

main.page-main .service-card p { flex-grow: 1; margin-bottom: 0; font-size: 0.93rem; }

.service-features {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-features li {
  font-size: 0.83rem;
  color: var(--clr-text-muted);
  padding-left: 1rem;
  position: relative;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--clr-brand-light);
  font-size: 0.75rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-brand-light);
  margin-top: 1rem;
  transition: var(--transition);
}

.service-link:hover { gap: 0.65rem; }

#epfsupport .service-card p,
#services .service-card p { text-align: justify; }

/* ── About ──────────────────────────────────────────────────── */
.about { background: var(--clr-bg); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; padding: 2rem 2rem 4rem; }

.about-card-main {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.about-logo    { width: 110px; margin: 0 auto 1rem; border-radius: var(--r-md); }
.about-brand   { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 800; color: var(--clr-white); margin-bottom: 0.35rem; }
.about-tagline { font-size: 0.85rem; color: var(--clr-text-muted); }

.about-badge-1,
.about-badge-2 {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(20, 27, 45, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 0.85rem 1.2rem;
  box-shadow: var(--shadow-card);
}

.about-badge-1 { bottom: 1rem; left: -1rem; }
.about-badge-2 { top: 1rem;    right: -1rem; }

.ab-icon   { font-size: 1.8rem; }
.ab-text   { display: flex; flex-direction: column; }
.ab-text strong { font-size: 0.85rem; font-weight: 700; color: var(--clr-white); }
.ab-text span   { font-size: 0.75rem; color: var(--clr-text-muted); }

.about-desc {
  color: var(--clr-text-muted);
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.about-pillars { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }

.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  transition: var(--transition);
}

.pillar:hover { border-color: rgba(86, 174, 255, 0.4); background: var(--clr-surface-2); }

.pillar-icon    { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pillar strong  { display: block; font-size: 0.95rem; font-weight: 700; color: var(--clr-white); margin-bottom: 0.3rem; }
.pillar p       { font-size: 0.85rem; color: var(--clr-text-muted); line-height: 1.6; margin: 0; }

/* ── Process (main-site flex row with arrows) ───────────────── */
.process {
  background: var(--clr-bg-2);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(86, 174, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.process-steps { display: flex; align-items: center; gap: 0.5rem; }

.process-step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  position: relative;
  transition: var(--transition);
}

.process-step:hover { border-color: rgba(86, 174, 255, 0.4); transform: translateY(-4px); box-shadow: var(--shadow-glow); }

/* Main-site step number: ghost watermark positioned top-right */
.step-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--ff-head);
  color: rgba(86, 174, 255, 0.12);
  letter-spacing: -0.05em;
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.step-icon     { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.process-step h3 { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; color: var(--clr-white); margin-bottom: 0.65rem; }
.process-step p  { font-size: 0.88rem; color: var(--clr-text-muted); line-height: 1.65; text-align: justify; }
.process-arrow   { color: rgba(86, 174, 255, 0.4); font-size: 1.5rem; flex-shrink: 0; }

/* EPF sub-page step grid (4-col) — overrides flex above */
main.page-main .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 0 2rem;
  align-items: unset;
}

.step {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
}

/* EPF sub-page step number: filled circle badge */
main.page-main .step-number {
  width: 48px; height: 48px;
  background: var(--g-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  position: static;
  top: unset;
  right: unset;
  letter-spacing: normal;
  line-height: unset;
}

.step h4 { font-family: var(--ff-head); color: var(--clr-white); margin-bottom: 0.5rem; }
.step p  { color: var(--clr-text-muted); font-size: 0.9rem; }

/* ── Locations ──────────────────────────────────────────────── */
.locations { background: var(--clr-bg); }

.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.location-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  transition: var(--transition);
}

.location-card.primary-loc {
  border-color: rgba(86, 174, 255, 0.35);
  background: var(--clr-surface-2);
  position: relative;
  overflow: hidden;
}

.location-card.primary-loc::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 174, 255, 0.12), transparent);
}

.location-card:hover { border-color: rgba(86, 174, 255, 0.45); transform: translateY(-4px); box-shadow: var(--shadow-glow); }

.loc-flag { font-size: 3rem; margin-bottom: 1rem; }

.location-card h3 { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 800; color: var(--clr-white); margin-bottom: 0.4rem; }

.loc-label { font-size: 0.82rem; font-weight: 600; color: var(--clr-brand-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }

.location-card p { color: var(--clr-text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.25rem; text-align: justify; }

.loc-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }

.loc-tags span {
  font-size: 0.78rem; font-weight: 600;
  color: var(--clr-brand-mid);
  background: rgba(86, 174, 255, 0.1);
  border: 1px solid rgba(86, 174, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
}

.loc-services { display: flex; flex-direction: column; gap: 0.5rem; }

.ls-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--clr-text-muted); }
.ls-item span { color: var(--clr-brand-light); font-weight: 700; font-size: 0.9rem; }

/* ── Testimonials ───────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS — COMPLETE CSS
   Replace your entire old testimonials CSS block with this.
   This covers BOTH the #why-fogs cards AND the #testimonials
   Google Reviews section.
   ══════════════════════════════════════════════════════════════ */


/* ── Shared section background ── */
.testimonials { background: var(--clr-bg-2); }


/* ════════════════════════════════════════════════════════════
   PART 1 — #why-fogs manual testimonial cards (keep as-is)
   ════════════════════════════════════════════════════════════ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}

.testimonial-card.highlight {
  background: linear-gradient(135deg, rgba(58, 12, 163, 0.25), rgba(86, 174, 255, 0.15));
  border-color: rgba(86, 174, 255, 0.4);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.stars {
  font-size: 1rem;
  letter-spacing: 2px;
  color: #F5C518;
}

.testimonial-card p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--clr-text-muted);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--clr-border);
  padding-top: 1rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--g-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-white);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}


/* ════════════════════════════════════════════════════════════
   PART 2 — #testimonials Google Reviews section (new)
   ════════════════════════════════════════════════════════════ */

/* Force center alignment inside this section's container */
.testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Scroll offset so navbar doesn't hide the section top */
#testimonials {
  scroll-margin-top: 40px;
}

/* ── Centered heading block ── */
.rv-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  margin-bottom: 2.5rem;
  width: 100%;
}

.rv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-brand-light);
  background: rgba(86, 174, 255, 0.1);
  border: 1px solid rgba(86, 174, 255, 0.2);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.rv-title {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.rv-sub {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

/* ── Inline score ── */
.rv-score-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 1.1rem;
}

.rv-score-num {
  font-family: var(--ff-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
}

.rv-score-stars {
  font-size: 1.1rem;
  color: #F5C518;
  letter-spacing: 4px;
}

.rv-score-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--clr-text-muted);
  margin-top: 2px;
}

/* ── Leave a review link ── */
.rv-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-brand-mid, #6080F5);
  background: rgba(86, 174, 255, 0.1);
  border: 1px solid rgba(86, 174, 255, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.rv-cta:hover {
  background: rgba(86, 174, 255, 0.2);
  border-color: rgba(86, 174, 255, 0.4);
  color: var(--clr-brand-light);
}

/* ── Widget card — constrained & centered ── */
.rv-widget-card {
  background: var(--clr-surface);
  border: 1px solid rgba(86, 174, 255, 0.35);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}

.rv-widget-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 174, 255, 0.1), transparent);
  pointer-events: none;
}

.rv-widget-card:hover {
  border-color: rgba(86, 174, 255, 0.5);
  box-shadow: var(--shadow-glow);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .rv-score-num {
    font-size: 2rem;
  }

  .rv-widget-card {
    padding: 1.25rem;
  }
}
/* ── Founder / misc ─────────────────────────────────────────── */
.founder-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; }

.founder-img {
  width: 100%;
  max-width: 380px;
  height: auto; /* ✅ FIX */
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.founder-name    { font-size: 1.5rem; font-weight: 700; margin-top: 1rem; }
.founder-role    { font-size: 0.95rem; color: var(--clr-text-muted); margin-bottom: 1rem; }
.founder-desc,
.founder-content { line-height: 1.8; text-align: justify; color: var(--clr-text-muted); }

.mv-block { margin-bottom: 60px; }


/* ═══════════════════════════════════════════════════════════════
   NAVBAR  ← preserved exactly from style.css
   ═══════════════════════════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--clr-border);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
  border-radius: var(--r-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-full);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  margin-left: 0.5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--transition);
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER  ← preserved exactly from style.css
   ═══════════════════════════════════════════════════════════════ */

.footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
}

.footer-logo {
  height: 70px;
  width: auto;
  border-radius: var(--r-sm);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--clr-brand-mid);
  border-color: var(--clr-brand-mid);
  color: white;
  transform: translateY(-2px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col h4 {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  padding: 0.3rem 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--clr-brand-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-inner span {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--clr-brand-light); }


/* ═══════════════════════════════════════════════════════════════
   UTILITIES
   ─ Animation classes, scroll reveal, Elfsight, a11y
   ═══════════════════════════════════════════════════════════════ */

/* Animation helpers */
.card-float { animation: floatY 3.5s ease-in-out infinite; }
.floating   { animation: floatY 4s   ease-in-out infinite; }
.delay-1    { animation-delay: 1.2s; }
.delay-2    { animation-delay: 2.4s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* Accessibility — screen-reader only */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Elfsight chat widget */
.elfsight-app-0a733c87-b25f-4065-880a-9cc2098206b7 {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 9999 !important;
}

/* Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0   rgba(125, 207, 255, 0.6); }
  50%       { box-shadow: 0 0 0 8px rgba(125, 207, 255, 0); }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ─ All media queries in descending breakpoint order
   ═══════════════════════════════════════════════════════════════ */

/* ── 1024px — Tablet ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Services grids → 2-col */
  .services-grid,
  #epfsupport .services-grid,
  #services .services-grid      { grid-template-columns: repeat(2, 1fr) !important; }

  /* Testimonials → 2-col (too cramped at 4-col on tablet) */
  .testimonials-grid            { grid-template-columns: repeat(2, 1fr); }

  /* Hero stacks to single column */
  .hero-inner                   { grid-template-columns: 1fr; text-align: center; }
  .hero-sub                     { margin: 0 auto 2rem; max-width: 600px; }
  .hero-actions                 { justify-content: center; }
  .hero-stats                   { justify-content: center; }
  .hero-visual                  { display: none; }
  .hero-inner                   { gap: 2.5rem; }

  /* About stacks */
  .about-inner                  { grid-template-columns: 1fr; gap: 3rem; }
  .about-left                   { display: none; }
  /* Hide floating badges on tablet — they bleed off a stacked layout */
  .about-badge-1,
  .about-badge-2                { display: none; }

  .section-title.tl             { text-align: center; }

  /* Contact form stacks */
  .contact-inner                { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer → 2-col */
  .footer-inner                 { grid-template-columns: 1fr 1fr; }
}

/* ── 900px — Founder section ─────────────────────────────────── */
@media (max-width: 900px) {
  .founder-inner { grid-template-columns: 1fr; text-align: center; }
  .founder-img   { margin: 0 auto; }
}

/* ── 768px — Mobile ──────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Container — tighter side padding on narrow screens */
  .container                    { padding: 0 1.25rem; }

  /* ── Navbar ── */

  /* Logo: 72px (1.5× the previous 48px) */
  .logo-img                     { height: 72px; }

  /* Navbar padding — 0.6rem top/bottom + 72px logo ≈ 84px total navbar height */
  .navbar                       { padding: 0.6rem 0; }

  /* Nav row: logo on left, hamburger on right */
  .nav-inner                    { gap: 1rem; justify-content: space-between; }

  /* Hide links and Call Now button */
  .nav-links,
  .nav-cta                      { display: none; }

  /* Show hamburger — larger touch target (min 44×44px) */
  .hamburger {
    display: flex;
    padding: 4px;
    min-width: 28px;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }

  /* Animate hamburger → X when active */
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Dropdown — positioned below ~84px navbar */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    padding: 1.25rem 1.5rem;
    gap: 0.5rem;
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  }

  .nav-links.open a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: var(--r-md);
    border: 1px solid var(--clr-border);
    text-align: center;
    color: var(--clr-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
  }

  .nav-links.open a:hover,
  .nav-links.open a:active      { background: rgba(86, 174, 255, 0.15); border-color: var(--clr-brand-mid); color: var(--clr-white); }

  /* ── Page padding — clears ~84px mobile navbar ── */
  .page-main                    { padding-top: 100px; padding-bottom: 40px; }
  main.page-main                { padding-top: 84px; padding-bottom: 16px; }
  .hero                         { padding-top: 84px; min-height: auto; padding-bottom: 3rem; }
  .hero-inner                   { gap: 2rem; padding-top: 2rem; padding-bottom: 2rem; }
  .hero-sub                     { max-width: 100%; }

  /* ── Typography scaling ── */
  .hero-title                   { font-size: clamp(1.7rem, 5vw, 2.2rem); }
  .section-title                { font-size: 1.7rem; }
  .section-title-sm             { font-size: 1.25rem; margin: 2rem 0 1.25rem; }
  .section-sub                  { font-size: 0.95rem; }
  .contact-cta h3,
  .contact-cta-box h3           { font-size: 1.6rem; }
  .package-name                 { font-size: 1.5rem; }
  .package-price                { font-size: 2rem; }

  /* ── Service grids ── */
  .services-grid,
  #epfsupport .services-grid,
  #services .services-grid      { grid-template-columns: 1fr !important; }
  .service-card .btn            { display: block; width: 100%; text-align: center; margin-top: 1rem; }

  /* ── Other grids ── */
  .locations-grid               { grid-template-columns: 1fr; }
  .testimonials-grid            { grid-template-columns: 1fr; }
  .pricing-grid                 { grid-template-columns: 1fr; }
  .form-row                     { grid-template-columns: 1fr; }

  /* ── Process steps ── */
  /* Main-site flex row → vertical */
  .process-steps                { flex-direction: column; }
  .process-arrow                { transform: rotate(90deg); font-size: 1.2rem; }
  /* EPF sub-page 4-col grid → 2-col */
  main.page-main .process-steps {
    grid-template-columns: 1fr 1fr;
    flex-direction: unset;
  }

  /* ── Section intro ── */
  .section-intro                { padding: 2rem 0 1.5rem; }

  /* ── Footer ── */
  .footer-inner                 { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner          { flex-direction: column; text-align: center; }
  .footer-legal                 { justify-content: center; }

  /* ── CTA sections ── */
  .cta-contact-row              { flex-direction: column; gap: 1.25rem; }
  .cta-contact-item             { width: 100%; justify-content: center; }
  .contact-cta                  { padding: 3rem 0; }
  .contact-cta-box              { padding: 2.5rem 1.5rem; margin: 3rem 0 4rem; }
  .response-note-wrapper        { margin-top: 2rem; }

  /* ── Policy toggle ── */
  .policy-toggle-btn            { padding: 1.2rem 1.25rem; }
  .policy-toggle-label .text    { font-size: 1rem; }
  .policy-toggle-label .sub     { display: none; }
  .policy-section.open          { padding: 2rem 1.5rem 2.5rem; }
}

/* ── 480px — Small mobile ────────────────────────────────────── */
@media (max-width: 480px) {
  /* Container — minimal side padding */
  .container                    { padding: 0 1rem; }

  /* ── Typography ── */
  .hero-title                   { font-size: 1.7rem; }
  .section-title                { font-size: 1.5rem; }
  .section-title-sm             { font-size: 1.15rem; }
  .section-intro h2             { font-size: 1.35rem; }
  .contact-cta h3,
  .contact-cta-box h3           { font-size: 1.4rem; }
  .package-name                 { font-size: 1.35rem; }
  .package-price                { font-size: 1.75rem; }

  /* ── Grids ── */
  .services-grid                { gap: 14px; }
  .footer-inner                 { grid-template-columns: 1fr; }

  /* ── Cards ── */
  .service-card                 { padding: 1.25rem; }
  .pricing-card                 { padding: 2rem 1.25rem; }
  .contact-form                 { padding: 1.5rem; }

  /* ── Hero ── */
  .hero-stats                   { flex-direction: column; gap: 1rem; }
  .stat-divider                 { width: 60px; height: 1px; }

  /* ── EPF sub-page steps → single column ── */
  main.page-main .process-steps { grid-template-columns: 1fr; }

  /* ── Section intro ── */
  .section-intro                { padding: 1.5rem 0 1rem; }

  /* ── CTA ── */
  .contact-cta-box              { padding: 2rem 1.25rem; margin: 2rem 0 3rem; }
  .cta-contact-row              { flex-direction: column; align-items: center; }
  .cta-button-wrapper           { margin: 2rem 0 0.5rem; }
  .response-note-wrapper        { margin-top: 1.75rem; }

  /* ── Policy content ── */
  .contact-block                { flex-direction: column; align-items: center; }
  .policy-section.open          { padding: 1.5rem 1.25rem 2rem; }
}
.section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

#services .section-sub {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .section-sub {
    max-width: 100%;
  }
}