/*
Theme Name: Go-Factor
Theme URI: https://www.go-factor.org
Author: Go-Factor Business Finance
Author URI: https://www.go-factor.org
Description: Official Go-Factor Business Finance WordPress theme, converted from Wix. Fully Elementor compatible. Matches the live site at go-factor.org with all sections: hero, services grid, how it works, reviews CTA, and footer — all editable via Elementor drag-and-drop builder.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gofactor
Tags: business, finance, elementor, full-width-template, custom-colors, custom-menu, featured-images, responsive-layout, two-columns, custom-logo
*/

/* =====================================================================
   DESIGN TOKENS (extracted from Wix source)
   ===================================================================== */
:root {
  /* Brand colours from Wix colour palette */
  --gf-navy:        #1a3351;   /* primary dark navy */
  --gf-blue:        #1e5799;   /* secondary blue */
  --gf-accent:      #c8922a;   /* gold/amber accent */
  --gf-accent-lt:   #e8a83a;
  --gf-teal:        #2b4742;   /* Wix color-31 = 43,71,66 */
  --gf-white:       #ffffff;
  --gf-light:       #f5f7fa;
  --gf-light2:      #eef1f5;
  --gf-border:      #dadad8;   /* Wix color-29 = 218,216,216 */
  --gf-gray:        #767674;   /* Wix color-30 = 118,118,116 */
  --gf-dark:        #111827;
  --gf-text:        #1e293b;

  /* Typography from Wix source */
  --gf-font-head:   'Helvetica Neue', Helvetica, Arial, sans-serif;
  --gf-font-menu:   'DIN Next', 'Helvetica Neue', Arial, sans-serif;
  --gf-font-body:   Avenir, 'Avenir LT W01 35 Light', 'Helvetica Neue', Arial, sans-serif;
  --gf-font-poppins:'Poppins', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --gf-max-width:   1200px;
  --gf-radius:      8px;
  --gf-shadow:      0 4px 24px rgba(26,51,81,0.12);
  --gf-transition:  0.2s ease;
}

/* =====================================================================
   RESET & BASE
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--gf-font-body);
  font-size: 16px;
  line-height: 1.4em;
  color: var(--gf-text);
  background: var(--gf-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gf-blue); text-decoration: none; transition: color var(--gf-transition); }
a:hover { color: var(--gf-accent); }
ul, ol { list-style: none; }

/* =====================================================================
   LAYOUT WRAPPERS
   ===================================================================== */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1; }
.gf-wrap {
  width: 100%;
  max-width: var(--gf-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================================
   SKIP LINK
   ===================================================================== */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 6px;
  background: var(--gf-navy);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 4px 4px;
  font-size: 0.85rem;
  z-index: 99999;
  transition: top 0.1s;
}
.skip-link:focus { top: 0; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  background: var(--gf-white);
  border-bottom: 3px solid var(--gf-accent);
  position: sticky;
  top: 0;
  z-index: 9000;
  box-shadow: 0 2px 12px rgba(26,51,81,0.10);
}
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

.site-header .gf-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 16px;
}

/* Logo */
.site-branding { display: flex; align-items: center; flex-shrink: 0; }
.site-branding .custom-logo { height: 60px; width: auto; display: block; }
.site-branding .site-title {
  font-family: var(--gf-font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gf-navy);
  line-height: 1.1;
}
.site-branding .site-title a { color: inherit; }
.site-branding .site-description { font-size: 0.8rem; color: var(--gf-gray); }

/* =====================================================================
   PRIMARY NAVIGATION (matches Wix dropdown menu exactly)
   ===================================================================== */
