/* =========================================================
   START : CONTACT PAGE DESIGN
   Aesthetics: Rich, Elegant, Glassmorphism, Micro-animations
========================================================= */

/* ══════════════════════════
   PAGE HERO BANNER (Consistent with about.css)
══════════════════════════ */
.page-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 130px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(196, 154, 60, .18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(26, 56, 40, .9) 0%, transparent 60%),
    linear-gradient(135deg, #0d2016 0%, #1a3828 40%, #0d2016 100%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(196, 154, 60, .12) 0%, transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(196, 154, 60, .08) 0%, transparent 40%);
}

.page-hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.page-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  border: 1px solid rgba(196, 154, 60, .45);
  padding: 5px 16px;
  border-radius: 4px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 13px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .35);
}

.breadcrumb strong {
  color: var(--gold);
}

/* ══════════════════════════
   CONTACT CONTENT SECTION
══════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--light-bg);
}

/* --- Contact Details Card --- */
.contact-card {
  background: #ffffff;
  border: 1px solid #ece7df;
  border-top: 5px solid var(--gold);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-card-header {
  margin-bottom: 30px;
}

.contact-card-subtitle {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-card-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* --- Info List Item --- */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 15px;
  border-radius: 16px;
  transition: background-color 0.3s ease;
}

.contact-info-item:hover {
  background-color: var(--off-white);
}

.contact-info-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(212, 166, 79, 0.1);
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon-box {
  background-color: var(--gold);
  color: #fff;
  transform: scale(1.05);
}

.contact-info-content h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 5px;
}

.contact-info-content p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Map Card --- */
.map-card-wrapper {
  background: #ffffff;
  border: 1px solid #ece7df;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.map-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.map-card-header-left h5 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.map-card-header-left p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 0;
}

.map-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background-color: transparent;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.map-card-btn:hover {
  background-color: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.map-frame-container {
  border-radius: 16px;
  overflow: hidden;
  flex-grow: 1;
  height: 380px;
  position: relative;
  border: 1px solid var(--border);
}

.map-frame-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ══════════════════════════
   RESPONSIVENESS
══════════════════════════ */
@media (max-width: 991px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-card, .map-card-wrapper {
    padding: 30px;
  }
  .map-frame-container {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .page-hero {
    height: 350px;
    padding-top: 100px;
  }
  .contact-section {
    padding: 40px 0;
  }
  .contact-card, .map-card-wrapper {
    padding: 24px;
  }
  .map-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .map-card-btn {
    width: 100%;
    justify-content: center;
  }
  .map-frame-container {
    height: 300px;
  }
}
