/* Contact Page */
.contact-page {
  padding: 8rem 0 5rem;
}

.contact-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

/* Contact Info Section */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-info > div > p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 36rem;
}

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

.contact-method {
  display: flex;
  gap: 1.5rem;
}

.contact-method-icon {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon-email {
  background: rgba(0, 153, 204, 0.05);
  border: 1px solid rgba(0, 153, 204, 0.1);
}

.contact-method-icon-email svg {
  color: var(--primary);
}

.contact-method-icon-phone {
  background: rgba(204, 51, 51, 0.05);
  border: 1px solid rgba(204, 51, 51, 0.1);
}

.contact-method-icon-phone svg {
  color: var(--accent);
}

.contact-method h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-method a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-method a:hover {
  color: var(--primary);
}

.contact-method-icon-phone + div a:hover {
  color: var(--accent);
}

.contact-image {
  padding-top: 0.5rem;
}

.contact-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  aspect-ratio: 4/3;
}

@media (min-width: 768px) {
  .contact-info h1 {
    font-size: 3rem;
  }
}

/* Goal Statement Section */
.contact-goal {
  background: var(--gray-50);
  border-radius: 2.5rem;
  padding: 2.5rem;
  border: 1px solid var(--gray-100);
}

.contact-goal-content {
  margin-bottom: 1.5rem;
}

.contact-goal h2 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-goal-line {
  display: block;
  color: var(--gray-900);
}

.contact-goal-accent {
  color: var(--accent);
}

.contact-goal-primary {
  color: var(--primary);
}

.contact-goal p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .contact-goal {
    padding: 3.5rem;
  }
  
  .contact-goal h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Locations Section */
.contact-locations {
  margin-top: 8rem;
  padding-top: 5rem;
  border-top: 1px solid var(--gray-100);
}

.contact-locations-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.contact-locations-header h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-locations-header p {
  font-size: 1.125rem;
  color: var(--gray-500);
}

.contact-locations-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.contact-province h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 4px solid var(--accent);
}

.contact-cities {
  display: grid;
  gap: 1.5rem;
}

.contact-city {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-city:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-color: rgba(204, 51, 51, 0.3);
}

.contact-city-icon {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.contact-city-icon svg {
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.contact-city:hover .contact-city-icon {
  background: rgba(204, 51, 51, 0.1);
}

.contact-city:hover .contact-city-icon svg {
  color: var(--accent);
}

.contact-city h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.contact-city:hover h4 {
  color: var(--primary);
}

.contact-city > div > p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.contact-city-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .contact-locations-header h2 {
    font-size: 2.25rem;
  }
  
  .contact-cities {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-cities {
    grid-template-columns: repeat(3, 1fr);
  }
}