.main-navigation { position: relative; }
.menu-toggle {
  display: none;
  background: var(--gf-navy);
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--gf-white);
  font-size: 1.2rem;
  line-height: 1;
  transition: background var(--gf-transition);
}
.menu-toggle:hover, .menu-toggle[aria-expanded="true"] { background: var(--gf-blue); }
.menu-toggle .bar { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: all 0.3s; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Top-level UL */
#primary-menu,
.main-navigation > div > ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
/* Top-level items */
#primary-menu > li,
.main-navigation > div > ul > li {
  position: relative;
}
#primary-menu > li > a,
.main-navigation > div > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  font-family: var(--gf-font-menu);
  font-size: 14px;
  font-weight: 400;
  color: var(--gf-navy);
  white-space: nowrap;
  border-radius: 4px;
  transition: background var(--gf-transition), color var(--gf-transition);
  line-height: 1.4em;
}
#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a,
#primary-menu > li.current-menu-ancestor > a,
.main-navigation > div > ul > li > a:hover {
  background: var(--gf-navy);
  color: var(--gf-white);
}
/* Dropdown arrow */
.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 4px;
  vertical-align: middle;
  flex-shrink: 0;
}
/* Sub-menu dropdown */
.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 280px;
  background: var(--gf-white);
  border: 1px solid var(--gf-border);
  border-radius: var(--gf-radius);
  box-shadow: var(--gf-shadow);
  z-index: 9001;
  padding: 6px 0;
  list-style: none;
}
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu { display: block; }
.sub-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  font-family: var(--gf-font-menu);
  color: var(--gf-text);
  transition: background var(--gf-transition), color var(--gf-transition);
}
.sub-menu li a:hover { background: var(--gf-light); color: var(--gf-navy); }

/* =====================================================================
   HERO SECTION (full-width background image, centred single column)
   ===================================================================== */
.gf-hero {
  position: relative;
  background: #0d1f33;
  color: var(--gf-white);
  padding: 100px 0 90px;
  overflow: hidden;
}
/* Layer 1 – the Wix photo at higher opacity so it reads as the real background */
.gf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://static.wixstatic.com/media/28a759_b1c00821bc4347f0b061751179d1479b~mv2.jpg') center/cover no-repeat;
  opacity: 0.45;
  z-index: 0;
}
/* Layer 2 – a gentle dark vignette so white text stays readable */
.gf-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,31,51,0.55) 0%, rgba(13,31,51,0.45) 100%);
  z-index: 1;
}
.gf-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.gf-hero-content { width: 100%; }
.gf-hero-award-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.gf-hero-award-badge::before { content: '🏆'; font-size: 14px; }
.gf-hero h1 {
  font-family: var(--gf-font-head);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.gf-hero h1 em { font-style: normal; color: var(--gf-accent-lt); }
.gf-hero-desc {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.gf-hero-desc p { margin-bottom: 12px; }
.gf-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center; }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.gf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: var(--gf-font-poppins), var(--gf-font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--gf-transition);
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}
.gf-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.gf-btn-primary {
  background: var(--gf-accent);
  color: var(--gf-white);
  border-color: var(--gf-accent);
}
.gf-btn-primary:hover {
  background: var(--gf-accent-lt);
  border-color: var(--gf-accent-lt);
  color: var(--gf-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,146,42,0.4);
}
.gf-btn-secondary {
  background: var(--gf-navy);
  color: var(--gf-white);
  border-color: var(--gf-navy);
}
.gf-btn-secondary:hover {
  background: var(--gf-blue);
  border-color: var(--gf-blue);
  color: #fff;
}
.gf-btn-outline-white {
  background: transparent;
  color: var(--gf-white);
  border-color: rgba(255,255,255,0.6);
}
.gf-btn-outline-white:hover {
  background: var(--gf-white);
  color: var(--gf-navy);
  border-color: var(--gf-white);
}
.gf-btn-icon::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
}

/* =====================================================================
   HERO ENQUIRY FORM CARD
   ===================================================================== */
