/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.container {
  max-width: 100%;
  padding-left: clamp(24px, 4vw, 64px);
  padding-right: clamp(24px, 4vw, 64px);
}


.contact-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px 0 40px;
  text-align: center;
  color: white;
}

.contact-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-hero p {
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Information */
.contact-info h2,
.contact-form-box h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info > p,
.contact-form-box > p {
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.contact-item h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.contact-item p,
.contact-item a {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  text-decoration: none;
}

.contact-note {
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  padding: 18px;
  border-radius: 8px;
}

.contact-note h4 {
  margin-bottom: 8px;
  font-size: 15px;
}

/* Contact Form */
.contact-form-box {
  background: white;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.contact-form .form-group {
  margin-bottom: 22px;
}

.contact-form .form-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.contact-form .form-input,
.contact-form .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e2e2e2;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.25s ease;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102,126,234,0.08);
  outline: none;
}

.contact-form .form-textarea {
  min-height: 130px;
}

.contact-form .btn-large {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form .btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(102,126,234,0.3);
}

.form-note {
  margin-top: 18px;
  font-size: 12px;
  text-align: center;
  color: #777;
}

/* Alerts */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 13px;
}

/* Why Contact */
.why-contact {
  padding: 60px 0;
}

.why-contact .section-head {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.benefit-card {
  padding: 30px;
  border-radius: 14px;
  background: #f8f9fa;
  text-align: center;
  transition: 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-form-box {
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 60px 0 40px;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-section,
  .why-contact {
    padding: 60px 0;
  }
}
