/* ============================================
   THE OFFSHORE ACCOUNTANTS — MAIN STYLESHEET
   Design: Deep Navy + Warm Gold + Clean White
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --navy:       #0B1F3A;
  --navy-mid:   #122848;
  --navy-light: #1C3A5E;
  --gold:       #C9963A;
  --gold-light: #E4B55A;
  --gold-pale:  #FDF6E9;
  --white:      #FFFFFF;
  --grey-50:    #F8F9FA;
  --grey-100:   #F1F3F5;
  --grey-300:   #CED4DA;
  --grey-500:   #868E96;
  --grey-700:   #495057;
  --grey-900:   #212529;
  --success:    #2D8653;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-w:      1200px;
  --radius:     8px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --transition: 0.22s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--grey-900); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--grey-50); }
.section--navy { background: var(--navy); color: var(--white); }
.section--gold-pale { background: var(--gold-pale); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--grey-700); line-height: 1.75; }

.section-header { max-width: 600px; margin: 0 auto 56px; text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  border: 2px solid var(--white); color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn svg { width: 16px; height: 16px; }

/* ══════════════════════════════════
   TOP BAR
══════════════════════════════════ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.topbar-contacts { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-contacts a {
  color: rgba(255,255,255,.75);
  display: flex; align-items: center; gap: 5px;
  transition: color var(--transition);
}
.topbar-contacts a:hover { color: var(--gold); }
.topbar-contacts .flag { font-size: 14px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.topbar-right a:hover { color: var(--gold); }

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.navbar {
  background: var(--white);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
  border-bottom: 2px solid var(--gold-pale);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
}
.navbar-logo .logo-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.navbar-logo .logo-icon span {
  color: var(--gold); font-size: 20px; font-weight: 700; font-family: var(--font-display);
}
.navbar-logo .logo-text { line-height: 1.2; }
.navbar-logo .logo-text strong { display: block; font-size: 15px; color: var(--navy); font-weight: 700; }
.navbar-logo .logo-text em { font-style: normal; font-size: 10.5px; color: var(--grey-500); letter-spacing: .04em; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--grey-700);
  padding: 8px 14px; border-radius: 6px;
  transition: all var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--grey-50); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--gold); border-radius: 2px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 240px;
  border: 1px solid var(--grey-100);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; font-size: 13.5px; color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
  background: transparent;
  border-radius: 0;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--grey-50); color: var(--navy); }
.dropdown-menu a .dm-icon { width: 28px; height: 28px; background: var(--gold-pale); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }

.nav-cta { margin-left: 12px; }

/* Mobile hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--grey-100);
  box-shadow: var(--shadow-md); padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 14px; font-weight: 500; color: var(--grey-700); border-bottom: 1px solid var(--grey-100); }
.mobile-menu a:last-child { border-bottom: none; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1E4A7A 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,150,58,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,150,58,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,150,58,.15); border: 1px solid rgba(201,150,58,.3);
  border-radius: 100px; padding: 6px 14px;
  font-size: 12px; font-weight: 500; color: var(--gold-light);
  margin-bottom: 24px;
}
.hero-badge::before { content: '●'; font-size: 8px; color: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 36px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12); }
.stat { }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(8px);
}
.hero-card h3 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; }
.hero-card-form { display: flex; flex-direction: column; gap: 12px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.45); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy); color: var(--white); }
.hero-card .btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════
   TRUST BAR
══════════════════════════════════ */
.trust-bar {
  background: var(--gold-pale);
  border-top: 1px solid rgba(201,150,58,.2);
  border-bottom: 1px solid rgba(201,150,58,.2);
  padding: 20px 0;
}
.trust-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--navy); }
.trust-item .ti-icon { font-size: 20px; }

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 12px;
  padding: 32px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; margin-bottom: 20px; }
