/* ===== Fire Forex – Matching fireforex.in design ===== */

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700;800;900&family=Rajdhani:wght@400;700&display=swap");

:root {
  --ff-red: #e63a27;
  --ff-cyan: #14b8a6;
  --ff-green: #22c55e;
  --ff-dark: #1c1c27;
  --ff-purple: #5636d1;
  --ff-pink: #ff0f4f;
  --ff-navy: #32373c;
  --ff-text: #68686f;
  --ff-light: #f7f8fa;
  --ff-border: #e8e8ef;
  --ff-white: #ffffff;
  --ff-radius: 10px;
  --ff-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --ff-font: "Inter", system-ui, sans-serif;
  --ff-heading: "Montserrat", sans-serif;
}

/* ── Base ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: var(--ff-font);
  color: var(--ff-dark);
  background: #fff;
  line-height: 1.6;
  font-size: 15px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  color: var(--ff-dark);
}
a {
  color: var(--ff-red);
  text-decoration: none;
}
a:hover {
  color: #c02d1c;
}
img {
  max-width: 100%;
  height: auto;
}
.accent {
  color: var(--ff-cyan);
}
.text-red {
  color: var(--ff-red) !important;
}
.text-cyan {
  color: var(--ff-cyan) !important;
}
.bg-light-ff {
  background: var(--ff-light);
}

/* ── Top Bar ─────────────────────────────────────── */
.topbar {
  background: var(--ff-dark);
  padding: 7px 0;
  font-size: 0.82rem;
}
.topbar-link {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
  font-size: 0.82rem;
}
.topbar-link:hover {
  color: var(--ff-cyan);
}
.topbar-link i {
  font-size: 0.9rem;
}
.topbar-social {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: color 0.2s;
  line-height: 1;
}
.topbar-social:hover {
  color: var(--ff-cyan);
}

/* ── Navbar ──────────────────────────────────────── */
.ff-navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 0;
  border-bottom: 1px solid var(--ff-border);
}
.ff-navbar .navbar-brand {
  padding: 12px 0;
}
.ff-navbar .nav-link {
  color: var(--ff-dark) !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 24px 14px !important;
  position: relative;
  transition: color 0.2s;
  font-family: var(--ff-heading);
}
.ff-navbar .nav-link:hover,
.ff-navbar .nav-link.active {
  color: var(--ff-cyan) !important;
}
.ff-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--ff-cyan);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.ff-navbar .nav-link:hover::after {
  transform: scaleX(1);
}

/* Dropdown */
.ff-dropdown {
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 8px;
  min-width: 220px;
  border-top: 2px solid var(--ff-cyan);
}
.ff-dropdown .dropdown-item {
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--ff-dark);
  font-weight: 500;
  transition: all 0.15s;
}
.ff-dropdown .dropdown-item:hover {
  background: #f0faff;
  color: var(--ff-cyan);
}
.ff-dropdown .dropdown-item i,
.ff-dropdown .dropdown-item img {
  margin-right: 8px;
}

/* Flag images in nav */
.nav-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  vertical-align: middle;
}

/* Request a Call button */
.btn-request-call {
  background: linear-gradient(to right, #33b56d, #0eade4);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-family: var(--ff-heading);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-request-call:hover {
  background: #14b8a6;
  color: #fff;
  transform: translateY(-1px);
}

/* Navbar search icon */
.navbar-search-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--ff-border);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  color: var(--ff-dark);
  font-size: 0.95rem;
  transition: all 0.2s;
}
.navbar-search-btn:hover {
  border-color: var(--ff-cyan);
  color: var(--ff-cyan);
}

/* Buttons */
.btn-ff-primary {
  background: var(--ff-red);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  padding: 10px 22px;
  font-family: var(--ff-heading);
  transition: all 0.2s;
}
.btn-ff-primary:hover {
  background: #c02d1c;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(230, 58, 39, 0.35);
}
.btn-ff-cyan {
  background: var(--ff-cyan);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  padding: 10px 22px;
  font-family: var(--ff-heading);
  transition: all 0.2s;
}
.btn-ff-cyan:hover {
  background: #0b9acc;
  color: #fff;
}
.btn-ff-outline-red {
  border: 2px solid var(--ff-red);
  color: var(--ff-red);
  font-weight: 700;
  border-radius: 6px;
  padding: 9px 22px;
  background: transparent;
  font-family: var(--ff-heading);
  transition: all 0.2s;
}
.btn-ff-outline-red:hover {
  background: var(--ff-red);
  color: #fff;
}
.btn-ff-outline-cyan {
  border: 2px solid var(--ff-cyan);
  color: var(--ff-cyan);
  font-weight: 700;
  border-radius: 6px;
  padding: 9px 22px;
  background: transparent;
  font-family: var(--ff-heading);
  transition: all 0.2s;
}
.btn-ff-outline-cyan:hover {
  background: var(--ff-cyan);
  color: #fff;
}
.btn-ff-dark {
  background: var(--ff-dark);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  padding: 10px 22px;
  font-family: var(--ff-heading);
  transition: all 0.2s;
}
.btn-ff-dark:hover {
  background: #111;
  color: #fff;
}

/* ── Hero ────────────────────────────────────────── */
.ff-hero {
  background: #fff;
  padding: 60px 0 60px;
  position: relative;
}
.ff-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--ff-dark);
}
.ff-hero h1 .accent-green {
  color: var(--ff-green);
}
.hero-sub {
  color: var(--ff-text);
  font-size: 1rem;
  max-width: 520px;
  margin-top: 12px;
}

/* Pill badges row */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #d1d5db;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ff-dark);
  font-family: var(--ff-heading);
  background: #fff;
}

/* Hero bullet list */
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ff-dark);
  font-weight: 500;
  margin-bottom: 10px;
}
.hero-bullets .bullet-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-bullets .bullet-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ff-green);
}

/* Hero trust badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.trust-badge {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ff-dark);
  background: #fff;
  font-family: var(--ff-heading);
}

/* Quote Form Box – light version (hero) */
.hero-form-box {
  background: #f0f4f7;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.hero-form-box h5 {
  color: var(--ff-dark);
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 800;
}
.hero-form-box .form-control,
.hero-form-box .form-select {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--ff-dark);
}
.hero-form-box .form-control:focus,
.hero-form-box .form-select:focus {
  border-color: var(--ff-green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
.hero-form-box .form-control::placeholder {
  color: #9ca3af;
}
.btn-hero-primary {
  background: var(--ff-green);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  width: 100%;
  font-family: var(--ff-heading);
  transition: all 0.2s;
}
.btn-hero-primary:hover {
  background: #14b8a6;
  color: #fff;
}
.btn-hero-whatsapp {
  background: #fff;
  color: var(--ff-dark);
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 24px;
  width: 100%;
  font-family: var(--ff-heading);
  transition: all 0.2s;
  text-align: center;
  display: block;
}
.btn-hero-whatsapp:hover {
  border-color: #25d366;
  color: #25d366;
}
.form-terms {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  margin-top: 10px;
}
.form-terms a {
  color: var(--ff-green);
}

/* Quote Form Box – dark version (sidebar/inner pages) */
.quote-box {
  background: var(--ff-dark);
  border-radius: 12px;
  padding: 28px 24px;
}
.quote-box .form-control,
.quote-box .form-select {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.9rem;
}
.quote-box .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.quote-box .form-select option {
  background: #1c1c27;
  color: #fff;
}
.quote-box .form-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.quote-box h5 {
  color: #fff;
  font-family: var(--ff-heading);
}

/* ── Section Helpers ─────────────────────────────── */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--ff-dark);
  font-family: var(--ff-heading);
}
.section-title .accent {
  color: var(--ff-cyan);
}
.section-title .red {
  color: var(--ff-red);
}
.section-tag {
  color: var(--ff-cyan);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--ff-heading);
}
.section-sub {
  color: var(--ff-text);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
}
.divider-red {
  width: 48px;
  height: 3px;
  background: var(--ff-red);
  border-radius: 2px;
}
.divider-cyan {
  width: 48px;
  height: 3px;
  background: var(--ff-cyan);
  border-radius: 2px;
}

