/* Contact Us Page Styles */

/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.contact-hero h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

/* Left Column */
.contact-left {
  padding-right: 20px;
}

.section-label {
  color: #f59e0b;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
}

.section-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: #fff3e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.card-icon i {
  font-size: 24px;
  color: #f59e0b;
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}

.contact-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Social Media */
.social-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-label {
  font-size: 14px;
  color: #222222;
  font-weight: 500;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #222222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #f59e0b;
  transform: translateY(-3px);
}

/* Right Column - Form */
.contact-right {
  position: relative;
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-title {
  font-size: 24px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 15px;
  color: #222222;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.contact-form input::placeholder {
  color: #9ca3af;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23222' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.recaptcha-group {
  display: flex;
  justify-content: flex-start;
}

.submit-btn {
  width: 100%;
  height: 55px;
  background: #f59e0b;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
}

.submit-btn:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Map Section */
.map-section {
  margin-top: 60px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.map-section iframe {
  display: block;
}

/* Responsive Design */

/* Tablet (768px - 1199px) */
@media only screen and (max-width: 1199px) {
  .contact-content {
    gap: 40px;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .section-title {
    font-size: 28px;
  }
}

/* Tablet Portrait (768px - 991px) */
@media only screen and (max-width: 991px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-left {
    padding-right: 0;
  }

  .contact-hero {
    padding: 80px 0;
  }

  .contact-hero h1 {
    font-size: 38px;
  }

  .contact-section {
    padding: 60px 0;
  }
}

/* Mobile (max-width: 767px) */
@media only screen and (max-width: 767px) {
  .contact-hero {
    padding: 60px 0;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-card {
    padding: 25px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .form-title {
    font-size: 20px;
  }

  .social-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .map-section {
    margin-top: 40px;
  }

  .map-section iframe {
    height: 350px !important;
  }
}

/* Small Mobile (max-width: 480px) */
@media only screen and (max-width: 480px) {
  .contact-hero h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 22px;
  }

  .contact-form-wrapper {
    padding: 25px 15px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form select {
    height: 45px;
    font-size: 14px;
  }

  .submit-btn {
    height: 50px;
    font-size: 15px;
  }

  .card-icon {
    width: 45px;
    height: 45px;
  }

  .card-icon i {
    font-size: 20px;
  }

  .contact-card h3 {
    font-size: 16px;
  }
}
