.elementor-3168 .elementor-element.elementor-element-fba322c{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-3168 .elementor-element.elementor-element-fba322c{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-63f29fd *//* ============================================
   WRITE FOR US PAGE — CSS
   Paste this in:
   Appearance → Customize → Additional CSS
   ============================================ */

/* ── GOOGLE FONTS — Add this in Elementor Page Settings → Custom CSS or in header ── */
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap'); */

:root {
  --teal:       #0FA89A;
  --teal-dark:  #0A7A6E;
  --orange:     #F07830;
  --orange-dark:#D4621A;
  --gold:       #F0C44A;
  --dark:       #2E1E10;
  --footer-bg:  #0D1F1C;
  --page-bg:    #FAF8F4;
  --alt-bg:     #F5F0E8;
  --body-text:  #7A6E60;
  --border:     #E4DDD0;
  --white:      #FAF8F4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--page-bg);
  color: var(--body-text);
  line-height: 1.7;
}

/* ── HERO SECTION ── */
.hero {
  background: var(--footer-bg);
  position: relative; overflow: hidden;
  padding: 96px 64px 80px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(15,168,154,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(240,120,48,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(240,120,48,0.30);
  border-radius: 20px;
  background: rgba(240,120,48,0.08);
  animation: fadeDown 0.6s ease both;
}
.hero-badge::before { content: '✦'; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 700; line-height: 1.15;
  color: var(--white);
  margin-bottom: 12px;
  animation: fadeDown 0.7s ease 0.1s both;
}
.hero h1 em { color: var(--teal); font-style: italic; }
.hero-sub {
  font-size: 17px; color: rgba(250,248,244,0.60);
  max-width: 540px; margin: 0 auto 36px;
  line-height: 1.75;
  animation: fadeDown 0.7s ease 0.2s both;
}
.hero-btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  animation: fadeDown 0.7s ease 0.3s both;
}
.btn-primary {
  background: var(--orange);
  color: #fff; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(240,120,48,0.35);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 6px 28px rgba(240,120,48,0.45); }
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: rgba(250,248,244,0.80); font-size: 13px; font-weight: 500;
  padding: 14px 32px; border-radius: 4px;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.10); border-color: var(--teal); color: #fff; }
.hero-stats {
  display: flex; gap: 48px; justify-content: center;
  margin-top: 56px; padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.8s ease 0.4s both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: 6px;
}
.stat-num span { color: var(--teal); }
.stat-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(250,248,244,0.40);
}

/* ── SHARED SECTION STYLES ── */
.why-section { padding: 80px 64px; background: var(--page-bg); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.section-badge::before { content: '✦  '; }
.section-badge::after  { content: '  ✦'; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 700;
  color: var(--dark); margin-bottom: 12px;
}
.section-title em { color: var(--teal); font-style: italic; }
.section-desc { font-size: 15px; color: var(--body-text); max-width: 520px; margin: 0 auto; }

/* ── BENEFITS ── */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.benefit-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--teal), var(--orange));
  opacity: 0; transition: opacity 0.25s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(46,30,16,0.10); border-color: transparent; }
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(15,168,154,0.12), rgba(240,120,48,0.08));
  border: 1px solid rgba(15,168,154,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.benefit-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.benefit-desc { font-size: 13px; color: var(--body-text); line-height: 1.70; }

/* ── CATEGORIES ── */
.categories-section {
  padding: 80px 64px; background: var(--alt-bg);
  position: relative; overflow: hidden;
}
.categories-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(15,168,154,0.06) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.categories-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 24px 20px;
  text-align: center; cursor: pointer; transition: all 0.25s; position: relative;
}
.cat-card:hover { border-color: var(--teal); background: rgba(15,168,154,0.04); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(15,168,154,0.12); }
.cat-card.active { border-color: var(--orange); background: rgba(240,120,48,0.04); }
.cat-emoji { font-size: 28px; margin-bottom: 10px; display: block; }
.cat-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.cat-desc { font-size: 12px; color: var(--body-text); line-height: 1.5; }
.cat-tag {
  display: inline-block; margin-top: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 10px;
  background: rgba(15,168,154,0.10); color: var(--teal);
}