/* ── Service Cards ───────────────────────────────── */
.service-card {
  background: #fff;
  border-radius: var(--ff-radius);
  border: 1px solid var(--ff-border);
  padding: 28px 22px;
  transition: all 0.3s;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(14, 173, 228, 0.15);
  border-color: var(--ff-cyan);
}
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.service-card h5 {
  font-weight: 700;
  font-family: var(--ff-heading);
  font-size: 1rem;
}
.service-card p {
  color: var(--ff-text);
  font-size: 0.88rem;
}
.service-card .learn-more {
  color: var(--ff-cyan);
  font-weight: 700;
  font-size: 0.85rem;
}
.service-card .learn-more:hover {
  color: var(--ff-red);
}

/* ── Why Choose ──────────────────────────────────── */
.why-card {
  background: #fff;
  border-radius: var(--ff-radius);
  padding: 18px 16px;
  border: 1px solid var(--ff-border);
  transition: all 0.25s;
}
.why-card:hover {
  box-shadow: var(--ff-shadow);
  border-color: var(--ff-cyan);
}
.why-icon {
  width: 44px;
  height: 44px;
  background: #f0faff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ff-cyan);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-icon.red {
  background: #fff3f0;
  color: var(--ff-red);
}
.why-icon.green {
  background: #f0fff4;
  color: #14b8a6;
}

/* ── Rate Table ──────────────────────────────────── */
.rate-table {
  border-radius: var(--ff-radius);
  overflow: hidden;
  box-shadow: var(--ff-shadow);
}
.rate-table thead {
  background: var(--ff-dark);
  color: #fff;
}
.rate-table thead th {
  font-family: var(--ff-heading);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.rate-table tbody tr:hover {
  background: #f0faff;
}
.rate-badge-buy {
  background: #d4f5e2;
  color: #166534;
  border-radius: 5px;
  padding: 3px 10px;
  font-weight: 700;
  font-size: 0.86rem;
}
.rate-badge-sell {
  background: #fee2e2;
  color: #991b1b;
  border-radius: 5px;
  padding: 3px 10px;
  font-weight: 700;
  font-size: 0.86rem;
}
.currency-flag {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* ── Blog ────────────────────────────────────────── */
.blog-card {
  border: 1px solid var(--ff-border);
  border-radius: var(--ff-radius);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ff-shadow);
  border-color: var(--ff-cyan);
}
.blog-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.blog-placeholder {
  height: 210px;
  background: linear-gradient(135deg, var(--ff-dark), #0eade4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.25);
}
.blog-cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ff-cyan);
  font-family: var(--ff-heading);
}
.blog-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ff-dark);
  line-height: 1.45;
}

/* ── Blog List Cards ─────────────────────────────── */
.blog-list-card {
  background: #fff;
  border-radius: var(--ff-radius);
  border: 1px solid var(--ff-border);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-list-card:hover {
  box-shadow: var(--ff-shadow);
  border-color: var(--ff-cyan);
}
.blog-list-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.blog-list-body {
  padding: 24px;
}
.blog-list-card h4 {
  font-size: 1.1rem;
}
.post-title-link:hover {
  color: var(--ff-cyan) !important;
}

/* ── Sidebar ─────────────────────────────────────── */
.sidebar-widget {
  background: #fff;
  border-radius: var(--ff-radius);
  border: 1px solid var(--ff-border);
  padding: 22px;
}
.sidebar-heading {
  font-weight: 800;
  font-family: var(--ff-heading);
  color: var(--ff-dark);
  font-size: 0.95rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ff-cyan);
}
.sidebar-recent {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-recent li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ff-border);
}
.sidebar-recent li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.sidebar-recent a {
  color: var(--ff-dark);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.sidebar-recent a:hover {
  color: var(--ff-cyan);
}
.sidebar-thumb {
  width: 56px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.sidebar-cats {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-cats li {
  margin-bottom: 8px;
}
.sidebar-cats a {
  color: var(--ff-text);
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding: 5px 0;
  border-bottom: 1px solid var(--ff-border);
}
.sidebar-cats a:hover,
.sidebar-cats a.active {
  color: var(--ff-cyan);
}

/* ── Blog Post Content ───────────────────────────── */
.post-content {
  line-height: 1.85;
  font-size: 1rem;
}
.post-content h2,
.post-content h3 {
  font-family: var(--ff-heading);
  font-weight: 800;
  color: var(--ff-dark);
  margin-top: 2rem;
}
.post-content p {
  margin-bottom: 1.25rem;
}
.post-content ul,
.post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.post-content li {
  margin-bottom: 0.4rem;
}

/* Share buttons */
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.share-btn.facebook {
  background: #1877f2;
  color: #fff;
}
.share-btn.twitter {
  background: #1da1f2;
  color: #fff;
}
.share-btn.whatsapp {
  background: #25d366;
  color: #fff;
}
.share-btn:hover {
  opacity: 0.88;
  color: #fff;
}

/* Prev/Next nav */
.post-nav-card {
  display: block;
  padding: 14px;
  border: 1px solid var(--ff-border);
  border-radius: var(--ff-radius);
  text-decoration: none;
  transition: all 0.2s;
}
.post-nav-card:hover {
  border-color: var(--ff-cyan);
}
.post-nav-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ff-cyan);
  font-family: var(--ff-heading);
  margin-bottom: 4px;
}
.post-nav-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ff-dark);
}

/* ── FAQ ─────────────────────────────────────────── */
.faq-accordion .accordion-item {
  border: 1px solid var(--ff-border);
  border-radius: var(--ff-radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--ff-dark);
  background: #fff;
  font-family: var(--ff-heading);
  font-size: 0.95rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: #f0faff;
  color: var(--ff-cyan);
  box-shadow: none;
}
.faq-accordion .accordion-body {
  color: var(--ff-text);
  font-size: 0.92rem;
}

/* ── Branch Cards ────────────────────────────────── */
.branch-card {
  background: #fff;
  border-radius: var(--ff-radius);
  border: 1px solid var(--ff-border);
  padding: 24px;
  transition: all 0.3s;
}
.branch-card:hover {
  box-shadow: var(--ff-shadow);
  border-color: var(--ff-cyan);
}
.branch-city {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ff-cyan);
  font-family: var(--ff-heading);
}

