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

:root {
  --teal: #006a72;
  --deep-teal: #005661;

  /* UPDATED ORANGE COLOR */
  --leaf: #FF9D00;

  --ink: #074c56;
  --gold: #ffab00;
  --soft: #e9fbfd;
}

body {
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  background: #fff;
  color: var(--ink);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 620px;
  padding: 38px 34px 0;
  background:
    linear-gradient(180deg, rgba(217, 250, 252, 0.82), rgba(226, 250, 253, 0.36) 42%, rgba(224, 246, 250, 0.08) 76%),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1800&q=85") center bottom / cover no-repeat;
  overflow: hidden;
  position: relative;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 34% 40%, rgba(255, 255, 255, 0.75) 0 4%, transparent 14%),
    linear-gradient(180deg, rgba(221, 253, 255, 0.72) 0 54%, rgba(255, 255, 255, 0.06) 77%);
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 420px;
  text-align: center;
}

.hero h1 {
  color: var(--teal);
  font-size: clamp(42px, 4.6vw, 64px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--deep-teal);
  font-size: 18px;
  font-weight: 700;
}

.breadcrumb span:nth-child(2) {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF9D00;
}

.decor-ring {
  position: absolute;
  left: 18%;
  top: 330px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 9px solid rgba(255, 157, 0, 0.95);
  border-radius: 50%;
}

.tiny-dot {
  position: absolute;
  right: 18%;
  top: 280px;
  z-index: 1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
}

.contact-section {
  padding: 96px 20px 90px;
  background:
    radial-gradient(circle at 7% 12%, rgba(255, 157, 0, 0.08), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f5fdfe 100%);
}

.contact-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.contact-heading > span,
.contact-form > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--leaf);
  font-size: 16px;
  font-weight: 800;
}

.contact-heading h2,
.contact-form h2 {
  margin: 0;
  color: var(--teal);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.12;
}

.contact-heading p {
  max-width: 600px;
  margin: 16px auto 0;
  color: #477179;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.info-card {
  min-height: 216px;
  padding: 34px 28px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(0, 86, 97, 0.1);
  text-align: center;
  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
}

.info-card i {
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(255, 157, 0, 0.12);
  color: var(--leaf);
  font-size: 28px;
}

.info-card h3 {
  margin-bottom: 11px;
  color: var(--teal);
  font-size: 22px;
  font-weight: 800;
}

.info-card p,
.info-card a {
  margin: 0;
  color: #496f76;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
}

.info-card a:hover {
  color: var(--leaf);
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(380px, 1.08fr);
  align-items: stretch;
  gap: 32px;
}

.contact-visual {
  min-height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 86, 97, 0.13);
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  display: block;
  object-fit: cover;
}

.contact-form {
  padding: clamp(32px, 4vw, 54px);
  border-radius: 12px;
  background: var(--teal);
  box-shadow: 0 22px 60px rgba(0, 86, 97, 0.18);
}

.contact-form > span {
  color: #ffd089;
}

.contact-form h2 {
  color: #fff;
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  color: #e4fbff;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  outline: 0;
}

.contact-form input {
  min-height: 58px;
  padding: 0 18px;
}

.contact-form textarea {
  min-height: 166px;
  padding: 17px 18px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 4px rgba(255, 157, 0, 0.28);
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 30px;
  border: 0;
  border-radius: 8px;
  background: var(--leaf);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #ffb938;
  transform: translateY(-2px);
}

.map-section {
  height: 430px;
  background: #eaf7f8;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(0.9);
}

.site-footer {
  position: relative;
  background:
    linear-gradient(rgba(5, 106, 110, 0.93), rgba(5, 106, 110, 0.93)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=70") center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 55, 58, 0.26), transparent 28%),
    radial-gradient(circle at 76% 48%, rgba(0, 55, 58, 0.3), transparent 30%);
  opacity: 0.75;
  pointer-events: none;
}

.footer-overlay {
  position: relative;
  z-index: 1;
  max-width: 1296px;
  margin: 0 auto;
  padding: 60px 20px 22px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(285px, 1.35fr) minmax(230px, 1.1fr) minmax(275px, 1.25fr);
  gap: 64px;
  align-items: start;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-brand p {
  max-width: 205px;
  color: #c5eef1;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.footer-links h2 {
  margin-bottom: 25px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.footer-links a {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--leaf);
}

.footer-contact {
  display: grid;
  gap: 22px;
}

.contact-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: center;
}

.contact-row i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--teal);
  font-size: 18px;
}

.footer-contact a,
.footer-contact span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.contact-row .phone-link {
  color: var(--leaf);
  font-size: 25px;
  font-weight: 800;
}

.footer-divider {
  max-width: 1120px;
  margin: 0 auto 28px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-disclaimer {
  max-width: 1120px;
  margin: 0 auto 34px;
  color: #d7f4f5;
  text-align: center;
  font-size: 13px;
  line-height: 1.65;
}

.footer-bottom {
  min-height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
}

.footer-bottom span {
  color: var(--leaf);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1240px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .contact-cards,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-visual img {
    min-height: 420px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    min-height: 560px;
    padding: 18px 14px 0;
  }

  .hero {
    min-height: 360px;
    padding-top: 76px;
  }

  .contact-section {
    padding: 68px 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 40px;
  }

  .breadcrumb {
    font-size: 16px;
  }

  .info-card {
    padding: 30px 22px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-form button {
    width: 100%;
  }

  .map-section {
    height: 340px;
  }

  .contact-row .phone-link {
    font-size: 22px;
  }
}