/* ============================================================
   CAREFREE GETAWAY LIMITED — STYLESHEET v2
   Typography Scale (one source of truth):
   --fs-xs:   12px  labels, captions, legal, tags
   --fs-sm:   13px  nav, meta, small UI text
   --fs-base: 15px  all body copy
   --fs-md:   17px  lead paragraphs
   --fs-lg:   20px  card h4, feature titles
   --fs-xl:   clamp(20–26px)  h3
   --fs-2xl:  clamp(26–34px)  h2 secondary
   --fs-3xl:  clamp(30–42px)  h2 primary
   --fs-hero: clamp(34–56px)  h1
   ============================================================ */

:root {
  --navy:        #1f3a5f;
  --navy-dark:   #162c47;
  --navy-light:  #2a4e7a;
  --teal:        #3fa7a3;
  --teal-light:  #5dbdb9;
  --teal-pale:   #eaf6f6;
  --bg-white:    #ffffff;
  --bg-grey:     #f3f5f7;
  --bg-dark:     #0e1f33;
  --text-dark:   #1a1a2e;
  --text-mid:    #3d4455;
  --text-muted:  #6b7482;
  --border:      #e0e4ec;
  --border-light:#eef0f4;

  --fs-xs:   12px;
  --fs-sm:   13px;
  --fs-base: 15px;
  --fs-md:   17px;
  --fs-lg:   20px;
  --fs-xl:   clamp(20px, 2.5vw, 26px);
  --fs-2xl:  clamp(26px, 3.5vw, 34px);
  --fs-3xl:  clamp(30px, 4vw, 42px);
  --fs-hero: clamp(34px, 5.5vw, 56px);

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --lh-tight:  1.2;
  --lh-snug:   1.4;
  --lh-base:   1.72;
  --lh-loose:  1.85;

  --shadow-sm: 0 2px 8px rgba(31,58,95,0.07);
  --shadow-md: 0 6px 24px rgba(31,58,95,0.11);
  --shadow-lg: 0 12px 40px rgba(31,58,95,0.16);

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 18px;

  --transition: 0.25s ease;
  --max-width:  1200px;
  --header-h:   76px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: var(--fs-base); line-height: var(--lh-base); color: var(--text-dark); background: var(--bg-white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: var(--lh-tight); color: var(--text-dark); }
h1 { font-size: var(--fs-hero); font-weight: 800; }
h2 { font-size: var(--fs-3xl);  font-weight: 700; }
h3 { font-size: var(--fs-xl);   font-weight: 600; }
h4 { font-size: var(--fs-lg);   font-weight: 600; }
h5 { font-size: var(--fs-base); font-weight: 700; }

p { font-size: var(--fs-base); line-height: var(--lh-base); color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
p.lead { font-size: var(--fs-md); color: var(--text-mid); line-height: var(--lh-loose); }

.label { display: block; font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }

/* === LAYOUT === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.section--grey { background: var(--bg-grey); }
.section--navy { background: var(--navy); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 620px; margin: 0 auto; font-size: var(--fs-md); }
.section-header--light h2 { color: white; }
.section-header--light p  { color: rgba(255,255,255,0.75); }
.section-header--light .label { color: var(--teal-light); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.text-center { text-align: center; }
.text-white { color: white !important; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius); font-family: var(--font-head); font-size: var(--fs-sm); font-weight: 700; letter-spacing: 0.4px; transition: all var(--transition); cursor: pointer; white-space: nowrap; }
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-teal    { background: var(--teal); color: white; }
.btn-teal:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.65); }
.btn-outline:hover { background: white; color: var(--navy); transform: translateY(-2px); border-color: white; }
.btn-white   { background: white; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-white:hover { background: var(--bg-grey); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost   { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-sm { padding: 9px 20px; font-size: var(--fs-xs); }
.btn-lg { padding: 16px 36px; font-size: var(--fs-base); }

.read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-family: var(--font-head); font-size: var(--fs-sm); font-weight: 700; transition: gap var(--transition); }
.read-more:hover { gap: 10px; }
.read-more i { font-size: 11px; }

/* === HEADER === */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: white; border-bottom: 1px solid var(--border-light); transition: box-shadow var(--transition); }
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.header-logo img { height: 50px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a { font-family: var(--font-head); font-size: var(--fs-sm); font-weight: 600; color: var(--text-mid); padding: 8px 12px; border-radius: var(--radius-sm); transition: all var(--transition); }
.main-nav a:hover { color: var(--navy); background: var(--bg-grey); }
.main-nav a.active { color: var(--teal); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 7px; }
.nav-dropdown-toggle i { font-size: 10px; opacity: 0.75; transition: transform var(--transition); }
.nav-submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  padding: 8px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: white;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 20;
}
.nav-submenu a {
  display: block;
  padding: 9px 10px;
  font-size: var(--fs-sm);
  border-radius: var(--radius-sm);
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i {
  transform: rotate(180deg);
}
.header-cta { margin-left: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-dark); transition: all var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-nav { display: none; background: white; border-top: 1px solid var(--border); padding: 16px 28px 24px; }
.mobile-nav a { display: block; font-family: var(--font-head); font-size: var(--fs-base); font-weight: 600; color: var(--text-dark); padding: 13px 0; border-bottom: 1px solid var(--border-light); }
.mobile-nav > a:last-of-type { border-bottom: none; }
.mobile-nav-group { border-bottom: 1px solid var(--border-light); }
.mobile-nav-group .mobile-nav-parent {
  border-bottom: none;
  padding-bottom: 8px;
}
.mobile-submenu {
  padding: 0 0 8px 14px;
}
.mobile-submenu a {
  font-size: var(--fs-sm);
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: none;
}
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }
.mobile-nav.open { display: block; }

/* === HERO === */
.hero { min-height: 92vh; display: flex; align-items: center; position: relative; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #2a4e7a 100%); overflow: hidden; margin-top: var(--header-h); }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/g%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 7px 16px; border-radius: 40px; color: rgba(255,255,255,0.88); font-size: var(--fs-xs); font-family: var(--font-head); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 22px; }
.hero-badge i { color: var(--teal-light); }
.hero-content h1 { color: white; margin-bottom: 20px; text-shadow: 0 2px 24px rgba(0,0,0,0.2); line-height: 1.1; }
.hero-content p.lead { color: rgba(255,255,255,0.82); margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 72px 0 52px; margin-top: var(--header-h); }
.page-hero h1 { color: white; margin-bottom: 10px; font-size: var(--fs-3xl); }
.page-hero p.lead { color: rgba(255,255,255,0.75); font-size: var(--fs-base); }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: var(--fs-xs); font-family: var(--font-head); font-weight: 700; letter-spacing: 0.5px; margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: 9px; }

/* === FEATURE STRIP === */
.feature-item { text-align: center; padding: 28px 16px; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: all var(--transition); }
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.feature-item i { font-size: 26px; color: var(--navy); margin-bottom: 12px; display: block; }
.feature-item h4 { font-size: var(--fs-sm); font-weight: 700; color: var(--text-dark); margin-bottom: 6px; line-height: var(--lh-snug); }
.feature-item p  { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.55; margin: 0; }

/* === TRUST BAR === */
.trust-bar { background: var(--navy); padding: 26px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: white; font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.3px; }
.trust-item i { color: var(--teal-light); font-size: 14px; }

/* === SUMMARY SECTIONS === */
.summary-section { padding: 80px 0; }
.img-placeholder { background: linear-gradient(135deg, #c8d5e8 0%, #a8bdd8 100%); border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 340px; color: #5e7fa8; font-family: var(--font-head); font-size: var(--fs-sm); font-weight: 600; text-align: center; padding: 24px; gap: 8px; }
.img-placeholder i { font-size: 40px; opacity: 0.4; }
.summary-text h3 { margin-bottom: 12px; }
.summary-text p  { margin-bottom: 20px; }

/* === STATS BAR === */
.stats-bar { background: var(--navy); padding: 52px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
.stat-item { padding: 0 24px; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.12); }
.stat-num { font-family: var(--font-head); font-size: clamp(28px,4vw,46px); font-weight: 800; color: white; line-height: 1; margin-bottom: 6px; }
.stat-num span { color: var(--teal-light); }
.stat-label { font-size: var(--fs-xs); font-family: var(--font-head); font-weight: 700; color: rgba(255,255,255,0.55); letter-spacing: 1.5px; text-transform: uppercase; }

/* === CARDS === */
.card { background: white; border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); transition: all var(--transition); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon { width: 50px; height: 50px; background: var(--bg-grey); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon i { font-size: 20px; color: var(--navy); }
.card h4 { font-size: var(--fs-lg); margin-bottom: 10px; }
.card p  { font-size: var(--fs-base); }
.card ul { margin-top: 12px; }
.card ul li { font-size: var(--fs-base); color: var(--text-muted); padding: 5px 0 5px 20px; position: relative; line-height: 1.55; }
.card ul li::before { content: '✓'; color: var(--teal); position: absolute; left: 0; font-weight: 700; }
.card--featured { border: 2px solid var(--teal); position: relative; }
.card--featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--teal); color: white; font-family: var(--font-head); font-size: 10px; font-weight: 700; padding: 3px 14px; border-radius: 20px; letter-spacing: 1.5px; white-space: nowrap; }
.card--teal-border { border-left: 4px solid var(--teal); }

/* === MODEL STEPS (4-column, homepage) === */
.model-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.model-step { background: white; border-radius: var(--radius-lg); padding: 26px 22px; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); transition: all var(--transition); }
.model-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.model-step-num { width: 34px; height: 34px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 800; margin-bottom: 12px; }
.model-step h4 { font-size: var(--fs-base); font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.model-step p  { font-size: var(--fs-xs); line-height: 1.65; margin: 0; }

/* === WHY FAMILIES === */
.why-us-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.why-item { display: flex; align-items: flex-start; gap: 14px; padding: 20px; border-radius: var(--radius-lg); background: white; border: 1px solid var(--border-light); transition: all var(--transition); }
.why-item:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.why-icon { font-size: 20px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.why-item h5 { font-size: var(--fs-base); margin-bottom: 4px; color: var(--navy); }
.why-item p  { font-size: var(--fs-xs); line-height: 1.6; margin: 0; }

/* === VALUES GRID === */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-item { display: flex; align-items: flex-start; gap: 14px; padding: 22px; background: white; border-radius: var(--radius-lg); border: 1px solid var(--border-light); transition: all var(--transition); }
.value-item:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.value-icon { width: 42px; height: 42px; background: var(--navy); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-icon i { color: white; font-size: 17px; }
.value-item h4 { font-size: var(--fs-base); margin-bottom: 5px; }
.value-item p  { font-size: var(--fs-xs); line-height: 1.6; margin: 0; }

/* === PULL QUOTE === */
.pull-quote { text-align: center; padding: 64px 0; }
.pull-quote blockquote { max-width: 700px; margin: 0 auto; font-size: var(--fs-xl); font-style: italic; color: var(--text-dark); line-height: 1.55; position: relative; padding: 0 52px; }
.pull-quote blockquote::before, .pull-quote blockquote::after { content: '"'; font-size: 88px; color: var(--teal); opacity: 0.18; font-family: Georgia, serif; position: absolute; line-height: 1; }
.pull-quote blockquote::before { top: -16px; left: 0; }
.pull-quote blockquote::after  { bottom: -44px; right: 0; }
.pull-quote cite { display: block; margin-top: 28px; font-size: var(--fs-sm); font-style: normal; font-family: var(--font-head); font-weight: 700; color: var(--teal); letter-spacing: 1px; }

/* === INFO / NOTICE BOXES === */
.info-box { background: var(--teal-pale); border-left: 4px solid var(--teal); border-radius: var(--radius); padding: 22px 26px; margin: 26px 0; }
.info-box h4 { font-size: var(--fs-base); margin-bottom: 8px; color: var(--navy); }
.info-box p  { margin: 0; font-size: var(--fs-base); color: var(--text-mid); }
.notice-box  { background: #fff8f3; border-left: 4px solid #c07840; border-radius: var(--radius); padding: 22px 26px; margin: 26px 0; }
.notice-box h4 { font-size: var(--fs-base); color: #c07840; margin-bottom: 8px; }
.notice-box p  { margin: 0; font-size: var(--fs-base); }

/* === CHECKLIST === */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: var(--fs-base); color: var(--text-muted); padding: 10px 14px; background: white; border-radius: var(--radius); border: 1px solid var(--border-light); line-height: 1.5; }
.checklist li i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }

/* === PROCESS STEPS === */
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 35px; left: 8%; right: 8%; height: 2px; background: linear-gradient(to right, var(--teal), var(--navy)); z-index: 0; }
.step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-num { width: 70px; height: 70px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: white; font-family: var(--font-head); font-size: 22px; font-weight: 800; border: 4px solid white; box-shadow: var(--shadow-md); }
.step h4 { font-size: var(--fs-base); color: var(--navy); margin-bottom: 8px; }
.step p  { font-size: var(--fs-xs); line-height: 1.6; }

/* === TESTIMONIAL CAROUSEL === */
.testimonials { padding: 88px 0; background: var(--bg-grey); }
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); gap: 28px; }
.testimonial-card { background: white; border-radius: var(--radius-lg); padding: 34px; border: 1px solid var(--border-light); border-left: 4px solid var(--teal); box-shadow: var(--shadow-sm); flex: 0 0 calc(33.333% - 19px); min-width: calc(33.333% - 19px); }
.testimonial-card .quote { font-size: var(--fs-base); color: var(--text-dark); line-height: var(--lh-loose); margin-bottom: 22px; font-style: italic; }
.testimonial-card .quote::before { content: '"'; font-size: 52px; color: var(--teal); opacity: 0.3; font-family: Georgia, serif; line-height: 0; vertical-align: -22px; margin-right: 2px; }
.testimonial-meta { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-head); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.testimonial-info strong { display: block; font-family: var(--font-head); font-size: var(--fs-sm); color: var(--text-dark); font-weight: 700; }
.testimonial-info span { font-size: var(--fs-xs); color: var(--text-muted); }

/* Carousel controls */
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 36px; }
.carousel-btn { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--border); background: white; color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: all var(--transition); cursor: pointer; }
.carousel-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }
.carousel-dots { display: flex; gap: 7px; }
.carousel-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all var(--transition); border: none; }
.carousel-dot.active { background: var(--teal); transform: scale(1.4); }

