/* Contact Page Styles */

/* Hero Section */
.contact-hero {
  /* Changed from blue gradient to orange gradient to match other pages */
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=600&width=1200") center / cover;
  opacity: 0.1;
  z-index: 1;
}

.contact-hero .hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.info-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Changed border color from blue to orange */
  border-top: 4px solid #ff6b35;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
  width: 70px;
  height: 70px;
  /* Changed background gradient from blue to orange */
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
}

.info-card h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.info-card p {
  color: #2c3e50;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.info-card span {
  color: #666;
  font-size: 0.9rem;
}

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

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.form-container {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-header h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-header p {
  color: #666;
  font-size: 1.1rem;
}

.contact-form {
  max-width: 100%;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  /* Changed focus border color from blue to orange */
  border-color: #ff6b35;
  /* Changed focus shadow color from blue to orange */
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  color: #2c3e50;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e1e8ed;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  /* Changed checkbox background from blue to orange */
  background: #ff6b35;
  border-color: #ff6b35;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.privacy-link {
  /* Changed link color from blue to orange */
  color: #ff6b35;
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  /* Changed button gradient from blue to orange */
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  /* Changed hover shadow color from blue to orange */
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  /* Changed left border color from blue to orange */
  border-left: 4px solid #ff6b35;
}

.sidebar-card h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.consultation-btn {
  display: inline-block;
  /* Changed button gradient from blue to orange */
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.consultation-btn:hover {
  transform: translateY(-2px);
  /* Changed hover shadow color from blue to orange */
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #2c3e50;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.quick-links a:hover {
  background: #f8f9fa;
  /* Changed hover text color from blue to orange */
  color: #ff6b35;
  transform: translateX(5px);
}

.quick-links i {
  /* Changed icon color from blue to orange */
  color: #ff6b35;
  width: 16px;
}

/*
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #2c3e50;
  text-decoration: none;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateX(5px);
}

.social-link.facebook:hover {
  background: #1877f2;
  color: white;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-link.youtube:hover {
  background: #ff0000;
  color: white;
}

.social-link.twitter:hover {
  background: #1da1f2;
  color: white;
}
*/
/* Map Section */
.map-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.map-header h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.map-header p {
  color: #666;
  font-size: 1.1rem;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
}

.map-placeholder {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.map-details {
  padding: 1.5rem;
  text-align: center;
}

.map-details i {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.map-details p {
  font-size: 1.3rem;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.map-details span {
  color: #666;
  display: block;
  margin-bottom: 1.5rem;
}

.directions-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

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

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: between;
  align-items: center;
  background: white;
  border-bottom: 1px solid #e1e8ed;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-question i {
  /* Changed FAQ icon color from blue to orange */
  color: #ff6b35;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem 2rem;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

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

  .contact-hero p {
    font-size: 1.1rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-container {
    padding: 2rem;
  }

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

  .contact-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .info-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 100px 0 60px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-info-section,
  .contact-form-section,
  .map-section,
  .faq-section {
    padding: 60px 0;
  }

  .form-container {
    padding: 1.5rem;
  }

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

  .map-placeholder {
    height: 300px;
  }

  .faq-question {
    padding: 1rem 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 1rem 1.5rem;
  }
}

.page-header {
 background: linear-gradient(135deg, #ffecd2, #fcb69f);
  padding: 3rem 0;
  text-align: center;
}
.page-header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.breadcrumb {
  margin-top: 1rem;
}

.breadcrumb a {

  text-decoration: none;
  opacity: 0.8;
}

.breadcrumb a:hover {
color: white;
  opacity: 1;
}