/* ============ CONTACT HERO ============ */
.contact-hero {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.contact-hero-text {
  flex: 1;
  color: var(--white);
}

.contact-hero-text h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #fff;
}

.contact-hero-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* ============ CONTACT INFO CARD ============ */
.contact-info-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 30px;
  width: 380px;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-info-card h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}

.info-item {
  margin-bottom: 20px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.info-item h4 i {
  color: var(--gold);
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.info-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  padding-left: 24px;
}

.info-item p a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-item p a:hover {
  color: var(--gold-dark);
}

.info-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-left: 24px;
}

.info-hours-table td {
  font-size: 13px;
  padding: 4px 12px 4px 0;
  color: var(--text-light);
}

.info-hours-table td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 90px;
}

/* ============ INTRO TEXT ============ */
.contact-intro {
  padding: 50px 0 40px;
  background: var(--white);
}

.contact-intro p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 10px;
}

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

.contact-intro a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-intro a:hover {
  color: var(--gold-dark);
}

/* ============ CONTACT FORM ============ */
.contact-form-section {
  padding: 0 0 70px;
  background: var(--white);
}

.contact-form-heading {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 30px;
}

.contact-form {
  max-width: 700px;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  flex: 1;
}

.contact-form .form-group.full-width {
  margin-bottom: 24px;
}

.contact-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 2px solid var(--gold);
  background: #f7f7f7;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.3s ease, background 0.3s ease;
  border-radius: 0;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-dark);
  background: #f0f0f0;
}

.contact-form .form-group textarea {
  resize: vertical;
}

.contact-form .btn-gold {
  padding: 12px 36px;
  font-size: 14px;
  font-weight: 600;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .contact-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-hero-text {
    text-align: center;
  }

  .contact-info-card {
    width: 100%;
    max-width: 420px;
  }

  .info-hours-table {
    margin-left: 0;
  }

  .info-item p {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .contact-hero-text h1 {
    font-size: 26px;
  }

  .contact-hero-inner {
    padding: 40px 20px;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .contact-form-heading {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .contact-hero-text h1 {
    font-size: 22px;
  }

  .contact-info-card {
    padding: 24px 20px;
  }
}
