:root{
  --teal:#099488;
  --teal-700:#07756C;
  --text:#0f172a;
  --muted:#64748b;
  --soft:#f6f9fb;
  --white:#ffffff;
  --ring:#e9eef4;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:#fff;
}

/* Container */
.container{ width:min(1200px,92%); margin-inline:auto; }

/* Hero */
.contact-hero{
  padding: 110px 0 80px;
  background: linear-gradient(135deg, #0aa899, #0c7f76);
  color:#fff;
  text-align:center;
}
.contact-hero h1{
  margin:0 0 10px;
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 900;
}
.contact-hero p{
  margin:0;
  font-size: clamp(16px, 2vw, 20px);
  opacity:.95;
}

/* Grid */
.contact-wrap{ padding: 48px 0 24px; background:#fff; }
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
}
@media (max-width: 980px){
  .contact-grid{ grid-template-columns: 1fr; }
}

/* Left column */
.chunk-title{
  margin:0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
}
.info-item{
  display:flex;
  gap:16px;
  padding:16px 0;
}
.icon{
  width:48px; height:48px;
  display:grid; place-items:center;
  background:#dff5f1;
  color:var(--teal);
  border-radius:12px;
  flex:0 0 48px;
}
.icon svg{ width:24px; height:24px; fill: currentColor; }
.info-item h3{ margin:0 0 4px; font-size:18px; }
.info-item p{ margin:0; }
.info-item small{ color:#94a3b8; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:12px;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
  border:1px solid transparent;
}
.btn-primary{ background:var(--teal); color:#fff; border-color:var(--teal); }
.btn-outline{ background:#fff; color:var(--teal); border-color:var(--ring); }
.line-btn{ width:100%; margin:18px 0 14px; }
.soft-btn{ width:100%; }

/* Form card */
.contact-form{
  background:#f7fafc;
  border:1px solid var(--ring);
  padding:24px;
  border-radius:16px;
}
.contact-form h2{
  margin:0 0 14px; font-size:24px; font-weight:800;
}
.flabel{ display:block; font-weight:600; margin:14px 0 6px; }
.field{
  width:100%; padding:14px 14px;
  border-radius:10px; border:1px solid var(--ring);
  background:#fff; outline:none;
  font-size:15px;
}
.field:focus{ border-color:#cbd5e1; box-shadow:0 0 0 4px rgba(9,148,136,0.10); }
.textarea{ resize:vertical; min-height:140px; }
.counter{ display:block; color:#94a3b8; margin-top:6px; }
.submit-btn{ width:100%; margin-top:16px; }

/* Map */
.map-section{ background:#fff; padding: 36px 0 72px; }
.map-title{
  text-align:center; margin:0 0 8px; font-size: clamp(24px, 3.6vw, 36px); font-weight:900;
}
.map-subtitle{
  text-align:center; margin:0 auto 22px; max-width:840px; color:var(--muted);
}
.map-card{
  background:#fff; border:1px solid var(--ring); border-radius:14px; overflow:hidden;
  box-shadow:0 10px 24px rgba(2,6,23,.06);
}
.map-card iframe{ width:100%; height:420px; border:0; display:block; }
.addr{ padding:18px 22px; display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; }
.addr h3{ margin:0; font-size:20px; }
.addr p{ margin:0; }
.addr .muted{ color:#64748b; }
.addr .btn.small{ padding:10px 14px; border-radius:10px; }

/* Emergency band */
.emergency-band{
  background:var(--soft);
  color:#fff; text-align:center; padding: 46px 0 64px;
}
.band-inner{ max-width:900px; }
.emergency-band h3{ margin:0 0 8px; font-size: clamp(22px, 3.4vw, 32px); font-weight:900; }
.emergency-band p{ margin:0 0 18px; opacity:.95; }
.call-pill{
  background:#fff; color: var(--teal); padding:14px 18px; border-radius:12px; display:inline-flex;
}
.flash-container {
  margin: 20px auto;
  max-width: 800px;
}

.flash {
  padding: 12px 18px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.flash-success {
  background-color: #d1f7d6;
  color: #155724;
  border: 1px solid #a3e4ab;
}

.flash-danger, .flash-warning {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
/* Contact Info section (formal & clean look) */
.contact-info {
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.info-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #eaeef3;
}
.info-item:last-child {
  border-bottom: none;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--teal);
  border-radius: 50%;
  flex: 0 0 52px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.info-item h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.info-item p {
  margin: 0;
  font-size: 15px;
  color: var(--text);
}
.info-item small {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--muted);
}

/* Call-to-action buttons under info */
.line-btn,
.soft-btn {
  margin-top: 20px;
  font-size: 15px;
  border-radius: 10px;
}


