/* Contact Page Specific Styles */

/* Contact Header */
.contact-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #00ca45 0%, #11a0af 100%);;
  color: white;
  text-align: center;
}

.contact-header-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-header-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Contact Information Section */
.contact-info-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Contact Cards */
.contact-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ca45, #11a0af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-card h3 {
  margin-bottom: 1.5rem;
  color: #333;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-details p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.contact-hours h4 {
  margin-bottom: 1rem;
  color: #07b970;
}

/* Office List */
.office-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.office-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.office-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.office-item h4 {
  color: #07b970;
  margin-bottom: 0.75rem;
}

.office-item p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Support List */
.support-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.support-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.support-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.support-item h4 {
  color: #07b970;
  margin-bottom: 0.75rem;
}

.support-item p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-header h2 {
  color: #333;
  margin-bottom: 1rem;
}

.form-header p {
  color: #666;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #07b970;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox Group */
.checkbox-group {
  margin: 1rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-left: 2rem;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 20px;
  width: 20px;
  background-color: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.checkbox-label:hover input ~ .checkmark {
  background-color: #e9ecef;
}

.checkbox-label input:checked ~ .checkmark {
  background-color: #07b970;
  border-color: #07b970;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-label .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label a {
  color: #07b970;
  text-decoration: none;
  transition: color 0.3s ease;
}

.checkbox-label a:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* Form Success Message */
.form-success {
  text-align: center;
  padding: 3rem;
  background: #f0fdf4;
  border-radius: 16px;
  border: 2px solid #10b981;
}

.success-icon {
  margin-bottom: 1.5rem;
}

.success-icon i {
  font-size: 4rem;
  color: #10b981;
}

.form-success h3 {
  color: #065f46;
  margin-bottom: 1rem;
}

.form-success p {
  color: #047857;
  line-height: 1.6;
}

/* Quick Contact Section */
.quick-contact {
  padding: 6rem 0;
  background: white;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.quick-contact-card {
  text-align: center;
  padding: 2.5rem;
  background: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.quick-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: white;
}

.quick-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ca45, #11a0af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.quick-contact-card:hover .quick-icon {
  transform: scale(1.1);
}

.quick-icon i {
  font-size: 2rem;
  color: white;
}

.quick-contact-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

.quick-contact-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Map Section */
.map-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

.map-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.map-placeholder {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content {
  text-align: center;
  padding: 3rem;
}

.map-content i {
  font-size: 4rem;
  color: #07b970;
  margin-bottom: 1.5rem;
}

.map-content h3 {
  color: #333;
  margin-bottom: 1rem;
}

.map-content p {
  color: #666;
  margin-bottom: 2rem;
}

.map-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Location Info */
.location-info {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-info h3 {
  color: #333;
  margin-bottom: 2rem;
}

.transport-options {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.transport-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.transport-item i {
  font-size: 2rem;
  color: #07b970;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.transport-item h4 {
  color: #333;
  margin-bottom: 0.5rem;
}

.transport-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-header-content h1 {
    font-size: 2.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    grid-template-columns: 1fr;
  }

  .map-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .contact-header-content h1 {
    font-size: 2rem;
  }

  .contact-form-section {
    padding: 1.5rem;
  }

  .contact-card {
    padding: 1.5rem;
  }
}