.service-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--grey-700);
}
.service-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.service-card a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  transition: gap var(--transition);
}
.service-card a:hover { gap: 10px; color: var(--gold); }

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-grid::before {
  content: '';
  position: absolute; top: 28px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 2px; background: linear-gradient(to right, var(--gold), var(--gold-light));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.ps-num {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
}
.ps-num span { color: var(--gold); font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.process-step h3 { color: var(--navy); margin-bottom: 10px; }
.process-step p { font-size: 13.5px; }

/* ══════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-content h2 { margin-bottom: 20px; }
.why-content p { margin-bottom: 28px; }
.why-features { display: flex; flex-direction: column; gap: 16px; }
.why-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 10px;
  transition: all var(--transition);
}
.why-feature:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.wf-icon { width: 40px; height: 40px; background: var(--gold-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.wf-text strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
.wf-text span { font-size: 13px; color: var(--grey-500); }
.why-visual {
  background: var(--navy);
  border-radius: 20px; padding: 40px;
  position: relative; overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,150,58,.2) 0%, transparent 70%);
}
.why-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.metric-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 24px 20px; text-align: center;
}
.metric-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.metric-label { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 6px; }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 12px; padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tc-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.tc-quote { font-size: 14px; color: var(--grey-700); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.tc-info strong { display: block; font-size: 13px; color: var(--navy); }
.tc-info span { font-size: 12px; color: var(--grey-500); }

/* ══════════════════════════════════
   CTA BANNER
══════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,150,58,.1) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; }
.contact-offices { display: flex; flex-direction: column; gap: 24px; }
.office-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 12px; padding: 24px;
  border-left: 4px solid var(--gold);
}
.office-card h4 { color: var(--navy); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.office-card p { font-size: 13.5px; color: var(--grey-700); line-height: 1.6; }
.contact-phones { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.contact-phones a {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--grey-700);
  transition: color var(--transition);
}
.contact-phones a:hover { color: var(--navy); }
.contact-phones a .flag { font-size: 16px; }
.contact-email {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--grey-700);
  margin-bottom: 28px;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 16px; padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 14px; margin-bottom: 28px; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 500; color: var(--grey-700); }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px;
  color: var(--grey-900);
  transition: border-color var(--transition);
  outline: none; width: 100%;
  background: var(--white);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23868E96' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note { font-size: 12px; color: var(--grey-500); text-align: center; margin-top: 12px; }

/* ══════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 0;
  text-align: center; color: var(--white);
}
.page-hero .eyebrow { display: block; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .logo-icon { width: 40px; height: 40px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-brand .logo-icon span { color: var(--navy); font-size: 18px; font-weight: 700; font-family: var(--font-display); }
.footer-brand .logo-name { font-family: var(--font-display); font-size: 15px; color: var(--white); font-weight: 600; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.fc-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; }
.fc-item .flag { font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.fc-item a { transition: color var(--transition); }
.fc-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
}
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: all var(--transition);
  font-size: 26px;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .why-grid { gap: 32px; }
}

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cf-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar { position: relative; }
  .topbar-contacts .us, .topbar-contacts .uk { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { padding: 60px 0; }
}


/* ══════════════════════════════════
   TEAM PAGE
══════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.team-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.team-card:hover .team-card-img img { transform: scale(1.04); }

.team-card-img {
  width: 100%; aspect-ratio: 1;
  overflow: hidden;
  background: var(--navy);
}
.team-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
  display: block;
}
.team-card-body { padding: 24px; }
.team-card-body h3 { color: var(--navy); margin-bottom: 4px; font-size: 1.1rem; }
.team-card-title { font-size: 13px; color: var(--gold); font-weight: 500; margin-bottom: 12px; }
.team-card-bio { font-size: 13px; color: var(--grey-700); line-height: 1.65; margin-bottom: 16px; }
.team-card-certs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.cert-tag {
  font-size: 11px; font-weight: 500;
  background: var(--gold-pale); color: var(--navy);
  border: 1px solid rgba(201,150,58,.3);
  border-radius: 20px; padding: 3px 10px;
}
.team-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  transition: gap var(--transition);
}
.team-card-link:hover { gap: 10px; color: var(--gold); }

/* ── Profile Page ── */
.profile-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
}
.profile-hero .container { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: center; }
.profile-photo {
  width: 260px; height: 260px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  flex-shrink: 0;
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.profile-info {}
.profile-info .eyebrow { color: var(--gold); }
.profile-info h1 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.profile-role { font-size: 1rem; color: var(--gold-light); font-weight: 500; margin-bottom: 16px; }
.profile-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.profile-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 5px 14px;
  font-size: 12px; color: rgba(255,255,255,.85);
}
.profile-links { display: flex; gap: 10px; flex-wrap: wrap; }
.profile-links a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius);
  transition: all var(--transition);
}
.profile-links .pl-primary { background: var(--gold); color: var(--navy); }
.profile-links .pl-primary:hover { background: var(--gold-light); }
.profile-links .pl-ghost { border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85); }
.profile-links .pl-ghost:hover { background: rgba(255,255,255,.1); }

