/* ── Variables ──────────────────────────── */
:root {
  --navy: #1A3460;
  --navy-deep: #102548;
  --orange: #F59324;
  --white: #FFFFFF;
  --ink: #13213A;
  --muted: #64748B;
  --mist: #EEF6FA;
  --mint: #E7F7EF;
  --peach: #FFF0DF;
  --lavender: #F2F0FF;
  --line: #DCE5EF;
  --shadow: 0 20px 60px rgba(26, 52, 96, 0.15);
  --shadow-sm: 0 4px 16px rgba(26, 52, 96, 0.10);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
}

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

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

/* ── Header ─────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 clamp(20px, 4vw, 64px);
  height: 72px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Logo */
.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 700;
}

.nav-links > a {
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 140ms ease, color 140ms ease;
}

.nav-links > a:hover {
  background: var(--mist);
  color: var(--navy-deep);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  color: var(--navy);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 140ms ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  background: var(--mist);
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 200ms ease;
}

.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 200;
  display: none;
  min-width: 220px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(26, 52, 96, 0.14);
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background 120ms ease;
}

.nav-dropdown-menu li a:hover {
  background: var(--mist);
}

/* Header right: stacked phone + CTA */
.header-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  margin-left: 12px;
}

.header-phone {
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}

.header-phone:hover {
  color: var(--orange);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
  background: var(--orange);
  border-radius: 6px;
  transition: background 140ms ease, transform 140ms ease;
}

.header-cta:hover {
  background: #e0850f;
  transform: translateY(-1px);
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(245, 147, 36, 0.3);
}

.btn-primary:hover {
  background: #e0850f;
  border-color: #e0850f;
  box-shadow: 0 12px 28px rgba(245, 147, 36, 0.38);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.btn-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

/* ── Shared Typography ───────────────────── */
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── Section Spacing ────────────────────── */
section {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

/* Sections that manage their own padding */
.hero,
.rescue-section {
  padding: 0;
}

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: clamp(32px, 5vw, 68px);
  min-height: calc(100vh - 72px);
  padding: clamp(56px, 7vw, 92px) clamp(20px, 5vw, 72px) !important;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(26, 52, 96, 0.98) 0% 48%, rgba(26, 52, 96, 0.82) 48% 60%, rgba(238, 246, 250, 0.96) 60% 100%),
    radial-gradient(circle at 90% 12%, var(--peach), transparent 38%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.85));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  color: var(--white);
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.hero-lede {
  margin-bottom: 14px;
  color: #FFE5C5;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
}

.hero-body {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tagline {
  margin: 20px 0 0;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: center;
}

.hero-photo-frame {
  position: relative;
  height: clamp(360px, 40vw, 540px);
  overflow: hidden;
  background: var(--white);
  border: 8px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(26, 52, 96, 0.02), rgba(26, 52, 96, 0.18)),
    linear-gradient(135deg, transparent 60%, rgba(245, 147, 36, 0.18) 60% 100%);
  pointer-events: none;
}

.hero-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(238, 246, 250, 0.92), rgba(255, 240, 223, 0.86)),
    repeating-linear-gradient(135deg, rgba(26, 52, 96, 0.06) 0 1px, transparent 1px 22px);
}

.hero-photo-placeholder span {
  padding: 12px 18px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(26, 52, 96, 0.14);
  border-radius: 8px;
}

.hero-photo-tag {
  position: absolute;
  right: 24px;
  bottom: -24px;
  z-index: 2;
  max-width: 300px;
  padding: 16px 18px;
  color: var(--white);
  background: var(--navy);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo-tag strong,
.hero-photo-tag span {
  display: block;
}

.hero-photo-tag strong {
  margin-bottom: 3px;
  font-size: 0.95rem;
}

.hero-photo-tag span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
}

/* ── Mission & Problem ───────────────────── */
.mission-section {
  background: linear-gradient(180deg, var(--white), var(--mist));
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.mission-copy h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.06;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mission-copy > p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
  margin-bottom: 28px;
}

.mission-statement {
  padding: 22px 24px;
  border-left: 5px solid var(--orange);
  border-radius: 0 8px 8px 0;
  background: var(--peach);
}

.mission-statement .eyebrow {
  margin-bottom: 8px;
}

