.elementor-311 .elementor-element.elementor-element-ee037c5{--display:flex;overflow:visible;}.elementor-311 .elementor-element.elementor-element-304e3cc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-1cd018b *//* ---------- CONTACT US PAGE - DIETPLANEX ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

.contact-page {
  font-family: "Inter", sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  color: #222;
}

/* HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}
.contact-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}
.contact-header p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* LAYOUT GRID */
.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 35px;
  margin-bottom: 60px;
  align-items: flex-start;
}

/* CONTACT FORM */
.contact-form {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.contact-form h2 {
  font-size: 20px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 18px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: border 0.25s ease;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
}
.form-group.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.btn-submit {
  display: inline-block;
  background: #16a34a;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-submit:hover {
  background: #128436;
  transform: translateY(-2px);
}

/* CONTACT INFO CARDS */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.info-card h4 {
  font-size: 16px;
  color: #16a34a;
  margin-bottom: 8px;
  font-weight: 700;
}
.info-card p {
  margin: 0 0 6px;
  font-weight: 600;
  color: #333;
}
.info-card a {
  color: #333;
  text-decoration: none;
}
.info-card a:hover {
  color: #16a34a;
}
.info-card span {
  font-size: 14px;
  color: #666;
}

/* FAQ SECTION */
.faq-section {
  background: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.faq-section h2 {
  text-align: center;
  color: #16a34a;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
}
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 0;
  cursor: pointer;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: "+";
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
  content: "–";
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  font-size: 14.5px;
  color: #555;
  padding: 0;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 8px 0 14px;
}

/* RESPONSIVE DESIGN */
@media(max-width: 900px){
  .contact-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
@media(max-width: 600px){
  .contact-header h1 { font-size: 28px; }
  .contact-form { padding: 20px; }
  .faq-section { padding: 20px; }
}/* End custom CSS */