/* Reset default styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
.span1 {
    color: #f83600;
}
/* ---------- Contact Us Hero ---------- */
.contact-hero {
  color: #000000;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 3rem 1.5rem;
  }
  .contact-hero h1 {
    font-size: 2rem;
  }
  .contact-hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 2.5rem 1rem;
  }
  .contact-hero h1 {
    font-size: 1.6rem;
  }
  .contact-hero p {
    font-size: 0.95rem;
  }
}

/* ---------- Contact Form ---------- */
.contact-form-section {
  background: #fff;
  padding: 3rem 2rem;
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.contact-form-container p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

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

form input,
form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 15px;
  outline: none;
  transition: border-color 0.3s;
}

form input:focus,
form textarea:focus {
  border-color: #AD7636;
}

form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-btn {
  background: #000000;
  color: #fff;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #f83600;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .contact-form-container h2 {
    font-size: 1.6rem;
  }
  form input,
  form textarea {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 2rem 1rem;
  }
  .contact-form-container h2 {
    font-size: 1.4rem;
  }
}

/* ---------- Contact Info ---------- */
.contact-info-section {
  background: #f9f9f9;
  padding: 3rem 2rem;
}

.contact-info-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.contact-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.8rem;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  font-size: 1rem;
  color: #555;
}

.contact-info-card a {
  color: #AD7636;
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .contact-info-container {
    gap: 1.5rem;
  }
  .contact-info-card {
    padding: 1.5rem 1rem;
  }
  .contact-info-card h3 {
    font-size: 1.1rem;
  }
}

/* ---------- FAQ Section ---------- */
.faq-section {
  background: #fff;
  padding: 3rem 2rem;
}

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

.faq-container h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
}

.faq-question::after {
  content: "+";
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  margin-top: 0.8rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .faq-container h2 {
    font-size: 1.6rem;
  }
  .faq-question {
    font-size: 1rem;
  }
  .faq-answer {
    font-size: 0.95rem;
  }
}
/* Newsletter Section */
.newsletter-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  margin: 40px auto;
  max-width: 1200px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.newsletter-container h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.newsletter-container p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #555;
}

.newsletter-container form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-container input[type="email"] {
  padding: 12px 18px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 30px;
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.newsletter-container button {
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 500;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-container button:hover {
  background: #f83600;
}

/* Newsletter Success Popup */
.newsletter-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  text-align: center;
  z-index: 2000;
}

.newsletter-popup p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #333;
}

.newsletter-popup button {
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-popup button:hover {
  background: #f83600;
}

/* Responsive Newsletter */
@media (max-width: 768px) {
  .newsletter-container h2 {
    font-size: 1.6rem;
  }
  .newsletter-container p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .newsletter-container h2 {
    font-size: 1.4rem;
  }
  .newsletter-container input[type="email"] {
    min-width: 100%;
  }
  .newsletter-container form {
    flex-direction: column;
  }
  .newsletter-container button {
    width: 100%;
  }
}



