/* ============================================================
   CONTACT PAGE — QAS MODERN STYLES
   ============================================================ */

/* ── CONTACT HERO ── */
.contact-hero {
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy-dark) 100%);
  color: white;
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy-light), var(--red));
}
.contact-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  margin-bottom: 15px;
}
.contact-hero .hero-description {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--off-white);
  padding: 80px 0 40px;
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 0;
}
.contact-section .container {
  position: relative;
  z-index: 1;
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

/* ── CONTACT INFO CARD ── */
.contact-info-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(31,66,138,0.06);
  height: 100%;
}
.contact-info-card h2 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.contact-info-card .subtitle {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 30px;
}
.contact-info-card .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.contact-info-card .info-item:hover {
  transform: translateX(4px);
}
.contact-info-card .info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--navy-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact-info-card .info-item:hover .info-icon {
  background: var(--red);
  color: white;
}
.contact-info-card .info-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.contact-info-card .info-text small {
  color: var(--text-light);
}

/* Social links */
.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}
.contact-social a {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--navy-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
}
.contact-social a:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-3px);
}

/* ── CONTACT FORM CARD ── */
.contact-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(31,66,138,0.06);
}
.contact-form-card h2 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 25px;
}
.contact-form-card .form-group {
  margin-bottom: 20px;
}
.contact-form-card label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
}
.contact-form-card .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}
.contact-form-card .form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-glass);
}
.contact-form-card textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.contact-form-card .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  margin-top: 10px;
}
.contact-form-card .submit-btn:hover {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.contact-form-card .submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ── MAP SECTION ── */
.map-section {
  margin-top: 80px;
  position: relative;
}
/* Red accent line at top of map */
.map-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--navy-light), var(--red));
  z-index: 2;
}
.map-wrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .contact-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .contact-info-card,
  .contact-form-card {
    padding: 25px;
  }
  .map-wrapper {
    height: 300px;
  }
}