/*
Theme Name: Seeder Bridging
Theme URI: https://sbluk.ltd
Author: Seeder Bridging Ltd
Description: Custom theme for Seeder Bridging — specialist property finance.
Version: 1.0
License: Private
Text Domain: seeder-bridging
*/

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── VARIABLES ── */
:root {
  --green:       #1A4A2E;
  --green-dark:  #0F2D1C;
  --green-acc:   #2E8B57;
  --green-pale:  #EEF5F0;
  --green-soft:  #D4EAD9;
  --border:      #DDE8DF;
  --text:        #1A1A18;
  --body:        #3D5444;
  --muted:       #7A9080;
  --white:       #ffffff;
  --off:         #F8FAF8;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 62px;
}
.site-logo {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: .01em;
  text-decoration: none;
}
.site-nav-links { display: flex; gap: 4px; }
.site-nav-links a {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 5px;
  transition: color .15s, background .15s;
  text-decoration: none;
}
.site-nav-links a:hover,
.site-nav-links .current-menu-item a { color: var(--text); background: var(--green-pale); }
.site-nav-right { display: flex; align-items: center; gap: 14px; }
.site-nav-phone { font-size: 13px; color: var(--muted); }
.site-nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--white) !important;
  background: var(--green);
  border-radius: 6px;
  padding: 8px 16px;
  transition: background .15s;
  text-decoration: none;
}
.site-nav-cta:hover { background: var(--green-acc); }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: var(--green);
  padding: 48px 40px;
  border-bottom: 3px solid var(--green-acc);
}
.page-hero-inner { max-width: 1080px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Lora', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.page-hero .subtitle {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  line-height: 1.65;
}

/* ── PAGE CONTENT ── */
.page-wrap {
  max-width: 1080px;
  margin: 0 auto;
}
.page-content-area {
  padding: 52px 40px;
  max-width: 960px;
}
.page-content-area h2 {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  margin-top: 36px;
}
.page-content-area h2:first-child { margin-top: 0; }
.page-content-area h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  margin-top: 24px;
}
.page-content-area p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 14px;
}
.page-content-area ul,
.page-content-area ol {
  margin: 14px 0 14px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.page-content-area ul li {
  font-size: 15px;
  color: var(--body);
  padding: 9px 14px;
  background: var(--green-pale);
  border-left: 3px solid var(--green-acc);
  border-radius: 0 5px 5px 0;
  line-height: 1.55;
}
.page-content-area ol { counter-reset: ol-counter; }
.page-content-area ol li {
  font-size: 15px;
  color: var(--body);
  padding: 10px 14px 10px 44px;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
  position: relative;
  counter-increment: ol-counter;
}
.page-content-area ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green-acc);
  background: var(--green-pale);
  border-radius: 4px;
  padding: 1px 6px;
  top: 12px;
}
.page-content-area a {
  color: var(--green-acc);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-content-area a:hover { color: var(--green); }
.page-content-area strong { font-weight: 500; color: var(--text); }
.page-content-area hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}
.page-content-area table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.page-content-area table th {
  background: var(--green);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 500;
}
.page-content-area table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--body);
}
.page-content-area table tr:last-child td { border-bottom: none; }

