/* Reed Accountants – Main Stylesheet
   Extracted verbatim from home.html mockup */

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

/* Ensure full-width: override any WP wrappers that might constrain layout */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
  width: 100%;
}
/* WordPress admin bar adds margin-top to html — allow that but nothing else */
html[style*="margin-top"] { margin-left: 0 !important; margin-right: 0 !important; }

.site-main, .entry-content, .wp-site-blocks,
#page, #content, #primary, .content-area {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.hero, .page-hero {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #111044;
  --navy-light: #1a1966;
  --pink:       #CF9A41;
  --pink-light: #b8872e;
  --text:       #2d3142;
  --muted:      #6b7280;
  --bg-light:   #f7f8fc;
  --white:      #ffffff;
  --border:     #e5e7eb;
  --shadow:     0 4px 24px rgba(17,16,68,0.10);
  --shadow-lg:  0 8px 40px rgba(17,16,68,0.16);
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
}

/* ── LAYOUT ─────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #CF9A41; color: #fff;
  padding: 14px 30px; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #b8872e; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 13px 28px; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px;
  text-decoration: none; border: 2px solid var(--navy); cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--navy);
  padding: 14px 30px; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-white:hover { background: #f0f2f8; transform: translateY(-1px); }

/* ── SECTION LABEL ──────────────────────────────────── */
.section-label {
  display: inline-block;
  background: rgba(16,185,129,0.10); color: #CF9A41;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 20px;
  margin-bottom: 16px;
}
.section-label.light {
  background: rgba(255,255,255,0.15); color: #fff;
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 620px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: #4a7cb8;
  opacity: 0.55;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: linear-gradient(105deg, rgba(17,16,68,0.72) 35%, rgba(17,16,68,0.30) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1160px; margin: 0 auto; text-align: left; padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero-content { color: #fff; }
.hero-content h1 {
  font-size: clamp(36px, 5vw, 58px); font-weight: 800; line-height: 1.15;
  margin-bottom: 20px; color: #fff;
}
.hero-content h1 em { color: #CF9A41; font-style: normal; }
.hero-content p {
  font-size: 18px; color: rgba(255,255,255,0.82); margin-bottom: 36px;
  max-width: 480px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

/* Callback form card */
.hero-form-card {
  background: #fff; border-radius: 16px;
  padding: 36px 32px; box-shadow: var(--shadow-lg);
}
.hero-form-card h3 {
  font-size: 22px; font-weight: 800; color: var(--navy);
  margin-bottom: 6px;
}
.hero-form-card p {
  font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.5;
}
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus { border-color: #CF9A41; }
.form-group input::placeholder { color: #aaa; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--navy); color: #fff; border: none; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.5px;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--navy-light); }

/* ══════════════════════════════════════════════════════
   SERVICES STRIP
══════════════════════════════════════════════════════ */
.services-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.services-strip-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.strip-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 32px 24px; text-align: center;
  border-right: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: background 0.2s;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: var(--bg-light); }
.strip-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(17,16,68,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.strip-item h4 {
  font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.3;
}

/* ══════════════════════════════════════════════════════
   ABOUT / INTRO SECTION
══════════════════════════════════════════════════════ */
.about-section {
  padding: 90px 40px;
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-text h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800;
  color: var(--navy); line-height: 1.2; margin-bottom: 20px;
}
.about-text h2 em { color: #CF9A41; font-style: normal; }
.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 16px; line-height: 1.75; }
.about-text p strong { color: var(--text); }
.about-text .btn-outline { margin-top: 12px; }
.about-visual {
  position: relative;
}
.about-img-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e0e7ff 0%, #f0f2f8 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-img-wrap .illus-svg { opacity: 0.35; color: #111044; display:flex;align-items:center;justify-content:center; }
.about-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: #CF9A41; color: #fff; border-radius: 14px;
  padding: 16px 22px; box-shadow: var(--shadow);
  font-family: 'Quicksand', sans-serif;
}
.about-badge .num { font-size: 28px; font-weight: 800; display: block; }
.about-badge .lbl { font-size: 12px; font-weight: 600; opacity: 0.9; }

/* ══════════════════════════════════════════════════════
   SELF-ASSESSMENT INFO SECTION
══════════════════════════════════════════════════════ */
.info-section {
  background: var(--bg-light);
  padding: 90px 0;
}
.info-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.info-visual {
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, #c7d2fe 0%, #e0e7ff 100%);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.info-visual .illus-svg { opacity: 0.35; color: #111044; display:flex;align-items:center;justify-content:center; }
.info-text h2 {
  font-size: clamp(26px, 3vw, 36px); font-weight: 800;
  color: var(--navy); line-height: 1.25; margin-bottom: 20px;
}
.info-text p { color: var(--muted); margin-bottom: 16px; font-size: 16px; line-height: 1.75; }
.info-callout {
  background: var(--navy); color: #fff;
  border-radius: 12px; padding: 20px 24px; margin-top: 24px;
  font-size: 15px; font-weight: 600; line-height: 1.6;
  border-left: 4px solid #CF9A41;
}
.info-callout a { color: #CF9A41; text-decoration: none; }

/* ══════════════════════════════════════════════════════
   WHY CHOOSE
══════════════════════════════════════════════════════ */
.why-section {
  padding: 90px 40px;
  max-width: 1160px; margin: 0 auto;
}
section.why-section {
  max-width: none; padding: 80px 0;
}
.why-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.why-header h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800;
  color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.why-header h2 em { color: #CF9A41; font-style: normal; }
.why-header p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.why-header p strong { color: var(--text); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.why-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 36px 28px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: #CF9A41;
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-card-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(17,16,68,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 20px;
}
.why-card h3 {
  font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 12px;
}
.why-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.why-card .address {
  margin-top: 10px; font-size: 13px; color: #CF9A41; font-weight: 600;
}

/* ══════════════════════════════════════════════════════
   FREE CONSULTATION FORM
══════════════════════════════════════════════════════ */
.consult-section {
  background: var(--bg-light);
  padding: 90px 0;
}
.consult-inner {
  max-width: 760px; margin: 0 auto; padding: 0 40px; text-align: center;
}
.consult-inner h2 {
  font-size: clamp(28px, 3.5vw, 38px); font-weight: 800;
  color: var(--navy); margin-bottom: 12px;
}
.consult-inner > p {
  color: var(--muted); font-size: 16px; margin-bottom: 40px;
}
.consult-form {
  background: var(--white); border-radius: 20px;
  padding: 48px 48px; box-shadow: var(--shadow-lg);
  text-align: left;
}
.consult-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px;
}
.consult-form .form-group { margin-bottom: 0; }
.consult-form .form-group.full { grid-column: 1 / -1; }
.consult-form input,
.consult-form textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--text);
  background: var(--white); outline: none; resize: vertical;
  transition: border-color 0.2s;
}
.consult-form input:focus,
.consult-form textarea:focus { border-color: #CF9A41; }
.consult-form input::placeholder,
.consult-form textarea::placeholder { color: #aaa; }
.consult-form textarea { min-height: 120px; }
.consult-form .recaptcha-note {
  font-size: 12px; color: var(--muted); margin: 12px 0 20px;
  display: flex; align-items: center; gap: 8px;
}
.recaptcha-box {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 12px 16px; display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; background: #f9fafb;
}
.recaptcha-box input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--navy); }
.recaptcha-box span { font-size: 14px; color: var(--text); }
.consult-submit {
  width: 100%; padding: 15px;
  background: var(--navy); color: #fff; border: none; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.5px;
  transition: background 0.2s;
}
.consult-submit:hover { background: var(--navy-light); }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.reviews-section-wrap { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-section {
  padding: 90px 40px;
  max-width: 1160px; margin: 0 auto;
}
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800;
  color: var(--navy); margin-bottom: 12px;
}
.testimonials-header p { color: var(--muted); font-size: 16px; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.testimonial-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15px; color: var(--text); line-height: 1.75;
  font-style: italic; margin-bottom: 20px;
  border: none; padding: 0;
}
.testimonial-card blockquote::before { content: '\201C'; color: #CF9A41; font-size: 24px; line-height: 0; vertical-align: -6px; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Quicksand', sans-serif;
  font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.author-type { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ══════════════════════════════════════════════════════
   OUR ACCOUNTANCY SERVICES
══════════════════════════════════════════════════════ */
.our-services-section {
  background: var(--bg-light);
  padding: 90px 0;
}
.our-services-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
}
.our-services-inner h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800;
  color: var(--navy); margin-bottom: 24px;
}
.our-services-inner h2 em { color: #CF9A41; font-style: normal; }
.our-services-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.our-services-text p {
  color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 16px;
}
.our-services-text p strong { color: var(--text); }
.software-badges {
  display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap;
}
.badge {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 10px 18px;
  font-size: 13px; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
}
.badge img {
  height: 28px; width: auto; display: block;
}
.our-services-highlights {
  display: flex; flex-direction: column; gap: 16px;
}
.highlight-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: box-shadow 0.2s;
}
.highlight-card:hover { box-shadow: var(--shadow); }
.highlight-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(17,16,68,0.08));
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.highlight-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.highlight-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════════
   BOTTOM CTA BANNER
══════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(105deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 70px 0;
}
.cta-banner-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800;
  color: #fff; line-height: 1.25; margin-bottom: 10px;
}
.cta-banner-text h2 em { color: #CF9A41; font-style: normal; }
.cta-banner-text p { color: rgba(255,255,255,0.75); font-size: 16px; }
.cta-banner-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .container { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-banner .container h2 { font-size: 2rem; color: #fff; margin-bottom: 10px; font-weight: 800; }
.cta-banner .container p { color: rgba(255,255,255,0.75); font-size: 16px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; padding: 13px 28px; border-radius: 8px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; text-decoration: none; border: 2px solid rgba(255,255,255,0.6); transition: background 0.2s; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ══════════════════════════════════════════════════════
   MAP
══════════════════════════════════════════════════════ */
.map-section {
  height: 380px; overflow: hidden;
}
.map-section iframe {
  width: 100%; height: 100%; border: none; display: block;
}

/* ─── TOP BAR ─────────────────────────────────────────────── */
.topbar {
  background: #0b0d35;
  padding: 8px 0;
  font-size: 13px;
}
.topbar-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-left a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  display: flex; align-items: center; gap: 7px;
  font-family: 'Manrope', sans-serif; font-size: 13px;
  transition: color 0.2s;
}
.topbar-left a:hover { color: #fff; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 500;
  transition: color 0.2s;
}
.topbar-right a:hover { color: #fff; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  width: 30px; height: 30px; border-radius: 6px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}
.topbar-social a:hover { background: rgba(255,255,255,0.22); }
.topbar-icon { color: rgba(255,255,255,0.75); }
.social-link { color: rgba(255,255,255,0.75); }

/* ─── MAIN NAV ─────────────────────────────────────────────── */
.site-nav {
  background: #ffffff;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(17,16,68,0.10);
  border-bottom: 1px solid rgba(17,16,68,0.08);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 4px;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 600;
  color: #2d3142; text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li.active > a,
.nav-links > li.current-menu-item > a,
.nav-links > li.current_page_item > a { background: rgba(17,16,68,0.07); color: #111044; }
.nav-links > li > a .chevron {
  font-size: 10px; opacity: 0.6; transition: transform 0.2s; display: inline-block;
}
.nav-links > li:hover > a .chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 40px rgba(17,16,68,0.18);
  min-width: 220px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 500;
  color: #2d3142; text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: #f0f2f8; color: #111044; }

/* ── Mega Menu (Services dropdown) ── */
.has-mega-menu { position: static !important; }
.mega-menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  width: 680px;
  padding: 28px 32px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
}
.nav-links > li:hover .mega-menu {
  transform: translateX(-50%) translateY(0);
}
.mega-col {
  padding: 0 16px;
}
.mega-col:not(:last-child) {
  border-right: 1px solid #e8e9ee;
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { padding-right: 0; }
.mega-heading {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy, #111044);
  padding: 0 14px 10px;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--pink, #CF9A41);
}
.mega-menu a {
  font-size: 14px;
  font-weight: 500;
  padding: 9px 14px;
}

.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: #CF9A41; color: #fff;
  padding: 10px 22px; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #b8872e; transform: translateY(-1px); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #111044; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.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); }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: #1a1a3e;
  padding: 64px 40px 0;
}
.footer-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; margin-bottom: 20px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 20px;
}
.footer-logo { margin-bottom: 0; }
.footer-brand p {
  font-family: 'Manrope', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.7;
  margin-bottom: 20px;
}
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 7px 14px;
  font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.75);
  display: flex; align-items: center;
}
.footer-badge img {
  height: 18px; width: auto; display: block;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.footer-col h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px; font-weight: 800; color: #fff;
  letter-spacing: 0.5px; margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #CF9A41;
  display: inline-block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-family: 'Manrope', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.60);
  text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: #CF9A41; }
.footer-col ul li a::before { content: '›'; color: #CF9A41; font-size: 16px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item span {
  font-family: 'Manrope', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5;
}
.footer-contact-item a {
  font-family: 'Manrope', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.2s;
}
.footer-contact-item a:hover { color: #CF9A41; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.footer-social a:hover { background: #CF9A41; border-color: #CF9A41; }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-family: 'Manrope', sans-serif;
  font-size: 12px; color: rgba(255,255,255,0.40);
}
.footer-bottom p a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 12px; color: rgba(255,255,255,0.40);
  text-decoration: none; transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

/* ══════════════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════════════ */
.breadcrumb {
  background: var(--navy);
  padding: 12px 0;
}
.breadcrumb-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-size: 13px;
}
.breadcrumb-inner a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.breadcrumb-inner a:hover { color: #fff; }
.breadcrumb-inner span { color: rgba(255,255,255,0.35); }
.breadcrumb-inner .sep { color: rgba(255,255,255,0.35); }
.breadcrumb-inner .current,
.breadcrumb-inner strong { color: rgba(255,255,255,0.9); font-weight: 600; }

/* ══════════════════════════════════════════════════════
   PAGE HERO (for inner pages)
══════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  background: var(--navy);
  min-height: 340px;
  display: flex; align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  opacity: 0.45;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.page-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: linear-gradient(105deg, rgba(17,16,68,0.82) 40%, rgba(17,16,68,0.45) 100%);
}
.page-hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1160px; margin: 0 auto; padding: 60px 40px; text-align: left;
}
.page-hero-inner .section-label { margin-bottom: 14px; }
.page-hero-inner h1 {
  font-size: clamp(32px, 4.5vw, 52px); font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.page-hero-inner h1 em { color: var(--pink); font-style: normal; }
.page-hero-inner p {
  font-size: 17px; color: rgba(255,255,255,0.78);
  max-width: 580px; line-height: 1.7;
}
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 28px; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; }
.hero-trust-item svg { color: var(--pink); flex-shrink: 0; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; margin-bottom: 8px; }
.sector-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(207,154,65,0.18); border: 1px solid rgba(207,154,65,0.35); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 7px 16px; border-radius: 20px; margin-bottom: 20px; }
.sector-badge svg { color: var(--pink); }

/* ══════════════════════════════════════════════════════
   ABOUT PAGE – INTRO SECTION
══════════════════════════════════════════════════════ */
.intro-section {
  padding: 80px 40px;
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center;
}
.intro-text h2 {
  font-size: clamp(26px, 3vw, 38px); font-weight: 800;
  color: var(--navy); line-height: 1.2; margin-bottom: 20px;
}
.intro-text h2 em { color: var(--pink); font-style: normal; }
.intro-text p {
  color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px;
}
.intro-text p strong { color: var(--text); }
.intro-text .btn-primary { margin-top: 12px; }

/* Stats strip inside intro */
.intro-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 36px;
}
.intro-stat {
  background: var(--bg-light); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 20px 22px;
}
.intro-stat .num {
  font-family: 'Quicksand', sans-serif;
  font-size: 32px; font-weight: 800; color: var(--navy); line-height: 1;
}
.intro-stat .num em { color: var(--pink); font-style: normal; }
.intro-stat .lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Profile card */
.profile-card {
  background: var(--navy); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.profile-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  display: block;
}
.profile-info {
  padding: 24px 28px;
}
.profile-info .name {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px;
}
.profile-info .role {
  font-size: 13px; color: var(--pink); font-weight: 600; margin-bottom: 12px;
}
.profile-info .qualifications {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.qual-badge {
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; padding: 5px 12px;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.8);
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE – QUOTE SECTION
══════════════════════════════════════════════════════ */
.quote-section {
  background: var(--navy);
  padding: 80px 40px;
}
.quote-inner {
  max-width: 860px; margin: 0 auto; text-align: center;
}
.quote-mark {
  font-family: 'Quicksand', sans-serif;
  font-size: 80px; line-height: 0.5; color: var(--pink);
  margin-bottom: 24px; display: block;
}
.quote-inner blockquote {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 700;
  color: #fff; line-height: 1.5; font-style: italic;
  margin-bottom: 32px;
}
.quote-attribution {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.quote-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--pink);
}
.quote-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.quote-attr-text .attr-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px; font-weight: 800; color: #fff;
}
.quote-attr-text .attr-title {
  font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px;
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE – WHY CHOOSE US (horizontal cards)
══════════════════════════════════════════════════════ */
.about-why-section {
  padding: 80px 40px;
  max-width: 1160px; margin: 0 auto;
}
.about-why-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.about-why-header h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800;
  color: var(--navy); line-height: 1.2; margin-bottom: 14px;
}
.about-why-header h2 em { color: var(--pink); font-style: normal; }
.about-why-header p { color: var(--muted); font-size: 16px; line-height: 1.75; }

.about-why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.about-why-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 36px 32px;
  display: flex; gap: 24px; align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.about-why-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: var(--pink);
}
.about-why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.about-why-card-icon {
  width: 56px; height: 56px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(17,16,68,0.06));
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
}
.about-why-card-body h3 {
  font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px;
}
.about-why-card-body p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   ABOUT PAGE – VALUES STRIP
══════════════════════════════════════════════════════ */
.values-strip {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 40px;
}
.values-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.value-num {
  font-family: 'Quicksand', sans-serif;
  font-size: 42px; font-weight: 800; color: var(--pink); line-height: 1;
  margin-bottom: 6px;
}
.value-label {
  font-size: 13px; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 1px;
}
.value-divider {
  width: 32px; height: 2px; background: var(--pink);
  margin: 10px auto 0;
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE – APPROACH SECTION
══════════════════════════════════════════════════════ */
.approach-section {
  padding: 80px 40px;
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.approach-visual {
  border-radius: 16px; overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
}
.approach-quote-mark {
  font-family: 'Quicksand', sans-serif;
  font-size: 60px; line-height: 0.6; color: var(--pink); display: block;
}
.approach-visual p {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px; font-weight: 700; color: #fff;
  line-height: 1.6; font-style: italic;
}
.approach-visual .attr {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; color: rgba(255,255,255,0.55);
  font-style: normal;
}
.approach-text h2 {
  font-size: clamp(26px, 3vw, 36px); font-weight: 800;
  color: var(--navy); line-height: 1.2; margin-bottom: 20px;
}
.approach-text h2 em { color: var(--pink); font-style: normal; }
.approach-text p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.approach-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.approach-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text); line-height: 1.6;
}
.approach-list li::before {
  content: '';
  display: block; width: 20px; height: 20px; flex-shrink: 0;
  background: var(--pink); border-radius: 50%;
  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='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE – SOFTWARE SECTION
══════════════════════════════════════════════════════ */
.about-software-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 56px 40px;
}
.about-software-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.about-software-text h3 {
  font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px;
}
.about-software-text p { font-size: 15px; color: var(--muted); max-width: 480px; }
.about-software-logos { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.about-software-logo-badge {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 24px;
  font-family: 'Quicksand', sans-serif; font-size: 16px; font-weight: 800;
  color: var(--navy);
}
.about-software-logo-badge img { height: 32px; width: auto; display: block; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 380px; gap: 40px; }
  .about-section { gap: 50px; }
  .info-inner { gap: 50px; }
  .intro-section { grid-template-columns: 1fr 360px; gap: 50px; }
  .approach-section { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr; padding: 60px 24px;
  }
  .hero-form-card { display: none; }
  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 16px; }

  .services-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: none; }
  .strip-item:nth-child(3) { border-right: 1px solid var(--border); }
  .strip-item:nth-child(3),
  .strip-item:nth-child(4) { border-top: 1px solid var(--border); }

  .about-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .about-visual { display: none; }

  .info-section { padding: 60px 0; }
  .info-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .info-visual { display: none; }

  .why-section { padding: 60px 24px; }
  .why-grid { grid-template-columns: 1fr; }

  .consult-section { padding: 60px 0; }
  .consult-inner { padding: 0 24px; }
  .consult-form { padding: 32px 24px; }
  .consult-form .form-row { grid-template-columns: 1fr; }

  .testimonials-section { padding: 60px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .our-services-section { padding: 60px 0; }
  .our-services-inner { padding: 0 24px; }
  .our-services-body { grid-template-columns: 1fr; gap: 40px; }

  .cta-banner { padding: 50px 0; }
  .cta-banner-inner { padding: 0 24px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-btns { justify-content: center; }
  .cta-banner .container { grid-template-columns: 1fr; text-align: center; }
  .cta-btns { justify-content: center; }

  .page-hero-inner { padding: 48px 24px; }
  .intro-section { grid-template-columns: 1fr; padding: 56px 24px; gap: 40px; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .profile-card { max-width: 360px; }
  .about-why-section { padding: 56px 24px; }
  .about-why-grid { grid-template-columns: 1fr; }
  .values-strip { padding: 48px 24px; }
  .values-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .approach-section { grid-template-columns: 1fr; padding: 56px 24px; gap: 40px; }
  .about-software-section { padding: 48px 24px; }
  .about-software-inner { flex-direction: column; align-items: flex-start; }

  .map-section { height: 280px; }

  .topbar { display: none; }
  .nav-inner { padding: 0 24px; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #ffffff; padding: 8px 0 12px; z-index: 999;
    box-shadow: 0 8px 24px rgba(17,16,68,0.12);
    border-top: 1px solid rgba(17,16,68,0.08);
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    padding: 14px 24px; border-radius: 0; border-bottom: 1px solid rgba(17,16,68,0.07);
    color: #2d3142; font-size: 15px; display: flex; align-items: center; justify-content: space-between;
    width: 100%; text-align: left;
  }
  .nav-links > li > a .chevron {
    font-size: 10px; transition: transform 0.3s; display: inline-block; margin-left: auto;
  }
  .nav-links > li.dropdown-open > a .chevron { transform: rotate(180deg); }
  .nav-dropdown {
    position: static !important; box-shadow: none !important;
    opacity: 1 !important; visibility: visible !important;
    transform: none !important; transition: none !important;
    background: rgba(17,16,68,0.03);
    border-radius: 0; margin: 0; padding: 0;
    display: none; flex-direction: column;
    border-bottom: 1px solid rgba(17,16,68,0.07);
    min-width: 0; width: 100%;
  }
  .nav-links > li:hover .nav-dropdown,
  .nav-links > li:hover .mega-menu { display: none !important; }
  .nav-links > li.dropdown-open > .nav-dropdown { display: flex !important; }
  .nav-dropdown a { color: #2d3142; padding: 12px 24px 12px 40px; font-size: 14px; border-bottom: 1px solid rgba(17,16,68,0.05); width: 100%; }
  .nav-dropdown a:last-child { border-bottom: none; }
  .nav-dropdown a:hover { background: rgba(17,16,68,0.06); color: #111044; }
  .mega-menu {
    display: none !important; flex-direction: column;
    grid-template-columns: 1fr !important; width: 100% !important;
    min-width: 0; padding: 0 !important; transform: none !important; left: 0;
    position: static !important; box-shadow: none !important;
    opacity: 1 !important; visibility: visible !important;
    transition: none !important;
    background: rgba(17,16,68,0.03); border-bottom: 1px solid rgba(17,16,68,0.07);
  }
  .nav-links > li.dropdown-open > .nav-dropdown.mega-menu { display: flex !important; }
  .mega-col { padding: 8px 0; border-right: none !important; margin-bottom: 0; border-bottom: 1px solid rgba(17,16,68,0.05); }
  .mega-col:last-child { border-bottom: none; }
  .mega-heading { padding: 8px 24px 4px 24px; margin-bottom: 0; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--pink); }
  .mega-col a { padding: 8px 24px 8px 40px; font-size: 14px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-nav { position: relative; }
  .site-footer { padding: 48px 24px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 20px 0; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline, .btn-white { width: 100%; justify-content: center; }
  .services-strip-inner { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid var(--border); }
  .why-header h2 { font-size: 26px; }
  .software-badges { flex-direction: column; }
  .intro-stats { grid-template-columns: 1fr; }
  .values-inner { grid-template-columns: 1fr 1fr; }
  .about-why-card { flex-direction: column; gap: 16px; }
  .cta-banner-btns { flex-direction: column; width: 100%; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

/* ══════════════════════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════════════════════ */

/* ── Intro Strip ──────────────────────────────────────── */
.intro-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 64px 0; }
.intro-strip-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro-text h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.intro-text h2 em { color: var(--pink); font-style: normal; }
.intro-text p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 12px; }
.services-intro-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.intro-stat { background: var(--bg-light); border-radius: 12px; padding: 24px 20px; text-align: center; border: 1px solid var(--border); }
.intro-stat .num { font-family: 'Quicksand', sans-serif; font-size: 32px; font-weight: 800; color: var(--pink); display: block; }
.intro-stat .lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── Service Block (Accounts / Taxation) ──────────────── */
.service-block { padding: 80px 0; border-bottom: 1px solid var(--border); }
.service-block:last-of-type { border-bottom: none; }
.service-block.bg-light { background: var(--bg-light); }
.service-block-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.service-block-header { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 40px; padding-bottom: 28px; border-bottom: 2px solid var(--border); }
.service-block-icon { width: 60px; height: 60px; flex-shrink: 0; background: linear-gradient(135deg, rgba(207,154,65,0.12), rgba(17,16,68,0.06)); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--pink); }
.service-block-header-text h2 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.service-block-header-text p { color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 680px; }

/* ── Service Cards Grid ───────────────────────────────── */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 28px 26px; position: relative; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; text-decoration: none; color: inherit; display: block; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(207,154,65,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg, rgba(207,154,65,0.12), rgba(17,16,68,0.06)); display: flex; align-items: center; justify-content: center; color: var(--pink); margin-bottom: 16px; }
.service-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--pink); text-decoration: none; }
.card-link:hover { gap: 10px; }

/* ── Standalone Services Section ──────────────────────── */
.standalone-section { background: var(--bg-light); padding: 80px 0; }
.standalone-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.standalone-header { margin-bottom: 48px; }
.standalone-header h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.standalone-header h2 em { color: var(--pink); font-style: normal; }
.standalone-header p { color: var(--muted); font-size: 16px; max-width: 580px; line-height: 1.75; }
.standalone-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.standalone-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 36px 32px; display: flex; gap: 24px; align-items: flex-start; transition: box-shadow 0.2s, transform 0.2s; text-decoration: none; color: inherit; }
.standalone-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.standalone-icon { width: 56px; height: 56px; flex-shrink: 0; background: linear-gradient(135deg, rgba(207,154,65,0.12), rgba(17,16,68,0.06)); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--pink); }
.standalone-body h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.standalone-body p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.standalone-body ul { list-style: none; padding: 0; margin: 0 0 16px; }
.standalone-body ul li { font-size: 13.5px; color: var(--text); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.standalone-body ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }
.standalone-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--pink); text-decoration: none; }
.standalone-link:hover { gap: 10px; }

