
/* === Section & Utility Classes === */
.section-heading {
  display: block;
  text-align: center !important;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: #0f172a;
}
.text-center { text-align: center; }
.mt-6 { margin-top: 1.5rem; }
.small { font-size: 0.9rem; color: #64748b; }

:root{
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --cyan-200: #99f6e4;
  --cyan-600: #0891b2;
  --blue-600: #0ea5e9;
  --brand-gradient-from: rgba(34,211,238,0.12);
  --brand-gradient-to: rgba(6,182,212,0.06);
  /* Tailwind-like cyan-300 for the header underline */
  --header-border: #67e8f9;
  --max-width: 1200px;
}

/* Reset & base */
*{box-sizing:border-box}
html{font-family: 'Atkinson Hyperlegible', Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;}
body{margin:0;color:#1f2937;background:linear-gradient(180deg,#fbfeff, #f8fafc);line-height:1.6;-webkit-font-smoothing:antialiased}

.container{width:90%;max-width:var(--max-width);margin:0 auto;padding:8px}

h1,h2,h3{color:#0f172a;margin:0 0 0.75rem}
p{margin:0 0 1rem;color:#334155}

/* Header */
header{background:linear-gradient(90deg, rgba(34,211,238,0.12), rgba(6,182,212,0.06));border-bottom:4px solid var(--header-border);position:relative}
header .container{padding:10px 8px}
/* Header: logo centered, CTA right, nav below */
.header-flex{display:flex;align-items:center;justify-content:center;gap:0;position:relative;min-height:80px}
.header-flex .logo-link{margin:0 auto;position:relative;left:0;right:0;z-index:2;}
.header-flex .header-cta{position:absolute;right:0;top:50%;transform:translateY(-50%);z-index:3;}

@media (max-width:768px){
  .header-flex{min-height:60px}
  .header-flex .header-cta{position:static;transform:none;margin-left:auto;}
}
.logo-link{max-width:275px;display:inline-block}
.logo-link img{width:100%;height:auto;display:block}

/* Nav (simple, keeps original markup) */
nav.menu{display:flex;gap:28px;align-items:center;justify-content:center}
/* Match Mocha: text-lg (1.125rem) with medium weight; active -> semibold + bottom border */
nav.menu a{color:#0f172a;text-decoration:none;font-weight:500;font-size:1.125rem;padding:6px 4px}
nav.menu a:hover{color:var(--cyan-600)}

/* active state similar to Mocha header */
nav.menu a.active{color: #075985; font-weight:600;}

/* Mobile nav toggling handled by inline script; provide accessible styles */
.hamburger{display:none;background:none;border:0;font-size:1.25rem}

@media (max-width:768px){
  nav.menu{display:none;width:100%;justify-content:center;padding:12px 0}
  nav.menu.open{display:flex;flex-direction:column;gap:12px;background:transparent}
  .hamburger{display:block}
  nav.menu a{font-size:1rem;padding:10px 0}
}
@media (min-width:769px){
  .hamburger{display:none}
}

/* Hero / Welcome */
.welcome{background:linear-gradient(180deg, rgba(14,165,233,0.06), rgba(6,182,212,0.02));border-radius:0;padding:46px 24px 38px;margin-top:0;box-shadow:none}
.welcome h1{text-align:center;font-size:2rem;font-weight:800;line-height:1.05;color:#04263a}
.welcome p{max-width:920px;margin:20px auto 0;font-size:1.125rem;color:#334155}

/* Add spacing between hero text and button */
.welcome p + .text-center { margin-top: 15px !important; }
@media (min-width:768px){
  .welcome h1{font-size:3rem} /* 48px */
  .welcome p{font-size:1.125rem}
}
.welcome .cta-wrap{text-align:center;margin-top:20px}
.cta-button{display:inline-flex;align-items:center;gap:12px;background:linear-gradient(90deg,var(--cyan-600),var(--blue-600));color:#ffffff !important;padding:14px 26px;border-radius:9999px;text-decoration:none;font-weight:800;font-size:1.05rem;box-shadow:0 18px 40px rgba(14,165,233,0.14);transition:transform .12s ease,box-shadow .12s}
.cta-button:hover{transform:translateY(-3px);box-shadow:0 26px 60px rgba(14,165,233,0.18)}

/* Make hero more visually distinct on small screens */
@media (max-width:768px){
  .welcome{padding:28px 18px}
  .welcome h1{font-size:1.8rem}
  .welcome p{font-size:1rem}
  .cta-button{padding:12px 20px;font-size:1rem}
}

/* Statement small banner */
.statement{background:linear-gradient(90deg, rgba(153,246,228,0.25), rgba(34,252,240,0.12));padding:12px 0 10px 0;border-radius:8px;text-align:center;margin:12px 0}
.statement p{font-weight:600;color:#04263a;font-size:1.125rem}
@media (min-width:768px){
  .statement p{font-size:1.5rem}
}

/* Header CTA override (smaller pill) */
.header-cta{padding:14px 26px;font-size:1.05rem;border-radius:999px; color:#fff !important}

/* Services */
.services{margin:18px 0}


.service-boxes {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.mocha-box {
  background: linear-gradient(180deg, #ecfeff 60%, #fff 100%);
  border-radius: 1.25rem;
  box-shadow: 0 8px 32px rgba(14,165,233,0.10);
  padding: 0.9375rem 1.25rem 0.9375rem 1.25rem;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 260px;
  text-align: center;
}

.mocha-areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 32px;
  justify-content: center;
  margin: 0 auto;
  max-width: 800px;
}
.mocha-box:hover {
  box-shadow: 0 16px 48px rgba(14,165,233,0.16);
}
.mocha-box:hover {
  box-shadow: 0 16px 48px rgba(14,165,233,0.16);
}
.mocha-box .service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
}
.mocha-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0f172a;
}
.mocha-box p {
  font-size: 1.05rem;
  color: #334155;
}
.services-link-wrap {
  text-align: center;
  margin-top: 2.2rem;
}
.services-link {
  display: inline-block;
  color: #0891b2;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color .15s;
}
.services-link:hover {
  color: #0ea5e9;
}

/* Areas section: mocha style background, 3x2 grid, white boxes */
.areas {
  background: linear-gradient(90deg, #cffafe 0%, #ecfeff 100%);
  padding: 48px 0 54px 0;
  margin-top: 0;
}
.areas-desc {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 2.2rem auto;
  color: #334155;
  font-size: 1.15rem;
}
/* Always 3 columns, 2 rows for 6 areas on desktop */
.area-box {
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 4px 18px rgba(14,165,233,0.10);
  padding: 1.1rem 2.2rem;
  font-weight: 600;
  color: #0f172a;
  font-size: 1.1rem;
  width: 230px;
  max-width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .mocha-areas {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .mocha-areas {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}


/* Areas / Map layout */
.map-and-list{display:flex;gap:18px;align-items:flex-start}
#map{flex:1;min-height:420px;border-radius:12px;box-shadow:0 6px 18px rgba(2,6,23,0.06);overflow:hidden}

@media (max-width:960px){
  .map-and-list{flex-direction:column}
  .areas-boxes{width:100%}
  #map{width:100%;min-height:320px}
}

/* Mocha-style reviews section */
.reviews-carousel {
  border-radius: 18px;
  padding: 32px 0 32px 0;
  background: #fff;
  box-shadow: 0 8px 32px rgba(14,165,233,0.10);
}
.carousel-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.review {
  background: linear-gradient(180deg,#ecfeff,#ffffff);
  padding: 32px 28px 28px 28px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(14,165,233,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 220px;
}
.review p {
  color: #334155;
  font-size: 1.08rem;
  margin-bottom: 12px;
  text-align: center;
}
.review-author {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.stars {
  color: #f59e0b;
  font-size: 1.25rem;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .carousel {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .reviews-carousel {
    padding: 18px 0;
  }
}

/* Footer */
footer{margin-top:26px;padding:18px 0;background:linear-gradient(90deg, rgba(34,211,238,0.06), rgba(6,182,212,0.03));border-top:3px solid rgba(34,211,238,0.08)}
.footer-container{display:flex;gap:18px;align-items:center;justify-content:space-between;flex-wrap:wrap}
.footer-left,.footer-right{flex:1}
.footer-left a{display:inline-flex;align-items:center;gap:10px;color:#0f172a;text-decoration:none}
.footer-left p{margin-top:8px;color:#475569}
.footer-right{text-align:right}

@media (max-width:768px){
  .footer-right{text-align:left;margin-top:12px}
}

/* Utility tweaks */

/* Improve link focus */
a:focus{outline:3px solid rgba(6,182,212,0.25);outline-offset:2px}

/* End of stylesheet */
