/* ==========================================================================
   Code Care Solutions — Marketing Site
   ========================================================================== */

:root {
  --navy: #0f2a5c;
  --navy-dark: #081a3d;
  --navy-light: #1c3f82;
  --maroon: #9c1b2e;
  --maroon-dark: #7a1522;
  --gold: #cc9a3c;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --ink: #16213a;
  --muted: #5b6478;
  --border: #e6e9f0;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(15, 42, 92, 0.08);
  --shadow-md: 0 10px 30px rgba(15, 42, 92, 0.12);
  --shadow-lg: 0 20px 50px rgba(15, 42, 92, 0.18);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
section { position: relative; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }
@media (max-width: 768px) { .section-pad { padding: 64px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--maroon);
  background: rgba(156, 27, 46, 0.08);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--maroon); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { font-size: 17px; margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--maroon); color: #fff; box-shadow: 0 10px 24px rgba(156, 27, 46, 0.3); }
.btn-primary:hover { background: var(--maroon-dark); box-shadow: 0 14px 28px rgba(156, 27, 46, 0.38); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 10px 24px rgba(15,42,92,0.25); }
.btn-navy:hover { background: var(--navy-dark); }
.btn-ghost { background: rgba(15,42,92,0.06); color: var(--navy); }
.btn-ghost:hover { background: rgba(15,42,92,0.12); }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }

/* ---------------- Top utility bar ---------------- */
.topbar {
  background: var(--navy-dark);
  color: #cfd7ec;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: #e8ecfa; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--gold); }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.08); align-items: center; justify-content: center; display: inline-flex; }
.topbar-social a:hover { background: var(--maroon); }
.topbar svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---------------- Header / Nav ---------------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 10px; }
.brand-text { font-family: 'Poppins', sans-serif; line-height: 1.15; }
.brand-text strong { display: block; font-size: 18px; color: var(--navy); font-weight: 700; letter-spacing: .2px; }
.brand-text span { display: block; font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--maroon); font-weight: 600; margin-top: 2px; }

nav.main-nav ul { display: flex; gap: 30px; align-items: center; }
nav.main-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
nav.main-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--maroon);
  transition: width .25s ease;
}
nav.main-nav a:hover::after, nav.main-nav a.active::after { width: 100%; }
nav.main-nav a:hover { color: var(--maroon); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 20px; height: 2px; background: var(--navy);
  position: relative; transition: .25s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: rotate(45deg); top: 0; }
.nav-toggle.open span::after { transform: rotate(-45deg); top: 0; }

@media (max-width: 960px) {
  nav.main-nav {
    position: fixed; inset: 0 0 0 auto; top: 0;
    width: min(320px, 84vw); height: 100vh;
    background: #fff; box-shadow: var(--shadow-lg);
    padding: 100px 32px 32px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 190;
  }
  nav.main-nav.open { transform: translateX(0); }
  nav.main-nav ul { flex-direction: column; align-items: flex-start; gap: 22px; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-navy-desktop { display: none; }
}
.nav-scrim {
  display: none;
  position: fixed; inset: 0; background: rgba(8,26,61,0.5); z-index: 180;
}
.nav-scrim.open { display: block; }

/* ---------------- Hero ---------------- */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(204,154,60,0.18), transparent 60%),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: #fff;
  overflow: hidden;
  padding: 90px 0 70px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
}
.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.18);
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: .4px;
  color: #f4e4bf;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p.lead { color: #cfd7ec; font-size: 18px; max-width: 560px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 640px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }
