/* ============================================
   COASTAL CLIMATE CO.
   Brand stylesheet — local prototype
   ============================================ */

:root {
  --navy: #0B2545;
  --navy-mid: #1E3A8A;
  --steel: #1E40AF;
  --royal: #1D4ED8;
  --sky: #2563EB;
  --sky-light: #DBEAFE;
  --gold: #F59E0B;
  --gold-deep: #D97706;
  --orange: #F59E0B;
  --orange-hover: #D97706;
  --orange-soft: #FEF3C7;
  --bg: #F8FAFC;
  --bg-alt: #EFF4FA;
  --white: #FFFFFF;
  --text: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.05);
  --shadow-md: 0 4px 12px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 12px 32px rgba(11, 37, 69, 0.12);
  --shadow-xl: 0 24px 60px rgba(11, 37, 69, 0.18);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --container: 1200px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 70px; /* space for mobile call bar */
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

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

a { color: var(--sky); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }

h1, h2, h3, h4 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.625rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============================================
   TOP UTILITY BAR
   ============================================ */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar a { color: var(--white); }
.top-bar a:hover { color: var(--orange); }
.top-bar .left, .top-bar .right { display: flex; gap: 1.25rem; align-items: center; }
.top-bar .badge { background: var(--orange); padding: 0.15rem 0.55rem; border-radius: 999px; font-weight: 600; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; }
@media (max-width: 640px) {
  .top-bar .left .license { display: none; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
}
.brand:hover { color: var(--navy); }
.brand-mark {
  width: 46px;
  height: 46px;
  background: var(--royal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.35rem;
  box-shadow: var(--shadow-md), inset 0 0 0 2px var(--white);
  position: relative;
  border: 2px solid var(--royal);
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.04em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .small { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 3px; }

.nav-links {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
  background: var(--bg-alt);
}
.nav-cta {
  margin-left: 0.5rem;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle svg { width: 28px; height: 28px; }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.85rem 0.5rem;
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}
.btn-primary:hover {
  background: var(--orange-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.45);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-lg { padding: 1.05rem 1.85rem; font-size: 1rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0B2545 0%, #13315C 50%, #1E3A5F 100%);
  color: var(--white);
  overflow: hidden;
  padding: 4.5rem 0 5.5rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.25) 0%, transparent 50%),
                    radial-gradient(circle at 10% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--orange); }
.hero p.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249, 115, 22, 0.15);
  color: var(--orange);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(249, 115, 22, 0.3);
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(249,115,22,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}
.hero-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
}
.hero-trust-item strong {
  font-size: 1.6rem;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  line-height: 1;
}
.hero-trust-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .overlay-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-md);
}
.hero-visual .overlay-card .icon {
  width: 44px; height: 44px; background: var(--sky-light); color: var(--navy);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
}
.hero-visual .overlay-card strong { color: var(--navy); display: block; font-size: 0.95rem; }
.hero-visual .overlay-card small { color: var(--text-muted); font-size: 0.8rem; }

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .trust-strip-grid .full { grid-column: 1 / -1; }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text);
}
.trust-item .ti-icon {
  width: 36px; height: 36px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.trust-item strong { display: block; color: var(--navy); font-size: 0.95rem; }
.trust-item span { color: var(--text-muted); font-size: 0.78rem; }

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 5rem 0; }
@media (max-width: 768px) { section { padding: 3.5rem 0; } }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-eyebrow {
  display: inline-block;
  background: var(--sky-light);
  color: var(--navy-mid);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { font-size: 1.05rem; }

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--sky-light) 0%, var(--bg-alt) 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.service-card .icon-wrap svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { font-size: 0.95rem; line-height: 1.6; }
.service-card .learn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 1.1rem; color: var(--orange); font-weight: 700; font-size: 0.9rem;
}
.service-card .learn:hover { color: var(--orange-hover); gap: 0.6rem; }

/* ============================================
   EMERGENCY BANNER
   ============================================ */