/* ── CTA BAR ── */
.site-cta {
  background: var(--green);
  padding: 44px 40px;
}
.site-cta-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-cta h3 {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 5px;
}
.site-cta p { font-size: 14px; color: rgba(255,255,255,.5); }
.site-cta-right { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.site-cta-btn {
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  background: var(--white);
  border-radius: 6px;
  padding: 10px 22px;
  white-space: nowrap;
  transition: opacity .15s;
  text-decoration: none;
}
.site-cta-btn:hover { opacity: .9; }
.site-cta-tel { font-size: 14px; color: rgba(255,255,255,.45); white-space: nowrap; }

/* ── FOOTER ── */
.site-footer { background: var(--green-dark); }
.site-footer-top {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 40px 40px 36px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand-name {
  font-family: 'Lora', serif;
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-bottom: 10px;
  display: block;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.3); line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 9px;
  transition: color .15s;
  text-decoration: none;
}
.footer-col a:hover { color: rgba(255,255,255,.8); }
.site-footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.footer-reg { font-size: 12px; color: rgba(255,255,255,.2); line-height: 1.65; }
.footer-fca { font-size: 12px; color: rgba(255,255,255,.2); text-align: right; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav-links { display: none; }
  .site-nav-inner { padding: 0 24px; }
  .page-hero { padding: 36px 24px; }
  .page-content-area { padding: 36px 24px; }
  .site-cta { padding: 32px 24px; }
  .site-cta-inner { flex-direction: column; align-items: flex-start; }
  .site-footer-top { grid-template-columns: 1fr 1fr; padding: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer-bottom { flex-direction: column; padding: 16px 24px; }
  .footer-fca { text-align: left; }
}
@media (max-width: 600px) {
  .site-nav-right .site-nav-phone { display: none; }
  .page-hero h1 { font-size: 26px; }
}

/* ── CONTACT FORM ── */
.column-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.column-1 {
  margin-bottom: 16px;
}
.field-item label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.field-item label sup {
  color: var(--green-acc);
}
.field-item input[type="text"],
.field-item input[type="email"],
.field-item input[type="tel"],
.field-item select,
.field-item textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  transition: border-color .15s;
  appearance: none;
}
.field-item input:focus,
.field-item select:focus,
.field-item textarea:focus {
  outline: none;
  border-color: var(--green-acc);
  box-shadow: 0 0 0 3px rgba(46,139,87,.08);
}
.field-item textarea {
  min-height: 120px;
  resize: vertical;
}
.field-item select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A9080' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

/* ── CHECKBOX ── */
.customeCheckbox {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.customeCheckbox .wpcf7-

.customeCheckbox {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.customeCheckbox .wpcf7-form-control-wrap {
  display: inline-flex;
  align-items: center;
}
.customeCheckbox .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.customeCheckbox .wpcf7-list-item-label {
  white-space: nowrap;
}
.policy-cls {
  white-space: nowrap;
}

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav-links {
    display: none;
    position: absolute;
    top: 62px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 8px 16px;
    gap: 2px;
    z-index: 999;
  }
  .site-nav-links.open { display: flex; }
  .site-nav-links a {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
  }
}

.wpcf7 input[type="submit"].cta-button {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--green);
  border: none;
  border-radius: 6px;
  padding: 11px 28px;
  cursor: pointer;
  transition: background .15s;
  width: 100%;
}
.wpcf7 input[type="submit"].cta-button:hover {
  background: var(--green-acc);
}

.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"] {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  background: #1A4A2E !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 11px 28px !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background .15s !important;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 button[type="submit"]:hover {
  background: #2E8B57 !important;
}

/* ── SUPPORT FORM ── */
.wpcf7 label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
}
.wpcf7 label input[type="text"],
.wpcf7 label input[type="email"],
.wpcf7 label input[type="tel"],
.wpcf7 label textarea {
  display: block;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  margin-top: 6px;
  transition: border-color .15s;
}
.wpcf7 label input[type="text"]:focus,
.wpcf7 label input[type="email"]:focus,
.wpcf7 label input[type="tel"]:focus,
.wpcf7 label textarea:focus {
  outline: none;
  border-color: var(--green-acc);
  box-shadow: 0 0 0 3px rgba(46,139,87,.08);
}
.wpcf7 label textarea {
  min-height: 120px;
  resize: vertical;
}
.wpcf7 select {
  display: block;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A9080' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.wpcf7 select:focus {
  outline: none;
  border-color: var(--green-acc);
  box-shadow: 0 0 0 3px rgba(46,139,87,.08);
}
.wpcf7 .wpcf7-acceptance {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green-acc);
  cursor: pointer;
  flex-shrink: 0;
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.wpcf7 .policy-cls a {
  color: var(--green