/* =====================================
   CONTACT PAGE – CLEAN & NORMAL FORM
   (NO FLOATING LABELS / NO WEIRD EFFECTS)
===================================== */

/* ---------- PAGE HEADER ---------- */

.contact-page-header {
  position: relative;
  padding: 5rem 0 4rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.95),
    rgba(28, 28, 28, 0.95)
  );
  border-bottom: 1px solid rgba(167, 34, 29, 0.35);
}

.contact-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.02) 2px,
    transparent 2px,
    transparent 8px
  );
  pointer-events: none;
}

.contact-page-title {
  font-family: "Antonio", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-page-title span {
  color: var(--primary-red);
}

.contact-page-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- MAIN SECTION ---------- */

.contact-page-section {
  background-color: var(--darker-bg);
}

.contact-page-section .row {
  align-items: stretch;
}

/* ---------- CONTACT FORM CARD ---------- */

.contact-form-wrapper {
  background-color: var(--dark-bg);
  padding: 3.8rem;
  border-radius: 16px;
  border: 1px solid rgba(167, 34, 29, 0.25);
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.65);
}

.contact-form-wrapper .section-title {
  font-family: "Antonio", "Inter", sans-serif;
  font-size: 2.1rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

/* ---------- FORM GROUP (LABEL ABOVE INPUT) ---------- */

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

/* LABEL */
.contact-form .form-label {
  position: static;
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

/* INPUTS */
.contact-form .form-control {
  margin-top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(167, 34, 29, 0.35);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  color: #ffffff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* FOCUS – SIMPLE & CLEAN */
.contact-form .form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 2px rgba(167, 34, 29, 0.25);
  outline: none;
}

/* TEXTAREA */
.contact-form textarea.form-control {
  min-height: 200px;
  resize: vertical;
  font-family: "Inter", "Roboto", sans-serif;
}

/* SELECT */
.contact-form select.form-control {
  cursor: pointer;
  color: #ffffff;
  font-family: "Inter", "Roboto", sans-serif;
}

.contact-form select option {
  background-color: var(--dark-bg);
  color: #ffffff;
}

/* SUBMIT BUTTON */
.contact-submit-btn {
  background-color: var(--primary-red);
  border: none;
  padding: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  border-radius: 10px;
  transition: background-color 0.25s ease;
}

.contact-submit-btn:hover {
  background-color: #8a1c18;
}

/* ---------- CONTACT INFO CARD ---------- */

.contact-info {
  background-color: var(--dark-bg);
  padding: 3.8rem;
  border-radius: 16px;
  border: 1px solid rgba(167, 34, 29, 0.25);
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.65);
}

.contact-info .section-title {
  font-family: "Antonio", sans-serif;
  font-size: 2.1rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  position: relative;
}

.contact-info .section-title::after {
  content: "";
  width: 48px;
  height: 3px;
  background-color: var(--primary-red);
  display: block;
  margin-top: 0.6rem;
}

/* INFO ITEMS */

.info-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(167, 34, 29, 0.15);
}

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

/* ICON BOX (HOVER SAFE) */

.contact-info-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(
    135deg,
    rgba(167, 34, 29, 0.25),
    rgba(138, 28, 24, 0.25)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-icon i {
  font-size: 1.25rem;
  color: var(--primary-red);
  transition: color 0.3s ease;
}

.info-item:hover .contact-info-icon {
  background: var(--primary-red);
  box-shadow: 0 0 0 6px rgba(167, 34, 29, 0.18);
}

.info-item:hover .contact-info-icon i {
  color: #ffffff;
}

/* TEXT */

.info-content h4 {
  font-family: "Antonio", sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.info-content p {
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}

/* ---------- FIND US (MAP TITLE) ---------- */

.contact-map-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-map-title {
  font-family: "Antonio", sans-serif;
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.contact-map-subtitle {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* ---------- MAP SECTION ---------- */

.contact-map-section {
  padding: 4rem 0 5rem;
  background-color: var(--darker-bg);
}

.contact-map-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}

/* Google Map */
.contact-map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(0.25) contrast(1.05);
}

/* ---------- MAP OVERLAY ---------- */

.contact-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-map-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.overlay-content {
  text-align: center;
  color: #ffffff;
}

.overlay-content i {
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 0.6rem;
}

.overlay-content h3 {
  font-family: "Antonio", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.overlay-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 576px) {
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 991px) {
  .contact-form-wrapper,
  .contact-info {
    padding: 2.8rem;
  }
}

@media (max-width: 768px) {
  .contact-page-title {
    font-size: 2.4rem;
  }

  .contact-form-wrapper,
  .contact-info {
    padding: 2.2rem;
  }
}

@media (max-width: 576px) {
  .contact-map-wrapper iframe {
    height: 300px;
  }
  .contact-map-wrapper iframe {
    height: 300px;
  }
}