/* ── Visa Cards ──────────────────────────────────── */
.visa-card {
  background: #fff;
  border-radius: var(--ff-radius);
  border: 1px solid var(--ff-border);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s;
}
.visa-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ff-shadow);
  border-color: var(--ff-cyan);
}
.visa-card .country-flag {
  width: 56px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.country-flag,
.visa-inline-flag {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  vertical-align: middle;
}
.visa-hero-flag {
  width: 88px;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}
.visa-card-flag {
  width: 72px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.visa-card h5 {
  font-weight: 700;
  color: var(--ff-dark);
  margin-top: 12px;
  font-size: 0.95rem;
  font-family: var(--ff-heading);
}

/* ── Testimonials ────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--ff-radius);
  border: 1px solid var(--ff-border);
  padding: 24px;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.testimonial-card p {
  color: var(--ff-text);
  font-size: 0.92rem;
  font-style: italic;
}
.testimonial-card .author {
  font-weight: 700;
  color: var(--ff-dark);
  font-size: 0.88rem;
  font-family: var(--ff-heading);
}
.testimonial-card .role {
  font-size: 0.78rem;
  color: var(--ff-text);
}

/* ── Page Hero (inner pages) ─────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--ff-dark) 0%, #0d1520 100%);
  color: #fff;
  padding: 56px 0 48px;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
}
.page-hero .breadcrumb-item a,
.page-hero .breadcrumb-item {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}
.page-hero .breadcrumb-item.active {
  color: var(--ff-cyan);
}
.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.35);
}

/* ── Contact ─────────────────────────────────────── */
.contact-box {
  background: #fff;
  border-radius: var(--ff-radius);
  box-shadow: var(--ff-shadow);
  padding: 32px 28px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-icon {
  width: 42px;
  height: 42px;
  background: #f0faff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ff-cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── CTA Section ─────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--ff-red) 0%, #c02d1c 100%);
  color: #fff;
  padding: 64px 0;
}
.cta-section h2 {
  color: #fff;
  font-family: var(--ff-heading);
}

/* ── Landing Page ────────────────────────────────── */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-badge {
  background: #f0faff;
  color: var(--ff-cyan);
  border: 1px solid rgba(14, 173, 228, 0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--ff-heading);
}

/* ── Footer ──────────────────────────────────────── */
.ff-footer {
  background: var(--ff-dark);
  color: rgba(255, 255, 255, 0.75);
}
.ff-footer {
  background: #1b1d28;
}
.footer-heading {
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  font-family: var(--ff-heading);
  text-transform: uppercase;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--ff-cyan);
}
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  transition: all 0.2s;
}
.social-icon:hover {
  background: var(--ff-cyan);
  color: #fff;
}
.ff-footer {
  background: var(--ff-dark);
  color: rgba(255, 255, 255, 0.75);
}
.footer-heading {
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  font-family: var(--ff-heading);
  text-transform: uppercase;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color 0.2s;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer-links a:hover {
  color: var(--ff-cyan);
}
.footer-link-label {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer-sublinks {
  list-style: none;
  margin: 6px 0 2px;
  padding: 0 0 0 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-sublinks li {
  margin-bottom: 6px;
}
.footer-sublinks a,
.footer-sublinks .footer-link-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}
.footer-sublinks a:hover {
  color: var(--ff-cyan);
}

/* Footer collapsible columns (mobile only) */
@media (max-width: 767px) {
  .footer-col-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    user-select: none;
  }
  .footer-chevron {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }
  .footer-col.open .footer-chevron {
    transform: rotate(180deg);
  }
  .footer-col-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .footer-col.open .footer-col-body {
    max-height: 600px;
  }
  .footer-col.open .footer-col-toggle {
    border-bottom-color: transparent;
    margin-bottom: 10px;
  }
}

@media (min-width: 768px) {
  .footer-chevron { display: none; }
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  transition: all 0.2s;
}
.social-icon:hover {
  background: var(--ff-cyan);
  color: #fff;
}

/* ── WhatsApp Float ──────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  color: #fff;
}

/* ── SEO Link Sections ───────────────────────────── */
.seo-links-section {
  background: #f7f9fc;
  padding: 34px 0;
}
.seo-links-shell {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.seo-links-group h2 {
  color: var(--ff-dark);
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 12px;
}
.seo-links-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.seo-links-group a {
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  color: var(--ff-dark);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
}
.seo-links-group a:hover {
  border-color: var(--ff-cyan);
  color: var(--ff-cyan);
}

/* ── RBI Badge ───────────────────────────────────── */
.rbi-badge {
  height: 40px;
  object-fit: contain;
}

/* ── Stats Section ───────────────────────────────── */
.stats-section {
  background: var(--ff-cyan);
  padding: 36px 0;
}
.stat-item .num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--ff-heading);
}
.stat-item .lbl {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ── Misc Utilities ──────────────────────────────── */
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}
.text-muted {
  color: var(--ff-text) !important;
}
.badge-ff {
  background: var(--ff-red);
  color: #fff;
  border-radius: 5px;
  font-size: 0.75rem;
  padding: 3px 9px;
  font-weight: 700;
}
.badge-cyan {
  background: var(--ff-cyan);
  color: #fff;
  border-radius: 5px;
  font-size: 0.75rem;
  padding: 3px 9px;
  font-weight: 700;
}
.rounded-ff {
  border-radius: var(--ff-radius);
}
.shadow-ff {
  box-shadow: var(--ff-shadow);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 991px) {
  .ff-navbar .nav-link {
    padding: 12px 0 !important;
  }
  .ff-navbar .nav-link::after {
    display: none;
  }
  .ff-hero::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .ff-hero {
    padding: 48px 0 40px;
  }
  .hero-stats {
    gap: 18px;
  }
  .hero-stat .num {
    font-size: 1.4rem;
  }
  .rate-ticker-inner {
    animation-duration: 22s;
  }
  .stats-section .stat-item .num {
    font-size: 1.5rem;
  }
}

/* ===== Header + Homepage Redesign Overrides ===== */

.topbar {
  background: #1a1b26;
  padding: 0;
}

.ff-topbar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ff-topbar-contact,
.ff-topbar-socials {
  display: flex;
  align-items: center;
}

.ff-topbar-contact {
  gap: 34px;
}

.ff-topbar-socials {
  gap: 18px;
}

.topbar-link {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.topbar-link i {
  font-size: 0.92rem;
}

.topbar-link:hover,
.topbar-social:hover {
  color: var(--ff-cyan);
}

.topbar-social {
  color: rgba(255, 255, 255, 0.94);
  line-height: 1;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.topbar-social:hover {
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: transparent;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.site-header .topbar,
.site-header .ff-navbar {
  position: relative;
  z-index: 1;
}

.ff-navbar {
  background: #fff;
  padding: 0;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: none;
  position: relative;
}

.head-icon {
  position: absolute;
  top: -88%;
  left: -13px;
}

.ff-navbar-shell {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}

© > .navbar-collapse {
  flex: 1 1 0 !important;
  min-width: 0;
  padding: 0 28px 0 20px;
}

.ff-brand-panel {
  position: relative;
  flex: 0 0 min(280px, 22vw);
  min-height: 72px;
  margin: 0;
  padding: 10px 48px 10px 20px;
  display: flex;
  align-items: center;
  background: #fff;
  clip-path: polygon(
    0 0,
    calc(100% - 54px) 0,
    100% 50%,
    calc(100% - 54px) 100%,
    0 100%
  );
  box-shadow: inset -1px 0 0 rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.ff-brand-accent {
  display: none;
}
.ff-brand-panel::before {
  content: "";
  position: absolute;
  top: -8%;
  right: 44px;
  transform: skewX(-35deg);
  top: -4%;
  right: 38px;
  transform: skewX(36deg);
  width: 12px;
  height: 48px;
  background: red;
}

.ff-brand-panel::after {
  content: "";
  position: absolute;
  top: -8%;
  right: 44px;
  transform: skewX(-35deg);
  top: -4%;
  right: 43px;
  transform: skewX(-35deg);
  width: 11px;
  height: 159px;
  background: red;
}

.ff-brand-logo-wrap {
  position: relative;
  z-index: 1;
  max-width: 160px;
  display: flex;
  align-items: center;
}

.ff-brand-logo {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

.ff-navbar-toggler {
  margin: 0 18px 0 auto;
  width: 46px;
  min-height: 72px;
  border: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
@media (max-width: 1199.98px) {
  .site-header {
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  }

  .ff-navbar-toggler {
    display: flex;
  }
  .ff-navbar-shell {
    flex-wrap: wrap;
  }
  .ff-navbar-shell > .navbar-collapse {
    flex: 1 1 100% !important;
    padding: 0 16px 16px;
  }
}

.ff-navbar-toggler:focus {
  box-shadow: none;
}

.ff-navbar-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: #16181d;
  border-radius: 999px;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.ff-navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translateY(0px) rotate(0deg);
}

.ff-navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 1;
}

.ff-navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translateY(-0px) rotate(-0deg);
}

.ff-navbar-collapse {
  flex: 1 1 1;
  min-width: 0;
}

.ff-navbar-collapse-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 28px 0 34px;
}

.ff-nav-list {
  gap: 4px;
}

.ff-navbar .nav-link {
  color: #151823 !important;
  font-family: var(--ff-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 24px 14px !important;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.ff-navbar .nav-link:hover,
.ff-navbar .nav-link.active {
  color: var(--ff-cyan) !important;
}

.ff-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--ff-cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.ff-navbar .nav-link:hover::after,
.ff-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.ff-navbar .dropdown-toggle::before {
  display: none;
}

.ff-navbar .dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
}

.ff-dropdown {
  border: 1px solid rgba(14, 173, 228, 0.12);
  border-top: 3px solid var(--ff-cyan);
  border-radius: 16px;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
  padding: 10px;
  min-width: 248px;
  margin-top: -6px;
}

.ff-dropdown .dropdown-item {
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ff-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ff-dropdown .dropdown-item:hover,
.ff-dropdown .dropdown-item.active {
  background: #effbff;
  color: var(--ff-cyan);
}

.ff-navbar-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.ff-search-divider {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding-left: 28px;
  border-left: 1px solid rgba(21, 24, 35, 0.12);
}

.navbar-search-btn {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--ff-dark);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.navbar-search-btn:hover {
  background: rgba(14, 173, 228, 0.08);
  color: var(--ff-cyan);
  transform: translateY(-1px);
}

/* btn-request-call defined above — this block intentionally removed (duplicate) */

.ff-navbar-mobile-actions {
  display: none;
}

.home-page {
  background: #fff;
}

.home-section {
  padding: 72px 0;
}

.home-section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
}

.home-section-heading-left {
  max-width: none;
  margin: 0 0 20px;
}

.home-section-kicker,
.home-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ff-cyan);
}

.home-section-heading h2 {
  margin-top: 14px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home-section-heading h2 span {
  color: var(--ff-cyan);
}

.home-section-heading p {
  margin: 0;
  color: #6a7384;
  font-size: 1rem;
}

.home-hero {
  padding: 42px 0 58px;
}

.home-rbi-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.home-rbi-badge {
  height: 54px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
}

/* RBI Seal block */
.home-rbi-seal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 16px 10px 12px;
  backdrop-filter: blur(6px);
}
.home-rbi-logo-svg {
  height: 48px;
  width: auto;
  /*filter: brightness(0) invert(1);*/
  opacity: .9;
}
.home-rbi-seal-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.home-rbi-seal-label {
  font-size: .62rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 600;
}
.home-rbi-seal-name {
  font-size: .82rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--ff-heading);
  line-height: 1.2;
}
.home-rbi-seal-sub {
  font-size: .67rem;
  color: var(--ff-cyan);
  font-weight: 700;
  letter-spacing: .5px;
}

.home-rbi-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  background: #14b8a63d;
  color: #14b8a6;
  font-size: 0.78rem;
  font-weight: 700;
}

