@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0F172A;
  --blue: #2563EB;
  --cyan: #06B6D4;
  --bg: #F8FAFC;
  --text: #1E293B;
  --muted: #64748B;
  --border: #E2E8F0;
  --card-bg: #FFFFFF;
  --gradient: linear-gradient(135deg, #0F172A, #1E3A8A);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; }

/* ── CONTACT PAGE REDESIGN ── */
.contact-page {
  position: relative;
  padding: 128px 0 88px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  min-height: 100vh;
}

.contact-shell {
  width: calc(100% - 48px);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 48px;
  box-shadow: 0 20px 60px rgba(0, 95, 153, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.contact-side-panel {
  background: linear-gradient(135deg, #005f99, #0077b6);
  padding: 60px 50px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.side-panel-block {
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 40px;
}

.side-panel-block:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}

.side-panel-block:not(:last-of-type)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.6), transparent);
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.side-panel-label {
  display: block;
  margin-bottom: 12px;
  color: #ff8c00;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.side-panel-block p,
.side-panel-block a {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.9;
  font-size: 1.1rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.side-panel-block a {
  transition: color 0.3s ease;
}

.side-panel-block a:hover {
  color: #ff8c00;
}

.map-link-button {
  display: none;
}

.contact-form-studio {
  background: #ffffff;
  padding: 60px 50px;
}

.form-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.form-heading-row h2 {
  color: #0F172A;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.contact-kicker {
  display: block;
  color: #ff8c00;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-status-pill {
  flex-shrink: 0;
  border: 1px solid rgba(255, 140, 0, 0.3);
  background: rgba(255, 140, 0, 0.08);
  color: #ff8c00;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 0.75rem;
  font-weight: 800;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.contact-form-grid label {
  display: block;
  color: #0F172A;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-form-grid label span {
  color: #ff8c00;
}

.field-wide {
  grid-column: 1 / -1;
}

.contact-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 12px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #0F172A;
  transition: all 0.3s ease;
  outline: none;
}

.contact-input:focus {
  border-bottom-color: #ff8c00;
  box-shadow: none;
  background: transparent;
}

.contact-input::placeholder {
  color: rgba(15, 23, 42, 0.4);
}

.contact-form-grid button[type="submit"] {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #005f99, #0077b6);
  color: #ffffff;
  border: none;
  padding: 18px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.contact-form-grid button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 95, 153, 0.3);
}

.contact-map-strip {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.contact-map-strip > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 40px;
}

.contact-map-strip h2 {
  color: #0F172A;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.contact-map-strip iframe {
  display: block;
  height: 220px;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

@media (max-width: 1024px) {
  .contact-workspace {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 100px 0 60px;
  }

  .contact-shell {
    width: min(100% - 32px, 1280px);
  }

  .contact-side-panel,
  .contact-form-studio {
    padding: 40px 30px;
  }

  .form-heading-row {
    flex-direction: column;
    align-items: stretch;
  }

  .form-heading-row h2 {
    font-size: 2rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-strip > div {
    flex-direction: column;
    align-items: stretch;
    padding: 30px;
  }

  .contact-map-strip iframe {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .contact-page {
    padding: 80px 0 40px;
  }

  .contact-shell {
    width: min(100% - 24px, 1280px);
  }

  .contact-side-panel,
  .contact-form-studio {
    padding: 30px 20px;
  }

  .form-heading-row h2 {
    font-size: 1.6rem;
  }

  .contact-map-strip > div {
    padding: 20px;
  }

  .contact-map-strip iframe {
    height: 200px;
  }
}

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease;
  padding: 1.25rem 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 #E2E8F0;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 0.75rem 0;
  box-shadow: 0 4px 24px rgba(15,23,42,0.08);
}
.nav-link {
  position: relative;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none; cursor: pointer;
  box-shadow: 0 8px 25px rgba(37,99,235,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37,99,235,0.5);
}

/* ── SCROLL TO TOP ── */
#scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: #ffffff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { transform: translateY(-3px); }
#scroll-top svg { color: #000000; }

