/*--------------------------------------------------------------
    CONTACT PAGE STYLES
--------------------------------------------------------------*/
.contact-page {
  color: var(--color-text);
  background-color: var(--color-gray-200);
  min-height: 100vh;
}

/* Main Container */
.contact-container {
  width: 85%; /* Increased width to 85% */
  margin: 0 auto;
  padding: 3rem 1rem;
}

/* Two-column Layout */
.contact-layout {
  display: flex;
  flex-direction: row;
  background-color: white;
  border-radius: 4px; /* Reduced border radius */
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Left Column - Information */
.contact-info {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  background-color: white;
}

.contact-info-section {
  padding: 2rem;
}

.contact-info-section:first-child {
  border-bottom: 1px solid var(--color-gray-200);
}

.contact-info-section h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.contact-info-section h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.contact-info-section p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
}

/* Service List */
.service-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.service-item i {
  color: var(--color-primary);
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.service-item span {
  font-family: var(--font-body);
  color: var(--color-gray-700);
}

/* Contact Details */
.contact-details {
  margin-bottom: 1.5rem;
}

.contact-details p {
  margin-bottom: 0.35rem;
}

.contact-details strong {
  font-weight: 600;
}

.contact-details a {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Social Media */
.social-media {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-icon:hover {
  color: var(--color-primary-dark);
}

/* Right Column - Form */
.contact-form {
  flex: 0 0 60%;
  padding: 2rem;
  background-color: white;
}

.contact-form h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-heading);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Form Elements */
.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-gray-800);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--color-gray-300);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(138, 24, 26, 0.15);
}

.contact-form button,
.contact-form input[type='submit'] {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: var(--color-gray-900);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-form button:hover,
.contact-form input[type='submit']:hover {
  background-color: var(--color-primary);
}

/* Map Section */
.contact-map {
  width: 85%; /* Match container width */
  height: 450px;
  margin: 3rem auto 0;
  border-radius: 4px; /* Reduced border radius */
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container {
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-layout {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    flex: 0 0 100%;
  }

  .contact-form {
    order: -1; /* Move form to top on mobile */
  }
}

@media (max-width: 768px) {
  .contact-container,
  .contact-map {
    width: 90%; /* Slightly wider on smaller screens */
  }

  .contact-container {
    padding: 1.5rem 1rem;
  }

  .contact-info-section,
  .contact-form {
    padding: 1.5rem;
  }

  .contact-map {
    height: 350px;
    margin-top: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-container,
  .contact-map {
    width: 95%; /* Even wider on mobile */
  }

  .contact-info-section h2,
  .contact-form h2 {
    font-size: 1.5rem;
  }

  .contact-info-section {
    padding: 1.25rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .contact-map {
    height: 300px;
  }
}

/* 
<style>
.hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.hero-title {
    font-size: var(--fs-xxl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.course-metrics {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.metric-item {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-sm);
    border-radius: 8px;
    text-align: center;
    min-width: 150px;
}

.metric-label {
    display: block;
    font-size: var(--fs-xs);
    opacity: 0.8;
    margin-bottom: var(--spacing-xs);
}

.metric-value {
    display: block;
    font-weight: 700;
    font-size: var(--fs-md);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: all var(--duration-normal) var(--ease-in-out);
    display: inline-block;
}

.btn-primary {
    background: var(--color-secondary);
    color: white;
    border: 2px solid var(--color-secondary);
}

.btn-primary:hover {
    background: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--color-primary);
}

.course-overview,
.main-content,
.course-content {
    padding: var(--spacing-xl) 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .course-metrics {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
}
</style> */
