/* ============================================
   COMMUNITY CONCIERGE SERVICES — STYLESHEET
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-deeper: #0c4a6e;
  --accent: #06b6d4;
  --accent-glow: rgba(14, 165, 233, 0.15);
  --navy: #ffffff;
  --navy-mid: #ffffff;
  --navy-card: #ffffff;
  --navy-border: rgba(14, 165, 233, 0.25);
  --text-white: #000000;
  --text-muted: #475569;
  --text-body: #1e293b;
  --gradient-blue: linear-gradient(135deg, #0ea5e9, #06b6d4);
  --gradient-dark: linear-gradient(135deg, #ffffff, #f8fafc);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-glow: 0 0 25px rgba(14, 165, 233, 0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

.gradient-text {
  background: linear-gradient(90deg, #0ea5e9, #38bdf8, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--gradient-blue);
  color: white;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.55);
}

.btn-secondary {
  background: rgba(14, 165, 233, 0.08);
  color: var(--primary);
  border: 1px solid rgba(14, 165, 233, 0.3);
}
.btn-secondary:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--navy-border);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
}
.brand-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); background: rgba(14, 165, 233, 0.06); }

.nav-cta {
  background: var(--gradient-blue) !important;
  color: white !important;
  padding: 10px 20px !important;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.35);
}
.nav-cta:hover {
  box-shadow: 0 6px 25px rgba(14, 165, 233, 0.5) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.78) 50%,
    rgba(255, 255, 255, 0.92) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 80px;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(14,165,233,0.4); }
  50%       { transform: scale(1.1); opacity: 0.9; box-shadow: 0 0 0 6px rgba(14,165,233,0); }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-body);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-sub2 {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.25s both;
}
.hero-sub2 strong { color: var(--primary-dark); }

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(15,23,42,0.12); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease 0.6s both;
  pointer-events: none;
}
.scroll-indicator {
  width: 18px;
  height: 28px;
  border: 2px solid var(--primary);
  border-radius: 9px;
  position: relative;
}
.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--primary);
  border-radius: 1.5px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% {
    top: 5px;
    opacity: 1;
    height: 5px;
  }
  50% {
    top: 13px;
    opacity: 0.3;
    height: 7px;
  }
  100% {
    top: 5px;
    opacity: 1;
    height: 5px;
  }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: rgba(14, 165, 233, 0.04);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}
.trust-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.trust-item:hover { color: var(--text-white); }

/* ============================================
   SERVICES BENTO GRID
   ============================================ */
.services-section { background: var(--navy); }

/* Grid container — 6 equal columns */
.services-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* Column spans */
.svc-half  { grid-column: span 3; }   /* 2 per row */
.svc-third { grid-column: span 2; }   /* 3 per row */
.svc-full  { grid-column: span 6; }   /* 1 full row */

/* Base card */
.svc-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.svc-card:hover {
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.svc-card:hover::after { transform: scaleX(1); }

/* Featured card */
.svc-featured {
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  border-color: rgba(14, 165, 233, 0.35);
}

/* Image area */
.svc-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-bottom: 1px solid var(--navy-border);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

/* Full-width cards get a taller image area */
.svc-full .svc-img-wrap { height: 220px; }

/* Third-width cards get a slightly shorter image */
.svc-third .svc-img-wrap { height: 160px; }

.svc-img-wrap:hover { background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); }

.svc-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.svc-img-placeholder svg {
  width: 70%;
  height: 70%;
  max-width: 260px;
}
.svc-card:hover .svc-img-placeholder { opacity: 0.9; }

/* "Add Image" label overlay */
.svc-img-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(14, 165, 233, 0.12);
  border: 1px dashed rgba(14, 165, 233, 0.4);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.svc-card:hover .svc-img-label { opacity: 1; }

