/* contact.css - Redesigned Contact Page Styles */

:root {
  --brand-red: #8b0000;
  --brand-red-gradient: linear-gradient(145deg, #a50000 0%, #5a0000 100%);
  --text-bright: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.7);
  --input-border: rgba(255, 255, 255, 0.3);
}

body {
  background: #000000 !important;
  color: var(--text-bright);
  font-family: 'Kumbh Sans', sans-serif;
  overflow-x: hidden;
}

/* --- Hero Section (Header) --- */
.contact-hero-final {
  padding: 80px 0 20px;
  text-align: left;
}

.contact-hero-final p {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 18px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.contact-hero-final h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 1;
  margin-top: 0;
  color: #fff;
}

/* --- Content Wrapper --- */
.contact-section-final {
  padding-top: 20px;
  padding-bottom: 100px;
}

/* --- Left Side: Red Info Card --- */
.red-info-wrap {
  background: linear-gradient(135deg, #850707, #4a0d0d);
  border-radius: 40px;
  padding: 40px 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(139, 0, 0, 0.133);
}

.red-info-wrap::before,
.red-info-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

/* Smaller front glow */
.red-info-wrap::before {
  width: 160px;
  height: 200px;
  top: -50px;
  right: -30px;
}

/* Larger back glow */
.red-info-wrap::after {
  width: 260px;
  height: 300px;
  top: -100px;
  right: -40px;
}

.red-info-wrap h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.red-info-wrap .intro-p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
  color: #fff;
}

.info-line {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  color: #fff;
}

.info-line i {
  font-size: 1.3rem;
  color: #fff;
  margin-top: 4px;
}

.info-line p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.red-card-map {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- Right Side: Form --- */
.form-wrap-final {
  padding: 30px 0 30px 60px;
}

.form-field-final {
  margin-bottom: 40px;
}

.form-field-final label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.line-input-final {
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid var(--input-border) !important;
  border-radius: 0 !important;
  padding: 12px 0 !important;
  color: #fff !important;
  font-size: 1.1rem !important;
  width: 100%;
  transition: border-color 0.3s ease;
}

.line-input-final:focus {
  outline: none !important;
  border-color: #fff !important;
  box-shadow: none !important;
}

.line-input-final::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.95rem;
}

.btn-red-final {
  background: var(--brand-red);
  color: #fff;
  border: none;
  padding: 15px 45px;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  transition: 0.3s ease;
  box-shadow: 0 15px 30px rgba(139, 0, 0, 0.3);
  float: right;
  cursor: pointer;
}

.btn-red-final:hover {
  background: #a50000;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(139, 0, 0, 0.4);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .form-wrap-final {
    padding: 50px 0;
  }

  .btn-red-final {
    float: none;
    width: 100%;
    text-align: center;
  }

  .contact-hero-final {
    text-align: center;
    padding-top: 100px;
  }
}