.contact-section-wrapper {
  background: #f9f9f9;
  margin-top: 90px;
}

.contact-us {
  text-align: center;
  margin: 40px auto 32px;
  font-size: 20px;
  padding: 0 20px;
  max-width: 720px;
}

.contact-us h2 {
  font-size: 40px;
  text-transform: uppercase;
  color: var(--roller);
  font-weight: 700;
}

.contact-us p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--muted);
}

@media (max-width: 600px) {
  .contact-us h2 {
    font-size: 26px;
  }
}

/* CONTACT + MAP WRAP */
.contact-map-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
  align-items: stretch; 
}

.map-box,
.contact-form-box {
  flex: 1;
  min-height: 440px;
}

/* ================= MAP ================= */
.map-box {
  flex: 1.05;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.05);
}

.map-card {
  padding: 0;
  border-radius: 20px;
  width: 100%;
  display: flex;
}

.map-embed {
  border-radius: 14px;
  overflow: hidden;
  flex: 1;
  background: #000;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================= CONTACT FORM ================= */
.contact-form-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.contact-form-header h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--roller);
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--roller);
  margin-bottom: 8px;
}

.contact-form-header p {
  font-size: 14px;
  color: var(--muted);
}

/* ================= FORM ================= */
.contact-form-fields {
  margin-top: 18px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  width: 100%;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--roller);
  margin-top: 12px;
}

.form-control,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  outline: none;
  transition: 0.2s ease;
  background: #f9fafb;
}

.form-control:focus,
.form-textarea:focus {
  border-color: var(--blinds);
  box-shadow: 0 0 0 3px rgba(94, 197, 230, 0.25);
  background: #ffffff;
}

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

.btn-submit {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--roller);
  color: #f9fafb;
  transition: 0.2s ease;
}

.btn-submit:hover {
  background: var(--blinds);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

/* ================= CONTACT DETAILS ================= */
.contact-extra {
  margin-top: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.info-label {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color:#333 ;
  margin-top: 4px;
  margin-bottom: 4px;
  font-weight: 700;
}

.info-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--roller);
}

/* ADDRESS STYLE (ADDED) */
.address-text {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  max-width: 360px;
}

.field-error {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #dc2626;
}

.form-control.has-error,
.form-textarea.has-error {
  border-color: #dc2626;
  background: #fff5f5;
}

.form-control.has-error:focus,
.form-textarea.has-error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.25);
}



/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .contact-map-wrap {
    flex-direction: column;
    margin-top: 10px;
  }

  .contact-form-box {
    padding: 24px 22px;
  }

  .contact-form-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 10px;
  }



  .contact-map-wrap {
    padding: 0 16px;
  }

  .contact-extra {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
  }
}

/* ================= FAQ SECTION ================= */

.faq-block {
  padding: 10px 0 70px;
}

.faq-container {
  flex-direction: column;
}

.faq-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 30px 30px 10px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--roller);
  margin-bottom: 18px;
  text-align: left;
}

/* Accordion */
.faq-accordion {
  border-top: 1px solid #ddd;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

/* Question */
.faq-question {
  width: 100%;
  padding: 20px 0;
  font-size: 17px;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #333;
  text-align: left;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.faq-question span:first-child {
  flex: 1;
  text-align: left;
}


/* Answer */
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  font-size: 15px;
  color: var(--muted);
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 2000px; 
  opacity: 1;
  padding: 8px 0 24px;
}

/* Inner spacing */
.faq-answer p {
  margin-bottom: 14px;
}

/* Comparison Table */
.faq-table-box {
  margin: 14px 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e1e1e1;
  background: #fff;
}

.faq-table-box table {
  width: 100%;
  table-layout: fixed;
  font-size: 14px;
  border-collapse: collapse;
  word-break: break-word;
}

.faq-table-box th,
.faq-table-box td {
  padding: 10px 12px;
  border: 1px solid #e1e1e1;
  text-align: left;
  color: var(--text);
}

.faq-table-box th {
  font-weight: 600;
  color: var(--roller);
  background: #f6f6f6;
}

.faq-table-box tr:nth-child(even) {
  background: #eefaff;
}

/* MOBILE */
@media (max-width: 600px) {
  .faq-title {
    font-size: 24px;
    text-align: left;
  }

  .faq-question {
    padding: 22px 0;
  }

  .faq-item.active .faq-answer {
    padding: 10px 0 26px;
  }

  .faq-table-box table {
    font-size: 13px;
  }
}

/* FAQs icon styles */
.faq-icon {
  font-size: 18px;
  line-height: 1;
  color: #5f6368; 
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.25s ease;
  user-select: none;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--roller);
}

.faq-question:hover .faq-icon {
  color: var(--blinds);
}

