/* =========================
   ROOT VARIABLES
========================= */
:root {
  --baby-blue: #EAF4FF;
  --soft-blue: #D9ECFF;
  --dark-blue: #0B3C5D;
  --accent-blue: #2563EB;
  --text-dark: #0F172A;
  --white: #FFFFFF;
}

/* =========================
   GLOBAL BASE
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: var(--baby-blue);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

section {
  scroll-margin-top: 110px;
}

/* =========================
   ANNOUNCEMENT BAR (TICKER)
========================= */

.announcement-bar {
  background: #0b3c5d;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-track {
  display: flex;
  width: max-content;
  animation: ticker 18s linear infinite;
}

.announcement-track span {
  padding: 10px 40px;
  font-size: 0.9rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #eaf4ff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.brand-logo-svg svg {
  height: 44px;
  display: block;
}

/* NAV DESKTOP */

.main-nav {
  display: flex;
  gap: 6px;
}

.main-nav a {
  text-decoration: none;
  color: #0b3c5d;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
}

.main-nav a:hover {
  background: rgba(11, 60, 93, 0.1);
}

.nav-cta {
  background: #2d5bff;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
}

/* =========================
   HAMBURGER
========================= */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #0b3c5d;
}

/* =========================
   MOBILE HEADER
========================= */
@media (max-width: 900px) {

  /* Mobile header layout */
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center; /* 🔑 vertical alignment */
    height: 64px;        /* 🔑 fixed header height */
  }

  /* Hamburger */
  .menu-toggle {
    display: flex;
    align-items: center;     /* 🔑 aligns spans */
    justify-content: center;
    height: 44px;
    width: 44px;
    padding: 0;
    margin: 0;
    z-index: 1100;
  }

  /* Logo centered */
  .brand-logo-svg {
    justify-self: center;
    display: flex;
    align-items: center;     /* 🔑 same vertical center as hamburger */
    height: 44px;
  }

  .brand-logo-svg svg {
    height: 38px;
    display: block;
  }

  /* Mobile nav dropdown */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    background: #eaf4ff;
    padding: 18px;
    gap: 10px;
    z-index: 1200;
  }

  .main-nav.active {
    display: flex;
  }
}

/* =========================
   HERO SECTION (FINAL – FIXED)
========================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;              /* ✅ Full desktop height */
  overflow: hidden;
  background: #000;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* ✅ Correct video scaling */
}

/* Overlay */
.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;               /* ✅ Match hero height */
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 1.3rem;
  max-width: 500px;
}

/* =========================
   MOBILE HERO FIX (SAFE)
========================= */

@media (max-width: 768px) {
  .hero {
    height: 60vh;             /* ✅ Mobile-friendly height */
  }

  .hero-overlay {
    height: 100%;
    padding: 0 20px;
    align-items: center;
    text-align: center;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
}

/* =========================
   SERVICE SECTIONS (EDITORIAL)
========================= */
.service-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 100px 10%;
  align-items: center;
}

.baby-blue {
  background: var(--baby-blue);
}

.soft-blue {
  background: var(--soft-blue);
}

.service-icon {
  width: 52px;
  margin-bottom: 16px;
}

.service-content h2 {
  font-size: 2.3rem;
  color: var(--dark-blue);
  margin-bottom: 14px;
}

.service-content p {
  margin-bottom: 18px;
  font-size: 1rem;
}

.service-content ul {
  padding-left: 20px;
  margin-bottom: 18px;
}

.service-content li {
  margin-bottom: 8px;
}

.service-outcome {
  font-weight: 600;
}

/* =========================
   VISUAL / ANIMATION PLACEHOLDER
========================= */
.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-placeholder {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0B3C5D, #2563EB);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
}

/* =========================
   PORTFOLIO
========================= */
.portfolio-section {
  padding: 100px 10%;
}

.portfolio-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =========================
   PROCESS
========================= */
.process-section {
  padding: 100px 10%;
}

.process-section h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.process-section ol {
  padding-left: 20px;
}

.process-section li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* =========================
   CONTACT
========================= */
.contact-section {
  padding: 100px 10%;
}

.contact-section h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.contact-section form {
  max-width: 500px;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-section button {
  padding: 12px 20px;
  background: var(--accent-blue);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: var(--dark-blue);
  color: white;
  text-align: center;
  padding: 24px;
}

.site-footer a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #b5b5b5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links span {
  color: #555;
}