.home-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

.home-chip {
  padding: 7px 12px;
  border-radius: 999px;
  background: #f4f8fb;
  border: 1px solid #dbe5ee;
  font-size: 0.78rem;
  font-weight: 700;
  color: #223044;
}

.home-hero-title {
  margin: 0 0 14px;
  font-size: clamp(4.5rem, 4.8vw, 4.35rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.home-hero-title span {
  color: #14b8a6;
  font-weight: 700;
}

.home-hero-copy {
  max-width: 560px;
  margin: 0 0 22px;
  color: #6a7384;
  font-size: 1.02rem;
}

.home-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 11px;
}

.home-feature-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #243243;
  font-weight: 600;
}

.home-feature-list i {
  color: #1cb25a;
  font-size: 1.05rem;
}

.home-metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-metric-card {
  background: #fff;
  border: 1px solid #e2eaf1;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.04);
}

.home-metric-card strong,
.home-metric-card span {
  display: block;
}

.home-metric-card strong {
  font-size: 0.86rem;
  font-weight: 800;
  color: #162033;
}

.home-metric-card span {
  margin-top: 5px;
  font-size: 0.74rem;
  color: #748092;
}

.home-rate-card,
.home-split-form-card {
  background: linear-gradient(180deg, #edf8ff 0%, #f8fbff 100%);
  border: 1px solid #dbeaf5;
  border-radius: 22px;
  padding: 24px 22px 20px;
  box-shadow: 0 26px 54px rgba(17, 24, 39, 0.08);
}

.home-rate-card .form-control,
.home-rate-card .form-select,
.home-split-form-card .form-control,
.home-split-form-card .form-select,
.home-cta-form .form-control,
.home-cta-form .form-select {
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid #d6e4ee;
  background: #fff;
  color: #162033;
  box-shadow: none;
}

.home-rate-card .form-control:focus,
.home-rate-card .form-select:focus,
.home-split-form-card .form-control:focus,
.home-split-form-card .form-select:focus,
.home-cta-form .form-control:focus,
.home-cta-form .form-select:focus {
  border-color: #0eade4;
  box-shadow: 0 0 0 3px rgba(14, 173, 228, 0.12);
}

.home-btn-primary,
.home-btn-dark,
.home-btn-secondary {
  border: none;
  border-radius: 12px;
  font-family: var(--ff-heading);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  text-decoration: none;
}

.home-btn-primary {
  background: linear-gradient(to right, #33b56d, #0eade4);
  color: #fff;
  box-shadow: 0 16px 26px rgba(28, 178, 90, 0.22);
}

.home-btn-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #16a650 0%, #149547 100%);
}

.home-btn-dark {
  background: #111723;
  color: #fff;
}

.home-btn-dark:hover {
  color: #fff;
  background: #060a12;
}

.home-btn-secondary {
  width: 100%;
  background: #fff;
  color: #169b4b;
  border: 1px solid #d7e7db;
}

.home-btn-secondary:hover {
  color: #169b4b;
  border-color: #1cb25a;
}

.home-btn-inline {
  padding: 0 20px;
}

.home-form-note {
  margin: 14px 0 0;
  color: #6f7b8f;
  font-size: 0.8rem;
}

.home-why-section {
  padding-top: 40px;
}

.home-why-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e3ebf2;
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.home-why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ebfff2 0%, #eef8ff 100%);
  color: #17ab52;
  font-size: 1.25rem;
}