/* ── Services Page Why Section ────────────────────────── */
.services-why-section { padding: 80px 0; }
.services-why-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.services-why-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.services-why-header h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.services-why-header h2 em { color: var(--pink); font-style: normal; }
.services-why-header p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.services-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.services-why-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 32px 24px; text-align: center; transition: box-shadow 0.2s, transform 0.2s; position: relative; overflow: hidden; }
.services-why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--pink); }
.services-why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.services-why-card-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, rgba(207,154,65,0.12), rgba(17,16,68,0.06)); display: flex; align-items: center; justify-content: center; color: var(--pink); margin: 0 auto 16px; }
.services-why-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.services-why-card p { color: var(--muted); font-size: 13.5px; line-height: 1.65; }

/* ── Services Page Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .services-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .intro-strip { padding: 48px 0; }
  .intro-strip-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 24px; }
  .services-intro-stats { grid-template-columns: repeat(2, 1fr); }
  .service-block { padding: 56px 0; }
  .service-block-inner { padding: 0 24px; }
  .service-block-header { flex-direction: column; gap: 16px; }
  .service-cards { grid-template-columns: 1fr; }
  .standalone-section { padding: 56px 0; }
  .standalone-inner { padding: 0 24px; }
  .standalone-grid { grid-template-columns: 1fr; }
  .standalone-card { flex-direction: column; }
  .services-why-section { padding: 56px 0; }
  .services-why-inner { padding: 0 24px; }
  .services-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .services-why-grid { grid-template-columns: 1fr; }
  .services-intro-stats { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   CLOUD ACCOUNTING PAGE (service detail template)
   ══════════════════════════════════════════════════════════ */