.mission-statement > p {
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.mission-consequences {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.85;
}

.problem-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.problem-card h3 {
  color: var(--navy);
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.problem-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.problem-list li {
  position: relative;
  padding: 11px 12px 11px 40px;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
  background: var(--mist);
  border-radius: 7px;
}

.problem-list li::before {
  content: "✗";
  position: absolute;
  left: 13px;
  top: 11px;
  color: #D94F3D;
  font-weight: 900;
}

.problem-resolution {
  margin: 0;
  padding: 14px 18px;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  background: var(--navy);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
}

/* ── Who We Help ─────────────────────────── */
.serve-section {
  background: linear-gradient(180deg, var(--white), var(--mist));
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card h3 {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  color: var(--navy);
  background: var(--peach);
  border: 1px solid rgba(245, 147, 36, 0.3);
  border-radius: 10px;
}

.industry-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.healthcare-icon,
.community-icon { background: var(--mint); border-color: rgba(39, 174, 96, 0.2); }
.garage-icon,
.hospitality-icon { background: var(--mist); border-color: rgba(26, 52, 96, 0.15); }
.construction-icon { background: var(--lavender); border-color: rgba(108, 99, 255, 0.2); }

/* Serve chip list */
.serve-chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 36px auto 0;
  padding: 0;
  list-style: none;
}

.serve-chip-list li {
  padding: 7px 16px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* ── Our Products ────────────────────────── */
.boxes-section {
  background: var(--white);
}

.box-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(200px, 1fr));
  gap: 16px;
}

.restock-card {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.restock-card h3 {
  margin: 18px 0 16px;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

.restock-card h4 {
  margin: 16px 0 6px;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.restock-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.card-number {
  position: absolute;
  top: 130px;
  right: 18px;
  color: rgba(26, 52, 96, 0.12);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

/* Featured (center) card */
.featured-card {
  background: var(--navy);
}

.featured-card h3,
.featured-card p {
  color: var(--white);
}

.featured-card .card-number {
  color: rgba(255, 255, 255, 0.15);
}

.featured-card .supply-image {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Product image placeholder */
.supply-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 130px;
  padding: 12px;
  overflow: hidden;
  background: var(--peach);
  border: 1px solid rgba(245, 147, 36, 0.3);
  border-radius: 8px;
}

.supply-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.supply-image span {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.3;
}

.breakroom-supply,
.convenience-supply { background: var(--mist); border-color: rgba(26, 52, 96, 0.12); }
.facility-supply { background: rgba(255,255,255,0.1); }
.facility-supply span { color: var(--white); }
.hygiene-supply { background: var(--mint); border-color: rgba(39, 174, 96, 0.18); }

/* ── Rescue Section ──────────────────────── */
.rescue-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.rescue-card {
  padding: clamp(44px, 6vw, 80px) clamp(28px, 5vw, 72px);
  background: var(--navy);
  color: var(--white);
}

.rescue-card-alt {
  background: var(--navy-deep);
}

.rescue-card .eyebrow {
  color: var(--orange);
}

.rescue-card h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.rescue-card > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.rescue-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.rescue-chip-list li {
  padding: 6px 14px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--white);
  border-radius: 999px;
}

/* ── Services ────────────────────────────── */
.services-section {
  background: var(--mist);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
}

.services-block .eyebrow {
  margin-bottom: 10px;
}

.services-block h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.services-block > p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.services-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.services-list li {
  position: relative;
  padding: 9px 12px 9px 34px;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.services-list li::before {
  content: "✓";
  position: absolute;
  left: 11px;
  top: 9px;
  color: var(--orange);
  font-weight: 900;
}

.services-tagline {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ── How It Works ────────────────────────── */
.how-section {
  background: var(--white);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  counter-reset: step;
}

.how-step {
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
  background: var(--orange);
  border-radius: 999px;
}

.how-step h3 {
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.3;
  margin-bottom: 6px;
}

.how-step p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* ── Why CCS ─────────────────────────────── */
.why-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.78);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  transition: background 160ms ease;
}

.why-grid article:hover {
  background: rgba(255, 255, 255, 0.11);
}

.why-grid h3 {
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.3;
  margin-bottom: 6px;
}

.why-grid p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  background: var(--orange);
  border-radius: 8px;
}

/* ── Promise ─────────────────────────────── */
.promise-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 72px);
  color: var(--white);
  text-align: center;
  background: var(--navy-deep);
}

.promise-section .eyebrow {
  margin-bottom: 0;
}

.promise-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-list li {
  position: relative;
  padding-right: 24px;
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.promise-list li:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: 0;
  color: var(--orange);
}

.promise-note {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── Closing CTA ─────────────────────────── */
.closing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  background: linear-gradient(135deg, var(--peach), var(--mist));
}

.closing-cta > p:first-child {
  max-width: 700px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
}

.closing-sub {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.closing-words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 4px 0;
  padding: 0;
  list-style: none;
}

.closing-words li {
  padding: 8px 22px;
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  background: var(--navy);
  border-radius: 999px;
}

.closing-priority {
  margin: 0;
  color: var(--orange);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Contact ─────────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  background: linear-gradient(180deg, var(--mist), var(--white));
}

.contact-info h2 {
  color: var(--navy);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 12px;
}

.contact-lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.97rem;
}

.contact-details a {
  color: var(--navy);
  transition: color 140ms ease;
}

.contact-details a:hover {
  color: var(--orange);
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  background: var(--white);
  border: 1px solid #C8D5E3;
  border-radius: 8px;
  transition: border-color 140ms ease, box-shadow 140ms ease;
  appearance: auto;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 52, 96, 0.1);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* ── Footer ──────────────────────────────── */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px clamp(20px, 5vw, 72px);
  background: var(--navy-deep);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: center;
}

/* ── WhatsApp Float ──────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: var(--white);
  background: #25D366;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.46);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* Tablet: 1080px and below */
@media (max-width: 1080px) {
  .site-header {
    height: auto;
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 10px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    margin-left: 0;
    flex-wrap: wrap;
    gap: 2px;
  }

  .header-right {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(26, 52, 96, 0.98) 0% 54%, rgba(238, 246, 250, 0.95) 54% 100%);
  }

  .hero-visual {
    padding-bottom: 32px;
  }

  .serve-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mission-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .rescue-section {
    grid-template-columns: 1fr;
  }

  .box-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

/* Mobile: 720px and below */
@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
  }

  .header-right {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    order: 4;
  }

  .header-phone {
    font-size: 0.8rem;
  }

  .header-cta {
    margin-left: auto;
  }

  h1 {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
    line-height: 1.1;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-photo-frame {
    height: 280px;
    border-width: 5px;
  }

  .hero-photo-tag {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: 12px;
  }

  .serve-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr 1fr;
  }

  .box-list {
    grid-template-columns: 1fr;
  }

  .promise-list {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .promise-list li {
    padding-right: 0;
  }

  .promise-list li:not(:last-child)::after {
    content: none;
  }

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

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Small mobile: 400px and below */
@media (max-width: 400px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
}