.gf-hero-form-card {
  background: var(--gf-white);
  border-radius: 12px;
  padding: 34px 30px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  color: var(--gf-text);
}
.gf-hero-form-card h3 {
  font-family: var(--gf-font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gf-navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.gf-hero-form-card .gf-form-sub {
  font-size: 13px;
  color: var(--gf-gray);
  margin-bottom: 20px;
}
.gf-form-row { margin-bottom: 14px; }
.gf-form-row label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gf-navy);
  margin-bottom: 5px;
}
.gf-form-row input,
.gf-form-row select,
.gf-form-row textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--gf-border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--gf-text);
  background: #fff;
  transition: border-color var(--gf-transition), box-shadow var(--gf-transition);
  outline: none;
}
.gf-form-row input:focus,
.gf-form-row select:focus,
.gf-form-row textarea:focus {
  border-color: var(--gf-blue);
  box-shadow: 0 0 0 3px rgba(30,87,153,0.12);
}
.gf-form-submit {
  width: 100%;
  padding: 13px;
  background: var(--gf-navy);
  color: var(--gf-white);
  font-family: var(--gf-font-poppins), var(--gf-font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--gf-transition);
  margin-top: 4px;
}
.gf-form-submit:hover { background: var(--gf-blue); }
.gf-form-msg {
  display: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  margin-top: 12px;
}
.gf-form-msg.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.gf-form-msg.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* =====================================================================
   AWARDS / TRUST BAR
   ===================================================================== */