/* ── Hero Partner Badges ──────────────────────────────── */
.hero-partners { display: flex; align-items: center; gap: 12px; margin-top: 32px; }
.hero-partners span { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; }
.hero-partner-badge { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; padding: 6px 14px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.15); }
.hero-partner-badge img { height: 20px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; display: block; }

/* ── Cloud Intro Section ──────────────────────────────── */
.cloud-intro-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.cloud-intro-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.cloud-intro-text h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.cloud-intro-text h2 em { color: var(--pink); font-style: normal; }
.cloud-intro-text p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.cloud-intro-text p strong { color: var(--text); }
.cloud-intro-text p:last-of-type { margin-bottom: 28px; }
.cloud-intro-visual { display: flex; flex-direction: column; gap: 20px; }
.intro-highlight-card { background: var(--navy); border-radius: 14px; padding: 32px; color: #fff; }
.intro-highlight-card h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.intro-highlight-card p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.7; }
.intro-partner-card { background: var(--bg-light); border: 1.5px solid var(--border); border-radius: 14px; padding: 24px 28px; }
.intro-partner-card p { font-size: 13px; color: var(--muted); margin-bottom: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; }
.partner-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.partner-badge { background: var(--white); border: 1.5px solid var(--border); border-radius: 8px; padding: 8px 18px; font-size: 13px; font-weight: 700; color: var(--navy); }
.partner-badge img { height: 20px; width: auto; display: block; }

