/* ====================================
   CONTACT PAGE STYLES
   Pixel-perfect match to Figma design
   ==================================== */

/* Header for Contact Page - Solid Maroon Background */
.contact-page .header {
  position: relative;
  background-color: var(--primary-color);
}

.contact-page .header .navbar {
  background-color: var(--primary-color);
}

/* Active Contact Button */
.contact-page .btn-contact.active {
  background-color: var(--text-light);
  color: var(--primary-color);
  border-color: var(--text-light);
}

/* ====================================
   CONTACT HERO SECTION
   Gold background, maroon title (small caps)
   ==================================== */
.contact-hero {
  background-color: var(--accent-color);
  padding: 30px 0;
  text-align: center;
}

/* Trajan Pro small caps — title case, no text-transform */
.contact-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 3px;
  margin: 0;
}

/* ====================================
   CONTACT CONTENT SECTION
   ==================================== */
.contact-content {
  background-color: var(--bg-page);
  padding: 50px 0 70px;
  min-height: 100vh;
}

.contact-content > .container {
  max-width: 100%;
  padding-left: 100px;
  padding-right: 100px;
}

/* Intro text */
.contact-intro {
  margin-bottom: 40px;
}

.contact-subtitle {
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

/* Trajan Pro small caps heading — title case, no text-transform */
.contact-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
  margin: 0;
}

/* ====================================
   TWO-COLUMN LAYOUT
   Vertical divider between left & right
   ==================================== */
.contact-main-row {
  align-items: stretch;
}

/* Left Column */
.contact-left {
  padding-right: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Map */
.contact-map {
  width: 100%;
  flex: 1;
  min-height: 390px;
  margin-bottom: 25px;
  border-right: 1px solid #000;
  padding-right: 40px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* Contact Information */
.contact-info {
  margin-top: auto;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 15px;
  /* Trajan Pro small caps — title case, no text-transform */
}

.contact-info-items {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 10px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
}

.contact-info-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ====================================
   RIGHT COLUMN — CONTACT FORM
   ==================================== */
.contact-right {
  padding-left: 40px;
  height: 100%;
}

/* Form title — Trajan Pro small caps style (uppercase appearance from font) */
.form-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}

/* Form spacing */
.contact-form .form-group {
  margin-top: 16px;
}

/* Input fields — rounded corners, light border */
.contact-form .form-control {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background-color: var(--bg-page);
  border: 1px solid #000;
  border-radius: 0;
  padding: 14px 18px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control::placeholder {
  color: #000;
  font-family: var(--font-body);
  font-size: 16px;
}

.contact-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--primary-color);
}

.contact-form textarea.form-control {
  resize: none;
}

/* Submit button — maroon bg, gold text, small caps Trajan */
.btn-submit {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 35px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-color);
  background-color: var(--primary-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Trajan Pro small caps — no text-transform */
}

.btn-submit:hover {
  opacity: 0.9;
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 991.98px) {
  .contact-hero {
    padding: 25px 0;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-content {
    padding: 40px 0 50px;
  }

  .contact-heading {
    font-size: 28px;
  }

  /* Remove divider on tablet/mobile */
  .contact-left {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .contact-map {
    border-right: none;
    padding-right: 0;
    flex: none;
    height: 300px;
  }

  .contact-right {
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .contact-hero {
    padding: 20px 0;
  }

  .contact-title {
    font-size: 28px;
  }

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

  .contact-map {
    height: 260px;
  }

  .contact-info-items {
    gap: 15px;
  }
}

@media (max-width: 575.98px) {
  .contact-title {
    font-size: 24px;
  }

  .contact-heading {
    font-size: 20px;
  }

  .contact-info-items {
    flex-direction: column;
    gap: 10px;
  }
}
