/* ================================
   CONTACT PAGE HERO
================================ */

.contact-hero {
  background: url("../images/contact-hero.jpg") center/cover no-repeat;
  position: relative;
}

.page-hero {
  height: 65vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  margin: auto;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f1f1f1;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero {
    height: auto;
    padding: 80px 0;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

/* ================================
   QUICK CONTACT – PRO STYLE
================================ */

.quick-contact-pro {
  padding: 35px 0;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

.contact-pro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.contact-pro-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pro-icon {
  font-size: 26px;
  color: #ffb400;
  flex-shrink: 0;
}

.pro-text small {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 2px;
}

.pro-text a,
.pro-text span {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.pro-text a:hover {
  color: #ffb400;
}

/* Tablet */
@media (max-width: 992px) {
  .contact-pro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .contact-pro-grid {
    grid-template-columns: 1fr;
  }

  .contact-pro-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }
}


/* ================================
   CONTACT FORM SECTION
================================ */

.contact-form-section {
  padding: 90px 0;
  background: #f9f9f9;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  padding: 45px 40px;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.contact-form-head {
  text-align: center;
  margin-bottom: 30px;
}

.contact-form-head h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-form-head p {
  font-size: 15px;
  color: #666;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-form textarea {
  grid-column: span 2;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffb400;
}

.form-submit {
  text-align: center;
  margin-top: 25px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 30px 22px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form textarea {
    grid-column: span 1;
  }
}

/* ================================
   THANK YOU POPUP – FIXED
================================ */

.thankyou-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;              /* 👈 THIS IS THE KEY */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.thankyou-box {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  text-align: center;
  max-width: 420px;
  width: 90%;
}

.thankyou-box h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.thankyou-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

/* ================================
   GOOGLE MAP SECTION
================================ */

.map-section {
  padding: 80px 0;
  background: #ffffff;
}

.map-head {
  text-align: center;
  margin-bottom: 30px;
}

.map-head h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.map-head p {
  font-size: 15px;
  color: #666;
}

.map-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.map-info {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .map-head h2 {
    font-size: 26px;
  }

  .map-wrapper iframe {
    height: 300px;
  }
}


/* ================================
   BUSINESS DETAILS – NEW DESIGN
================================ */

.business-details {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff, #f5f7fa);
}

.details-header {
  text-align: center;
  margin-bottom: 45px;
}

.details-header h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111;
}

.details-header p {
  font-size: 15px;
  color: #666;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.detail-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.detail-icon {
  font-size: 34px;
  display: inline-block;
  margin-bottom: 15px;
}

.detail-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
}

.detail-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .details-header h2 {
    font-size: 28px;
  }
}

/* ================================
   WHY CONTACT US – TRUST BUILDER
================================ */

.why-contact {
  padding: 80px 0;
  background: #ffffff;
}

.why-head {
  text-align: center;
  margin-bottom: 45px;
}

.why-head h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111;
}

.why-head p {
  font-size: 15px;
  color: #666;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.why-card {
  background: #f9fafc;
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}

.why-icon {
  font-size: 36px;
  display: inline-block;
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .why-head h2 {
    font-size: 28px;
  }
}
/* ================================
   REVIEWS & RATINGS SNAPSHOT
================================ */

.reviews-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
}

.reviews-head {
  text-align: center;
  margin-bottom: 45px;
}

.reviews-head h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}

.reviews-head p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.review-card {
  background: #ffffff;
  padding: 30px 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.review-text {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

.review-author {
  font-size: 13px;
  color: #777;
  font-weight: 600;
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

/* Mobile */
@media (max-width: 768px) {
  .reviews-head h2 {
    font-size: 28px;
  }
}

/* ================================
   FAQ SECTION
================================ */

.faq-section {
  padding: 80px 0;
  background: #f9fafc;
}

.faq-head {
  text-align: center;
  margin-bottom: 45px;
}

.faq-head h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111;
}

.faq-head p {
  font-size: 15px;
  color: #666;
}

.faq-list {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #ffffff;
  padding: 22px 26px;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.faq-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
}

.faq-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-head h2 {
    font-size: 28px;
  }
}

/* ================================
   FAQ SECTION – ACCORDION STYLE
================================ */

.faq-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
}

.faq-head {
  text-align: center;
  margin-bottom: 45px;
}

.faq-head h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111;
}

.faq-head p {
  font-size: 15px;
  color: #666;
}

.faq-list {
  max-width: 900px;
  margin: auto;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Question Button */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  color: #222;
  position: relative;
}

/* Plus / Minus Icon */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 700;
  color: #333;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "–";
  color: #000;
}

/* Answer */
.faq-answer {
  display: none;
  padding: 0 26px 22px;
  border-top: 1px solid #eee;
}

.faq-answer p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-top: 12px;
}

/* Hover Effect */
.faq-item:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-head h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 15px;
    padding: 20px 22px;
  }

  .faq-answer {
    padding: 0 22px 20px;
  }
}

/* ================================
   FINAL CTA SECTION
================================ */

.final-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #111827, #1f2933);
  text-align: center;
  color: #ffffff;
}

.final-cta h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 14px;
}

.final-cta p {
  font-size: 16px;
  max-width: 750px;
  margin: 0 auto 40px;
  color: #e5e7eb;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.cta-btn {
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Buttons */
.call-btn {
  background: #16a34a;
  color: #ffffff;
}

.whatsapp-btn {
  background: #25d366;
  color: #ffffff;
}

.quote-btn {
  background: #f59e0b;
  color: #111;
}

/* Hover Effects */
.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.3);
}

/* Mobile */
@media (max-width: 768px) {
  .final-cta h2 {
    font-size: 28px;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ================================
   SEO FOOTER CONTENT
================================ */

.seo-footer-content {
  background: #f8fafc;
  padding: 25px 20px;
  text-align: center;
}

.seo-footer-content p {
  max-width: 1100px;
  margin: auto;
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
}