/* =========================
   SCROLL REVEAL ANIMATIONS
========================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* =========================
   RESPONSIVE — TABLET & MOBILE
========================= */
@media (max-width: 1024px) {

  /* Header spacing */
  .header-inner {
    padding: 16px 6%;
  }

  /* Hero text scale */
  .hero-overlay h1 {
    font-size: 2.4rem;
  }

  .hero-overlay p {
    font-size: 1.1rem;
  }

  /* Service sections stack */
  .service-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 6%;
  }

  /* Center visuals on mobile */
  .service-visual {
    order: -1;
  }

  .visual-placeholder {
    height: 260px;
  }

  /* Portfolio grid */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   RESPONSIVE — SMALL MOBILE
========================= */
@media (max-width: 600px) {

  /* Header */
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .main-nav a {
    margin-left: 0;
    font-size: 0.9rem;
  }

  /* Hero */
  .hero-overlay {
    padding: 0 6%;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }

  /* Sections */
  .service-content h2 {
    font-size: 1.8rem;
  }

  .service-content p,
  .service-content li {
    font-size: 0.95rem;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-section {
    padding: 80px 6%;
  }

  /* Footer */
  .site-footer {
    font-size: 0.9rem;
  }
}
/* =========================
   MOBILE NAV TOGGLE
========================= */

/* Hamburger button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #0a2540;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #e6f2ff;
    display: none;
    flex-direction: column;
    padding: 20px 6%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }

  .main-nav a {
    padding: 12px 0;
    font-size: 1rem;
  }

  .main-nav.active {
    display: flex;
  }

  /* Animate hamburger to X */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
/* =========================
   PORTFOLIO SECTION
========================= */

.portfolio-section {
  padding: 120px 8%;
  background: #eaf4ff;
}
.portfolio-section h2 {
  margin-left: 0;
}

.portfolio-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.6rem;
  color: #0a2540;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: #425466;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Cards */
.portfolio-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.portfolio-info {
  padding: 20px;
}

.portfolio-info h3 {
  font-size: 1.3rem;
  color: #0a2540;
  margin-bottom: 8px;
}

.portfolio-info p {
  font-size: 0.95rem;
  color: #425466;
  margin-bottom: 12px;
}

.portfolio-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0a2540;
  background: #d6eaff;
  padding: 6px 12px;
  border-radius: 20px;
}

/* Hover effect */
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}
/* =========================
   BRAND LOGO (SVG)
========================= */
.brand-logo-svg {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}

.brand-logo-svg svg {
  height: 40px;   /* controls logo height */
  width: auto;
}

/* Hover polish */
.brand-logo-svg:hover text:first-of-type {
  fill: #0b5cff;
}
/* =========================
   LOTTIE ANIMATION REFINEMENTS
   ========================= */
/* Lock animation size */
.service-visual lottie-player {
  width: 100%;
  max-width: 420px;
  height: 260px;
}

/* Center animation perfectly */
.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reveal animation polish */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile safety */
@media (max-width: 768px) {
  .service-visual lottie-player {
    max-width: 100%;
    height: 220px;
  }
}
/* Align service animations with text */
.service-visual {
  display: flex;
  align-items: flex-start;   /* stop vertical centering */
  padding-top: 40px;         /* adjust this value */
}

/* Ensure lottie stays responsive */
.service-visual lottie-player {
  max-width: 420px;
  width: 100%;
  height: auto;
}
/* Lottie Animation Refinements */
.service-visual lottie-player {
  transform: translateY(5px); /* ~1mm lower */
}
/* ===== Portfolio Grid ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* ===== Card ===== */
.portfolio-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

/* Make whole card clickable */
.portfolio-item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
}

/* ===== Tag Pill ===== */
.portfolio-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #2563eb;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===== Image ===== */
.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin: 32px 0 20px;
}

/* ===== Content ===== */
.portfolio-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  min-height: 56px;
}

.portfolio-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  flex-grow: 1;
}

/* SECTION */
.how-it-works-section {
  padding-bottom: 120px;
  background: #eef6ff;
  overflow: hidden;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 60px;
  color: #0a2540;
}

/* VIEWPORT */
.how-it-works-wrapper {
  overflow: hidden;
  padding: 40px 8vw;
  background: transparent; /* ✅ FIX */
}

/* SLIDING TRACK */
.how-it-works-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: slideSteps 35s linear infinite;
  background: transparent; /* ✅ SAFETY */
}

/* CARD */
.step-card {
  width: 320px;
  min-height: 420px;
  padding: 48px 28px 32px;
  border-radius: 20px;
  background: #ffffff; /* ✅ correct */
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  position: relative;
  flex-shrink: 0;
}

/* NUMBER BADGE */
.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37,99,235,0.35);
}

/* LIST */
.step-card ul {
  padding-left: 18px;
  margin-top: 16px;
}

.step-card li {
  margin-bottom: 8px;
  color: #425466;
}

