/* ================= ROOT ================= */
:root {
  --brand-blue: #1f4fa3;   /* adjust to exact logo blue */
  --brand-red: #e11d2e;
  --text-dark: #111827;
  --text-muted: #4b5563;
  --bg-white: #ffffff;
  --border-light: #e5e7eb;
  --header-height: 90px;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= HEADER / NAVBAR ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 56px; /* space between logo and nav */
}

/* LOGO */
.logo {
  margin-left: 16px; /* pulls logo slightly away from edge */
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* NAV LINKS */
.main-nav {
  margin-left: auto; /* push nav to the right */
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: var(--brand-blue);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.main-nav a:hover {
  opacity: 0.8;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--brand-red);
}

/* NAV TOOLS (TRANSLATION PLACEHOLDER) */
.nav-tools {
  min-width: 80px;
  text-align: right;
}

/* ================= CONTACT HERO ================= */
.contact-hero {
  background: linear-gradient(135deg, #0f2a66, #1e3a8a);
  padding: 90px 0 80px; /* SHORT & CLEAN */
  text-align: center;
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}

.contact-hero .red-line {
  width: 64px;
  height: 4px;
  background-color: #e11d48;
  margin: 0 auto 26px;
  border-radius: 2px;
}

.contact-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .contact-hero {
    padding: 70px 0 60px;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero p {
    font-size: 16px;
  }
}
/* ================= ROOT ================= */
:root {
  --blue: #1e3a8a;
  --red: #e11d48;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --bg-soft: #f4f7ff;
  --white: #ffffff;
  --border-soft: #dbe3f4;
}

/* ================= RESET ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-soft);
  color: var(--text-dark);
  line-height: 1.7;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= PAGE WRAPPER ================= */
.contact-page {
  padding: 120px 0;
}

/* ================= GRID ================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: flex-start;
}

/* ================= LEFT CONTENT ================= */
.contact-info h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
}

.red-line {
  width: 64px;
  height: 4px;
  background: var(--red);
  border-radius: 999px;
  margin: 0 0 26px;
}

.contact-info .intro {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

/* ================= SUPPORT LIST ================= */
.support-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.support-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 15.5px;
  color: var(--text-muted);
}

.support-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

/* ================= CONTACT DETAILS ================= */
.contact-details p {
  margin-bottom: 14px;
  font-size: 15.5px;
}

.contact-details strong {
  color: var(--blue);
  font-weight: 600;
}

/* ================= FORM CARD ================= */
.contact-form-box {
  background: var(--white);
  padding: 46px 44px;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.contact-form-box h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 26px;
}

/* ================= FORM ELEMENTS ================= */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
}

/* ================= SUBMIT BUTTON ================= */
.submit-btn {
  margin-top: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: var(--red);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.35);
}


/* ================= PHONE INPUT ================= */

/* ================= PHONE INPUT ================= */

.phone-group .phone-input {
  display: flex;
  gap: 12px;
}

.phone-group select {
  width: 180px;
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid #dbe3f4;
  font-size: 15px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
}

.phone-group input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #dbe3f4;
  font-size: 15px;
}

.phone-group select:focus,
.phone-group input:focus {
  outline: none;
  border-color: var(--blue);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-info h1 {
    font-size: 34px;
  }

  .contact-form-box {
    padding: 36px 28px;
  }
}

/* ================= LOCATIONS SECTION ================= */
.locations-section {
  padding: 120px 0;
  background: #ffffff;
}

/* Section header */
.section-header.center-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #1e3a8a;
}

.section-header p {
  max-width: 680px;
  margin: 16px auto 0;
  color: #475569;
  line-height: 1.7;
}

.section-accent {
  width: 70px;
  height: 4px;
  background: #e11d48;
  margin: 18px auto;
  border-radius: 999px;
}

/* ================= LOCATION CARD ================= */
.location-card {
  max-width: 900px;
  margin: auto;

  background: #ffffff;
  border-radius: 18px;
  padding: 36px;

  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.location-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.location-address {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* ================= MAP ================= */
.map-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;

  /* RED FRAME */
  outline: 3px solid #e11d48;
  outline-offset: -3px;
}

.map-wrapper iframe {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
}

/* ================= MAP LINK ================= */
.map-link {
  display: inline-block;
  margin-top: 18px;

  font-weight: 600;
  color: #1e3a8a;
  text-decoration: none;

  transition: color 0.2s ease;
}

.map-link:hover {
  color: #e11d48;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .location-card {
    padding: 28px;
  }

  .map-wrapper iframe {
    height: 220px;
  }
}
/* ================= SIMPLE FOOTER ================= */

.simple-footer {
  background: #020617; /* very dark, clean */
  padding: 18px 0;
}

.simple-footer p {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
}

.simple-footer strong {
  color: #ffffff;
  font-weight: 500;
}

.footer-divider {
  margin: 0 10px;
  color: #475569;
}

