/* ========================================
   CONTACT PAGE STYLES - MODERN REDESIGN
   ======================================== */

/* Hero Section */
.contact-hero-section {
  background: linear-gradient(135deg, var(--brown-color));
  color: white;
  padding: 100px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  text-align: center;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Quick Contact Cards */
.quick-contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.quick-contact-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.quick-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-top-color: var(--main-color);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--main-color), #5a9624);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.quick-contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--heading-color, #333);
}

.quick-contact-card p {
  color: #666;
  margin-bottom: 20px;
}

.contact-link {
  display: inline-block;
  padding: 12px 24px;
  background: var(--main-color);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: var(--heading-color);
  transform: translateY(-2px);
  color: white;
}

/* Main Contact Section */
.contact-main-section {
  padding: 0 0 100px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--heading-color, #333);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  gap: 60px;
  align-items: start;
}

.contact-main-section .container {
    margin-top: 40px;
  }

  .form-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: #222;
  }

  .form-header h3 {
    margin-bottom: 10px;
  }

  .form-header p {
    margin-bottom: 30px;
    color: #555;
  }
/* Contact Form */


.form-container {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
  margin-bottom: 30px;
}

.form-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--heading-color, #333);
}

.form-header p {
  color: #666;
  font-size: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color, #333);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

select.form-control {
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.checkbox-group {
  margin: 30px 0;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.checkbox-container a {
  color: var(--main-color, #667eea);
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}


.social-connect {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.social-connect h4 {
  margin-bottom: 20px;
  color: var(--heading-color, #333);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}


/* FAQ Section */
.contact-faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-faq-section .section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
  color: var(--heading-color, #333);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
}

.faq-item h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--heading-color, #333);
  line-height: 1.4;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-stats {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    padding: 60px 0 50px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .quick-contact-section {
    padding: 60px 0;
  }
  
  .quick-contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-main-section {
    padding: 0 0 60px 0;
  }
  
  .form-container {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-faq-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .quick-contact-container{
    padding: 0 25px;
  }
  .quick-contact-card {
    padding: 30px 20px;
  }
  
  .form-container {
    padding: 25px 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
}