/* === CTA STRIP === */
.cta-strip { background: var(--navy); padding: 80px 0; text-align: center; }
.cta-strip h2 { color: white; margin-bottom: 14px; }
.cta-strip p  { color: rgba(255,255,255,0.78); font-size: var(--fs-md); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === IN-PAGE NAV === */
.inpage-nav { background: white; border-bottom: 1px solid var(--border); position: sticky; top: var(--header-h); z-index: 900; box-shadow: var(--shadow-sm); }
.inpage-nav-inner { display: flex; overflow-x: auto; scrollbar-width: none; }
.inpage-nav-inner::-webkit-scrollbar { display: none; }
.inpage-nav a { white-space: nowrap; padding: 17px 22px; font-family: var(--font-head); font-size: var(--fs-sm); font-weight: 600; color: var(--text-muted); border-bottom: 3px solid transparent; transition: all var(--transition); }
.inpage-nav a:hover, .inpage-nav a.active { color: var(--navy); border-bottom-color: var(--teal); }
.back-top { display: inline-flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: var(--fs-sm); font-family: var(--font-head); font-weight: 600; margin-top: 28px; transition: color var(--transition); }
.back-top:hover { color: var(--teal); }

/* === FORMS === */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 700; color: var(--text-dark); margin-bottom: 7px; letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: var(--fs-base); color: var(--text-dark); background: white; transition: border-color var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(63,167,163,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.form-group.radio-group label { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: var(--fs-base); text-transform: none; letter-spacing: 0; cursor: pointer; }
.form-group.radio-group input { width: auto; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-checkbox input { width: auto; margin-top: 3px; flex-shrink: 0; }
.form-checkbox label { font-size: var(--fs-sm); font-weight: 400; color: var(--text-muted); text-transform: none; letter-spacing: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-info { padding: 40px; background: var(--navy); border-radius: var(--radius-lg); color: white; height: 100%; }
.contact-info h3 { color: white; margin-bottom: 22px; font-size: var(--fs-xl); }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-detail i { font-size: 17px; color: var(--teal-light); margin-top: 2px; flex-shrink: 0; }
.contact-detail strong { display: block; font-family: var(--font-head); font-size: var(--fs-xs); color: rgba(255,255,255,0.5); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-detail span { color: white; font-size: var(--fs-base); line-height: 1.55; }
.contact-form-wrap { padding: 40px; background: white; border-radius: var(--radius-lg); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.contact-form-wrap h3 { font-size: var(--fs-xl); margin-bottom: 6px; }
.form-intro { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }

/* What Happens Next */
.next-steps { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.next-step { display: flex; align-items: flex-start; gap: 13px; padding: 14px 16px; background: var(--bg-grey); border-radius: var(--radius); border: 1px solid var(--border-light); }
.next-step-num { width: 26px; height: 26px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 800; flex-shrink: 0; }
.next-step p { font-size: var(--fs-sm); color: var(--text-mid); margin: 0; line-height: 1.5; }

/* === FAQ ACCORDION === */
.faq-item { border: 1px solid var(--border-light); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; transition: box-shadow var(--transition); }
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--teal); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; background: white; font-family: var(--font-head); font-size: var(--fs-base); font-weight: 600; color: var(--text-dark); text-align: left; transition: all var(--transition); }
.faq-question:hover { background: var(--bg-grey); color: var(--navy); }
.faq-item.open .faq-question { color: var(--navy); background: var(--teal-pale); }
.faq-question i { color: var(--teal); transition: transform var(--transition); flex-shrink: 0; font-size: 13px; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 16px 22px 20px; font-size: var(--fs-base); color: var(--text-muted); line-height: var(--lh-base); border-top: 1px solid var(--border-light); }

/* === POLICIES === */
.policy-card { background: white; border-radius: var(--radius-lg); padding: 22px; border: 1px solid var(--border-light); display: flex; align-items: flex-start; gap: 14px; transition: all var(--transition); }
.policy-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal); }
.policy-icon { width: 44px; height: 44px; background: var(--bg-grey); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.policy-icon i { color: var(--navy); font-size: 18px; }
.policy-card h4 { font-size: var(--fs-base); margin-bottom: 4px; }
.policy-card p  { font-size: var(--fs-xs); margin-bottom: 10px; line-height: 1.55; }
.policy-card a  { font-size: var(--fs-xs); color: var(--teal); font-family: var(--font-head); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }

/* === FOOTER === */
.site-footer { background: var(--navy-dark); color: white; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 52px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: var(--fs-sm); line-height: 1.7; }
.footer-col h5 { font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: var(--fs-sm); transition: color var(--transition); }
.footer-col ul li a:hover { color: white; }
.footer-bottom { padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: var(--fs-xs); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.35); font-size: var(--fs-xs); }
.footer-bottom a:hover { color: white; }

/* === FADE IN === */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4   { grid-template-columns: repeat(2,1fr); }
  .grid-5   { grid-template-columns: repeat(3,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .stat-item + .stat-item { border-left: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-steps::before { display: none; }
  .model-steps  { grid-template-columns: 1fr 1fr; }
  .why-us-grid  { grid-template-columns: 1fr 1fr; }
  .testimonial-card { flex: 0 0 calc(50% - 14px); min-width: calc(50% - 14px); }
}
@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .section { padding: 60px 0; }
  .grid-2   { grid-template-columns: 1fr; gap: 28px; }
  .grid-3   { grid-template-columns: 1fr; gap: 18px; }
  .grid-4   { grid-template-columns: 1fr; }
  .grid-5   { grid-template-columns: 1fr 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .checklist    { grid-template-columns: 1fr; }
  .form-grid    { grid-template-columns: 1fr; }
  .model-steps  { grid-template-columns: 1fr; }
  .why-us-grid  { grid-template-columns: 1fr; }
  .process-steps{ grid-template-columns: 1fr; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .trust-bar-inner { gap: 14px; justify-content: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .testimonial-card { flex: 0 0 100%; min-width: 100%; }
  .section-header { margin-bottom: 40px; }
  .page-hero { padding: 56px 0 38px; }
}
@media (max-width: 480px) {
  .grid-5 { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}
.wa-float__bubble {
  background: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.wa-float:hover .wa-float__bubble {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}
.wa-float__tooltip {
  background: white;
  color: var(--navy-dark, #0f1f3d);
  font-family: var(--font-body, sans-serif);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.14);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.wa-float:hover .wa-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}
.wa-float__pulse {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
@media (max-width: 480px) {
  .wa-float { bottom: 18px; right: 18px; }
  .wa-float__bubble { width: 52px; height: 52px; font-size: 24px; }
  .wa-float__pulse { width: 52px; height: 52px; }
  .wa-float__tooltip { display: none; }
}

/* ============================================================
   REAL IMAGES — replace img-placeholder
   ============================================================ */
.img-real {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.img-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 340px;
  transition: transform 0.5s ease;
}
.img-real:hover img { transform: scale(1.03); }

/* ============================================================
   INSIGHTS / BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--bg-grey);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img .blog-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--teal); color: white;
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.blog-card-meta span {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-family: var(--font-head);
}
.blog-card-meta i { font-size: 10px; color: var(--border); }
.blog-card-body h4 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: var(--lh-snug);
  flex: 1;
}
.blog-card-body p { font-size: var(--fs-sm); line-height: 1.6; margin-bottom: 18px; }
.blog-card-body .read-more { margin-top: auto; }

/* Blog article page */
.article-hero { background: var(--bg-grey); padding: 56px 0 0; margin-top: var(--header-h); }
.article-hero-img {
  width: 100%; max-height: 460px;
  object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
}
.article-body { max-width: 760px; margin: 0 auto; padding: 48px 28px 80px; }
.article-body h2 { font-size: var(--fs-2xl); margin: 40px 0 14px; }
.article-body h3 { font-size: var(--fs-xl); margin: 32px 0 12px; }
.article-body p  { font-size: var(--fs-base); line-height: var(--lh-loose); color: var(--text-mid); margin-bottom: 18px; }
.article-body ul { margin: 0 0 18px 20px; }
.article-body ul li { font-size: var(--fs-base); color: var(--text-mid); margin-bottom: 6px; list-style: disc; }
.article-meta-bar {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 16px 0; border-bottom: 1px solid var(--border-light);
  margin-bottom: 32px;
}
.article-meta-bar span { font-size: var(--fs-xs); color: var(--text-muted); font-family: var(--font-head); display: flex; align-items: center; gap: 6px; }
.article-meta-bar span i { color: var(--teal); }
.article-tag {
  display: inline-block;
  background: var(--teal-pale); color: var(--teal);
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-right: 6px;
}
.article-cta {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 36px; margin-top: 48px; text-align: center;
}
.article-cta h3 { color: white; margin-bottom: 10px; font-size: var(--fs-xl); }
.article-cta p  { color: rgba(255,255,255,0.75); margin-bottom: 22px; font-size: var(--fs-sm); }

/* Category filter pills */
.cat-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.cat-pill {
  padding: 7px 18px; border-radius: 20px;
  border: 1.5px solid var(--border); background: white;
  font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 700;
  color: var(--text-muted); cursor: pointer; transition: all var(--transition);
}
.cat-pill:hover, .cat-pill.active { background: var(--navy); color: white; border-color: var(--navy); }

@media (max-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px)  { .blog-grid { grid-template-columns: 1fr; } }
