/* ============================================================
   CONTACT PAGE SECTION — premium version
   All classes prefixed "contact-page-" / "cp-" so nothing here
   overwrites your existing .contact / .contact-grid styles.
   Uses your existing root variables (--deep-burgundy, --crimson,
   --gold, --dark-gold, --cream, --muted, --shadow, etc.)
   ============================================================ */
/* ============================================================
   CONTACT PAGE BANNER
   Namespaced with "cp-banner" so it won't clash with .hero
   or any other existing styles.
   ============================================================ */

.cp-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.cp-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cp-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(74, 7, 7, 0.72) 0%, rgba(74, 7, 7, 0.42) 55%, rgba(74, 7, 7, 0.25) 100%);
}

.cp-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.cp-banner-content h1 {
  margin: 0;
  max-width: 1400px;
  color: var(--white);
  text-align: center;
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.25;
  font-weight: 500;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

/* ===== Responsive ===== */

@media (max-width: 860px) {
  .cp-banner {
    height: 220px;
  }

  .cp-banner-content h1 {
    font-size: clamp(22px, 5.5vw, 30px);
  }
}

@media (max-width: 640px) {
  .cp-banner {
    height: 180px;
  }

  .cp-banner-content h1 {
    font-size: clamp(20px, 6.5vw, 26px);
  }
}
.contact-page-section {
  position: relative;
  padding: 80px 0;
  background: var(--cream);
  overflow: hidden;
}

.contact-page-section::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 70%);
  pointer-events: none;
}

.contact-page-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 56px;
  align-items: start;
}

/* ---------- LEFT: Info ---------- */

.contact-page-title {
  max-width: 560px;
  margin: 0 0 30px;
  color: var(--deep-burgundy);
  font-size: clamp(22px, 2.3vw, 27px);
  line-height: 1.35;
  font-weight: 700;
}

.contact-page-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.contact-page-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-page-list li:first-child {
  padding-top: 0;
}

.contact-page-list li:hover .cp-icon {
  background: var(--crimson);
  color: var(--white);
  transform: translateY(-2px);
}

.cp-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid var(--crimson);
  border-radius: 50%;
  color: var(--crimson);
  background: var(--white);
  font-size: 16px;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.contact-page-list p {
  margin: 0;
  padding-top: 8px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* Map */
.contact-page-map {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-page-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92);
}

.cp-map-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--white);
  color: var(--deep-burgundy);
  font-size: 13px;
  font-weight: 800;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.cp-map-btn:hover {
  background: var(--crimson);
  color: var(--white);
  transform: translateY(-2px);
}

.cp-map-btn i {
  font-size: 12px;
}

/* ---------- RIGHT: Premium Form ---------- */

.contact-page-form-wrap {
  position: relative;
  padding: 44px 40px 40px;
  background: linear-gradient(165deg, var(--deep-burgundy) 0%, var(--dark-maroon) 55%, var(--maroon) 100%);
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(74, 7, 7, 0.32);
  overflow: hidden;
}

.cp-form-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent 70%);
  pointer-events: none;
}

.cp-form-title {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--light-gold);
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 800;
}

.cp-title-line {
  position: relative;
  z-index: 1;
  display: block;
  width: 64px;
  height: 3px;
  margin: 0 0 18px;
  background: var(--dark-gold);
  border-radius: 3px;
}

.cp-form-subtext {
  position: relative;
  z-index: 1;
  max-width: 92%;
  margin: 0 0 30px;
  color: #E9D6D6;
  font-size: 14.5px;
  line-height: 1.65;
  font-weight: 500;
}

.cp-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.cp-field {
  position: relative;
  display: flex;
  align-items: center;
}

.cp-field i {
  position: absolute;
  left: 18px;
  color: var(--dark-gold);
  font-size: 14px;
  pointer-events: none;
  transition: color 0.22s ease;
}

.cp-field-message i {
  top: 18px;
  align-self: flex-start;
}

.cp-field input,
.cp-field textarea {
  width: 100%;
  padding: 16px 18px 16px 48px;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.cp-field textarea {
  resize: vertical;
  min-height: 130px;
  padding-top: 16px;
}

.cp-field input::placeholder,
.cp-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

.cp-field input:focus,
.cp-field textarea:focus {
  border-color: var(--dark-gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.cp-field input:focus ~ i,
.cp-field textarea:focus ~ i {
  color: var(--light-gold);
}

.cp-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  padding: 17px 20px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(120deg, var(--dark-gold), var(--gold));
  color: var(--deep-burgundy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.cp-btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.35);
  filter: brightness(1.05);
}

.cp-btn-submit i {
  font-size: 13px;
  transition: transform 0.22s ease;
}

.cp-btn-submit:hover i {
  transform: translateX(4px);
}

/* ===== Responsive ===== */

@media (max-width: 1180px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-page-form-wrap {
    padding: 36px 30px 32px;
  }
}

@media (max-width: 640px) {
  .contact-page-section {
    padding: 54px 0;
  }

  .contact-page-title {
    font-size: clamp(20px, 6vw, 24px);
  }

  .contact-page-list li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .cp-icon {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .contact-page-list p {
    font-size: 13.5px;
  }

  .contact-page-map {
    height: 230px;
  }

  .contact-page-form-wrap {
    padding: 30px 20px 26px;
    border-radius: 14px;
  }

  .cp-form-title {
    font-size: 22px;
  }

  .cp-form-subtext {
    max-width: 100%;
  }

  .cp-field input,
  .cp-field textarea {
    padding: 14px 14px 14px 42px;
    font-size: 13.5px;
  }

  .cp-field i {
    left: 14px;
    font-size: 13px;
  }

  .cp-btn-submit {
    width: 100%;
  }
}