.profile-body { padding: 60px 0; }
.profile-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: flex-start; }
.profile-main h2 { color: var(--navy); font-size: 1.4rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold-pale); }
.profile-main p { font-size: 14.5px; line-height: 1.8; margin-bottom: 16px; }
.profile-skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.skill-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--grey-700);
  background: var(--grey-50); border-radius: 8px; padding: 10px 12px;
}
.skill-item::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.profile-sidebar {}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 12px; padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 13px; font-weight: 600; color: var(--navy);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-pale);
}
.sidebar-cert { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--grey-100); }
.sidebar-cert:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sidebar-cert strong { display: block; font-size: 13px; color: var(--navy); margin-bottom: 3px; }
.sidebar-cert span { font-size: 12px; color: var(--grey-500); }
.sidebar-cert a { font-size: 11px; color: var(--gold); display: inline-block; margin-top: 3px; }

.edu-item { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--grey-100); }
.edu-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.edu-item strong { display: block; font-size: 13px; color: var(--navy); margin-bottom: 2px; }
.edu-item em { font-size: 12px; color: var(--grey-700); font-style: normal; display: block; }
.edu-item span { font-size: 11px; color: var(--grey-500); }

.result-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--grey-100);
  font-size: 13.5px; color: var(--grey-700);
}
.result-item:last-child { border-bottom: none; }
.result-item .ri-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

@media (max-width: 900px) {
  .profile-hero .container { grid-template-columns: 1fr; text-align: center; }
  .profile-photo { width: 200px; height: 200px; margin: 0 auto; }
  .profile-badges, .profile-links { justify-content: center; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-skills-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   LOGO — FIXED
══════════════════════════════════ */

/* Navbar logo container */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

/* The circular logo badge in nav */
.logo-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 2px;
}
.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

/* Navbar logo text */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.logo-text em {
  font-style: normal;
  font-size: 10.5px;
  color: var(--grey-500);
  letter-spacing: .03em;
  white-space: nowrap;
}

/* Nav dropdown richer layout */
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
  transition: background var(--transition);
  border-radius: 0;
  background: transparent;
}
.dropdown-menu a > div:last-child strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}
.dropdown-menu a > div:last-child span {
  display: block;
  font-size: 11.5px;
  color: var(--grey-500);
  margin-top: 1px;
}
.dropdown-menu a:hover { background: var(--grey-50); }
.dropdown-menu a:last-child { border-bottom: none; }
.dm-icon {
  width: 32px;
  height: 32px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* Footer logo */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 3px;
}
.footer-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}
.footer-logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.footer-logo-text span {
  font-size: 11px;
  color: rgba(255,255,255,.5);
}

/* ── Nav dropdown arrow fix ── */
.nav-dropdown > a {
  cursor: pointer;
}
/* Override old ::after arrow since we put ▾ inline */
.nav-dropdown > a::after { content: none; }

/* ══════════════════════════════════
   TEAM CARDS — UNIFORM PHOTO FIX
══════════════════════════════════ */
.team-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--navy); /* fallback colour matches photo bg */
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
  filter: brightness(1.02) contrast(1.01);
}
.team-card:hover .team-card-img img {
  transform: scale(1.04);
}

