/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--white);
  color: #222;
  font-family: var(--font-sans);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
}

.ltr-num{direction:ltr;unicode-bidi:isolate;font-variant-numeric:tabular-nums;}

/* =============================================
   HEADER & NAV
   ============================================= */
header {
  background: var(--white);
  padding: 20px 1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo { display: flex; align-items: center; gap: 15px; }
.logo img { width: 70px; }
.logo h1 { color: var(--navy); font-size: 28px; }
.logo p { color: #666; font-size: 14px; }

.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a {
  padding: 5px 2px;
  text-decoration: none;
  color: #222;
  font-size: 17px;
  transition: .3s;
  font-weight: bold;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active-page { color: var(--blue); }

.login-btn {
  padding: 5px 10px;
  color: var(--white) !important;
  background: var(--blue);
  border: none;
  font-size: 15px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: .3s;
}
.login-btn:hover { background: var(--navy) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* =============================================
   HERO — full-bleed photo, dark navy overlay
   ============================================= */
.contact-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/assests/images/419ae6e1-a97b-4bcf-b97d-15cbe3094bc3.jpeg') center / cover no-repeat;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,27,56,.72), rgba(8,27,56,.85));
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 60px 20px;
  max-width: 640px;
}

.contact-hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: .01em;
}

.contact-hero-divider {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px 0;
}
.contact-hero-divider span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .85;
}

.contact-hero-content p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,.88);
}

/* =============================================
   PRIMARY CONTACT CHANNELS
   ============================================= */
.contact-info {
  background: var(--white);
  padding: 70px 7%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.contact-info-item {
  text-align: center;
  padding: 0 20px;
}

.contact-info-item i {
  font-size: 34px;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}

.contact-info-item h3 {
  color: var(--navy);
  font-size: 16px;
  letter-spacing: .03em;
  margin-bottom: 10px;
}

.contact-info-item p {
  color: #777;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.contact-value {
  display: inline-block;
  color: var(--blue);
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.contact-value:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* =============================================
   FOLLOW US
   ============================================= */
.contact-follow {
  background: var(--white);
  text-align: center;
  padding: 50px 7% 70px;
}

.contact-follow h3 {
  color: var(--navy);
  font-size: 15px;
  letter-spacing: .04em;
  margin-bottom: 22px;
}

.contact-follow-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.contact-follow-icons a {
  width: 52px;
  height: 52px;
  background: var(--white);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transition: background .2s, color .2s, transform .2s;
}
.contact-follow-icons a:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-4px);
}

/* =============================================
   FOOTER
   ============================================= */
.main-footer {
  background: #061b38;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 7%;
  height: 70px;
  margin-top: auto;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}

.footer-center { display: flex; gap: 12px; }
.footer-center a {
  width: 40px; height: 40px;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 17px; border-radius: 12px;
  transition: background .2s, transform .2s;
}
.footer-center a:hover { background: var(--navy); transform: translateY(-3px); }
.footer-right p { font-size: 13px; }

/* =============================================
   MOBILE — tablet (≤900px)
   ============================================= */
@media (max-width: 900px) {
  .contact-hero { min-height: 40vh; }
  .contact-hero-content h1 { font-size: 34px; }
  .contact-info { padding: 50px 6%; gap: 32px; }
}

/* =============================================
   MOBILE — iPhone (≤480px)
   ============================================= */
@media (max-width: 480px) {
  header {
    padding: 12px 4%;
    padding-right: calc(4% + env(safe-area-inset-right));
    padding-left: calc(4% + env(safe-area-inset-left));
  }
  .logo img { width: 48px; height: 48px; }
  .logo h1  { font-size: 20px; }
  .logo p   { font-size: 11px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px; right: 0; left: 0;
    background: var(--white);
    border-bottom: 2px solid var(--light);
    padding: 16px 5%;
    gap: 4px;
    z-index: 998;
    box-shadow: 0 6px 20px rgba(0,0,0,.1);
  }
  .nav-links.open a {
    padding: 12px 10px;
    font-size: 16px;
    border-bottom: 1px solid var(--light);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .contact-hero { min-height: 44vh; }
  .contact-hero-content { padding: 40px 18px; }
  .contact-hero-content h1 { font-size: 28px; }
  .contact-hero-content p { font-size: 14px; }

  .contact-info { padding: 40px 5% 10px; grid-template-columns: 1fr; gap: 34px; }

  .contact-follow-icons a { width: 46px; height: 46px; font-size: 18px; }

  .main-footer {
    flex-direction: column;
    height: auto;
    gap: 10px;
    padding: 14px 5%;
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
    text-align: center;
  }
}
