/* contact.css */
/* Page-specific styles for Contact page */
/* Mega menu styles are in styles.css - do not duplicate here */

/* ===================================
   CONTACT HERO
   =================================== */
.contact-hero {
  height: 50vh;
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.contact-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: -2;
  filter: saturate(1.3) brightness(0.85) contrast(1.1);
}

.contact-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    rgba(25, 90, 159, 0.15);
  z-index: -1;
}

.contact-hero .hero-content {
  z-index: 1;
  padding: 0 2rem;
  margin-top: 3rem;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  color: var(--light-text);
}

.contact-hero .hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

@media (max-width: 768px) {
  .contact-hero {
    height: 40vh;
    min-height: 280px;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .contact-hero .hero-subtitle {
    font-size: 1rem;
  }
}

/* ===================================
   CONTACT MAIN SECTION
   =================================== */
.contact-main {
  background-color: var(--darker-bg);
  padding: 5rem 0;
}

.contact-main .contact-info a {
  color: var(--accent-color);
}

.contact-main .contact-info a:hover {
  color: #c19a00;
  text-decoration: underline;
}

/* ===================================
   QUICK LINKS SECTION
   =================================== */
.quick-links {
  background-color: var(--dark-bg);
  padding: 5rem 0;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.quick-link-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--light-text);
}

.quick-link-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
}

.quick-link-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.quick-link-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.quick-link-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  color: var(--light-text);
}

.quick-link-card p {
  font-size: 0.95rem;
  color: var(--medium-text);
  margin-bottom: 0.5rem;
}

.quick-link-arrow {
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.quick-link-card:hover .quick-link-arrow {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .quick-links-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

/* ===================================
   MAP SECTION
   =================================== */
.map-section {
  background-color: var(--darker-bg);
  padding: 5rem 0;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 450px;
}

@media (max-width: 768px) {
  .map-wrapper iframe {
    height: 320px;
  }
}