/* Profile page photo */
.profile-photo {
  width: 260px;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  background: var(--navy);
  flex-shrink: 0;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(1.02) contrast(1.01);
}

/* wa-float fix */
.wa-float {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
}

/* ═══════════════════════════════════════════════
   FINAL LOGO & TEAM PHOTO OVERRIDES  (v3)
   These rules override all previous logo rules.
   ─────────────────────────────────────────────── */

/* ── Navbar logo ── */
.navbar-logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.logo-badge {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 2px solid var(--gold) !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
}
.logo-badge img {
  width: 46px !important;
  height: 46px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
}

.logo-text {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.25 !important;
}
.logo-text strong {
  font-family: var(--font-display) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  white-space: nowrap !important;
}
.logo-text em {
  font-style: normal !important;
  font-size: 10.5px !important;
  color: var(--grey-500) !important;
  white-space: nowrap !important;
}

/* ── Footer logo ── */
.footer-logo-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 18px !important;
}
.footer-logo-img {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid var(--gold) !important;
  display: block !important;
  flex-shrink: 0 !important;
  background: transparent !important;
}
.footer-logo-text strong {
  display: block !important;
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--white) !important;
}
.footer-logo-text span {
  font-size: 11px !important;
  color: rgba(255,255,255,.5) !important;
}

/* Erase any old .logo-img rules */
.logo-img { display: none !important; }

/* ── Nav dropdown ── */
.nav-dropdown > a::after { content: none !important; }
.dropdown-menu { min-width: 280px !important; }
.dropdown-menu a {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 13px 18px !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.dropdown-menu a > div:not(.dm-icon) strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}
.dropdown-menu a > div:not(.dm-icon) span {
  display: block;
  font-size: 11.5px;
  color: var(--grey-500);
  margin-top: 1px;
}
.dm-icon {
  width: 32px !important;
  height: 32px !important;
  background: var(--gold-pale) !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  flex-shrink: 0 !important;
}

/* ── Team card photos  (4:5 ratio, uniform grey bg) ── */
.team-card-img {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  overflow: hidden !important;
  background: #e8eaed !important;   /* matches photo bg colour */
  display: block !important;
}
.team-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}
.team-card:hover .team-card-img img { transform: scale(1.04) !important; }

/* ── Profile page photo ── */
.profile-photo {
  width: 240px !important;
  height: 300px !important;         /* 4:5 ratio */
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 4px solid var(--gold) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.25) !important;
  background: #e8eaed !important;
  flex-shrink: 0 !important;
}
.profile-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}

/* ── WhatsApp float ── */
.wa-float {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ═══════════════════════════════════════════════
   LOGO FIX v4 — White bg so navy logo is visible
   ─────────────────────────────────────────────── */

/* Navbar badge: no background colour needed, PNG has white circle built in */
.logo-badge {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 2px solid var(--gold) !important;
  background: #ffffff !important;    /* fallback while PNG loads */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  box-shadow: 0 1px 4px rgba(0,0,0,.15) !important;
}
.logo-badge img {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain !important;    /* contain not cover — show full circle */
  border-radius: 50% !important;
  display: block !important;
}

/* Footer badge */
.footer-logo-img {
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  object-fit: contain !important;
  border: 2px solid var(--gold) !important;
  background: #ffffff !important;
  display: block !important;
  flex-shrink: 0 !important;
}

/* Team cards — 4:5 ratio, light grey bg matching photo */
.team-card-img {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  overflow: hidden !important;
  background: #e8eaed !important;
  display: block !important;
}
.team-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}
.team-card:hover .team-card-img img { transform: scale(1.04) !important; }

/* Profile photo */
.profile-photo {
  width: 240px !important;
  height: 300px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 4px solid var(--gold) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,.22) !important;
  background: #e8eaed !important;
  flex-shrink: 0 !important;
}
.profile-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}