/* ANIMATION */
@keyframes slideSteps {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



/* --- Improvement 3: Number Pulse --- */
.how-it-works .step::before {
  transition: box-shadow 0.25s ease;
}

.how-it-works .step:hover::before {
  box-shadow:
    0 8px 20px rgba(11, 92, 255, 0.25),
    0 0 0 10px rgba(11, 92, 255, 0.18);
}
.process-section h2 {
  text-align: center;
}
.site-footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #0b3556;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

section {
  flex-shrink: 0;
}

.site-footer {
  margin-top: auto;
}
#contact {
  margin-bottom: 0;
  padding-bottom: 2rem; /* optional */
}
.site-footer {
  padding: 3rem 1rem;
  text-align: center;
  color: #ffffff;
}

.site-footer p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
}

.social-links a:hover {
  opacity: 1;
}
/* =========================
   FAQ SECTION (DETAILS)
========================= */
.faq-section {
  padding: 120px 0 100px;
  background: #eef6ff;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

/* FAQ list container */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ card */
.faq-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

/* Remove default arrow */
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: #0a2540;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Chrome / Safari fix */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Plus / minus icon */
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
  transition: transform 0.3s ease;
}

/* Open state */
.faq-item[open] summary::after {
  content: "–";
}

/* Answer text */
.faq-item p {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #425466;
}

