/* Contact Page Specific Styles */

/* Contact Section */
.contact-section {
  background: white;
  padding: 100px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}

.contact-info {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-slate));
  color: white;
  padding: 3rem;
}

.contact-info h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 800;
}

.contact-info p {
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-details {
  margin: 3rem 0;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--light-gray);
}

.contact-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-text h4 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: white;
}

.contact-text p {
  margin: 0;
  opacity: 0.9;
}

.social-links {
  margin-top: 2rem;
}

.social-links h4 {
  margin-bottom: 1rem;
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-icon:hover {
  background: white;
  color: var(--primary-blue);
  border-color: white;
}

/* Form Design */
.contact-form {
  background: var(--light-gray);
  padding: 3rem;
  border: 3px solid var(--primary-blue);
}

.contact-form h2 {
  margin-bottom: 2rem;
  color: var(--dark-slate);
  font-size: 2.5rem;
  font-weight: 800;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--dark-slate);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  background: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(114, 177, 255, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: white;
  padding: 1rem;
  border: 2px solid #ddd;
}

.checkbox-group input {
  width: auto;
  margin-top: 2px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  text-transform: none;
  line-height: 1.5;
}

.checkbox-group a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.form-group .btn {
  width: 100%;
  margin-top: 1rem;
}

/* Map Section */
.map-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: var(--dark-slate);
  font-weight: 800;
}

.map-placeholder {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-slate));
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 3px solid var(--dark-slate);
}

.map-content {
  text-align: center;
}

.map-content i {
  font-size: 4rem;
  color: white;
  margin-bottom: 1rem;
}

.map-content p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.map-note {
  font-style: italic;
  opacity: 0.8;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info,
  .contact-form {
    padding: 2rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .contact-icon {
    align-self: center;
  }

  .social-icons {
    justify-content: center;
  }

  .map-placeholder {
    height: 250px;
  }

  .checkbox-group {
    flex-direction: column;
    gap: 0.5rem;
  }
}