.emergency-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #DC2626 100%);
  color: var(--white);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.emergency-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 12px, transparent 12px 24px);
}
.emergency-banner .container {
  position: relative;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  flex-wrap: wrap;
}
.emergency-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.4rem; }
.emergency-banner p { color: rgba(255,255,255,0.95); font-size: 1.05rem; }
.emergency-banner .btn-primary {
  background: var(--white);
  color: var(--orange);
  font-size: 1.1rem;
  padding: 1.1rem 2rem;
}
.emergency-banner .btn-primary:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section { background: var(--bg-alt); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
.why-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.why-visual img { width: 100%; height: 100%; object-fit: cover; }
.why-visual .badge-card {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  display: flex; align-items: center; gap: 0.6rem;
  box-shadow: var(--shadow-md);
}
.why-visual .badge-card .stars { color: #FBBF24; font-size: 1.1rem; letter-spacing: 1px; }
.why-visual .badge-card strong { color: var(--navy); display: block; font-size: 1rem; }
.why-visual .badge-card small { color: var(--text-muted); font-size: 0.78rem; }

.why-list { list-style: none; display: grid; gap: 1.25rem; }
.why-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-item:hover { box-shadow: var(--shadow-md); border-color: var(--sky-light); }
.why-item .check {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-item .check svg { width: 22px; height: 22px; }
.why-item h4 { color: var(--navy); margin-bottom: 0.25rem; }
.why-item p { font-size: 0.92rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial .quote-mark {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  color: var(--sky-light);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
}
.testimonial .stars { color: #FBBF24; letter-spacing: 2px; margin-bottom: 0.85rem; }
.testimonial blockquote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.testimonial .author {
  display: flex; align-items: center; gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
}
.testimonial .author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testimonial .author small { color: var(--text-muted); font-size: 0.78rem; }

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-section { background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%); }
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) { .areas-grid { grid-template-columns: 1fr; } }
.areas-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}
.area-pill {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.area-pill:hover { border-color: var(--sky); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.area-pill svg { width: 18px; height: 18px; color: var(--orange); }

.map-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}
.map-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.95; }
.map-card .pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--orange);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(249,115,22,0.5);
  display: flex; align-items: center; gap: 0.5rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.3) 0%, transparent 60%);
}
.cta-section .container { position: relative; }
.cta-section h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-section .ctas { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #061629;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 1.5rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-grid > div:first-child { grid-column: 1 / -1; } }
.footer h5 {
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.footer ul { list-style: none; display: grid; gap: 0.6rem; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--orange); }
.footer .brand-block .brand { color: var(--white); margin-bottom: 1rem; }
.footer .brand-block .brand:hover { color: var(--white); }
.footer .brand-block p { color: rgba(255,255,255,0.65); margin-bottom: 1rem; max-width: 320px; }
.footer .contact-item { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.85rem; }
.footer .contact-item svg { width: 18px; height: 18px; color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}

/* ============================================
   MOBILE STICKY CALL BAR
   ============================================ */
.mobile-call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--orange);
  color: var(--white);
  padding: 0.85rem 1rem;
  display: flex;
  gap: 0.6rem;
  z-index: 99;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
.mobile-call-bar a {
  flex: 1;
  background: var(--white);
  color: var(--orange);
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-size: 0.95rem;
}
.mobile-call-bar a.outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
@media (min-width: 768px) { .mobile-call-bar { display: none; } }

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(59,130,246,0.25), transparent 50%),
              radial-gradient(circle at 20% 100%, rgba(249,115,22,0.15), transparent 50%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 0.85rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }
.breadcrumb {
  display: flex; gap: 0.4rem; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: rgba(255,255,255,0.85); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.story-section .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 900px) { .story-section .story-grid { grid-template-columns: 1fr; } }
.story-content h2 { margin-bottom: 1.25rem; }
.story-content p { margin-bottom: 1rem; font-size: 1.02rem; }
.story-visual {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-visual img { width: 100%; height: 100%; object-fit: cover; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.value-card .icon-circle {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin: 0 auto 1rem;
}
.value-card h4 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 1.25rem; align-content: start; }
.contact-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex; gap: 1rem;
  align-items: flex-start;
}
.contact-card .icon-box {
  width: 48px; height: 48px;
  background: var(--sky-light);
  color: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card h4 { margin-bottom: 0.25rem; }
.contact-card p, .contact-card a { font-size: 0.95rem; color: var(--text-muted); }
.contact-card a { color: var(--navy); font-weight: 600; }
.contact-card a:hover { color: var(--orange); }

.contact-form {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg);
  transition: all var(--transition);
  color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; padding: 1.1rem; font-size: 1.05rem; }
.form-note { font-size: 0.82rem; color: var(--text-muted); text-align: center; margin-top: 0.85rem; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:nth-child(even) .service-detail-visual { order: -1; }
@media (max-width: 900px) { .service-detail { grid-template-columns: 1fr; } .service-detail:nth-child(even) .service-detail-visual { order: 0; } }
.service-detail-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-detail-visual img { width: 100%; height: 100%; object-fit: cover; }
.service-detail h2 { margin-bottom: 0.85rem; font-size: 1.875rem; }
.service-detail .price-tag {
  display: inline-block;
  background: var(--sky-light);
  color: var(--navy);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.service-detail ul { list-style: none; margin: 1rem 0 1.5rem; }
.service-detail ul li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--text);
}
.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
  font-size: 1.1rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--orange);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-item p { padding: 1.25rem 1.5rem; color: var(--text-muted); }

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