/* Card body */
.svc-body {
  padding: 24px 26px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

.svc-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.svc-note {
  font-size: 0.83rem !important;
  color: var(--primary-dark) !important;
  font-style: italic;
  border-left: 2px solid var(--primary);
  padding-left: 10px;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.svc-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(14, 165, 233, 0.08);
  color: var(--primary-dark);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

/* Featured badge inside card */
.svc-featured-badge {
  display: inline-block;
  background: var(--gradient-blue);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  align-self: flex-start;
  margin-bottom: 2px;
}

/* Full-width card layout: image left, content right on desktop */
.svc-full {
  flex-direction: row;
}
.svc-full .svc-img-wrap {
  width: 340px;
  height: auto;
  min-height: 220px;
  flex-shrink: 0;
  border-bottom: none;
  border-right: 1px solid var(--navy-border);
}
.svc-full .svc-body {
  padding: 32px 32px;
}
.svc-full .svc-body h3 { font-size: 1.15rem; }



/* Services card grid layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* Category label divider */
.service-category-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 14px 20px;
  background: linear-gradient(90deg, rgba(14,165,233,0.06) 0%, transparent 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.service-category-label span:last-child {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.02em;
}
.category-icon {
  width: 34px;
  height: 34px;
  background: var(--gradient-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.category-icon svg {
  width: 18px;
  height: 18px;
  color: white;
}

.service-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(14, 165, 233, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-icon svg { width: 26px; height: 26px; color: var(--primary); }
.service-card:hover .service-icon { background: rgba(14, 165, 233, 0.15); transform: scale(1.05); }

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-extra {
  font-size: 0.85rem !important;
  color: var(--primary-dark) !important;
  font-style: italic;
  border-left: 2px solid var(--primary);
  padding-left: 10px;
  margin-bottom: 14px !important;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(14, 165, 233, 0.08);
  color: var(--primary-dark);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.service-card--featured {
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.08);
}
.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gradient-blue);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-section { background: #f1f5f9; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: var(--shadow-card);
}
.benefit-card--highlight {
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  border-color: rgba(14, 165, 233, 0.35);
}

.benefit-icon {
  width: 52px; height: 52px;
  background: rgba(14, 165, 233, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg { width: 26px; height: 26px; color: var(--primary); }

.benefit-content { flex: 1; }
.benefit-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.benefit-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-body);
}
.benefit-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   WHAT SETS US APART
   ============================================ */
.why-section { background: var(--navy); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.why-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.why-card--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 100%);
  border-color: rgba(14, 165, 233, 0.3);
}

.why-number {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(14, 165, 233, 0.15);
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
  user-select: none;
}

.why-icon {
  width: 56px; height: 56px;
  background: rgba(14, 165, 233, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 28px; height: 28px; color: var(--primary); }

.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
}
.why-card p {
  color: var(--text-muted);
  line-height: 1.72;
  font-size: 0.9rem;
}

.why-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-body);
  font-size: 0.875rem;
}
.why-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Duration Box */
.duration-box {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.duration-icon {
  width: 56px; height: 56px;
  background: rgba(14, 165, 233, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.duration-icon svg { width: 28px; height: 28px; color: var(--primary); }

.duration-content { flex: 1; }
.duration-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}
.duration-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.duration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.duration-item {
  background: #ffffff;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.duration-time {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.duration-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================
   SCHEDULING / ACCORDION
   ============================================ */
.schedule-section { background: #f1f5f9; }

.warning-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(234, 88, 12, 0.06);
  border: 1px solid rgba(234, 88, 12, 0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 40px;
}
.warning-icon {
  width: 44px; height: 44px;
  background: rgba(234, 88, 12, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.warning-icon svg { width: 24px; height: 24px; color: #ea580c; }
.warning-text {
  color: #c2410c;
  font-size: 0.9rem;
  line-height: 1.7;
  padding-top: 2px;
}
.warning-text strong { color: #ea580c; }

.accordion { display: flex; flex-direction: column; gap: 12px; }

.accordion-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item.open {
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.08);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.accordion-header:hover { background: rgba(14, 165, 233, 0.04); }

.accordion-icon-wrap {
  width: 42px; height: 42px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.accordion-icon-wrap svg { width: 20px; height: 20px; color: var(--primary); }

.accordion-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
}
.accordion-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(14, 165, 233, 0.12);
  color: var(--primary);
  border: 1px solid rgba(14, 165, 233, 0.25);
  white-space: nowrap;
}
.accordion-arrow {
  width: 20px; height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-item.open .accordion-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.accordion-item.open .accordion-body {
  max-height: 600px;
  padding: 0 24px 28px;
}
.accordion-body p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.accordion-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.accordion-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
}
.accordion-body ul li::before {
  content: '→';
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--navy); }

.contact-section .section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 14px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(14, 165, 233, 0.2);
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 2px;
}
.contact-detail-value {
  font-size: 0.925rem;
  color: var(--text-white);
  font-weight: 500;
}
a.contact-detail-value:hover { color: var(--primary); }

/* Service Areas Box */
.service-areas-box {
  background: rgba(14, 165, 233, 0.05);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 24px;
}
.service-areas-box h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 14px;
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.areas-grid span {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(14, 165, 233, 0.08);
  color: var(--text-body);
  border: 1px solid rgba(14, 165, 233, 0.15);
}

/* Form */
.contact-form {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-white);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }
.form-group select option { background: var(--navy-card); color: var(--text-white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--navy-border);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .brand { margin-bottom: 14px; }
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-white);
  margin-bottom: 16px;
}
.footer-col a {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--primary); transform: translateX(3px); }

.footer-bottom {
  border-top: 1px solid rgba(15,23,42,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: #64748b; font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  color: #64748b;
  font-size: 0.82rem;
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--primary); }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: linear-gradient(135deg, #0c4a6e, #0284c7);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  /* Bento: thirds become halves */
  .svc-third { grid-column: span 3; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card--large { grid-row: auto; grid-column: auto; }
  .benefits-grid { grid-template-columns: 1fr; }
  .duration-grid { grid-template-columns: 1fr; }
  .duration-box { flex-direction: column; }
}

@media (max-width: 900px) {
  .contact-wrapper { grid-template-columns: 1fr; }
}

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

  /* Nav */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--navy-border);
    padding: 16px 24px 24px;
    gap: 4px;
  }
  .nav-links.open a { padding: 12px 16px; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-stats { gap: 12px; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Bento grid: all cards become full-width */
  .services-bento { grid-template-columns: 1fr; }
  .svc-half, .svc-third, .svc-full { grid-column: span 1; }
  /* Full-width cards: stack image on top */
  .svc-full { flex-direction: column; }
  .svc-full .svc-img-wrap {
    width: 100%;
    height: 200px;
    border-right: none;
    border-bottom: 1px solid var(--navy-border);
  }

  /* Other grids */
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { max-width: 100%; }

  /* Trust */
  .trust-inner { justify-content: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .contact-form { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .duration-grid { grid-template-columns: 1fr; }
}
