/* contact.css - Contact Page */

/* CONTACT HERO SECTION */
.contact-hero {
  position: relative;
  min-height: 350px;
  background: linear-gradient(135deg, rgba(28, 37, 57, 0.85), rgba(28, 37, 57, 0.75)), url('../../images/contact-hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px 20px;
}

.contact-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.contact-hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  color: white;
  margin: 0;
  flex: 1;
}

.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: white;
  padding: 15px 30px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-breadcrumb a,
.contact-breadcrumb span {
  color: var(--color-text-dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.contact-breadcrumb a:hover {
  color: var(--color-primary);
}

.contact-breadcrumb span {
  color: var(--color-text);
}

/* GET IN TOUCH SECTION */
.get-in-touch-section {
  padding: 80px 20px;
  background-color: white;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 60px;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* CONTACT FORM BOX */
.contact-form-box {
  background: linear-gradient(135deg, #1c2539, #2a3648);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.form-header {
  margin-bottom: 40px;
  text-align: center;
}

.form-logo {
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.required {
  color: var(--color-primary);
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: none;
  background-color: white;
  color: var(--color-text-dark);
  font-size: 14px;
  font-family: inherit;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(193, 39, 45, 0.2);
  background-color: #f9f9f9;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  padding: 12px 30px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 10px;
}

.btn-submit:hover {
  background-color: var(--color-primary-dark, #a01c20);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193, 39, 45, 0.3);
}

/* CONTACT DETAILS BOX */
.contact-details-box {
  background-color: white;
  padding: 40px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.details-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e5e5e5;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}

.contact-detail-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.detail-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-bg-light);
  border-radius: 50%;
  font-size: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.detail-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.detail-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

.detail-content a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.detail-content a:hover {
  color: var(--color-primary-dark, #a01c20);
  text-decoration: underline;
}

/* MAP SECTION */
.map-section {
  padding: 0;
  background-color: #f5f5f5;
  margin-top: 60px;
}

.contact-map {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-hero-content h1 {
    font-size: 40px;
  }

  .contact-breadcrumb {
    justify-content: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-box {
    padding: 40px;
  }

  .contact-details-box {
    padding: 30px;
  }

  .contact-map {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 250px;
    padding: 40px 20px;
  }

  .contact-hero-content h1 {
    font-size: 32px;
  }

  .contact-breadcrumb {
    font-size: 12px;
    padding: 12px 20px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .get-in-touch-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .contact-form-box {
    padding: 30px;
  }

  .form-group {
    gap: 8px;
  }

  .contact-details-box {
    padding: 25px;
  }

  .details-title {
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .contact-detail-item {
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
  }

  .detail-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .detail-content h4 {
    font-size: 15px;
  }

  .contact-map {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    min-height: 200px;
    padding: 30px 15px;
  }

  .contact-hero-content h1 {
    font-size: 24px;
  }

  .contact-breadcrumb {
    padding: 10px 15px;
    gap: 8px;
    font-size: 11px;
  }

  .get-in-touch-section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .contact-form-box {
    padding: 20px;
  }

  .form-header {
    margin-bottom: 25px;
  }

  .form-logo {
    max-width: 100px;
  }

  .contact-form {
    gap: 20px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .btn-submit {
    padding: 10px 25px;
    font-size: 13px;
  }

  .contact-details-box {
    padding: 20px;
  }

  .details-title {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .contact-detail-item {
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .detail-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .detail-content h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .detail-content p {
    font-size: 13px;
  }

  .contact-map {
    height: 250px;
  }

  .map-section {
    margin-top: 40px;
  }
}