/* ── Benefits Section ─────────────────────────────────── */
.benefits-section { padding: 80px 0; background: var(--bg-light); }
.benefits-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.benefits-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.benefits-header h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.benefits-header h2 em { color: var(--pink); font-style: normal; }
.benefits-header p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 36px 30px; position: relative; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--pink); }
.benefit-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.benefit-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, rgba(207,154,65,0.12), rgba(17,16,68,0.06)); display: flex; align-items: center; justify-content: center; color: var(--pink); margin-bottom: 20px; }
.benefit-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.benefit-card p { font-size: 14.5px; color: var(--muted); line-height: 1.75; }

/* ── Outsource Section ────────────────────────────────── */
.outsource-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.outsource-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.outsource-text h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.outsource-text h2 em { color: var(--pink); font-style: normal; }
.outsource-text p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 28px; }
.outsource-text p strong { color: var(--text); }
.outsource-checklist { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
.outsource-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); }
.check-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(207,154,65,0.12); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--pink); margin-top: 1px; }
.outsource-card { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: 20px; padding: 40px 36px; color: #fff; }
.outsource-card h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.outsource-card p { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 28px; }
.outsource-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.outsource-stat { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 18px 16px; text-align: center; }
.outsource-stat .num { font-family: 'Quicksand', sans-serif; font-size: 28px; font-weight: 800; color: var(--pink); display: block; }
.outsource-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ── Other Services Section ───────────────────────────── */
.other-services { padding: 80px 0; }
.other-services-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.other-services-header { margin-bottom: 40px; }
.other-services-header h2 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.other-services-header p { color: var(--muted); font-size: 15px; }
.other-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.other-service-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 24px 20px; text-decoration: none; color: inherit; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; position: relative; overflow: hidden; }
.other-service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
.other-service-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: rgba(207,154,65,0.3); }
.other-service-card:hover::before { transform: scaleX(1); }
.other-service-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, rgba(207,154,65,0.12), rgba(17,16,68,0.06)); display: flex; align-items: center; justify-content: center; color: var(--pink); margin-bottom: 14px; }
.other-service-card h3 { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.other-service-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ── Cloud Accounting Responsive ──────────────────────── */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .other-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cloud-intro-section, .benefits-section, .outsource-section, .other-services { padding: 56px 0; }
  .cloud-intro-inner, .outsource-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 24px; }
  .benefits-inner, .other-services-inner { padding: 0 24px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .other-services-grid { grid-template-columns: 1fr 1fr; }
  .hero-partners { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .other-services-grid { grid-template-columns: 1fr; }
  .outsource-stats { grid-template-columns: 1fr 1fr; }
  .hero-partners { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════
   NEWS ARCHIVE PAGE
   ══════════════════════════════════════════════════════════ */

/* ── News Layout ────────────────────────────────────────── */
.news-section { padding: 80px 0; }
.news-layout { max-width: 1160px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }

/* ── Featured Post ──────────────────────────────────────── */
.featured-post { margin-bottom: 48px; }
.featured-post-img { width: 100%; height: 380px; object-fit: cover; border-radius: 12px; display: block; margin-bottom: 28px; }
.featured-post-img-placeholder { width: 100%; height: 380px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.post-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.post-category { display: inline-block; background: rgba(16,185,129,0.10); color: var(--pink); font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; text-decoration: none; transition: background 0.2s; }
.post-category:hover { background: rgba(16,185,129,0.20); }
.post-date { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.post-author-link { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; text-decoration: none; transition: color 0.2s; }
.post-author-link:hover { color: var(--pink); }
.post-author-avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; flex-shrink: 0; overflow: hidden; }
.post-author-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 50%; }
.featured-post h2 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 14px; }
.featured-post h2 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.featured-post h2 a:hover { color: var(--pink); }
.featured-post > p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 22px; }
.read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--pink); font-weight: 700; font-size: 14px; text-decoration: none; transition: gap 0.2s; }
.read-more:hover { gap: 10px; }

/* ── Post Divider ───────────────────────────────────────── */
.post-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ── Post Card (list view) ──────────────────────────────── */
.news-main .post-card { display: grid; grid-template-columns: 200px 1fr; gap: 24px; align-items: start; margin-bottom: 36px; text-decoration: none; }
.post-card-img { width: 200px; height: 140px; object-fit: cover; border-radius: 10px; display: block; flex-shrink: 0; }
.post-card-img-placeholder { width: 200px; height: 140px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.post-card-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 8px; margin-top: 4px; }
.post-card-body h3 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.post-card-body h3 a:hover { color: var(--pink); }
.post-card-body > p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }

/* ── Pagination ─────────────────────────────────────────── */
.pagination { display: flex; align-items: center; gap: 8px; margin-top: 48px; }
.pagination .page-numbers { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 600; text-decoration: none; color: var(--navy); border: 1.5px solid var(--border); transition: all 0.2s; }
.pagination .page-numbers:hover, .pagination .page-numbers.current { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination .next, .pagination .prev { display: flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 8px; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 600; text-decoration: none; color: var(--navy); border: 1.5px solid var(--border); transition: all 0.2s; width: auto; }
.pagination .next:hover, .pagination .prev:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination .dots { border: none; background: none; }

/* ── Sidebar ────────────────────────────────────────────── */
.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 32px; }
.sidebar-widget { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 28px; }
.sidebar-widget h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--pink); display: inline-block; }
.search-form { display: flex; gap: 0; }
.search-input, .sidebar .search-field { flex: 1; padding: 11px 16px; border: 1.5px solid var(--border); border-right: none; border-radius: 8px 0 0 8px; font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--text); outline: none; transition: border-color 0.2s; }
.search-input:focus, .sidebar .search-field:focus { border-color: var(--pink); }
.search-btn, .sidebar .search-submit { padding: 11px 16px; background: var(--pink); border: none; border-radius: 0 8px 8px 0; cursor: pointer; transition: background 0.2s; color: #fff; font-weight: 600; }
.search-btn:hover, .sidebar .search-submit:hover { background: var(--pink-light); }
.category-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.category-list li a { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--text); text-decoration: none; transition: background 0.15s, color 0.15s; }
.category-list li a:hover { background: rgba(16,185,129,0.08); color: var(--pink); }
.category-count { background: var(--bg-light); color: var(--muted); font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.recent-post-item { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); }
.recent-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-thumb { width: 64px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--navy); }
.recent-post-item h5 { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 4px; }
.recent-post-item h5 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.recent-post-item h5 a:hover { color: var(--pink); }
.recent-post-item span { font-size: 12px; color: var(--muted); }
.cta-widget { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border: none; }
.cta-widget h4 { color: #fff; border-bottom-color: var(--pink); }
.cta-widget p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 20px; }
.cta-widget .btn-primary { width: 100%; justify-content: center; }

/* ── News Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .news-layout { grid-template-columns: 1fr 280px; gap: 40px; }
}
@media (max-width: 768px) {
  .news-layout { grid-template-columns: 1fr; padding: 0 24px; }
  .sidebar { position: static; }
  .news-main .post-card { grid-template-columns: 1fr; }
  .post-card-img, .post-card-img-placeholder { width: 100%; height: 200px; }
  .news-section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .featured-post-img, .featured-post-img-placeholder { height: 220px; }
}

/* ══════════════════════════════════════════════════════════
   SINGLE POST PAGE
   ══════════════════════════════════════════════════════════ */

/* ── Post Layout ────────────────────────────────────────── */
.post-section { padding: 64px 0 80px; }
.post-layout { max-width: 1160px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.post-layout article { min-width: 0; overflow: hidden; }

/* ── Post Header ────────────────────────────────────────── */
.post-header { margin-bottom: 36px; }
.post-read-time { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.post-header h1 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.post-header h1 em { color: var(--pink); font-style: normal; }

/* ── Author Bar ─────────────────────────────────────────── */
.post-author-bar { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--bg-light); border-radius: 10px; border: 1px solid var(--border); margin-bottom: 32px; }
.author-bar-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: top; flex-shrink: 0; border: 2px solid var(--pink); }
.author-bar-info { flex: 1; }
.author-bar-name { font-size: 15px; font-weight: 700; color: var(--navy); text-decoration: none; transition: color 0.2s; display: block; margin-bottom: 2px; }
.author-bar-name:hover { color: var(--pink); }
.author-bar-role { font-size: 13px; color: var(--muted); }
.author-bar-date { font-size: 13px; color: var(--muted); text-align: right; }

