*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
:root {
  --brand: #0d6e7c;
  --brand-dark: #094f5a;
  --brand-deep: #062f36;
  --accent: #f4a847;
  --accent2: #e8773a;
  --bg: #f7f9f8;
  --surface: #ffffff;
  --text: #0f1c1e;
  --muted: #5a7070;
  --border: #d8e8ea;
  --nav-h: 70px;
}
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(6, 47, 54, 0.07);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-deep);
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition:
    background 0.15s,
    color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  background: #e6f4f6;
  color: var(--brand);
}
.nav-cta {
  padding: 0.55rem 1.4rem;
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--brand-dark);
}
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.nav-ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-ham.open span:nth-child(2) {
  opacity: 0;
}
.nav-ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 2px;
  padding: 1rem;
  z-index: 99;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition:
    background 0.12s,
    color 0.12s;
}
.mobile-menu a:hover {
  background: #e6f4f6;
  color: var(--brand);
}

/* TRUST BAR */
.trust-bar {
  background: var(--brand-deep);
  padding: 1rem 0;
  overflow: hidden;
}
.trust-track {
  display: flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.trust-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}
.trust-track span.dot {
  color: var(--accent);
  font-size: 1rem;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* HERO */
.contact-hero {
  min-height: 52vh;
  padding: calc(var(--nav-h) + 5rem) 5% 4rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 80% 50%,
      rgba(13, 110, 124, 0.09) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 50% at 15% 80%,
      rgba(244, 168, 71, 0.06) 0%,
      transparent 60%
    );
  z-index: 0;
}
.hs1 {
  position: absolute;
  width: 340px;
  height: 340px;
  background: rgba(13, 110, 124, 0.06);
  border-radius: 50%;
  top: -80px;
  right: 5%;
  animation: float1 8s ease-in-out infinite;
  z-index: 0;
}
.hs2 {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(244, 168, 71, 0.08);
  border-radius: 50%;
  bottom: 5%;
  right: 25%;
  animation: float2 6s ease-in-out infinite;
  z-index: 0;
}
@keyframes float1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e6f4f6;
  border: 1px solid rgba(13, 110, 124, 0.2);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--brand-deep);
  margin-bottom: 0.6rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--brand);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* SECTION COMMON */
section {
  padding: 5rem 5%;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--brand-deep);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}

/* CONTACT SECTION */
.contact-section {
  background: var(--surface);
  padding: 5rem 5%;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Info Panel */
.info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.info-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #e6f4f6;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 4px;
}
.info-val {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.6;
}
.info-val a {
  color: var(--brand);
  transition: opacity 0.15s;
}
.info-val a:hover {
  opacity: 0.75;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 500;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.social-pill:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: #e6f4f6;
}
.social-pill svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.map-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 0.5rem;
}
.map-preview {
  background: var(--brand-deep);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-preview-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 18px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 18px
    );
}
.map-pin-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(244, 168, 71, 0.5);
}
.map-pin-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand-deep);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.map-footer {
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
}
.map-addr {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 1rem;
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}
.map-open-btn:hover {
  background: var(--brand-dark);
}
.map-open-btn svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* FORM CARD */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.8rem;
  box-shadow: 0 10px 50px rgba(6, 47, 54, 0.06);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 0.4rem;
}
.form-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 110, 124, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  font-weight: 300;
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(13, 110, 124, 0.3);
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.submit-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 110, 124, 0.4);
}
.submit-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-state {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e6f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.success-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 0.5rem;
}
.success-sub {
  font-size: 0.95rem;
  color: var(--muted);
}

/* CTA SECTION */
.cta-section {
  background: var(--bg);
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.cta-card {
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cta-card.light {
  background: var(--surface);
  border: 1px solid var(--border);
}
.cta-card.dark {
  background: var(--brand-deep);
}
.cta-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.cta-card.light .cta-card-icon {
  background: #e6f4f6;
}
.cta-card.dark .cta-card-icon {
  background: rgba(255, 255, 255, 0.1);
}
.cta-card-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
  fill: none;
}
.cta-card.light .cta-card-icon svg {
  stroke: var(--brand);
}
.cta-card.dark .cta-card-icon svg {
  stroke: rgba(255, 255, 255, 0.9);
}
.cta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.cta-card.light .cta-label {
  color: var(--brand);
}
.cta-card.dark .cta-label {
  color: var(--accent);
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.cta-card.light .cta-title {
  color: var(--brand-deep);
}
.cta-card.dark .cta-title {
  color: #fff;
}
.cta-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-card.light .cta-desc {
  color: var(--muted);
}
.cta-card.dark .cta-desc {
  color: rgba(255, 255, 255, 0.55);
}
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.8rem;
  background: var(--accent);
  color: var(--brand-deep);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.1s;
}
.btn-accent:hover {
  background: #e09830;
  transform: translateY(-2px);
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.8rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

/* FOOTER */
.footer {
  background: var(--brand-deep);
  padding: 3rem 5% 2rem;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.f-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition:
    border-color 0.15s,
    color 0.15s,
    background 0.15s;
}
.f-social-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.f-social-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .cta-section {
    grid-template-columns: 1fr;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-ham {
    display: flex;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  section {
    padding: 3.5rem 5%;
  }
  .form-card {
    padding: 1.8rem;
  }
  .contact-hero {
    padding-top: calc(var(--nav-h) + 3rem);
  }
  .cta-card {
    padding: 2rem;
  }
}

.trust-bar {
  position: sticky;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 90; /* Ensures it stays on top of other content */
}