.home-why-icon img {
  background: linear-gradient(90deg, rgb(20 184 166), #22c55e) !important;
  width: 55px;
  height: 55px;
  padding: 12px;
  border-radius: 50%;
}

.home-why-card h3,
.home-record-card h3,
.home-travel-card h3,
.home-provide-card h3,
.home-showcase-copy h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 800;
}

.home-why-card p,
.home-record-card p,
.home-travel-card p,
.home-provide-card p,
.home-showcase-copy p {
  margin: 0;
  color: #697486;
  font-size: 0.92rem;
}

.home-record-card p {
  color: #000;
}

.home-promo {
  background: linear-gradient(180deg, #f7fcfd 0%, #ffffff 100%);
}

.home-promo-media {
  padding: 18px;
  background: #e7f7fa;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(17, 24, 39, 0.08);
}

.home-promo-media img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.home-copy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.home-copy-list li {
  position: relative;
  padding-left: 24px;
  color: #2a3647;
  font-weight: 600;
}

.home-copy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1cb25a;
}

.home-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ff-dark);
  font-weight: 800;
}

.home-text-link:hover {
  color: var(--ff-cyan);
}

.home-records {
  padding-top: 56px;
}

.home-record-card {
  height: 100%;
  border-radius: 20px;
  padding: 26px 22px 70px 22px;
  background: #14b8a6 !important;
  color: #08131d;
  box-shadow: 0 24px 40px rgba(22, 178, 120, 0.18);
}

.home-record-number {
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.home-showcase {
  padding-top: 60px;
}

.home-showcase-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e1e8f0;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.06);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.home-showcase-art {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, #edf8ff 0%, #f4f9ff 100%);
}

.home-showcase-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-showcase-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
  color: #172031;
}

.home-showcase-chip-top {
  top: 18px;
  left: 18px;
}

.home-showcase-chip-bottom {
  right: 18px;
  bottom: 18px;
}

.home-travel {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.home-travel-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e4ebf2;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.05);
}

.home-travel-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #effaff;
  color: var(--ff-cyan);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.home-travel-media {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
}

.home-travel-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.home-split-quote {
  background: linear-gradient(180deg, #f8fffb 0%, #ffffff 100%);
}

.home-inline-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-inline-stats span {
  padding: 8px 14px;
  border-radius: 999px;
  background: #eff8ff;
  color: #1d2b3e;
  font-size: 0.8rem;
  font-weight: 700;
}

.home-provide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.home-provide-column {
  display: grid;
  gap: 18px;
}

.home-provide-card {
  background: #fff;
  border: 1px solid #e1eaf3;
  border-left: 4px solid #16c3ef;
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.05);
}

.home-provide-card-alt {
  border-left-color: #ffb649;
}

.home-provide-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: #7f8796;
}

.home-provide-hub {
  display: flex;
  justify-content: center;
}

.home-provide-ring {
  width: 260px;
  height: 260px;
  padding: 18px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.96) 42%,
    rgba(237, 249, 255, 0.95) 42%,
    rgba(237, 249, 255, 0.95) 70%,
    rgba(14, 173, 228, 0.12) 70%,
    rgba(14, 173, 228, 0.12) 100%
  );
  box-shadow: inset 0 0 0 1px rgba(14, 173, 228, 0.1);
}

.home-provide-core {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 38px rgba(17, 24, 39, 0.08);
}

.home-provide-core strong {
  font-size: 1.45rem;
  font-weight: 900;
}

.home-provide-core span {
  margin-top: 8px;
  font-size: 0.82rem;
  color: #748092;
}

.home-cta {
  padding-top: 70px;
}

.home-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 46px 20px 54px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(20, 184, 166, 0.18), transparent 28%),
    linear-gradient(180deg, #121c2d 0%, #0a111d 100%);
}

.home-cta-heading {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto 28px;
  color: #fff;
}

.home-cta-heading h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home-cta-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.home-cta-form-wrap {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.foot-show {
  color: #000 !important;
}

.home-cta-form {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.18);
}

.home-cta-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.home-cta-link:hover {
  color: #fff;
}

.home-cta-code {
  position: absolute;
  color: rgba(255, 255, 255, 0.14);
  font-family: var(--ff-heading);
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: rotate(-12deg);
}

.home-cta-code-a {
  top: 88px;
  left: 36px;
  font-size: 2.4rem;
}

.home-cta-code-b {
  top: 72px;
  right: 56px;
  font-size: 2rem;
}

.home-cta-code-c {
  bottom: 78px;
  left: 62px;
  font-size: 2.1rem;
}

.home-cta-code-d {
  bottom: 58px;
  right: 70px;
  font-size: 2rem;
}

@media (max-width: 1399px) {
  .ff-brand-panel {
    flex: 0 0 min(260px, 20vw);
  }

  .ff-navbar .nav-link {
    padding-left: 11px !important;
    padding-right: 11px !important;
  }
}