/* ── GUIDELINES ── */
.guidelines-section { padding: 80px 64px; background: var(--page-bg); max-width: 1100px; margin: 0 auto; }
.guidelines-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.guideline-block h3 {
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700;
  color: var(--dark); margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.guideline-block h3 span {
  display: inline-block; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  margin-right: 8px; vertical-align: middle;
}
.guide-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.guide-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--body-text); line-height: 1.6; }
.guide-list li .icon {
  width: 24px; height: 24px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; margin-top: 1px;
}
.guide-list li .icon.green { background: rgba(15,168,154,0.12); color: var(--teal); }
.guide-list li .icon.red   { background: rgba(220,80,60,0.10); color: #C04030; }

/* ── FORM ── */
.form-section { background: var(--footer-bg); padding: 80px 64px; position: relative; overflow: hidden; }
.form-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(15,168,154,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 100% 0%, rgba(240,120,48,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.form-section::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.form-inner { position: relative; z-index: 1; max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.form-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.form-eyebrow::before { content: '✦  '; }
.form-title { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.form-title em { color: var(--teal); font-style: italic; }
.form-desc { font-size: 14px; color: rgba(250,248,244,0.55); line-height: 1.75; margin-bottom: 32px; }
.form-promises { display: flex; flex-direction: column; gap: 12px; }
.promise { display: flex; gap: 12px; align-items: center; font-size: 13px; color: rgba(250,248,244,0.65); }
.promise-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.form-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: 16px; padding: 40px 36px; backdrop-filter: blur(10px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(250,248,244,0.50); }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px; padding: 12px 16px;
  font-size: 14px; font-family: 'DM Sans', sans-serif;
  color: var(--white); outline: none;
  transition: border-color 0.2s, background 0.2s; width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(250,248,244,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); background: rgba(255,255,255,0.10); }
.form-select option { background: #1A1208; color: #FAF8F4; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 15px; background: var(--orange);
  border: none; border-radius: 8px; color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(240,120,48,0.30); margin-top: 8px;
}
.form-submit:hover { background: var(--orange-dark); box-shadow: 0 6px 28px rgba(240,120,48,0.45); }
.form-note { text-align: center; margin-top: 12px; font-size: 12px; color: rgba(250,248,244,0.25); }

/* ── PROCESS STEPS ── */
.process-section { padding: 80px 64px; background: var(--alt-bg); max-width: 100%; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 56px; }
.steps-row::before {
  content: ''; position: absolute;
  top: 32px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(to right, var(--teal), var(--orange)); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--page-bg);
  border: 3px solid var(--teal); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--teal);
  margin: 0 auto 20px; transition: all 0.25s;
}
.step:nth-child(2) .step-num { border-color: var(--orange); color: var(--orange); }
.step:nth-child(3) .step-num { border-color: var(--teal-dark); color: var(--teal-dark); }
.step:nth-child(4) .step-num { border-color: var(--orange-dark); color: var(--orange-dark); }
.step-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--body-text); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 80px 64px; background: var(--page-bg); }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: transform 0.2s, box-shadow 0.2s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(46,30,16,0.08); }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-family: 'Playfair Display', serif; font-size: 15px; font-style: italic; color: var(--dark); line-height: 1.65; margin-bottom: 20px; }
.testi-quote::before { content: '"'; color: var(--orange); font-size: 24px; line-height: 0; vertical-align: -8px; margin-right: 2px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #fff;
  font-family: 'Playfair Display', serif; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.testi-role { font-size: 12px; color: var(--body-text); }

/* ── FAQ ── */
.faq-section { padding: 80px 64px; background: var(--alt-bg); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-q { padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; transition: color 0.2s; }
.faq-q:hover { color: var(--teal); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(15,168,154,0.10); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--teal); transition: transform 0.3s; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; font-size: 14px; color: var(--body-text); line-height: 1.75; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(16px);  } to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { padding: 64px 24px 56px; }
  .hero h1 { font-size: 36px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .why-section, .categories-section, .guidelines-section,
  .form-section, .process-section, .testimonials, .faq-section { padding: 56px 24px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .guidelines-wrap { grid-template-columns: 1fr; }
  .form-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-row::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
}/* End custom CSS */