/* ═══════════════════════════════════════════════════
   CONTACT US – BODY SECTIONS ONLY
   (header / breadcrumb / footer / modals untouched)
   ═══════════════════════════════════════════════════ */

/* ─── PAGE INTRO PARAGRAPH (below breadcrumb) ────────── */
/*.page-mainheading {
  display: none;
}*/

/* ─── QUICK-STATS STRIP (new: appears between hero & address) ─── */
.contact-stats-strip {
  background: #ba9428;
  padding: 0;
}
.contact-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.2);
}
.contact-stat-item {
  background: #ba9428;
  padding: 22px 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.contact-stat-item svg {
  width: 22px; height: 22px;
  stroke: #fff; fill: none; stroke-width: 1.8;
  flex-shrink: 0;
  opacity: 0.85;
}
.contact-stat-item span {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── ADDRESS SECTION ─────────────────────────────── */
.address-section {
  padding: 80px 40px 90px;
  background: #f7f5f0;
  position: relative;
}

/* subtle diagonal texture */
.address-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(186,148,40,0.025) 40px,
      rgba(186,148,40,0.025) 41px
    );
  pointer-events: none;
}

.address-section > div:first-child {
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ba9428;
  border: 1px solid rgba(186,148,40,0.5);
  padding: 6px 20px;
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
}

.page-mainheading h1 {
  /* font-family: var(--font-display); */
  /* font-size: clamp(42px, 6vw, 72px); */
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  /* margin-bottom: 18px; */
  max-width: 580px;
  margin: 0 auto;
  /* position: relative; */
  text-align: center;
}

.section-intro {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* ─── ADDRESS GRID ─────────────────────────────────── */
.address-grid {
  max-width: 1280px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
}

.address-grid.single {
  grid-template-columns: 1fr;
  margin-top: 0px;
}

/* ─── ADDRESS CARD ─────────────────────────────────── */
.address-card {
  background: #ffffff;
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e8e4d8;
  box-shadow:
    0 2px 8px rgba(15,41,24,0.06),
    0 0 0 0 rgba(186,148,40,0);
  transition: box-shadow 0.35s ease, transform 0.3s ease;
}

.address-card:hover {
  box-shadow:
    0 8px 32px rgba(15,41,24,0.11),
    0 0 0 1px rgba(186,148,40,0.18);
  transform: translateY(-3px);
}

/* top accent bar */
.address-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f2918 0%, #ba9428 50%, #0f2918 100%);
}

.address-card.highlight {
  background: #ffffff;
}

.address-card.highlight::before {
  background: linear-gradient(90deg, #ba9428 0%, #e8c87a 40%, #ba9428 80%, #0f2918 100%);
  height: 4px;
}

/* large decorative quotation-mark style background number */
.address-card.highlight::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(186,148,40,0.08);
  pointer-events: none;
}

/* ─── Card Header ─── */
.address-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f2918;
  margin-bottom: 4px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.address-card .country {
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ba9428;
  margin-bottom: 30px;
  font-weight: 600;
}

/* ─── Divider ─── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0ddd5 20%, #e0ddd5 80%, transparent);
  margin: 28px 0;
}

/* ─── Contact Rows ─── */
.form-section{
    padding-top: 60px;
  padding-bottom: 60px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px 18px;
  background: #faf9f5;
  border: 1px solid #edeae0;
  transition: background 0.2s, border-color 0.2s;
}

.contact-row:last-child { margin-bottom: 0; }

.contact-row:hover {
  background: #f5f1e4;
  border-color: rgba(186,148,40,0.3);
}

.cr-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: #222815;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: background 0.2s;
}

.contact-row:hover .cr-icon {
  background: #ba9428;
}

.cr-icon svg {
  width: 30px;
  height: 30px;
  stroke: #e8c87a;
  fill: none;
  stroke-width: 1.6;
}

.contact-row:hover .cr-icon svg {
  stroke: #ffffff;
}

.cr-text { flex: 1; }

.cr-label {  
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 4px;
  font-weight: 600;
}

.cr-value {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.55;
  font-weight: 500;
}

.cr-value a {
  color: #0f2918;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.2s;
}

.cr-value a:hover { color: #ba9428; }

/* ─── Reg Row ─── */
.reg-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 28px;
  flex-wrap: wrap;
  border: 1px solid #e0ddd5;
  overflow: hidden;
}

.reg-row span {
  flex: 1;
  min-width: 200px;
  padding: 14px 24px;
  font-size: 16px;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  background: #faf9f5;
  border-right: 1px solid #e0ddd5;
}

.reg-row span:last-child {
  border-right: none;
}

/* ─── MAP SECTION ─────────────────────────────────── */
.map-section {
  background: #0f2918;
  padding: 0;
  position: relative;
}

/* "Dubai, UAE" label over map */
.map-section::before {
  content: 'Dubai Airport Free Zone, Dubai, UAE';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: #0f2918;
  color: #e8c87a;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 24px;
  white-space: nowrap;
  pointer-events: none;
}

.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  opacity: 0.92;
}

/* ─── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-mainheading h1 {
  animation: fadeUp 0.7s ease both;
    padding-bottom: 20px;
}

.address-card {
  animation: fadeUp 0.6s ease both;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .address-section { padding: 60px 30px 70px; }
  .address-card { padding: 36px 32px; }
}

@media (max-width: 768px) {
  .page-mainheading { padding: 60px 24px 70px; }
  .page-mainheading h1 { font-size: 17px; line-height: 28px; }

  .contact-stats-inner { grid-template-columns: 1fr; }
  .contact-stat-item { justify-content: flex-start; padding: 18px 24px; }

  .address-section { padding: 50px 20px 60px; }
  .section-title { font-size: 28px; }

  .address-grid,
  .address-grid.single { grid-template-columns: 1fr; gap: 24px; margin-top: 36px; }

  .address-card { padding: 30px 24px; }
  .address-card h3 { font-size: 20px; }

  .contact-row { padding: 12px 14px; }

  .reg-row { flex-direction: column; }
  .reg-row span { border-right: none; border-bottom: 1px solid #e0ddd5; }
  .reg-row span:last-child { border-bottom: none; }

  .map-section iframe { height: 280px; }
  .map-section::before { font-size: 9px; padding: 6px 14px; }

  .mo-pdt-30 { padding-top: 0; }
}