@media (max-width: 1199px) {
  .ff-navbar-toggler {
    display: inline-flex;
  }

  .ff-brand-panel {
    flex-basis: min(320px, calc(100% - 84px));
  }

  .ff-navbar-collapse {
    flex-basis: 100%;
    background: #fff;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.08);
  }

  .ff-navbar-collapse-inner {
    display: block;
    padding: 18px 20px 24px;
  }

  .ff-nav-list {
    width: 100%;
    gap: 0;
  }

  .ff-navbar .nav-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    padding: 14px 4px !important;
  }

  .ff-navbar .nav-link::after {
    left: 4px;
    right: 4px;
    bottom: 8px;
  }

  .ff-navbar .dropdown {
    width: 100%;
  }

  .ff-dropdown {
    min-width: 240px;
    margin-top: 6px;
  }

  .ff-navbar-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
  }

  .ff-navbar-mobile-actions .navbar-search-btn {
    width: 100%;
    height: auto;
    border-radius: 14px;
    justify-content: flex-start;
    padding: 14px 16px;
    background: #f5f8fb;
    font-family: var(--ff-heading);
    font-weight: 700;
  }

  .ff-navbar-mobile-actions .btn-request-call {
    width: 100%;
  }

  .home-metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-provide-layout {
    grid-template-columns: 1fr;
  }

  .home-provide-hub {
    order: -1;
    margin-bottom: 6px;
  }

  .home-provide-ring {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 991px) {
  .ff-brand-panel {
    min-height: 88px;
    padding: 12px 44px 12px 18px;
  }

  .ff-brand-panel::after {
    right: 34px;
  }

  .ff-brand-logo {
    max-width: 125px;
  }

  .ff-navbar-toggler {
    min-height: 88px;
    margin-right: 14px;
  }

  .home-section {
    padding: 60px 0;
  }

  .home-hero {
    padding-top: 30px;
  }

  .home-hero-title {
    font-size: clamp(2.2rem, 10vw, 3.7rem);
  }

  .home-record-number {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .ff-brand-panel {
    flex-basis: min(280px, calc(100% - 72px));
    min-height: 82px;
    padding-right: 38px;
    clip-path: polygon(
      0 0,
      calc(100% - 40px) 0,
      100% 50%,
      calc(100% - 40px) 100%,
      0 100%
    );
  }

  .ff-brand-panel::after {
    right: 28px;
    width: 10px;
  }

  .ff-brand-logo {
    max-width: 125px;
  }

  .ff-navbar-toggler {
    width: 40px;
    min-height: 82px;
    margin-right: 12px;
  }

  .home-metric-row {
    grid-template-columns: 1fr;
  }

  .home-promo-media {
    padding: 12px;
  }

  .home-showcase-card,
  .home-travel-card,
  .home-record-card,
  .home-why-card,
  .home-provide-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-showcase-art {
    min-height: 220px;
  }

  .home-travel-media img {
    height: 160px;
  }

  .home-cta-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-cta-code {
    display: none;
  }
}

@media (max-width: 575px) {
  .head-icon {
    display: none;
  }
  .ff-navbar-mobile-actions {
    flex-direction: inherit;
    padding: 0;
    margin: 0;
    border: none;
  }
  .ff-brand-logo {
    max-width: 63px !important;
  }
}

/* ===== Header Final Match Overrides ===== */

.ff-navbar-shell {
  overflow: visible;
}

.ff-navbar .nav-link {
  color: #151823 !important;
  font-size: clamp(0.78rem, 0.7vw, 0.9rem);
  font-weight: 700;
}

.ff-navbar .nav-link:hover,
.ff-navbar .nav-link.active {
  color: #13c9c2 !important;
}

.ff-navbar .nav-link::after {
  height: 3px;
  border-radius: 999px;
  background: #ff4f80;
}

.ff-navbar .dropdown-toggle::after {
  margin-left: 7px;
}

.ff-dropdown .dropdown-item {
  gap: 10px;
}

.btn-request-call {
  background: linear-gradient(90deg, #2ec86d 0%, #17b8d8 100%);
  box-shadow: none;
}

.btn-request-call:hover {
  background: linear-gradient(90deg, #29b663 0%, #12a9cf 100%);
}

.ff-navbar-toggler {
  gap: 4px;
}

.ff-navbar-toggler span {
  width: 24px;
  height: 2.4px;
  background: #141824;
}

@media (min-width: 992px) {
  .topbar {
    display: block !important;
  }

  .ff-topbar-shell {
    padding-left: clamp(272px, 19.4vw, 396px);
    padding-right: clamp(14px, 2vw, 34px);
  }

  .ff-topbar-inner {
    min-height: 44px;
  }

  .topbar-link {
    font-size: 0.78rem;
  }

  .ff-navbar-shell {
    min-height: 50px;
  }

  .ff-brand-panel {
    flex: 0 0 clamp(272px, 19.4vw, 396px);
    min-width: clamp(272px, 19.4vw, 396px);
    min-height: 104px;
    margin-top: -44px;
    padding: 12px 62px 12px 22px;
  }

  .ff-brand-logo-wrap {
    max-width: clamp(176px, 12.8vw, 220px);
  }

  .ff-brand-logo {
    max-width: clamp(172px, 12.4vw, 214px);
  }

  .ff-brand-accent {
    width: clamp(70px, 4.8vw, 92px);
    right: -18px;
  }

  .ff-navbar-desktop {
    gap: clamp(12px, 1vw, 18px);
    padding: 0 clamp(12px, 1.5vw, 26px) 0 clamp(16px, 1.6vw, 30px);
  }

  .ff-nav-list {
    justify-content: center;
    gap: 0;
  }

  .ff-navbar .nav-link {
    padding: 23px clamp(7px, 0.75vw, 15px) !important;
  }

  .ff-navbar .nav-link::after {
    left: clamp(7px, 0.75vw, 15px);
    right: clamp(7px, 0.75vw, 15px);
    bottom: 10px;
  }

  .ff-navbar-actions {
    gap: clamp(14px, 1.3vw, 22px);
  }

  .ff-search-divider {
    min-height: 72px;
    padding-left: clamp(16px, 1.5vw, 28px);
  }

  .navbar-search-btn {
    width: 54px;
    height: 54px;
    font-size: 1.35rem;
  }

  .btn-request-call {
    min-height: 66px;
    min-width: clamp(176px, 10.5vw, 202px);
    padding: 0 clamp(18px, 1.6vw, 32px);
    border-radius: 8px;
    font-size: clamp(0.82rem, 0.74vw, 0.92rem);
  }
}

@media (min-width: 992px) and (max-width: 1279.98px) {
  .ff-topbar-shell {
    padding-left: 232px;
    padding-right: 12px;
  }

  .ff-topbar-inner {
    min-height: 42px;
    gap: 16px;
  }

  .ff-topbar-contact {
    gap: 20px;
  }

  .ff-topbar-socials {
    gap: 14px;
  }

  .topbar-link {
    font-size: 0.72rem;
  }

  .ff-brand-panel {
    flex-basis: 232px;
    min-width: 232px;
    min-height: 96px;
    margin-top: -42px;
    padding: 10px 48px 10px 18px;
  }

  .ff-brand-logo-wrap {
    max-width: 125px;
  }

  .ff-brand-logo {
    max-width: 125px;
  }

  .ff-brand-accent {
    width: 68px;
    right: -16px;
  }

  .ff-navbar-shell {
    min-height: 96px;
  }

  .ff-navbar-desktop {
    gap: 10px;
    padding: 0 12px 0 14px;
  }

  .ff-nav-list {
    justify-content: flex-start;
  }

  .ff-navbar .nav-link {
    font-size: clamp(0.67rem, 0.69vw, 0.76rem);
    padding: 20px 6px !important;
    letter-spacing: -0.01em;
  }

  .ff-navbar .nav-link::after {
    left: 6px;
    right: 6px;
    bottom: 8px;
  }

  .ff-search-divider {
    min-height: 60px;
    padding-left: 12px;
  }

  .navbar-search-btn {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  .btn-request-call {
    min-height: 54px;
    min-width: 148px;
    padding: 0 16px;
    font-size: 0.76rem;
  }
}

@media (max-width: 991.98px) {
  .topbar {
    display: none !important;
  }

  .ff-navbar-mobile-actions {
    display: flex !important;
    align-items: center;
    gap: 8px;
  }

  .ff-navbar-search-mobile {
    border: 0;
  }

  .ff-mobile-drawer {
    display: block;
  }
}

/* ===== Final Shared Header Overrides ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: transparent;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.topbar {
  background: #1b1d28;
}

.ff-topbar-shell {
  padding-left: clamp(268px, 18.9vw, 350px);
  padding-right: clamp(14px, 2.1vw, 34px);
}

.ff-topbar-inner {
  min-height: 50px;
  justify-content: space-between;
  gap: 28px;
}

.ff-topbar-contact {
  gap: 32px;
}

.ff-topbar-socials {
  gap: 18px;
}

.topbar-link,
.topbar-social {
  color: rgba(255, 255, 255, 0.96);
}

.topbar-link {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ff-navbar {
  padding: 0;
  background: #fff;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: none;
}

.ff-navbar-shell {
  width: 100%;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.ff-brand-panel {
  position: relative;
  z-index: 2;
  flex: 0 0 clamp(268px, 18.9vw, 350px);
  min-width: clamp(268px, 18.9vw, 350px);
  min-height: 112px;
  margin: -50px 0 0;
  padding: 14px 58px 14px 22px;
  display: flex;
  align-items: center;
  background: #fff;
  clip-path: polygon(
    0 0,
    calc(100% - 52px) 0,
    100% 50%,
    calc(100% - 52px) 100%,
    0 100%
  );
  box-shadow: inset -1px 0 0 rgba(17, 24, 39, 0.05);
}

.ff-brand-logo-wrap {
  max-width: 198px;
}

.ff-brand-logo {
  width: 100%;
  max-width: 192px;
}

.ff-brand-accent {
  position: absolute;
  top: 50%;
  right: -18px;
  width: 82px;
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
}

.ff-navbar-desktop {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1vw, 18px);
  padding: 0 clamp(12px, 1.5vw, 24px) 0 clamp(14px, 1.6vw, 26px);
}

.ff-nav-list {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
  gap: 2px;
}

.ff-navbar .nav-item {
  flex: 0 0 auto;
}

.ff-navbar .nav-link {
  padding: 24px clamp(7px, 0.72vw, 13px) !important;
  font-size: clamp(0.72rem, 0.69vw, 0.82rem);
  font-weight: 700;
}

.ff-navbar .nav-link::after {
  left: clamp(7px, 0.72vw, 13px);
  right: clamp(7px, 0.72vw, 13px);
  bottom: 11px;
}

.ff-navbar .dropdown-toggle::after {
  margin-left: 6px;
}

.ff-dropdown {
  margin-top: -2px;
}

.ff-dropdown .dropdown-item i {
  width: 16px;
  text-align: center;
  color: var(--ff-cyan);
}

.ff-navbar-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 20px);
  margin-left: auto;
  flex-shrink: 0;
}

.ff-search-divider {
  min-height: 74px;
  padding-left: clamp(14px, 1.3vw, 20px);
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(17, 24, 39, 0.1);
}

.navbar-search-btn {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ff-dark);
  font-size: 1.3rem;
}

.btn-request-call {
  min-height: 58px;
  padding: 0 clamp(18px, 1.7vw, 30px);
  min-width: clamp(160px, 10.8vw, 196px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: clamp(0.78rem, 0.72vw, 0.86rem);
  letter-spacing: 0.01em;
}

.ff-navbar-mobile-actions,
.ff-mobile-drawer {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .ff-topbar-shell {
    padding-left: clamp(244px, 18.4vw, 304px);
  }

  .ff-brand-panel {
    flex-basis: clamp(244px, 18.4vw, 304px);
    min-width: clamp(244px, 18.4vw, 304px);
    padding-right: 50px;
  }

  .ff-brand-logo-wrap {
    max-width: 172px;
  }

  .ff-brand-logo {
    max-width: 166px;
  }

  .ff-brand-accent {
    width: 72px;
    right: -17px;
  }

  .ff-navbar-desktop {
    padding-right: 12px;
    padding-left: 14px;
  }

  .ff-navbar .nav-link {
    padding: 24px 7px !important;
    font-size: 0.74rem;
  }

  .ff-navbar .nav-link::after {
    left: 7px;
    right: 7px;
  }
}

@media (min-width: 1200px) and (max-width: 1279.98px) {
  .ff-topbar-shell {
    padding-left: 228px;
    padding-right: 12px;
  }

  .ff-brand-panel {
    flex-basis: 228px;
    min-width: 228px;
    padding: 12px 46px 12px 18px;
  }

  .ff-brand-logo-wrap {
    max-width: 160px;
  }

  .ff-brand-logo {
    max-width: 154px;
  }

  .ff-brand-accent {
    width: 68px;
  }

  .ff-navbar .nav-link {
    padding: 24px 6px !important;
    font-size: 0.7rem;
  }

  .ff-search-divider {
    padding-left: 12px;
  }

  .navbar-search-btn {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  .btn-request-call {
    min-height: 54px;
    min-width: 150px;
    padding: 0 16px;
    font-size: 0.8rem;
  }
}

.ff-navbar-toggler {
  margin: 0;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.ff-navbar-toggler:focus {
  box-shadow: none;
}

.ff-navbar-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: #16181d;
  border-radius: 999px;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.ff-navbar-toggler span + span {
  margin-top: 0;
}

.ff-navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0px) rotate(0deg);
}

.ff-navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.ff-navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0px) rotate(0deg);
}

@media (max-width: 1199.98px) {
  .site-header {
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  }

  .topbar {
    display: none !important;
  }

  .ff-navbar-shell {
    align-items: center;
    min-height: 78px;
    padding: 0 12px 0 14px;
  }

  .ff-brand-panel {
    flex: 1 1 auto;
    min-width: 0;
    max-width: min(250px, calc(100% - 112px));
    min-height: 74px;
    margin-top: 0;
    padding: 10px 42px 10px 12px;
    clip-path: polygon(
      0 0,
      calc(100% - 34px) 0,
      100% 50%,
      calc(100% - 34px) 100%,
      0 100%
    );
  }

  .ff-brand-logo-wrap {
    max-width: 134px;
  }

  .ff-brand-logo {
    max-width: 134px;
  }

  .ff-brand-accent {
    width: 64px;
    right: -16px;
  }

  .ff-navbar-mobile-actions {
    margin-left: auto;
    display: flex !important;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
  }

  .ff-navbar-search-mobile {
    width: 42px;
    height: 42px;
    border: 0;
    font-size: 1rem;
  }

  .ff-navbar-toggler {
    display: inline-flex;
  }

  .ff-mobile-drawer {
    --bs-offcanvas-width: min(340px, 88vw);
    display: block;
    border-right: 1px solid rgba(17, 24, 39, 0.08);
  }

  .ff-mobile-drawer-header {
    padding: 18px 18px 16px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }

  .ff-mobile-drawer-brand img {
    width: 146px;
    height: auto;
  }

  .ff-mobile-drawer-close {
    box-shadow: none !important;
  }

  .ff-mobile-drawer .offcanvas-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 16px 18px 20px;
  }

  .ff-mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .ff-mobile-link,
  .ff-mobile-drawer-toggle {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border: 0;
    background: transparent;
    color: #172031;
    font-family: var(--ff-heading);
    font-size: 0.98rem;
    font-weight: 700;
    text-align: left;
  }

  .ff-mobile-link.active,
  .ff-mobile-drawer-toggle.active {
    color: var(--ff-cyan);
  }

  .ff-mobile-drawer-toggle i {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
  }

  .ff-mobile-drawer-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
  }

  .ff-mobile-drawer-submenu {
    padding: 2px 0 10px 14px;
  }

  .ff-mobile-sublink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #5c6877;
    font-size: 0.92rem;
    font-weight: 600;
  }

  .ff-mobile-sublink.active {
    color: var(--ff-cyan);
  }

  .ff-mobile-sublink i {
    width: 16px;
    text-align: center;
    color: var(--ff-cyan);
  }

  .ff-mobile-drawer-meta {
    margin-top: auto;
    display: grid;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
  }

  .ff-mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #253041;
    font-size: 0.92rem;
    font-weight: 600;
  }

  .ff-mobile-contact-link i {
    color: var(--ff-cyan);
  }

  .ff-mobile-drawer-socials {
    display: flex;
    gap: 12px;
    padding-top: 2px;
  }

  .ff-mobile-drawer-socials .topbar-social {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f8fb;
    color: #1b1d28;
  }
}

@media (max-width: 767.98px) {
  .ff-navbar-shell {
    min-height: 72px;
    padding: 0 10px 0 12px;
  }

  .ff-brand-panel::after {
    width: 0;
    height: 0;
    background: transparent;
  }

  .ff-brand-panel::before {
    width: 0;
    height: 0;
    background: transparent;
  }

  .ff-brand-panel {
    max-width: min(210px, calc(100% - 98px));
    min-height: 68px;
    padding: 8px 34px 8px 10px;
  }

  .ff-brand-logo-wrap {
    max-width: 120px;
  }

  .ff-brand-logo {
    max-width: 120px;
  }

  .ff-brand-accent {
    width: 56px;
    right: -15px;
  }

  .ff-navbar-mobile-actions {
    gap: 8px;
  }

  .ff-navbar-search-mobile,
  .ff-navbar-toggler {
    width: 40px;
    height: 40px;
  }

  .ff-mobile-drawer {
    --bs-offcanvas-width: min(320px, 90vw);
  }
}

/* ===== Header Match Final Layer ===== */

.ff-navbar-shell {
  overflow: visible;
}

.ff-navbar .nav-link {
  color: #151823 !important;
  font-size: clamp(0.78rem, 0.7vw, 0.9rem);
  font-weight: 700;
}

.ff-navbar .nav-link:hover,
.ff-navbar .nav-link.active {
  color: #13c9c2 !important;
}

.ff-navbar .nav-link::after {
  height: 3px;
  border-radius: 999px;
  background: #ff4f80;
}

.ff-navbar .dropdown-toggle::after {
  margin-left: 7px;
}

.ff-dropdown .dropdown-item {
  gap: 10px;
}

.btn-request-call {
  background: linear-gradient(90deg, #2ec86d 0%, #17b8d8 100%);
  box-shadow: none;
}

.btn-request-call:hover {
  background: linear-gradient(90deg, #29b663 0%, #12a9cf 100%);
}

.ff-navbar-toggler {
  gap: 4px;
}

.ff-navbar-toggler span {
  width: 24px;
  height: 2.4px;
  background: #141824;
}

@media (min-width: 992px) {
  .topbar {
    display: block !important;
  }

  .ff-topbar-shell {
    padding-left: clamp(272px, 19.4vw, 396px);
    padding-right: clamp(14px, 2vw, 34px);
  }

  .ff-topbar-inner {
    min-height: 44px;
  }

  .topbar-link {
    font-size: 0.78rem;
  }

  .ff-navbar-shell {
    min-height: 104px;
    height: 50px;
  }

  .ff-brand-panel {
    flex: 0 0 clamp(272px, 19.4vw, 396px);
    min-width: clamp(272px, 19.4vw, 396px);
    min-height: 104px;
    margin-top: -44px;
    padding: 12px 62px 12px 22px;
  }

  .ff-brand-logo-wrap {
    max-width: clamp(176px, 12.8vw, 220px);
  }

  .ff-brand-logo {
    max-width: clamp(172px, 12.4vw, 214px);
  }

  .ff-brand-accent {
    width: clamp(70px, 4.8vw, 92px);
    right: -18px;
  }

  .ff-navbar-desktop {
    gap: clamp(12px, 1vw, 18px);
    padding: 0 clamp(12px, 1.5vw, 26px) 0 clamp(16px, 1.6vw, 30px);
  }

  .ff-nav-list {
    justify-content: center;
    gap: 0;
  }

  .ff-navbar .nav-link {
    padding: 23px clamp(7px, 0.75vw, 15px) !important;
  }

  .ff-navbar .nav-link::after {
    left: clamp(7px, 0.75vw, 15px);
    right: clamp(7px, 0.75vw, 15px);
    bottom: 10px;
  }

  .ff-navbar-actions {
    gap: clamp(14px, 1.3vw, 22px);
  }

  .ff-search-divider {
    min-height: 72px;
    padding-left: clamp(16px, 1.5vw, 28px);
  }

  .navbar-search-btn {
    width: 54px;
    height: 54px;
    font-size: 1.35rem;
  }

  .btn-request-call {
    padding: 0 clamp(18px, 1.6vw, 32px);
    border-radius: 8px;
    font-size: clamp(0.82rem, 0.74vw, 0.92rem);
  }
}

@media (min-width: 992px) and (max-width: 1279.98px) {
  .ff-topbar-shell {
    padding-left: 232px;
    padding-right: 12px;
  }

  .ff-topbar-inner {
    min-height: 42px;
    gap: 16px;
  }

  .ff-topbar-contact {
    gap: 20px;
  }

  .ff-topbar-socials {
    gap: 14px;
  }

  .topbar-link {
    font-size: 0.72rem;
  }

  .ff-brand-panel {
    flex-basis: 232px;
    min-width: 232px;
    min-height: 96px;
    margin-top: -42px;
    padding: 10px 48px 10px 18px;
  }

  .ff-brand-logo-wrap {
    max-width: 156px;
  }

  .ff-brand-logo {
    max-width: 152px;
  }

  .ff-brand-accent {
    width: 68px;
    right: -16px;
  }

  .ff-navbar-shell {
    min-height: 50px;
  }

  .ff-navbar-desktop {
    gap: 10px;
    padding: 0 12px 0 14px;
  }

  .ff-nav-list {
    justify-content: flex-start;
  }

  .ff-navbar .nav-link {
    font-size: clamp(0.67rem, 0.69vw, 0.76rem);
    padding: 20px 6px !important;
    letter-spacing: -0.01em;
  }

  .ff-navbar .nav-link::after {
    left: 6px;
    right: 6px;
    bottom: 8px;
  }

  .ff-search-divider {
    min-height: 60px;
    padding-left: 12px;
  }

  .navbar-search-btn {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  .btn-request-call {
    min-height: 54px;
    min-width: 148px;
    padding: 0 16px;
    font-size: 0.76rem;
  }
}

@media (max-width: 991.98px) {
  .topbar {
    display: none !important;
  }

  .ff-navbar-mobile-actions {
    display: flex !important;
    align-items: center;
    gap: 8px;
  }

  .ff-navbar-search-mobile {
    border: 0;
  }

  .ff-mobile-drawer {
    display: block;
  }
}

@media (max-width: 575px) {
  .ff-brand-accent {
    display: none;
  }
  body {
    overflow-x: hidden;
  }
}

/* ===== Desktop Nav Row Fix ===== */

@media (min-width: 992px) {
  .ff-navbar-desktop {
    display: flex !important;
    align-items: center;
    width: 100%;
  }

  .ff-nav-list.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto;
    margin: 0 auto;
  }

  .ff-nav-list.navbar-nav > li,
  .ff-nav-list.navbar-nav > .nav-item {
    float: left;
    display: block;
    flex: 0 0 auto;
  }

  .ff-nav-list.navbar-nav > li > a,
  .ff-nav-list.navbar-nav > .nav-item > .nav-link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  .ff-navbar-actions {
    margin-left: auto;
    flex: 0 0 auto;
  }
}

.navbar-nav .dropdown-menu {
  position: absolute !important;
}
