/* ============================================================
   Chambliss Premier Insurance — Design System
   Brand: Royal Blue + Deep Navy + White
   Type:  Plus Jakarta Sans (display) / Manrope (text)
   ============================================================ */

:root {
  /* Brand */
  --blue:       #1A6FC4;   /* primary, sampled from logo */
  --blue-600:   #155FAC;
  --blue-700:   #114E8C;
  --blue-050:   #EAF2FB;
  --blue-100:   #D6E6F7;

  /* Navy / ink */
  --navy:       #0E2138;   /* deep section bg */
  --navy-900:   #081626;
  --navy-700:   #16314F;
  --navy-600:   #21456B;

  /* Neutrals (cool-tinted) */
  --white:      #FFFFFF;
  --paper:      #F5F8FC;   /* soft section bg */
  --paper-2:    #EEF3F9;
  --line:       #E3EAF2;
  --line-2:     #D5DFEA;

  /* Text */
  --heading:    #0F2236;
  --text:       #4C5E72;
  --muted:      #7C8DA0;

  /* Effects */
  --radius:     18px;
  --radius-sm:  12px;
  --radius-lg:  26px;
  --shadow-sm:  0 2px 8px rgba(16, 40, 70, .06);
  --shadow:     0 14px 40px -18px rgba(16, 40, 70, .26);
  --shadow-lg:  0 40px 80px -32px rgba(11, 30, 56, .40);
  --ring:       0 0 0 4px rgba(26, 111, 196, .14);

  --maxw: 1240px;
  --gut:  clamp(20px, 5vw, 64px);

  /* Type */
  --display: "Plus Jakarta Sans", system-ui, sans-serif;
  --text-font: "Manrope", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--text-font);
  color: var(--text);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--display); color: var(--heading); margin: 0; line-height: 1.08; letter-spacing: -.02em; font-weight: 800; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 132px); }
.section--soft { background: var(--paper); }
.section--navy { background: var(--navy); color: #C6D4E4; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  font-family: var(--text-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--blue);
  display: inline-block;
}
.section--navy .eyebrow { color: #6FB0F0; }
.section--navy .eyebrow::before { background: #6FB0F0; }

.h-display { font-size: clamp(34px, 4.6vw, 58px); }
.h-section { font-size: clamp(30px, 3.6vw, 46px); }
.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--text); max-width: 56ch; }

.center { text-align: center; }
.center .lede { margin-inline: auto; }
.center .eyebrow { justify-content: center; }

.head-block { margin-bottom: clamp(40px, 5vw, 64px); }
.head-block .eyebrow { margin-bottom: 18px; }
.head-block .lede { margin-top: 20px; }
.mb-15{
    margin-bottom:15px;
}

.me-10 {
    margin-right: 10px;
}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 700; font-size: 16px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 12px 26px -12px rgba(26,111,196,.7); }
.btn--primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(26,111,196,.75); }
.btn--ghost { background: transparent; color: var(--heading); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--lg { padding: 18px 34px; font-size: 17px; }
.btn--transparent {
    background: transparent;
    color: var(--blue);
    padding:12px 0;
}

@media (max-width:991px){
    .btn--lg {
        padding: 10px 15px;
        font-size: 14px;
    }
}

.btn--text {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  color: var(--blue);
}
.btn--text svg { width: 16px; height: 16px; transition: transform .2s ease; }
.btn--text:hover svg { transform: translateX(4px); }

/* ---------- Image placeholder ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(26,111,196,.05) 0 14px, rgba(26,111,196,.09) 14px 28px),
    var(--blue-050);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  display: grid; place-items: center;
  overflow: hidden;
  color: var(--blue-600);
}
.ph span {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12.5px; letter-spacing: .04em;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--blue-100);
  padding: 7px 14px; border-radius: 999px;
  backdrop-filter: blur(2px);
}
.ph--navy {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 14px, rgba(255,255,255,.09) 14px 28px),
    var(--navy-700);
  border-color: var(--navy-600); color: #9DBBDA;
}
.ph--navy span { background: rgba(8,22,38,.55); border-color: var(--navy-600); color: #BFD6EE; }

/* Real photo inside a frame */
.ph--img { background: var(--navy-700); }
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .3s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue-100); }

.icon-badge {
  width: 58px; height: 58px; border-radius: 15px;
  display: grid; place-items: center;
  background: var(--blue-050); color: var(--blue);
  border: 1px solid var(--blue-100);
}
.icon-badge svg { width: 28px; height: 28px; }

/* utility */
.grid { display: grid; gap: clamp(20px, 2vw, 28px); }
/* Reveal only hides when JS is active (.has-js). No-JS / fallback = always visible. */
.has-js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.has-js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .has-js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