.gf-trust-bar {
  background: var(--gf-teal);
  color: #fff;
  padding: 16px 0;
}
.gf-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.gf-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.gf-trust-item .gf-trust-icon {
  width: 34px;
  height: 34px;
  background: var(--gf-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* =====================================================================
   SECTION HELPERS
   ===================================================================== */
.gf-section          { padding: 80px 0; }
.gf-section-light    { background: var(--gf-light); }
.gf-section-navy     { background: var(--gf-navy); color: #fff; }
.gf-section-teal     { background: var(--gf-teal); color: #fff; }

.gf-section-hd       { text-align: center; margin-bottom: 52px; }
.gf-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gf-accent);
  margin-bottom: 12px;
}
.gf-section-title {
  font-family: var(--gf-font-head);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gf-navy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.gf-section-navy .gf-section-title,
.gf-section-teal .gf-section-title { color: #fff; }
.gf-section-subtitle {
  font-size: 15px;
  color: var(--gf-gray);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.7;
}
.gf-section-navy .gf-section-subtitle,
.gf-section-teal .gf-section-subtitle { color: rgba(255,255,255,0.75); }

/* =====================================================================
   SERVICES GRID  (2-column layout matching the original go-factor.org)
   ===================================================================== */
.gf-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 640px) { .gf-services-grid { grid-template-columns: 1fr; } }

.gf-service-card {
  background: var(--gf-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,51,81,0.08);
  display: flex;
  flex-direction: column;
  transition: transform var(--gf-transition), box-shadow var(--gf-transition);
}
.gf-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(26,51,81,0.15);
}
.gf-service-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.gf-service-card-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gf-service-card-title {
  font-family: var(--gf-font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--gf-navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.gf-service-card-desc {
  font-size: 14px;
  color: var(--gf-gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
/* Poppins CTA label as on live site */
.gf-service-card-cta {
  font-family: var(--gf-font-poppins), var(--gf-font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--gf-navy);
  line-height: 1.3;
  margin-bottom: 14px;
}
.gf-service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--gf-navy);
  color: var(--gf-white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 5px;
  transition: background var(--gf-transition);
  align-self: flex-start;
}
.gf-service-card-link:hover { background: var(--gf-accent); color: #fff; }
.gf-service-card-link svg { width: 12px; height: 12px; }

/* =====================================================================
   HOW IT WORKS SECTION (2-column: steps left, eligibility right)
   ===================================================================== */
.gf-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) { .gf-how-grid { grid-template-columns: 1fr; gap: 40px; } }

.gf-steps-col h3 {
  font-family: var(--gf-font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gf-navy);
  margin-bottom: 28px;
  line-height: 1.3;
}
.gf-steps { display: flex; flex-direction: column; gap: 24px; }
.gf-step { display: flex; gap: 18px; align-items: flex-start; }
.gf-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gf-accent);
  color: var(--gf-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gf-font-head);
  font-size: 1rem;
  font-weight: 700;
}
.gf-step-body h4 {
  font-family: var(--gf-font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--gf-navy);
  margin-bottom: 5px;
}
.gf-step-body p { font-size: 14px; color: var(--gf-gray); line-height: 1.6; }

.gf-eligibility-box {
  background: var(--gf-light);
  border-left: 5px solid var(--gf-accent);
  border-radius: 10px;
  padding: 32px;
}
.gf-eligibility-box h3 {
  font-family: var(--gf-font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gf-navy);
  margin-bottom: 18px;
}
.gf-checklist { display: flex; flex-direction: column; gap: 10px; }
.gf-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--gf-text);
  line-height: 1.55;
}
.gf-checklist li::before {
  content: '✔';
  color: var(--gf-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.gf-switch-box {
  background: var(--gf-navy);
  border-radius: 10px;
  padding: 26px 32px;
  margin-top: 22px;
  color: #fff;
}
.gf-switch-box h4 {
  font-family: var(--gf-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gf-accent-lt);
  margin-bottom: 10px;
}
.gf-switch-box p { font-size: 13px; opacity: 0.88; margin-bottom: 14px; line-height: 1.6; }
.gf-switch-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.gf-switch-perks li {
  font-size: 13px;
  display: flex;
  gap: 7px;
  align-items: center;
  color: rgba(255,255,255,0.9);
}
.gf-switch-perks li::before {
  content: '✔';
  color: var(--gf-accent-lt);
  font-weight: 700;
  flex-shrink: 0;
}

/* =====================================================================
   REVIEWS CTA SECTION  (matches Wix "Go-Factor Reviews" section)
   ===================================================================== */
.gf-reviews-section {
  background: var(--gf-light2);
  padding: 60px 0;
  text-align: center;
}
.gf-reviews-section h2 {
  font-family: var(--gf-font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--gf-navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.gf-reviews-stars { font-size: 1.8rem; margin-bottom: 12px; color: var(--gf-accent); }
.gf-reviews-section p { font-size: 15px; color: var(--gf-gray); margin-bottom: 28px; }

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.gf-cta-banner {
  background: linear-gradient(135deg, var(--gf-navy) 0%, var(--gf-blue) 100%);
  padding: 70px 0;
  text-align: center;
  color: #fff;
}
.gf-cta-banner h2 {
  font-family: var(--gf-font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}
.gf-cta-banner p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 30px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.gf-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =====================================================================
   FOOTER  (matches Wix footer exactly)
   ===================================================================== */
.site-footer {
  background: #111827;
  color: #9ca3af;
}
.gf-footer-top {
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.gf-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 48px;
}
@media (max-width: 960px) { .gf-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .gf-footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.gf-footer-brand .gf-footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.gf-footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: #9ca3af;
  margin-bottom: 14px;
}
.gf-footer-reg {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.8;
}
.gf-footer-reg strong { color: #9ca3af; }

.gf-footer-col h4 {
  font-family: var(--gf-font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 16px;
}
.gf-footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.gf-footer-col ul li a {
  font-size: 13px;
  color: #9ca3af;
  transition: color var(--gf-transition);
  line-height: 1.4;
}
.gf-footer-col ul li a:hover { color: var(--gf-accent-lt); }

/* Contact block in footer */
.gf-footer-contact { display: flex; flex-direction: column; gap: 12px; }
.gf-footer-contact-item {}
.gf-footer-contact-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.gf-footer-contact-val {
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.5;
}
.gf-footer-contact-val a { color: #d1d5db; transition: color var(--gf-transition); }
.gf-footer-contact-val a:hover { color: var(--gf-accent-lt); }

/* Social icons (matches Wix LinkBar comp-ll53xnha) */
.gf-social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.gf-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 14px;
  transition: all var(--gf-transition);
}
.gf-social-links a:hover {
  background: var(--gf-accent);
  border-color: var(--gf-accent);
  color: #fff;
}
.gf-social-links svg { width: 16px; height: 16px; }

/* Footer bottom bar */
.gf-footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #6b7280;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.gf-footer-bottom a { color: #9ca3af; transition: color var(--gf-transition); }
.gf-footer-bottom a:hover { color: var(--gf-accent-lt); }

/* Disclaimer (matches live site disclaimer text at bottom) */
.gf-footer-disclaimer {
  padding: 18px 0 24px;
}
.gf-footer-disclaimer p {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* =====================================================================
   HOMEPAGE ENQUIRY SECTION  (below trust bar, 2-col: copy + form)
   ===================================================================== */
.gf-enquiry-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: start;
}
.gf-enquiry-copy h2 {
  font-family: var(--gf-font-head);
  font-size: 1.7rem;
  color: var(--gf-navy);
  margin-bottom: 14px;
}
.gf-enquiry-copy p {
  color: var(--gf-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.gf-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gf-check-list li {
  padding: 6px 0;
  color: var(--gf-text);
  font-size: 15px;
}
.gf-enquiry-form-card {
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
@media (max-width: 900px) {
  .gf-enquiry-inner { grid-template-columns: 1fr; }
  .gf-enquiry-form-card { max-width: 540px; }
}

/* =====================================================================
   SECTORS GRID  (used on Sectors We Fund page)
   ===================================================================== */
.gf-sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .gf-sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .gf-sectors-grid { grid-template-columns: 1fr; } }

.gf-sector-card {
  background: var(--gf-white);
  border-radius: 10px;
  padding: 22px 20px;
  box-shadow: 0 2px 16px rgba(26,51,81,0.08);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform var(--gf-transition), box-shadow var(--gf-transition);
}
.gf-sector-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,51,81,0.13);
}
.gf-sector-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.gf-sector-card h3 {
  font-family: var(--gf-font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--gf-navy);
  margin-bottom: 5px;
  line-height: 1.3;
}
.gf-sector-card p {
  font-size: 13px;
  color: var(--gf-gray);
  line-height: 1.55;
  margin: 0;
}

/* =====================================================================
   CONTACT PAGE GRID
   ===================================================================== */
.gf-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) { .gf-contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* =====================================================================
   SERVICE / INNER PAGE WRAPPER
   Ensures full-width template pages don't inherit entry-content padding
   ===================================================================== */
.gf-service-page { display: block; }
.gf-service-page .gf-section-title { color: var(--gf-navy); }
.gf-service-page .gf-hero h1 { color: var(--gf-white); }

/* =====================================================================
   ELEMENTOR COMPATIBILITY
   ===================================================================== */
body.elementor-page .site-content { padding: 0; }
body.elementor-template-canvas .site-header,
body.elementor-template-canvas .site-footer { display: none; }
body.elementor-template-canvas { background: #fff; }
.elementor-section.elementor-section-stretched {
  left: 0 !important;
  width: 100% !important;
}
/* Make Elementor widgets inherit our font tokens */
.elementor-widget-text-editor,
.elementor-widget-heading { font-family: var(--gf-font-body); }

/* =====================================================================
   GENERAL WORDPRESS STYLES
   ===================================================================== */
.alignleft  { float: left;  margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter{ display: block; margin: 0 auto 16px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--gf-gray); text-align: center; margin-top: 6px; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.entry-content { padding: 60px 0; }
.entry-content .gf-wrap { max-width: 820px; }
.entry-title {
  font-family: var(--gf-font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--gf-navy);
  margin-bottom: 24px;
  line-height: 1.2;
}
.entry-content p,
.entry-content li { font-size: 15px; line-height: 1.7; color: var(--gf-text); margin-bottom: 16px; }
.entry-content h2, .entry-content h3, .entry-content h4 {
  font-family: var(--gf-font-head);
  color: var(--gf-navy);
  margin: 28px 0 12px;
}

/* =====================================================================
   RESPONSIVE — GLOBAL BREAKPOINTS
   ===================================================================== */
@media (max-width: 900px) {
  .menu-toggle { display: flex; flex-direction: column; justify-content: center; }
  .main-navigation {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--gf-white);
    border-top: 2px solid var(--gf-accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 16px 20px;
    z-index: 8999;
  }
  .main-navigation.is-open { display: block; }
  #primary-menu,
  .main-navigation > div > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--gf-light);
    border-radius: 6px;
    margin: 4px 0 4px 16px;
    padding: 4px 0;
    display: none !important;
  }
  .main-navigation .menu-item-has-children.open > .sub-menu { display: block !important; }
}
@media (max-width: 640px) {
  .gf-hero  { padding: 50px 0 40px; }
  .gf-section { padding: 56px 0; }
  .gf-trust-inner { gap: 16px; }
  .gf-switch-perks { grid-template-columns: 1fr; }
  .gf-footer-bottom { flex-direction: column; text-align: center; }
}