/* ── Featured Image ─────────────────────────────────────── */
.post-featured-img { width: 100%; height: 420px; object-fit: cover; border-radius: 12px; display: block; margin-bottom: 40px; }
.post-featured-img-placeholder { width: 100%; height: 420px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 40px; }

/* ── Post Body ──────────────────────────────────────────── */
.post-body { font-size: 16.5px; line-height: 1.85; color: var(--text); }
.post-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0; }
.post-body p { margin-bottom: 22px; }
.post-body h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin: 40px 0 16px; line-height: 1.3; }
.post-body h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; line-height: 1.35; }
.post-body ul, .post-body ol { margin: 0 0 22px 24px; }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--navy); font-weight: 700; }
.post-body a { color: var(--pink); text-decoration: underline; text-decoration-color: rgba(207,154,65,0.4); transition: color 0.2s; }
.post-body a:hover { color: var(--pink-light); }
.post-body blockquote { border-left: 4px solid var(--pink); padding: 18px 24px; background: rgba(207,154,65,0.06); border-radius: 0 8px 8px 0; margin: 28px 0; font-size: 17px; font-style: italic; color: var(--navy); line-height: 1.7; }
.post-body blockquote cite { display: block; font-size: 13px; font-style: normal; font-weight: 600; color: var(--muted); margin-top: 10px; }
.post-body .highlight-box { background: rgba(17,16,68,0.04); border: 1.5px solid var(--border); border-radius: 10px; padding: 24px 28px; margin: 28px 0; }
.post-body .highlight-box h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.post-body .highlight-box ul { margin-bottom: 0; }
.post-body table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 15px; }
.post-body table th { background: var(--navy); color: #fff; padding: 12px 16px; text-align: left; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 14px; }
.post-body table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.post-body table tr:nth-child(even) td { background: var(--bg-light); }

/* ── Tags ───────────────────────────────────────────────── */
.post-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.post-tags span { font-size: 13px; font-weight: 600; color: var(--muted); }
.post-tag { display: inline-block; background: var(--bg-light); border: 1px solid var(--border); color: var(--text); font-size: 13px; font-weight: 500; padding: 5px 14px; border-radius: 20px; text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.post-tag:hover { background: rgba(207,154,65,0.10); border-color: var(--pink); color: var(--pink); }

/* ── Share Buttons ──────────────────────────────────────── */
.post-share { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.post-share span { font-size: 13px; font-weight: 600; color: var(--muted); }
.share-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.share-btn:hover { opacity: 0.85; }
.share-linkedin { background: #0077b5; color: #fff; }
.share-twitter { background: #1da1f2; color: #fff; }
.share-facebook { background: #1877f2; color: #fff; }

/* ── Author Box ─────────────────────────────────────────── */
.author-box { background: var(--bg-light); border: 1.5px solid var(--border); border-radius: 12px; padding: 32px; margin-top: 48px; display: flex; gap: 24px; align-items: flex-start; }
.author-box-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; object-position: top; flex-shrink: 0; border: 3px solid var(--pink); }
.author-box-avatar-placeholder { width: 80px; height: 80px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; color: #fff; flex-shrink: 0; border: 3px solid var(--pink); }
.author-box-info h4 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.author-box-info h4 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.author-box-info h4 a:hover { color: var(--pink); }
.author-box-role { font-size: 13px; color: var(--pink); font-weight: 600; margin-bottom: 12px; }
.author-box-bio { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.author-box-link { font-size: 13px; font-weight: 700; color: var(--pink); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.author-box-link:hover { gap: 9px; }

/* ── Related Posts ──────────────────────────────────────── */
.related-posts { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }
.related-posts h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.related-card { border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; text-decoration: none; transition: box-shadow 0.2s, transform 0.2s; }
.related-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.related-card-img { width: 100%; height: 160px; object-fit: cover; display: block; background: var(--navy); }
.related-card-img-placeholder { width: 100%; height: 160px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; }
.related-card-body { padding: 18px 20px; }
.related-card-body .post-category { margin-bottom: 8px; }
.related-card-body h4 { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 8px; }
.related-card-body span { font-size: 12px; color: var(--muted); }

/* ── TOC list (sidebar) ─────────────────────────────────── */
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.toc-list li a { display: block; padding: 8px 12px; border-radius: 6px; font-size: 13.5px; font-weight: 500; color: var(--text); text-decoration: none; transition: background 0.15s, color 0.15s; border-left: 2px solid transparent; }
.toc-list li a:hover { background: rgba(207,154,65,0.07); color: var(--pink); border-left-color: var(--pink); }

/* ── Single Post Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr 280px; gap: 40px; }
}
@media (max-width: 768px) {
  .post-layout { grid-template-columns: 1fr; padding: 0 24px; }
  .sidebar { position: static; }
  .post-section { padding: 40px 0 60px; }
  .related-grid { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; align-items: center; text-align: center; }
}

/* ══════════════════════════════════════════════════════════
   AUTHOR PAGE
   ══════════════════════════════════════════════════════════ */

/* ── Author Hero ────────────────────────────────────────── */
.author-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 64px 0; }
.author-hero-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; gap: 48px; }
.author-photo-wrap { position: relative; flex-shrink: 0; }
.author-photo { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; object-position: top; border: 5px solid var(--pink); display: block; }
.author-photo-placeholder { width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,0.10); border: 5px solid var(--pink); display: flex; align-items: center; justify-content: center; font-size: 56px; font-weight: 700; color: #fff; flex-shrink: 0; }
.author-badge { position: absolute; bottom: 8px; right: -8px; background: var(--pink); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px; white-space: nowrap; }
.author-hero-info { flex: 1; }
.author-hero-label { display: inline-block; background: rgba(207,154,65,0.15); color: var(--pink); font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; }
.author-hero-info h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 8px; }
.author-hero-info h1 em { color: var(--pink); font-style: normal; }
.author-hero-role { font-size: 16px; color: rgba(255,255,255,0.70); font-weight: 500; margin-bottom: 20px; }
.author-hero-bio { font-size: 15.5px; color: rgba(255,255,255,0.75); line-height: 1.75; max-width: 600px; margin-bottom: 28px; }
.author-hero-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 28px; }
.author-stat { text-align: center; }
.author-stat-num { font-family: 'Quicksand', sans-serif; font-size: 28px; font-weight: 800; color: var(--pink); display: block; line-height: 1; }
.author-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.author-social { display: flex; gap: 12px; }
.author-social a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.author-social a:hover { opacity: 0.85; }
.author-social-linkedin { background: #0077b5; color: #fff; }
.author-social-email { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.18); }

/* ── Credentials Section ────────────────────────────────── */
.credentials-section { padding: 64px 0; background: var(--bg-light); }
.credentials-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.credential-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 28px; border-top: 3px solid var(--pink); }
.credential-icon { width: 44px; height: 44px; background: rgba(207,154,65,0.10); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.credential-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.credential-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── About Section (author page) ────────────────────────── */
.author-about-section { padding: 64px 0; }
.about-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.about-text h2 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 20px; }
.about-text h2 em { color: var(--pink); font-style: normal; }
.about-text p { font-size: 15.5px; color: var(--text); line-height: 1.8; margin-bottom: 18px; }
.about-text blockquote { border-left: 4px solid var(--pink); padding: 16px 22px; background: rgba(207,154,65,0.06); border-radius: 0 8px 8px 0; margin: 28px 0; font-size: 16px; font-style: italic; color: var(--navy); line-height: 1.7; }
.about-sidebar-card { background: var(--navy); border-radius: 14px; padding: 32px; color: #fff; }
.about-sidebar-card h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.about-sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.about-sidebar-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.about-sidebar-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); flex-shrink: 0; margin-top: 5px; }
.contact-card { background: var(--bg-light); border: 1.5px solid var(--border); border-radius: 12px; padding: 24px; margin-top: 24px; }
.contact-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.contact-card-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; color: var(--text); }
.contact-card-item a { color: var(--pink); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.contact-card-item a:hover { color: var(--pink-light); }
.contact-card-icon { color: var(--pink); flex-shrink: 0; }

/* ── Posts by Author Section ────────────────────────────── */
.posts-section { padding: 64px 0; background: var(--bg-light); }
.posts-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.posts-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.posts-header-text h2 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.posts-header-text h2 em { color: var(--pink); font-style: normal; }
.posts-header-text p { font-size: 14px; color: var(--muted); }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.author-post-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none; transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.author-post-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.author-post-card .post-card-img { width: 100%; height: 180px; object-fit: cover; display: block; background: var(--navy-light); }
.author-post-card .post-card-img-placeholder { width: 100%; height: 180px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; }
.author-post-card .post-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.author-post-card .post-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.author-post-card .post-card-date { font-size: 12px; color: var(--muted); }
.author-post-card .post-card-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 10px; flex: 1; }
.author-post-card .post-card-body p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.post-card-link { font-size: 13px; font-weight: 700; color: var(--pink); display: inline-flex; align-items: center; gap: 5px; text-decoration: none; transition: gap 0.2s; }
.post-card-link:hover { gap: 9px; }
.posts-view-all { text-align: center; margin-top: 40px; }

/* ── Author Page Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .author-hero-inner { flex-direction: column; align-items: center; text-align: center; padding: 0 24px; }
  .author-hero-stats { justify-content: center; }
  .author-social { justify-content: center; }
  .credentials-grid { grid-template-columns: 1fr; }
  .about-inner { padding: 0 24px; }
  .posts-grid { grid-template-columns: 1fr; }
  .posts-inner { padding: 0 24px; }
  .credentials-inner { padding: 0 24px; }
}

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start; }

/* CONTACT FORM */
.contact-form-wrap { }
.contact-form-wrap h2 { font-size: 1.8rem; color: var(--navy); margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--muted); font-size: 15.5px; margin-bottom: 32px; line-height: 1.7; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 14.5px; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(207,154,65,0.12); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b7c3; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { 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='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-group select option[value=""] { color: #b0b7c3; }
.form-privacy { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.form-privacy a { color: var(--pink); text-decoration: none; }
.form-submit-btn { width: 100%; padding: 16px; background: var(--pink); color: #fff; border: none; border-radius: 8px; font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.15s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit-btn:hover { background: #b8872e; transform: translateY(-1px); }

/* CONTACT SIDEBAR */
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card { background: var(--navy); border-radius: 12px; padding: 36px 32px; color: #fff; }
.contact-info-card h3 { font-size: 1.2rem; color: #fff; margin-bottom: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { color: var(--pink); }
.contact-info-body { }
.contact-info-body strong { display: block; font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-body a { color: #fff; text-decoration: none; font-size: 15px; font-weight: 600; display: block; }
.contact-info-body a:hover { color: var(--pink); }
.contact-info-body span { color: rgba(255,255,255,0.85); font-size: 15px; display: block; }
.contact-info-body .sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.contact-info-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 20px 0; }

.hours-card { background: var(--bg-light); border-radius: 12px; padding: 28px 28px; border: 1px solid var(--border); }
.hours-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.hours-card h4 svg { color: var(--pink); }
.hours-row { display: flex; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; gap: 12px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text); font-weight: 600; min-width: 110px; flex-shrink: 0; }
.hours-row .time { color: var(--muted); flex: 1; }
.hours-row .badge-open { background: rgba(207,154,65,0.12); color: var(--pink); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.hours-row .badge-closed { background: rgba(107,114,128,0.1); color: var(--muted); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }

.quick-links-card { background: var(--white); border-radius: 12px; padding: 28px 28px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.quick-links-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 16px; }
.quick-link-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.quick-link-item:last-child { border-bottom: none; }
.quick-link-item:hover { color: var(--pink); }
.quick-link-item svg { color: var(--pink); flex-shrink: 0; }

/* CONTACT MAP GRID */
.contact-maps { padding: 0 0 80px; }
.contact-maps .container { }
.map-header { margin-bottom: 28px; }
.map-header h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 8px; }
.map-header p { color: var(--muted); font-size: 15px; }
.map-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.map-item { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.map-item iframe { width: 100%; height: 220px; border: none; display: block; }
.map-item-label { background: var(--navy); color: #fff; padding: 14px 20px; font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.map-item-label svg { color: var(--pink); }
.map-item-sub { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 400; margin-top: 2px; }

/* FAQ SECTION */
.faq-section { background: var(--bg-light); padding: 80px 24px; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header h2 { font-size: 1.9rem; color: var(--navy); margin-bottom: 10px; }
.faq-header p { color: var(--muted); font-size: 16px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item { background: #fff; border-radius: 10px; padding: 28px 24px; border: 1px solid var(--border); }
.faq-item h4 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.faq-item h4 svg { color: var(--pink); flex-shrink: 0; margin-top: 2px; }
.faq-item p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .map-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-sidebar { grid-template-columns: 1fr; }
  .map-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .map-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   SECTORS PAGE
══════════════════════════════════════════════════════ */
.sectors-section { padding: 80px 0; }
.sectors-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.sectors-header h2 { font-size: 2rem; color: var(--navy); margin-bottom: 12px; }
.sectors-header h2 em { color: var(--pink); font-style: normal; }
.sectors-header p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sector-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none; color: var(--text); transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.sector-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.sector-card-icon { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 36px 32px 28px; display: flex; align-items: flex-start; gap: 16px; }
.sector-icon-wrap { width: 52px; height: 52px; border-radius: 10px; background: rgba(207,154,65,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sector-icon-wrap svg { color: var(--pink); }
.sector-card-icon-text h3 { font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
.sector-card-icon-text span { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500; }
.sector-card-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.sector-card-body p { color: var(--muted); font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; flex: 1; }
.sector-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.sector-tag { background: rgba(207,154,65,0.08); color: var(--pink); font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.sector-card-link { display: flex; align-items: center; gap: 6px; color: var(--pink); font-weight: 700; font-size: 14px; text-decoration: none; }
.sector-card-link svg { transition: transform 0.2s; }
.sector-card:hover .sector-card-link svg { transform: translateX(4px); }

/* ANY SECTOR BANNER */
.any-sector-banner { background: linear-gradient(135deg, var(--pink) 0%, #b8872e 100%); padding: 48px 0; }
.any-sector-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.any-sector-inner h2 { font-size: 1.6rem; color: #fff; margin-bottom: 8px; }
.any-sector-inner p { color: rgba(255,255,255,0.88); font-size: 15.5px; max-width: 600px; }
.any-sector-cta { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; flex-shrink: 0; }

/* ANY SECTOR SECTION */
.any-sector-section { background: var(--bg-light); padding: 80px 0; border-top: 1px solid var(--border); }
.any-sector-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.any-sector-text h2 { font-size: 1.9rem; color: var(--navy); margin-bottom: 16px; }
.any-sector-text h2 em { color: var(--pink); font-style: normal; }
.any-sector-text p { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 16px; }
.any-sector-text .btn-primary { margin-top: 8px; }
.any-sector-features { display: flex; flex-direction: column; gap: 16px; }
.any-sector-feature { display: flex; align-items: flex-start; gap: 14px; background: #fff; border-radius: 10px; padding: 20px 22px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.any-sector-feature-icon { width: 42px; height: 42px; border-radius: 8px; background: rgba(207,154,65,0.10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.any-sector-feature-icon svg { color: var(--pink); }
.any-sector-feature-body h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.any-sector-feature-body p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* HERO STATS (Sectors Page) */
.page-hero-inner.sectors-hero {
  display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center; padding: 72px 40px;
}
.hero-stat-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 32px 28px; backdrop-filter: blur(8px); }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: 'Quicksand', sans-serif; font-size: 2rem; font-weight: 800; color: var(--pink); display: block; }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; line-height: 1.4; }

@media (max-width: 1024px) {
  .page-hero-inner.sectors-hero { grid-template-columns: 1fr; }
  .hero-stat-card { display: none; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .any-sector-content { grid-template-columns: 1fr; gap: 40px; }
  .any-sector-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .sectors-grid { grid-template-columns: 1fr; }
  .any-sector-inner { grid-template-columns: 1fr; gap: 20px; }
  .any-sector-cta { align-items: flex-start; }
}
@media (max-width: 480px) {
  .sectors-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   SINGLE SECTOR (Construction-style)
══════════════════════════════════════════════════════ */
.content-section { padding: 80px 0; }
.content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }

/* MAIN CONTENT */
.main-content { }
.main-content h2 { font-size: 1.7rem; color: var(--navy); margin-bottom: 16px; }
.main-content h2 em { color: var(--pink); font-style: normal; }
.main-content h3 { font-size: 1.2rem; color: var(--navy); margin: 28px 0 10px; }
.main-content p { color: var(--muted); font-size: 15.5px; line-height: 1.8; margin-bottom: 16px; }
.main-content p strong { color: var(--text); }

/* BENEFITS STRIP */
.benefits-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.benefit-item { background: var(--bg-light); border-radius: 10px; padding: 22px 20px; border: 1px solid var(--border); }
.benefit-item .benefit-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(207,154,65,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.benefit-item .benefit-icon svg { color: var(--pink); }
.benefit-item h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.benefit-item p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0; }

/* SERVICES LIST */
.services-list { margin: 24px 0; }
.service-list-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.service-list-item:last-child { border-bottom: none; }
.service-list-icon { width: 36px; height: 36px; border-radius: 7px; background: rgba(207,154,65,0.10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.service-list-icon svg { color: var(--pink); }
.service-list-body h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.service-list-body p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0; }

/* FAQ (Inner) */
.faq-section-inner { margin-top: 0; max-width: 820px; margin-left: auto; margin-right: auto; }
.faq-section-inner h2 { font-size: 1.75rem; color: var(--navy); margin-bottom: 32px; text-align: center; }
.faq-question { width: 100%; background: #fff; border: none; padding: 18px 22px; text-align: left; font-family: 'Quicksand', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background 0.15s; border: 1px solid var(--border); border-radius: 8px; margin-bottom: 12px; }
.faq-question:hover { background: var(--bg-light); }
.faq-question .faq-icon { flex-shrink: 0; color: var(--pink); transition: transform 0.2s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 18px; font-size: 14.5px; color: var(--muted); line-height: 1.75; }
.faq-answer.open { display: block; }

/* SIDEBAR */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; box-shadow: var(--shadow); }
.sidebar-card.dark { background: var(--navy); border-color: transparent; }
.sidebar-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 16px; }
.sidebar-card.dark h4 { color: #fff; }
.sidebar-cta-text { color: rgba(255,255,255,0.75); font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; }
.sidebar-cta-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--pink); color: #fff; padding: 13px 20px; border-radius: 8px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14.5px; text-decoration: none; transition: background 0.2s; width: 100%; }
.sidebar-cta-btn:hover { background: #b8872e; }
.sidebar-cta-phone { display: flex; align-items: center; justify-content: center; gap: 8px; background: rgba(255,255,255,0.1); color: #fff; padding: 11px 20px; border-radius: 8px; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 14px; text-decoration: none; transition: background 0.2s; width: 100%; margin-top: 10px; }
.sidebar-cta-phone:hover { background: rgba(255,255,255,0.18); }
.sidebar-services { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sidebar-services li a { display: flex; align-items: center; gap: 8px; color: var(--text); text-decoration: none; font-size: 14px; padding: 8px 10px; border-radius: 6px; transition: background 0.15s, color 0.15s; }
.sidebar-services li a:hover { background: var(--bg-light); color: var(--pink); }
.sidebar-services li a svg { color: var(--pink); flex-shrink: 0; }
.sidebar-sectors { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sidebar-sectors li a { display: flex; align-items: center; gap: 8px; color: var(--text); text-decoration: none; font-size: 14px; padding: 8px 10px; border-radius: 6px; transition: background 0.15s, color 0.15s; font-weight: 500; }
.sidebar-sectors li a:hover { background: var(--bg-light); color: var(--pink); }
.sidebar-sectors li a svg { color: var(--pink); flex-shrink: 0; }
.sidebar-sectors li.active a { background: rgba(207,154,65,0.08); color: var(--pink); font-weight: 700; }
.sidebar-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; color: var(--muted); }
.sidebar-contact-item svg { color: var(--pink); flex-shrink: 0; margin-top: 2px; }
.sidebar-contact-item a { color: var(--text); text-decoration: none; font-weight: 600; }
.sidebar-contact-item a:hover { color: var(--pink); }

/* TESTIMONIALS (single-sector / single-location) */
.sector-testimonials-section { background: var(--bg-light); padding: 80px 0; border-top: 1px solid var(--border); }
.sector-testimonials-section .testimonials-header { text-align: center; margin-bottom: 48px; }
.sector-testimonials-section .testimonials-header h2 { font-size: 1.9rem; color: var(--navy); margin-bottom: 10px; }
.sector-testimonials-section .testimonials-header p { color: var(--muted); font-size: 16px; }
.sector-testimonials-section .testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sector-testimonials-section .testimonial-card { background: #fff; border-radius: 10px; padding: 24px 22px; border: 1px solid var(--border); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.sector-testimonials-section .testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.sector-testimonials-section .testimonial-card blockquote { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; font-style: italic; margin-bottom: 16px; }
.sector-testimonials-section .testimonial-author { display: flex; align-items: center; gap: 10px; }
.sector-testimonials-section .testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 13px; color: #fff; flex-shrink: 0; }
.sector-testimonials-section .testimonial-author-info strong { display: block; font-size: 13.5px; color: var(--navy); }
.sector-testimonials-section .testimonial-author-info span { font-size: 12px; color: var(--muted); }

/* WHY CHOOSE */
.why-section { padding: 80px 0; }
.why-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.why-header h2 { font-size: 1.9rem; color: var(--navy); margin-bottom: 10px; }
.why-header h2 em { color: var(--pink); font-style: normal; }
.why-header p { color: var(--muted); font-size: 16px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { border-radius: 10px; padding: 32px 28px; border: 1px solid var(--border); }
.why-num { font-family: 'Quicksand', sans-serif; font-size: 2.5rem; font-weight: 800; color: rgba(207,154,65,0.2); line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .benefits-strip { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .benefits-strip { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .benefits-strip { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   LOCATIONS PAGE
══════════════════════════════════════════════════════ */
.locations-intro { padding: 72px 0 48px; }
.locations-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.locations-intro-text h2 { font-size: 2rem; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.locations-intro-text h2 em { color: var(--pink); font-style: normal; }
.locations-intro-text p { color: var(--muted); margin-bottom: 16px; font-size: 15.5px; }
.locations-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.loc-stat { background: var(--navy); color: #fff; border-radius: 10px; padding: 24px 20px; text-align: center; }
.loc-stat-num { font-family: 'Quicksand', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--pink); display: block; }
.loc-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* LOCATION CARDS */
.locations-section { padding: 0 0 80px; }
.locations-section .container { display: flex; flex-direction: column; gap: 64px; }

.loc-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.loc-card.reverse { direction: rtl; }
.loc-card.reverse > * { direction: ltr; }
.loc-card-image { position: relative; min-height: 380px; background: var(--navy); overflow: hidden; }
.loc-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.loc-card-image-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; min-height: 380px; }
.loc-card-image-placeholder svg { opacity: 0.18; }
.loc-badge { position: absolute; top: 20px; left: 20px; background: var(--pink); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; }
.loc-card.reverse .loc-badge { left: auto; right: 20px; }
.loc-card-content { background: #fff; padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.loc-card-content h2 { font-size: 1.8rem; color: var(--navy); margin-bottom: 8px; }
.loc-card-content .loc-subtitle { color: var(--pink); font-weight: 700; font-size: 13px; letter-spacing: 0.5px; margin-bottom: 20px; text-transform: uppercase; }
.loc-card-content p { color: var(--muted); font-size: 15px; margin-bottom: 20px; line-height: 1.7; }
.loc-details { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.loc-detail { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.loc-detail svg { flex-shrink: 0; margin-top: 2px; color: var(--pink); }
.loc-detail strong { color: var(--navy); }
.loc-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* MAP STRIP */
.map-strip { padding: 0 0 80px; }
.map-strip .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

@media (max-width: 1024px) {
  .locations-intro .container { gap: 40px; }
  .locations-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .locations-intro .container { grid-template-columns: 1fr; }
  .locations-stats { grid-template-columns: 1fr 1fr; }
  .loc-card { grid-template-columns: 1fr; }
  .loc-card.reverse { direction: ltr; }
  .loc-card-image { min-height: 240px; }
  .loc-card-content { padding: 32px 28px; }
  .map-strip .container { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .locations-stats { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   SINGLE LOCATION (Bath-style)
══════════════════════════════════════════════════════ */
.location-intro-section { padding: 80px 0; }
.location-intro-section .container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.intro-text h2 { font-size: 2rem; color: var(--navy); margin-bottom: 20px; line-height: 1.25; }
.intro-text h2 em { color: var(--pink); font-style: normal; }
.intro-text p { color: var(--muted); margin-bottom: 16px; font-size: 15.5px; line-height: 1.75; }
.intro-text a.text-link { color: var(--pink); font-weight: 600; text-decoration: none; }
.intro-text a.text-link:hover { text-decoration: underline; }
.intro-visual { position: relative; }
.intro-card { background: var(--navy); border-radius: 12px; padding: 36px 32px; color: #fff; }
.intro-card h3 { font-size: 1.2rem; margin-bottom: 20px; color: #fff; }
.intro-card-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.intro-card-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,0.8); }
.intro-card-list li svg { flex-shrink: 0; color: var(--pink); margin-top: 2px; }
.intro-card-cta { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); }
.intro-card-cta p { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-bottom: 14px; }

/* FEATURES STRIP */
.features-strip { background: var(--bg-light); padding: 72px 0; }
.features-strip .container { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.features-strip-intro h2 { font-size: 1.8rem; color: var(--navy); line-height: 1.25; margin-bottom: 16px; }
.features-strip-intro h2 em { color: var(--pink); font-style: normal; }
.features-strip-intro p { color: var(--muted); font-size: 15px; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-card { background: #fff; border-radius: 10px; padding: 28px 24px; box-shadow: var(--shadow); }
.feature-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(207,154,65,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feature-icon svg { color: var(--pink); }
.feature-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* SERVICES LIST SECTION */
.services-list-section { background: var(--bg-light); padding: 80px 0; }
.services-list-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.services-list-text h2 { font-size: 1.9rem; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.services-list-text h2 em { color: var(--pink); font-style: normal; }
.services-list-text p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.services-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.services-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); }
.services-checklist li svg { flex-shrink: 0; color: var(--pink); margin-top: 2px; }
.services-cta-box { background: var(--navy); border-radius: 12px; padding: 40px 36px; color: #fff; }
.services-cta-box h3 { font-size: 1.4rem; color: #fff; margin-bottom: 12px; }
.services-cta-box p { color: rgba(255,255,255,0.72); font-size: 15px; margin-bottom: 24px; line-height: 1.7; }

/* WHY SECTION - DARK VARIANT (location pages) */
.why-section-dark { background: var(--navy); padding: 80px 0; }
.why-section-dark .why-header h2 { color: #fff; }
.why-section-dark .why-header h2 em { color: var(--pink); font-style: normal; }
.why-section-dark .why-header p { color: rgba(255,255,255,0.72); }
.why-section-dark .why-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 36px 28px; }
.why-section-dark .why-num, .why-section-dark .why-card-num { color: var(--pink); opacity: 0.4; }
.why-card-num { font-family: 'Quicksand', sans-serif; font-size: 2.5rem; font-weight: 800; color: rgba(207,154,65,0.2); line-height: 1; margin-bottom: 12px; }
.why-section-dark .why-card h3 { color: #fff; }
.why-section-dark .why-card p { color: rgba(255,255,255,0.65); }

/* LOCATION INFO + MAP */
.location-info { padding: 80px 0; }
.location-info .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.location-info-text h2 { font-size: 1.9rem; color: var(--navy); margin-bottom: 20px; line-height: 1.25; }
.location-info-text h2 em { color: var(--pink); font-style: normal; }
.location-info-text p { color: var(--muted); font-size: 15.5px; margin-bottom: 16px; line-height: 1.75; }
.location-details { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.loc-detail { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); }
.loc-detail svg { flex-shrink: 0; color: var(--pink); margin-top: 2px; }
.loc-detail strong { color: var(--navy); }
.map-embed { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.map-embed iframe { width: 100%; height: 380px; border: none; display: block; }

/* TESTIMONIALS CARD STYLES – Bath / location pages (scoped to .location-testimonials) */
.location-testimonials .testimonial-card { background: var(--bg-light); border-radius: 12px; padding: 32px 28px; position: relative; border: none; box-shadow: none; }
.location-testimonials .testimonial-card::before { content: '\201C'; font-family: 'Quicksand', sans-serif; font-size: 5rem; color: var(--pink); opacity: 0.15; position: absolute; top: 10px; left: 20px; line-height: 1; }
.location-testimonials .stars { display: flex; gap: 3px; margin-bottom: 14px; }
.location-testimonials .stars svg { color: #f59e0b; }
.location-testimonials .testimonial-card p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1; }
.location-testimonials .testimonial-author { display: flex; align-items: center; gap: 12px; }
.location-testimonials .author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 16px; color: var(--pink); flex-shrink: 0; }
.location-testimonials .author-info strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }
.location-testimonials .author-info span { font-size: 12.5px; color: var(--muted); }
.location-testimonials .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1024px) {
  .intro-grid, .services-list-section .container { gap: 40px; }
  .features-strip .container { grid-template-columns: 1fr; gap: 40px; }
  .location-info .container { gap: 40px; }
}
@media (max-width: 768px) {
  .intro-grid, .services-list-section .container, .location-info .container { grid-template-columns: 1fr; }
  .features-strip .container { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .sector-testimonials-section .testimonials-grid { grid-template-columns: 1fr; }
  .why-section-dark .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .intro-grid { grid-template-columns: 1fr; }
}

/* ══ CONTACT FORM 7 STYLING ══ */

/* --- Contact page CF7 form --- */
.contact-form-wrap .wpcf7 form {
  display: flex; flex-direction: column; gap: 16px;
}
.contact-form-wrap .wpcf7 label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.3px;
}
.contact-form-wrap .wpcf7 input[type="text"],
.contact-form-wrap .wpcf7 input[type="email"],
.contact-form-wrap .wpcf7 input[type="tel"],
.contact-form-wrap .wpcf7 textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border, #e5e7eb);
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--text, #2d3142);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form-wrap .wpcf7 input:focus,
.contact-form-wrap .wpcf7 textarea:focus {
  border-color: var(--pink, #CF9A41);
  box-shadow: 0 0 0 3px rgba(207,154,65,0.12);
  outline: none;
}
.contact-form-wrap .wpcf7 input::placeholder,
.contact-form-wrap .wpcf7 textarea::placeholder { color: #b0b7c3; }
.contact-form-wrap .wpcf7 textarea { resize: vertical; min-height: 130px; }
.contact-form-wrap .wpcf7 input[type="submit"] {
  width: 100%; padding: 16px;
  background: var(--pink, #CF9A41); color: #fff;
  border: none; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.contact-form-wrap .wpcf7 input[type="submit"]:hover {
  background: #b8872e; transform: translateY(-1px);
}
.contact-form-wrap .wpcf7-response-output {
  border-radius: 8px !important; padding: 14px 18px !important;
  font-size: 14px; margin: 10px 0 0 !important;
}

/* --- Homepage hero card CF7 form --- */
.hero-form-card .wpcf7 form {
  display: flex; flex-direction: column; gap: 0;
}
.hero-form-card .wpcf7 form p { margin: 0 0 8px; }
.hero-form-card .wpcf7 .touch-form { display: flex; flex-direction: column; gap: 8px; }
.hero-form-card .wpcf7 .touch-form__group { display: flex; flex-direction: column; gap: 2px; }
.hero-form-card .wpcf7 .touch-form__group label {
  font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: 0.3px;
}
.hero-form-card .wpcf7 input[type="text"],
.hero-form-card .wpcf7 input[type="email"],
.hero-form-card .wpcf7 input[type="tel"] {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border, #e5e7eb);
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--text, #2d3142);
  background: #fff;
  transition: border-color 0.2s;
}
.hero-form-card .wpcf7 input:focus {
  border-color: var(--pink, #CF9A41);
  box-shadow: 0 0 0 3px rgba(207,154,65,0.12);
  outline: none;
}
.hero-form-card .wpcf7 input::placeholder { color: #aaa; }
.hero-form-card .wpcf7 .touch-form__button { margin-top: 2px; }
.hero-form-card .wpcf7 input[type="submit"] {
  width: 100%; padding: 13px;
  background: var(--navy, #111044); color: #fff;
  border: none; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.8px; cursor: pointer;
  transition: background 0.2s;
}
.hero-form-card .wpcf7 input[type="submit"]:hover { background: var(--navy-light, #1a1966); }
.hero-form-card .wpcf7-response-output {
  border-radius: 8px !important; padding: 10px 14px !important;
  font-size: 13px; margin: 8px 0 0 !important;
}

/* --- Homepage consultation section CF7 form --- */
.consult-form .wpcf7 form {
  display: flex; flex-direction: column; gap: 16px;
}
.consult-form .wpcf7 label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--text);
}
.consult-form .wpcf7 input[type="text"],
.consult-form .wpcf7 input[type="email"],
.consult-form .wpcf7 input[type="tel"],
.consult-form .wpcf7 textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border, #e5e7eb);
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--text, #2d3142);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.consult-form .wpcf7 input:focus,
.consult-form .wpcf7 textarea:focus {
  border-color: var(--pink, #CF9A41);
  box-shadow: 0 0 0 3px rgba(207,154,65,0.12);
  outline: none;
}
.consult-form .wpcf7 input::placeholder,
.consult-form .wpcf7 textarea::placeholder { color: #aaa; }
.consult-form .wpcf7 textarea { resize: vertical; min-height: 120px; }
.consult-form .wpcf7 input[type="submit"] {
  width: 100%; padding: 16px;
  background: var(--pink, #CF9A41); color: #fff;
  border: none; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: 0.5px; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.consult-form .wpcf7 input[type="submit"]:hover {
  background: #b8872e; transform: translateY(-1px);
}
.consult-form .wpcf7-response-output {
  border-radius: 8px !important; padding: 14px 18px !important;
  font-size: 14px; margin: 10px 0 0 !important;
}

/* --- CF7 reCAPTCHA spacing --- */
.wpcf7 .cf7sr-g-recaptcha { margin: 8px 0; }

/* --- CF7 validation messages --- */
.wpcf7-not-valid-tip {
  font-size: 12px; color: #e74c3c; margin-top: 4px;
}
span.wpcf7-list-item { margin: 0; }

/* ═══ TALK TO US FLOATING BUTTON + POPUP ═══════════════════ */
.talk-btn {
  position: fixed; bottom: 0; right: 40px; z-index: 9998;
  background: var(--navy, #111044); color: #fff;
  border: none; border-radius: 5px 5px 0 0;
  padding: 12px 24px;
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 0.5px; cursor: pointer;
  transition: background 0.2s, transform 0.25s, opacity 0.25s;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.talk-btn:hover { background: var(--navy-light, #1a1966); }
.talk-btn.hidden { transform: translateY(100%); opacity: 0; pointer-events: none; }

.talk-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.talk-overlay.active { opacity: 1; pointer-events: auto; }

.talk-popup {
  position: fixed; bottom: 0; right: 40px; z-index: 9999;
  width: 400px; max-width: calc(100vw - 32px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff; border-radius: 15px 15px 0 0;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.18);
  transform: translateY(100%); opacity: 0;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.3s;
}
.talk-popup.active { transform: translateY(0); opacity: 1; }

.talk-popup-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 12px; border-bottom: 1px solid #e5e5e5;
}
.talk-popup-header h3 {
  margin: 0; font-size: 20px; font-weight: 800; color: var(--navy, #111044);
}
.talk-popup-close {
  background: none; border: none; font-size: 28px; line-height: 1;
  color: #999; cursor: pointer; padding: 0 4px;
  transition: color 0.2s;
}
.talk-popup-close:hover { color: var(--navy, #111044); }

.talk-popup-sub {
  margin: 0; padding: 12px 24px 0; font-size: 14px; color: #666;
}

.talk-popup-form { padding: 16px 24px 24px; }

/* Form styling inside popup */
.talk-popup-form .wpcf7 form { display: flex; flex-direction: column; gap: 0; }
.talk-popup-form .wpcf7 form p { margin: 0 0 12px; }
.talk-popup-form .wpcf7 .touch-form { display: flex; flex-direction: column; gap: 12px; }
.talk-popup-form .wpcf7 .touch-form__group { display: flex; flex-direction: column; gap: 3px; }
.talk-popup-form .wpcf7 .touch-form__group label {
  font-size: 13px; font-weight: 700; color: var(--navy, #111044);
}
.talk-popup-form .wpcf7 input[type="text"],
.talk-popup-form .wpcf7 input[type="email"],
.talk-popup-form .wpcf7 input[type="tel"],
.talk-popup-form .wpcf7 textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 14px;
  color: var(--text, #2d3142); background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.talk-popup-form .wpcf7 textarea { min-height: 80px; resize: vertical; }
.talk-popup-form .wpcf7 input:focus,
.talk-popup-form .wpcf7 textarea:focus {
  border-color: var(--pink, #CF9A41);
  box-shadow: 0 0 0 3px rgba(207,154,65,0.12);
  outline: none;
}
.talk-popup-form .wpcf7 input::placeholder,
.talk-popup-form .wpcf7 textarea::placeholder { color: #aaa; }
.talk-popup-form .wpcf7 input[type="submit"] {
  width: 100%; padding: 13px; margin-top: 4px;
  background: var(--navy, #111044); color: #fff;
  border: none; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.8px; cursor: pointer;
  transition: background 0.2s;
}
.talk-popup-form .wpcf7 input[type="submit"]:hover { background: var(--navy-light, #1a1966); }
.talk-popup-form .wpcf7-response-output {
  border-radius: 8px !important; padding: 10px 14px !important;
  font-size: 13px; margin: 8px 0 0 !important;
}

@media (max-width: 480px) {
  .talk-btn { right: 16px; padding: 10px 18px; font-size: 14px; }
  .talk-popup { right: 0; width: 100%; border-radius: 15px 15px 0 0; }
}