.hero-stats .stat b {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 3vw, 30px); color: #fff; font-weight: 700;
}
.hero-stats .stat span { font-size: 12.5px; color: #a9b6d6; letter-spacing: .3px; }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-media .frame img { width: 100%; height: 520px; object-fit: cover; }
@media (max-width: 900px) { .hero-media .frame img { height: 340px; } }
.hero-media .badge-card {
  position: absolute; left: -22px; bottom: -22px;
  background: #fff; color: var(--ink);
  border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  max-width: 240px;
}
@media (max-width: 500px) { .hero-media .badge-card { left: 10px; bottom: -18px; padding: 12px 14px; } }
.hero-media .badge-card .ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(156,27,46,0.1); color: var(--maroon);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-media .badge-card strong { display: block; font-size: 14px; color: var(--navy); font-family: 'Poppins',sans-serif; }
.hero-media .badge-card span { font-size: 12px; color: var(--muted); }

/* ---------------- Logo/trust strip ---------------- */
.trust-strip { background: var(--surface); border-bottom: 1px solid var(--border); padding: 26px 0; }
.trust-strip .container { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: space-between; }
.trust-strip .label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1.4px; font-weight: 700; color: var(--muted); }
.trust-logos { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-logos span {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
  color: var(--navy); background: var(--bg); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 100px;
}

/* ---------------- About ---------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-copy h2 { font-size: clamp(26px, 3.6vw, 36px); }
.about-list { margin-top: 22px; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 15px; }
.about-list svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--maroon); margin-top: 2px; }
.about-media { position: relative; }
.about-media img { border-radius: 18px; box-shadow: var(--shadow-md); }
.quote-card {
  background: var(--navy); color: #fff; border-radius: 16px;
  padding: 22px 24px; margin-top: 24px; position: relative;
  box-shadow: var(--shadow-md);
}
.quote-card p { color: #dbe2f4; font-style: italic; margin: 0; font-size: 15px; }
.quote-card .mark { color: var(--gold); font-size: 34px; font-family: Georgia, serif; line-height: 0; display: block; margin-bottom: 6px; }

/* ---------------- Founder ---------------- */
.founder-section { background: linear-gradient(180deg, #fff, var(--bg)); }
.founder-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 54px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 860px) { .founder-grid { grid-template-columns: 1fr; padding: 28px; } }
.founder-photo { position: relative; }
.founder-photo img { border-radius: 18px; width: 100%; object-fit: cover; aspect-ratio: 4/5; box-shadow: var(--shadow-md); }
.founder-photo .ribbon {
  position: absolute; top: 18px; left: -10px;
  background: var(--maroon); color: #fff;
  font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 12.5px;
  padding: 7px 16px 7px 20px; border-radius: 0 100px 100px 0;
  box-shadow: var(--shadow-sm);
  letter-spacing: .3px;
}
.founder-copy .eyebrow { margin-bottom: 12px; }
.founder-copy h3 { font-size: 26px; margin-bottom: 2px; }
.founder-copy .role { color: var(--maroon); font-weight: 600; font-family: 'Poppins',sans-serif; font-size: 14.5px; margin-bottom: 16px; display: block; }
.founder-stats { display: flex; gap: 26px; flex-wrap: wrap; margin: 22px 0; }
.founder-stats div b { display: block; font-family: 'Poppins',sans-serif; font-size: 24px; color: var(--navy); }
.founder-stats div span { font-size: 12.5px; color: var(--muted); }
.founder-companies { margin-top: 18px; }
.founder-companies p.label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 700; color: var(--muted); margin-bottom: 10px; }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip-row span {
  font-size: 13px; font-weight: 600; color: var(--navy);
  background: rgba(15,42,92,0.06); padding: 7px 14px; border-radius: 100px;
  font-family: 'Poppins',sans-serif;
}

/* ---------------- Courses ---------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 940px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-3 { grid-template-columns: 1fr; } }

.course-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(156,27,46,0.25); }
.course-card .ico {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.course-card .ico svg { width: 26px; height: 26px; }
.course-card h3 { font-size: 19px; margin-bottom: 8px; }
.course-card p { font-size: 14.5px; margin-bottom: 16px; flex-grow: 1; }
.course-card .tag {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase; color: var(--maroon); background: rgba(156,27,46,0.08);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; width: fit-content;
}
.course-card .link { font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 14px; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.course-card .link svg { width: 16px; height: 16px; transition: transform .2s; }
.course-card:hover .link svg { transform: translateX(4px); }

/* ---------------- Why us ---------------- */
.why-section {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  color: #fff;
}
.why-section .section-head h2 { color: #fff; }
.why-section .section-head p { color: #b9c3de; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 940px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 26px 22px; backdrop-filter: blur(4px);
}
.why-card .ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(204,154,60,0.18); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.why-card .ico svg { width: 24px; height: 24px; }
.why-card h4 { color: #fff; font-size: 16.5px; margin-bottom: 6px; }
.why-card p { color: #aab5d2; font-size: 13.8px; margin: 0; }

/* ---------------- Services ---------------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }
.service-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px;
}
.service-item .ico {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: rgba(156,27,46,0.08); color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
}
.service-item .ico svg { width: 22px; height: 22px; }
.service-item h4 { font-size: 15.5px; margin-bottom: 4px; }
.service-item p { font-size: 13.5px; margin: 0; }

/* ---------------- Gallery ---------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery-grid a { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); position: relative; display: block; }
.gallery-grid a::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,26,61,0.55));
  opacity: 0; transition: opacity .25s;
}
.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid .g-wide { grid-column: span 2; }
.gallery-grid .g-tall { grid-row: span 2; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; } .gallery-grid .g-wide { grid-column: span 2; } .gallery-grid .g-tall { grid-row: span 1; } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-grid .g-wide { grid-column: span 1; } }

/* ---------------- Locations ---------------- */
.loc-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: stretch; }
@media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; } }
.map-embed { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); min-height: 380px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

.loc-card-main {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 30px; box-shadow: var(--shadow-sm);
}
.loc-card-main .tag { color: var(--maroon); font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; }
.loc-card-main h3 { margin: 8px 0 10px; font-size: 21px; }
.loc-card-main address { font-style: normal; color: var(--muted); font-size: 15px; margin-bottom: 18px; display: block; }
.loc-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.branch-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 560px) { .branch-list { grid-template-columns: 1fr 1fr; } }
.branch-list .branch {
  border: 1px dashed var(--border); border-radius: 14px; padding: 16px;
  display: flex; align-items: center; gap: 10px; font-family: 'Poppins',sans-serif;
  font-weight: 600; font-size: 14px; color: var(--navy);
}
.branch-list .branch svg { width: 18px; height: 18px; color: var(--maroon); flex-shrink: 0; }

