/* ========================================
   MAHARAJAH TOURS - CONTACT PAGE
   Contact Cards, Map, Trust Badges
   ======================================== */

/* ========== CONTACT QUICK CARDS ========== */
.contact-quick-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(78, 14, 16, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  height: 100%;
}

.contact-quick-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(78, 14, 16, 0.2);
  border-color: var(--brand-light-gold);
}

.contact-quick-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-light-gold) 0%, #fff9e6 100%);
  border-radius: 50%;
  color: var(--brand-burgundy);
  font-size: 2rem;
  transition: all 0.4s ease;
  border: 3px solid var(--brand-gold);
}



.contact-quick-card:hover .contact-quick-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-quick-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--brand-burgundy);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-quick-link {
  display: inline-block;
  color: var(--brand-gold);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.contact-quick-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-quick-link:hover {
  color: var(--brand-burgundy);
}

.contact-quick-link:hover::after {
  transform: scaleX(1);
}

/* ========== SECTION HEADING ========== */
.section-heading-contact {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--brand-burgundy);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-heading-contact::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-gold), transparent);
  border-radius: 2px;
}

/* ========== CONTACT METHOD ITEMS ========== */
.contact-method-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-method-item:hover {
  border-color: var(--brand-light-gold);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(78, 14, 16, 0.1);
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-light-gold) 0%, #fff9e6 100%);
  border-radius: 12px;
  color: var(--brand-burgundy);
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 2px solid var(--brand-gold);
}

.contact-method-content h6 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--brand-burgundy);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-method-content a {
  color: var(--brand-gold);
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.contact-method-content a:hover {
  color: var(--brand-burgundy);
}

.contact-method-content span {
  color: var(--text-dark);
  font-weight: 500;
}

/* ========== CONTACT INFO CARD ========== */
.contact-info-card {
  background: linear-gradient(135deg, var(--brand-burgundy) 0%, var(--brand-dark) 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(78, 14, 16, 0.25);
  color: #fff;
}

.contact-info-header {
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  text-align: center;
  border-bottom: 2px solid var(--brand-gold);
}

.contact-info-header i {
  font-size: 3rem;
  color: var(--brand-gold);
  margin-bottom: 1rem;
  display: block;
}

.contact-info-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.contact-info-body {
  padding: 2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-detail-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.contact-detail-item:last-child {
  margin-bottom: 0;
}

.contact-detail-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-gold);
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
  color: var(--brand-gold);
}

.contact-detail-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* ========== CONTACT MAP ========== */
.contact-map-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.contact-map-wrapper:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(78, 14, 16, 0.95) 0%, rgba(42, 6, 8, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.contact-map-wrapper:hover .map-overlay {
  opacity: 0;
  pointer-events: none;
}

.map-overlay-content {
  text-align: center;
  color: #fff;
}

.map-overlay-content i {
  font-size: 3rem;
  color: var(--brand-gold);
  display: block;
}

.map-overlay-content h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ========== CONTACT CTA BANNER ========== */
.contact-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg, #fff9e6 0%, var(--brand-light-gold) 100%);
  padding: 1.75rem 2rem;
  border-radius: 16px;
  margin-top: 1.5rem;
  border: 2px solid var(--brand-gold);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.contact-cta-banner:hover {
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.contact-cta-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}

.contact-cta-content i {
  font-size: 2.5rem;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.contact-cta-content h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--brand-burgundy);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-cta-content p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ========== TRUST BANNER ========== */
.trust-banner {
  background: linear-gradient(135deg, #fff 0%, var(--bg-cream) 100%);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(78, 14, 16, 0.08);
  border: 2px solid var(--brand-light-gold);
}

.trust-banner h3 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-burgundy);
  font-weight: 700;
  font-size: 1.75rem;
}

.trust-banner i {
  color: var(--brand-gold);
}

.trust-badges {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-burgundy);
  color: var(--brand-gold);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 15px rgba(78, 14, 16, 0.2);
  transition: all 0.3s ease;
}

.trust-badge-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 14, 16, 0.3);
}

.trust-badge-item i {
  font-size: 1.25rem;
}