.testimonials {
  padding: 90px 20px;
  background: #eaf4ff;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: slideTestimonials 20s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  background: #ffffff;
  width: 320px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.stars {
  color: #fbbf24;
  font-size: 15px;
}

.score {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.testimonial-text {
  font-style: italic;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 700;
  color: #0a2540;
}

.testimonial-role {
  font-size: 14px;
  color: #64748b;
}

/* ===== SHOPIFY TRUST STRIP ===== */
.shopify-trust {
  margin-top: 3.5rem;
  text-align: center;
}

.trust-label {
  display: block;
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 0.8rem;
  letter-spacing: 0.3px;
}

/* Logo container */
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 🔑 THIS CONTROLS THE SVG SIZE */
.trust-logos img {
  max-width: 150px;
  background: transparent;
  mix-blend-mode: multiply;
  opacity: 0.9;
}


/* Subtle, professional interaction */
.trust-logos img:hover {
  transform: scale(1.05);
  opacity: 1;
}



@keyframes floatShopify {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes slideTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================
   WHATSAPP FLOATING BUTTON
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 9999;
}

.whatsapp-float img {
  width: 30px;
}
/* =========================
   CONTACT FORM
========================= */
.contact-section {
  padding: 100px 20px;
  background: #eef6ff;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
}

.contact-form button {
  background: #2563eb;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #1e40af;
}
/* ===== GLOBAL LAYOUT FIX ===== */
main {
  width: 100%;
  overflow-x: hidden;
}

section {
  width: 100%;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--soft-blue);
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.5rem 1.2rem;
  color: #555;
  line-height: 1.6;
}
/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--soft-blue);
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.5rem 1.2rem;
  color: #555;
  line-height: 1.6;
}
/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 120px 0 120px;
  background: var(--baby-blue);
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Form */
.contact-form {
  margin-top: 48px;
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Inputs */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Focus state */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Textarea */
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Button */
.contact-form button {
  margin-top: 8px;
  padding: 0.9rem;
  border-radius: 14px;
  font-weight: 600;
  background: #2563eb;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-form button:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

/* Small trust note */
.form-note {
  font-size: 0.85rem;
  color: #475569;
  margin-top: 4px;
}

/* Success message */
.success-message {
  display: none;
  margin-top: 12px;
  color: #0b5cff;
  font-weight: 600;
}

/* Honeypot hidden safely */
.hp-field {
  display: none;
}

/* ==========================
   TESTIMONIALS SLIDER
========================== */

.testimonials-section {
  overflow: hidden;
}

.testimonials-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: slideTestimonials 25s linear infinite;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  width: 340px;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.stars {
  color: #f5b301;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Animation */
@keyframes slideTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.testimonials-wrapper:hover .testimonials-track {
  animation-play-state: paused;
}
/* ============================= */
/* PREMIUM TESTIMONIALS */
/* ============================= */

.testimonials-section {
  padding: 5rem 1.5rem;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -18px;
  left: 20px;
  font-size: 4.5rem;
  color: rgba(11, 92, 255, 0.15);
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.2rem;
}

.stars {
  color: #f5b301;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
  color: #0b5cff;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #666;
}
/* ============================= */
/* PREMIUM FAQ */
/* ============================= */

.faq-section {
  padding: 5rem 1.5rem;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item[open] {
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.6rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #0b5cff;
  border-bottom: 2px solid #0b5cff;
  transform: rotate(45deg);
  transition: transform 0.35s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(-135deg);
}

.faq-content {
  padding: 0 1.8rem 1.6rem;
  animation: faqFade 0.4s ease;
}

.faq-content p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
   Footer Legal (CIPC Info)
   ========================= */

.footer-legal {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #9fb3c8; /* softer than main text */
  line-height: 1.6;
  text-align: center;
}

/* Mobile polish */
@media (max-width: 600px) {
  .footer-legal {
    padding: 0 16px;
    font-size: 0.8rem;
  }
}

.page-hero {
  background: #eef4fb;
  padding: 60px 20px;
  text-align: center;
}

.page-content {
  padding: 60px 20px;
}

.page-content h2 {
  margin-top: 40px;
}

.page-content ul {
  margin-left: 20px;
}

.simple-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}
/* ===== HEADER ===== */
.main-header {
  background: #eaf4ff;
  border-bottom: 1px solid #dbe7f3;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.main-nav a {
  margin-left: 18px;
  font-weight: 500;
  color: #0b2c4d;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
}

/* ===== LEGAL / ABOUT HERO ===== */
.legal-hero {
  background: #f1f7ff;
  padding: 80px 0;
  text-align: center;
}

.legal-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}



/* ===== FOOTER ===== */
.site-footer {
  background: #0b2c4d;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-grid a {
  display: block;
  color: #cfe3ff;
  margin-bottom: 8px;
}

.footer-socials a {
  font-size: 18px;
  margin-right: 12px;
  color: #fff;
}

.footer-legal {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #cbd5e1;
}
/* ===== LOGO ===== */
.brand {
  display: flex;
  align-items: center;
}

.brand-logo-svg svg {
  height: 40px;
  width: auto;
  display: block;
}

/* =====================================================
   SHARED HEADER AND FOOTER POLISH
   Used by the homepage and all supporting pages
===================================================== */

.header-inner {
  width: min(1400px, 100%);
  padding-left: 20px;
  padding-right: 20px;
}

.menu-toggle span {
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-footer {
  width: 100%;
  margin-left: 0;
  padding: 3.5rem 1.25rem 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(63, 169, 245, 0.16), transparent 28%),
    #0b3556;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(170px, 0.7fr) minmax(190px, 0.7fr);
  gap: clamp(2rem, 6vw, 5rem);
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-bottom: 2rem;
  text-align: left;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 0.8rem;
  color: #ffffff;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: #cfe3ff;
  line-height: 1.7;
}

.footer-inner .footer-links {
  display: block;
  margin: 0;
  font-size: 0.95rem;
}

.footer-inner .footer-links a {
  display: block;
  width: fit-content;
  margin: 0 0 0.55rem;
  color: #cfe3ff;
}

.footer-inner .footer-links a:hover,
.footer-inner .footer-links a:focus-visible {
  color: #ffffff;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-footer .social-icons a {
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  margin: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.site-footer .social-icons a:hover,
.site-footer .social-icons a:focus-visible {
  transform: translateY(-2px);
  background: #2563eb;
}

.footer-company-links {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-company-links a {
  color: #cfe3ff;
}

.footer-company-links a[aria-current="page"] {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.footer-legal {
  margin-top: 1.2rem;
}

.footer-bottom {
  margin-top: 0.7rem;
  color: #8fa9c0;
  font-size: 0.8rem;
}

@media (max-width: 760px) {
  .site-footer {
    padding-bottom: 6.5rem;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: center;
  }

  .footer-brand p,
  .footer-inner .footer-links a {
    margin-left: auto;
    margin-right: auto;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-company-links {
    gap: 0.55rem;
  }
}

/* Keep the scroll-reveal class aligned with the JavaScript state name. */
.reveal.is-visible,
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   FINAL MOBILE HEADER LAYOUT
   Menu stays left; brand remains optically centred.
===================================================== */
@media (max-width: 900px) {
  .site-header .header-inner {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    grid-template-rows: 64px;
    align-items: center;
    width: 100%;
    height: 64px;
    min-height: 64px;
    padding: 0 16px;
    gap: 0;
  }

  .site-header .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    align-self: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
  }

  .site-header .brand-logo-svg {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
    width: min(220px, 100%);
    height: 44px;
    margin: 0;
  }

  .site-header .brand-logo-svg svg {
    display: block;
    width: 100%;
    max-width: 220px;
    height: 40px;
  }

  .site-header .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 20px;
    gap: 4px;
    text-align: left;
    background: #eaf4ff;
    border-top: 1px solid rgba(11, 60, 93, 0.08);
    box-shadow: 0 16px 30px rgba(11, 60, 93, 0.14);
    z-index: 1200;
  }

  .site-header .main-nav.active {
    display: flex;
  }

  .site-header .main-nav a {
    width: 100%;
    margin: 0;
    padding: 10px 12px;
  }

  .site-header .main-nav .nav-cta {
    margin-top: 4px;
    text-align: center;
  }
}
