/* Contact Section Styles - Custom Light Background */
.contact-section {
  background: #faf4ec; /* Your custom light beige background */
  color: #374151; /* Dark gray text */
  position: relative;
  padding: 5rem 0;
  border-top: 1px solid #e8ddc7; /* Matching subtle border */
}

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

.contact-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #1f2937; /* Darker title */
}

.contact-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #6b7280; /* Medium gray */
  line-height: 1.6;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #f0e6d2; /* Slightly darker beige for icons */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #e53e3e; /* Red icons */
  transition: all 0.3s ease;
}

.contact-icon:hover {
  background: #ead5b8;
  transform: scale(1.05);
}

.contact-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0;
  color: #1f2937; /* Dark gray headings */
}

.contact-text p {
  color: #6b7280; /* Medium gray text */
  margin: 0;
  line-height: 1.5;
}

.canada-badge {
  background: #f3f0e8; /* Subtle beige variation for badge */
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: inline-block;
  border: 1px solid #e8ddc7;
  transition: background 0.3s ease;
}

.canada-badge:hover {
  background: #ead5b8;
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.canada-flag {
  font-size: 1.5rem;
}

.badge-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: #374151; /* Dark gray text */
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cta-content h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0;
  line-height: 1.2;
  color: #1f2937; /* Dark gray */
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #6b7280; /* Medium gray */
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  cursor: pointer;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.025rem;
}

.btn-white {
  background: #e53e3e; /* Red background */
  color: #ffffff; /* White text */
  border: 2px solid #e53e3e;
}

.btn-white:hover {
  background: #dc2626;
  border-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

.btn-outline-white {
  background: transparent;
  color: #e53e3e; /* Red text */
  border: 2px solid #e53e3e;
}

.btn-outline-white:hover {
  background: #e53e3e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .contact-section {
    padding: 4rem 0;
  }
  
  .contact-info {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-title {
    font-size: 1.875rem;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .contact-item {
    gap: 0.75rem;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.625rem;
  }
  
  .badge-content {
    gap: 0.5rem;
  }
  
  .badge-text {
    font-size: 0.875rem;
  }
  
  .canada-badge {
    padding: 0.75rem 1.25rem;
  }
}