/* ---------------- Reviews ---------------- */
.reviews-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 22px;
  padding: 40px; box-shadow: var(--shadow-sm);
}
@media (max-width: 780px) { .reviews-card { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.reviews-score { text-align: center; }
.reviews-score b { display: block; font-family: 'Poppins',sans-serif; font-size: 46px; color: var(--navy); }
.stars { color: var(--gold); font-size: 20px; letter-spacing: 3px; margin: 4px 0; }
.reviews-score span { font-size: 13px; color: var(--muted); }
.reviews-copy h3 { font-size: 21px; margin-bottom: 8px; }
.reviews-copy p { margin: 0; font-size: 15px; }
.google-g { display: inline-flex; align-items: center; gap: 8px; font-family: 'Poppins',sans-serif; font-weight: 700; color: var(--navy); font-size: 15px; margin-bottom: 10px; }

/* ---------------- Contact ---------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 46px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--navy); color: #fff; border-radius: 22px; padding: 40px 34px;
  box-shadow: var(--shadow-md);
}
.contact-info-card h3 { color: #fff; font-size: 22px; }
.contact-info-card > p { color: #c3cce6; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-top: 22px; }
.contact-item .ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.1); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item .ico svg { width: 20px; height: 20px; }
.contact-item strong { display: block; font-family: 'Poppins',sans-serif; font-size: 14.5px; color: #fff; }
.contact-item span, .contact-item a { font-size: 14px; color: #c3cce6; }
.contact-item a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 12px; margin-top: 28px; }
.contact-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; }
.contact-social a:hover { background: var(--maroon); }
.contact-social svg { width: 18px; height: 18px; color: #fff; }

.contact-form {
  background: var(--surface); border: 1px solid var(--border); border-radius: 22px;
  padding: 40px; box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-size: 21px; margin-bottom: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-top: 18px; }
.form-row .form-field { margin-top: 0; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--navy); font-family: 'Poppins',sans-serif; }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px;
  font-family: inherit; font-size: 14.5px; color: var(--ink); background: var(--bg);
  outline: none; transition: border-color .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--maroon); }
.contact-form .btn { width: 100%; margin-top: 22px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; text-align: center; }

/* ---------------- CTA band ---------------- */
.cta-band {
  background: linear-gradient(120deg, var(--maroon-dark), var(--maroon));
  color: #fff; border-radius: 26px; padding: 54px 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band h3 { color: #fff; font-size: 26px; margin-bottom: 6px; }
.cta-band p { color: #f3d9dc; margin: 0; }
.cta-band .btn-outline { border-color: #fff; }
.cta-band .btn-white { background: #fff; color: var(--maroon); }
.cta-band .btn-white:hover { background: #f4e4bf; }

/* ---------------- Footer ---------------- */
footer.site-footer { background: var(--navy-dark); color: #b9c3de; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.footer-brand strong { color: #fff; font-family: 'Poppins',sans-serif; font-size: 17px; }
.footer-col h5 { color: #fff; font-family: 'Poppins',sans-serif; font-size: 14.5px; letter-spacing: .5px; margin-bottom: 18px; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14px; color: #b9c3de; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 0; font-size: 13px; color: #8391b3; flex-wrap: wrap;
}
.footer-bottom a { color: #b9c3de; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------------- Floating WhatsApp ---------------- */
.float-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,0.4);
  animation: pulse 2.4s infinite;
}
.float-whatsapp svg { width: 30px; height: 30px; color: #fff; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5), 0 10px 24px rgba(37,211,102,0.4); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 10px 24px rgba(37,211,102,0.4); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 24px rgba(37,211,102,0.4); }
}

/* ---------------- Reveal-on-scroll ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(6,14,32,0.92); z-index: 400;
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(900px, 92vw); max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.2);
}
.lightbox-close svg { width: 20px; height: 20px; }

/* back to top */
.to-top {
  position: fixed; right: 22px; bottom: 92px; z-index: 150;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top svg { width: 18px; height: 18px; }
