/* ── PAGE HERO BANNER ──
   Replace the background-image URL below with your own photo.
   Recommended size: 1920×600px.
── */
.page-hero {
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,30,53,.88) 0%, rgba(21,101,192,.75) 100%);
  pointer-events: none;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}
.page-hero-inner { position: relative; z-index: 1; }

.page-hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 10px;
}
.page-hero-title span { color: var(--primary); }

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.page-breadcrumb a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
.page-breadcrumb a:hover { color: var(--primary); }
.page-breadcrumb i { font-size: .65rem; color: var(--primary); }

/* Decorative shape */
.page-hero-shape {
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 40px solid rgba(247,148,29,.08);
  z-index: 0;
}
.page-hero-shape-2 {
  position: absolute;
  bottom: -80px; right: 200px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 30px solid rgba(0,174,239,.06);
  z-index: 0;
}

/* ── CONTACT SECTION ── */
#contact-main {
  background: #f0f4fa;
  padding: 80px 0 90px;
}

/* ── Contact Info Cards ── */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.cic-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--secondary) 0%, #0d2d5e 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cic-icon.orange {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.cic-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  margin-bottom: 4px;
}
.cic-value {
  font-size: .9rem;
  font-weight: 600;
  color: #0d1e35;
  line-height: 1.5;
}
.cic-value a {
  color: #0d1e35;
  text-decoration: none;
  transition: color .2s;
  display: block;
}
.cic-value a:hover { color: var(--primary); }

/* Social row */
.contact-social {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
}
.contact-social-label {
  font-size: .8rem;
  font-weight: 700;
  color: #6b7a8d;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.contact-social-icons {
  display: flex;
  gap: 10px;
}
.csi-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #f0f4fa;
  color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: background .25s, color .25s, transform .2s;
}
.csi-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Contact Form ── */
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px 40px 44px;
  box-shadow: 0 6px 30px rgba(0,0,0,.08);
}
.cf-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #0d1e35;
  margin-bottom: 6px;
}
.cf-sub {
  font-size: .88rem;
  color: #6b7a8d;
  margin-bottom: 28px;
}
.cf-divider {
  width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 28px;
}

.form-label {
  font-size: .8rem;
  font-weight: 700;
  color: #3a4a5d;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: .9rem;
  padding: 11px 14px;
  color: #0d1e35;
  background: #f8faff;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(247,148,29,.15);
  background: #fff;
  outline: none;
}
.form-control::placeholder { color: #b0bec5; }
textarea.form-control { resize: vertical; min-height: 130px; }

.btn-submit {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 700;
  padding: 13px 36px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247,148,29,.4);
}

/* ── Map Section ── */
#contact-map {
  height: 380px;
  background: #e0e8f0;
  position: relative;
  overflow: hidden;
}
#contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-overlay-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}
.map-overlay-badge i { color: var(--primary); font-size: 1.2rem; }
.map-overlay-badge span {
  font-size: .82rem;
  font-weight: 700;
  color: #0d1e35;
}

/* ── HEAD OFFICE + MAP ── */
#office-map {
  background: #f0f4fa;
  padding: 80px 0 90px;
}

.office-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  background: rgba(247,148,29,.1);
  border: 1px solid rgba(247,148,29,.25);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.office-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #0d1e35;
  margin-bottom: 10px;
}
.office-heading span { color: var(--primary); }
.office-sub {
  font-size: .9rem;
  color: #6b7a8d;
  line-height: 1.7;
  margin-bottom: 30px;
}

.office-detail-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.office-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.odl-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--secondary) 0%, #0d2d5e 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.odl-icon.orange {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.odl-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--primary);
  margin-bottom: 3px;
}
.odl-value {
  font-size: .875rem;
  font-weight: 500;
  color: #3a4a5d;
  line-height: 1.6;
}
.odl-value a {
  display: block;
  color: #3a4a5d;
  text-decoration: none;
  transition: color .2s;
}
.odl-value a:hover { color: var(--primary); }

.office-map-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  height: 440px;
}
.office-map-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

@media (max-width: 991px) {
  #office-map { padding: 60px 0; }
  .office-map-wrap { height: 320px; margin-top: 36px; }
}

/* ── BRANCHES GRID ── */
#branches {
  background: #fff;
  padding: 80px 0 90px;
}

.branch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21,101,192,.1);
  border: 1px solid rgba(21,101,192,.2);
  color: var(--secondary);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.branch-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #0d1e35;
  margin-bottom: 10px;
}
.branch-heading span { color: var(--primary); }
.branch-sub { font-size: .9rem; color: #6b7a8d; }

.branch-heading { color: #0a1628; }

.branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.bcard {
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.bcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.bcard-top { margin-bottom: 10px; }

.bcard-icon { display: none; }

.bcard-city {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .98rem;
  color: #0a1628;
}

.bcard-body { padding: 0; }

.bcard-address {
  font-size: .78rem;
  color: #6b7a8d;
  line-height: 1.6;
  margin-bottom: 10px;
}
.bcard-phone {
  font-size: .78rem;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
}
.bcard-phone i { color: var(--primary); font-size: .7rem; }
.bcard-phone:hover { color: var(--primary); }

@media (max-width: 1199px) { .branches-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .branches-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .branches-grid { grid-template-columns: 1fr; } }

/* Responsive */
@media (max-width: 991px) {
  #contact-main { padding: 60px 0; }
  .contact-form-wrap { padding: 30px 24px 34px; margin-top: 40px; }
}
@media (max-width: 575px) {
  .page-hero { padding: 50px 0 44px; }
  #contact-map { height: 280px; }
}
