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

p {
	    margin-bottom: 10px;
}
.faq-answer ul {
    margin-left: 30px;
}
/* ====== CSS VARIABLES ====== */
:root {
  --gold: #d4af37;
  --gray: #a0a0a0;
  --gold-bright: #FFD700;
  --gold-hover: #f1cc4a;
  --black: #000;
  --black-soft: #111;
  --black-card: #0a0a0a;
  --text-muted: rgba(255, 255, 255, .8);
  --border-gold: rgba(212, 175, 55, 0.22);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: #fff;
  overflow-x: hidden;
}


/* ====== HEADER ====== */
header {
  background: var(--black);
  color: #fff;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 5%;
  background: var(--black-soft);
  font-size: 14px;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid #a0a0a01c;
}

.header-top a {
  color: var(--gold);
  text-decoration: none;
  margin-left: 10px;
  font-weight: 500;
}

.header-top a:hover {
  text-decoration: underline;
}

.service-tagline {
  font-weight: 500;
  color: #ccc;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
  gap: 12px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gold);
  min-width: 0;
}

.logo img {
  height: 58px;
  flex-shrink: 0;
}

.logo h1 {
  /* font-size: 22px; */
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  font-weight: 700;
}

/* ====== DESKTOP NAV ====== */
nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color .25s ease;
}

.nav-links li a:hover {
  color: var(--gold);
}

.nav-book-btn {
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: .3px;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}

.nav-book-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* ====== HAMBURGER BUTTON (exact ZIP style) ====== */
.nav-toggle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, #0b0b0b, #000);
  border: 1px solid rgba(212, 175, 55, .55);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .6), inset 0 0 0 1px rgba(212, 175, 55, .12);
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .7), inset 0 0 0 1px rgba(212, 175, 55, .28);
}

.nav-toggle:active {
  transform: translateY(0) scale(.98);
}

.nav-toggle span {
  position: absolute;
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 4px;
  transition: transform .32s ease, opacity .22s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-8px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(8px);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ====== MOBILE OVERLAY & MENU (exact ZIP style) ====== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  display: none;
  z-index: 1998;
}

.menu-overlay.open {
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1999;
  overflow: auto;
  opacity: 0;
  transform: translateY(-10px);
  transition: transform .25s ease, opacity .25s ease;
}

.mobile-menu.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-inner {
  min-height: 100vh;
  padding: 18px 5% 28px;
  background:
    radial-gradient(1200px 600px at 50% 10%, rgba(212, 175, 55, .14), transparent 60%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-gold);
}

.close-btn {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, #0b0b0b, #000);
  border: 1px solid rgba(212, 175, 55, .55);
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .6), inset 0 0 0 1px rgba(212, 175, 55, .12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.close-btn:hover {
  transform: translateY(-1px);
}

.mobile-links {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.mobile-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border-gold);
  background: rgba(0, 0, 0, .35);
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .2px;
  transition: border-color .2s ease, transform .2s ease, color .2s ease;
}

.mobile-links a:hover {
  border-color: rgba(212, 175, 55, .6);
  transform: translateY(-1px);
  color: var(--gold);
}

.chev {
  color: rgba(212, 175, 55, .75);
  font-weight: 900;
  font-size: 18px;
}

.mobile-contact {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-gold);
  display: grid;
  gap: 10px;
  color: #ddd;
  font-size: 14px;
}

.mobile-contact a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.mobile-contact a:hover {
  text-decoration: underline;
}







/* ====== HEADER (exact ZIP style) ====== */
header {
  background: var(--black);
  color: #fff;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 5%;
  background: var(--black-soft);
  font-size: 14px;
  gap: 10px;
  flex-wrap: wrap;
}

.header-top a {
  color: var(--gold);
  text-decoration: none;
  margin-left: 10px;
  font-weight: 500;
}

.header-top a:hover {
  text-decoration: underline;
}

.service-tagline {
  font-weight: 500;
  color: #ccc;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
  gap: 12px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gold);
  min-width: 0;
}

.logo img {
  height: 58px;
  flex-shrink: 0;
}

.logo h1 {
  font-size: 18px !important;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  font-weight: 700;
}

/* ====== DESKTOP NAV ====== */
nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color .25s ease;
}

.nav-links li a:hover {
  color: var(--gold);
}

.nav-book-btn {
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: .3px;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}

.nav-book-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* ====== HAMBURGER BUTTON (exact ZIP style) ====== */
.nav-toggle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, #0b0b0b, #000);
  border: 1px solid rgba(212, 175, 55, .55);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .6), inset 0 0 0 1px rgba(212, 175, 55, .12);
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .7), inset 0 0 0 1px rgba(212, 175, 55, .28);
}

.nav-toggle:active {
  transform: translateY(0) scale(.98);
}

.nav-toggle span {
  position: absolute;
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 4px;
  transition: transform .32s ease, opacity .22s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-8px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(8px);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ====== MOBILE OVERLAY & MENU (exact ZIP style) ====== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  display: none;
  z-index: 1998;
}

.menu-overlay.open {
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1999;
  overflow: auto;
  opacity: 0;
  transform: translateY(-10px);
  transition: transform .25s ease, opacity .25s ease;
}

.mobile-menu.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-inner {
  min-height: 100vh;
  padding: 18px 5% 28px;
  background:
    radial-gradient(1200px 600px at 50% 10%, rgba(212, 175, 55, .14), transparent 60%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-gold);
}

.close-btn {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, #0b0b0b, #000);
  border: 1px solid rgba(212, 175, 55, .55);
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .6), inset 0 0 0 1px rgba(212, 175, 55, .12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.close-btn:hover {
  transform: translateY(-1px);
}

.mobile-links {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.mobile-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border-gold);
  background: rgba(0, 0, 0, .35);
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .2px;
  transition: border-color .2s ease, transform .2s ease, color .2s ease;
}

.mobile-links a:hover {
  border-color: rgba(212, 175, 55, .6);
  transform: translateY(-1px);
  color: var(--gold);
}

.chev {
  color: rgba(212, 175, 55, .75);
  font-weight: 900;
  font-size: 18px;
}

.mobile-contact {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-gold);
  display: grid;
  gap: 10px;
  color: #ddd;
  font-size: 14px;
}

.mobile-contact a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.mobile-contact a:hover {
  text-decoration: underline;
}

/* ====== HERO ====== */
.main_section_hero {
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #000 0%, #0d0d0a 50%, #000 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.main_section_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(212, 175, 55, 0.10) 0%, transparent 70%);
}

.main_section_hero .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.main_section_hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
  width: 100%;
}

.main_section_hero .hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 24px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main_section_hero .hero-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.main_section_hero .hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.main_section_hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 640px;
  letter-spacing: -0.5px;
}

.main_section_hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.main_section_hero .hero-desc {
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 400;
}

.main_section_hero .hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.main_section_hero .pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

.main_section_hero .hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.main_section_hero .hero-desc a {
  color: var(--gold);
  font-weight: 700;
}

body .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  user-select: none;
  justify-content: center;
  gap: 10px;
  display: inline-flex;
}

.btn:active {
  transform: scale(.98);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, .3);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ====== STAT STRIP ====== */
.stat-strip {
  background: var(--gold);
  padding: 24px 5%;
}

.stat-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  border-right: 1px solid rgba(0, 0, 0, .2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, .6);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ====== CONTAINER ====== */
section {
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ====== SECTION LABELS ====== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-sub {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 520px;
}

.section-sub a {
  color: var(--gold);
  font-weight: 700;
}

/* ====== SERVICE OVERVIEW ====== */
.service-overview {
  padding: 100px 0;
  background: var(--black);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.overview-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.feat-card {
  background: rgba(212, 175, 55, .05);
  border: 1px solid rgba(212, 175, 55, .15);
  border-radius: 12px;
  padding: 20px;
  transition: border-color .2s, background .2s;
}

.feat-card:hover {
  border-color: rgba(212, 175, 55, .35);
  background: rgba(212, 175, 55, .09);
}

.feat-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feat-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 5px;
}

.feat-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.5;
}

.visual-card {
  background: linear-gradient(135deg, #111, #0a0a0a);
  border: 1px solid rgba(212, 175, 55, .18);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, .15), transparent 70%);
  border-radius: 50%;
}

.visual-card-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.visual-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.visual-card p {
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  font-size: .93rem;
}

.badge-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.logo a div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge {
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .06em;
}

/* ====== ZIGZAG SECTIONS ====== */
.zigzag-section {
  padding: 90px 0;
}

.zigzag-section:nth-child(odd) {
  background: #0d0d0d;
}

.zigzag-section:nth-child(even) {
  background: var(--black);
}

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.zigzag-row.reverse {
  direction: rtl;
}

.zigzag-row.reverse>* {
  direction: ltr;
}

.zz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.zz-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: block;
}

.zz-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.zz-title em {
  font-style: normal;
  color: var(--gold);
}

.zz-desc {
  color: rgba(255, 255, 255, .8);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: .95rem;
}

.zz-desc a {
  font-weight: 700;
  color: var(--gold);
}

.zz-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.zz-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
}

.zz-list li .check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.zz-visual {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #111, #0a0a0a);
  border: 1px solid rgba(212, 175, 55, .15);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 40px;
  position: relative;
}

.zz-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 30%, rgba(212, 175, 55, .08) 0%, transparent 70%);
}

.zz-visual-icon {
  font-size: 4.5rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.zz-visual-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.zz-visual-sub {
  color: rgba(255, 255, 255, .8);
  font-size: .85rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.zz-price-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-top: 16px;
  letter-spacing: .04em;
  position: relative;
  z-index: 1;
}

/* ====== BOOKING SECTION ====== */
.booking-section {
  padding: 80px 0;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.booking-section::before,
.how-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.booking-section::after,
.how-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.booking-header {
  text-align: center;
  margin-bottom: 48px;
}

/* .booking-frame-wrap {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(212, 175, 55, .18);
      border-radius: 20px;
      overflow: hidden;
      max-width: 900px;
      margin: 0 auto;
    }

    .booking-frame-wrap iframe {
      width: 100%;
      min-height: 600px;
      border: none;
      display: block;
    } */

/* ====== HOW IT WORKS ====== */
.how-section {
  padding: 100px 0;
  background: var(--black);
}

.how-header {
  text-align: center;
  margin-bottom: 70px;
}

.how-header .section-eyebrow {
  justify-content: center;
}

.how-header .section-eyebrow::before {
  display: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, #d4af374d, #d4af37, #d4af374d);
}

.step-item {
  text-align: center;
  padding: 0 20px;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
}

/* ====== REVIEWS ====== */
.reviews-section {
  padding: 100px 0;
  background: #0a0a0a;
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-header .section-eyebrow {
  justify-content: center;
}

.reviews-header .section-eyebrow::before {
  display: none;
}

.rating-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.rating-score {
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.rating-details {
  text-align: left;
}

.stars-row {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.rating-count {
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  margin-top: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(212, 175, 55, .12);
  border-radius: 16px;
  padding: 28px;
  transition: border-color .2s, transform .2s;
}

.review-card:hover {
  border-color: rgba(212, 175, 55, .3);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  color: rgba(255, 255, 255, .7);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--black);
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: .85rem;
}

.author-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  margin-top: 2px;
}

.google-tag {
  margin-left: auto;
  font-size: 11px;
  color: #4285f4;
  font-weight: 700;
  background: rgba(66, 133, 244, .1);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ====== FLEET ====== */
.fleet-section {
  padding: 100px 0;
  background: var(--black);
}

.fleet-header {
  margin-bottom: 60px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fleet-card {
  background: #0d0d0d;
  border: 1px solid rgba(212, 175, 55, .12);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}

.fleet-card:hover {
  border-color: rgba(212, 175, 55, .35);
  transform: translateY(-6px);
}

.fleet-img {
  height: 180px;
  background: linear-gradient(135deg, #111, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 1px solid rgba(212, 175, 55, .08);
}

.fleet-body {
  padding: 24px;
}

.fleet-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.fleet-capacity {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: .06em;
}

.fleet-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fleet-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
}

.fleet-features li i {
  color: var(--gold);
  font-size: 11px;
}

/* ====== TRUST STRIP ====== */
.trust-strip {
  padding: 60px 0;
  background: #050505;
  border-top: 1px solid rgba(212, 175, 55, .1);
  border-bottom: 1px solid rgba(212, 175, 55, .1);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--gold);
}

.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  line-height: 1.4;
}

/* ====== FAQ ====== */
/* ===== FAQ NEW DESIGN ===== */

.faq-section {
  padding: 100px 0;
  background: #0b0b0b;
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, .1);
  color: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.faq-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}

.faq-title span {
  color: var(--gold);
}

.faq-subtitle {
  color: rgba(255, 255, 255, .65);
  max-width: 650px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(212, 175, 55, .15);
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  transition: .3s ease;
}

.faq-item.active {
  border-color: rgba(212, 175, 55, .4);
}

.faq-question {
  padding: 24px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: .3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .7);
  line-height: 1.8;
  padding: 0 24px;
  transition: all .35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 24px;
  margin-bottom: 20px;
  padding-bottom: 0;
}

/* Right Card */

.faq-contact-card {
  background:
    radial-gradient(circle at top left,
      rgba(212, 175, 55, .12),
      transparent 40%),
    #111;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(212, 175, 55, .15);
  position: sticky;
  top: 100px;
}

.faq-contact-card h3 {
  font-size: 34px;
  margin-bottom: 18px;
}

.faq-contact-card p {
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
}

.faq-contact-item {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  align-items: flex-start;
}

.faq-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(212, 175, 55, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-contact-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
  display: block;
  margin-bottom: 6px;
}

.faq-contact-item a,
.faq-contact-item p {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.faq-cta-btn {
  margin-top: 35px;
  background: var(--gold);
  color: #000;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 100px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  transition: .3s ease;
}

.faq-cta-btn:hover {
  transform: translateY(-2px);
}

/* Responsive */

@media screen and (max-width:991px) {

  .faq-wrapper {
    grid-template-columns: 1fr;
  }

  .faq-title {
    font-size: 36px;
  }

  .faq-contact-card {
    position: relative;
    top: 0;
  }
}

@media screen and (max-width:576px) {

  .faq-question {
    font-size: 15px;
    padding: 20px;
  }

  .faq-title {
    font-size: 30px;
  }

}

/* ====== CTA SECTION ====== */
.cta-section {
  padding: 100px 0;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .07) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-inner p {
  color: rgba(0, 0, 0, .6);
  font-size: 1rem;
  max-width: 750px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-dark {
  background: var(--black);
  color: var(--gold);
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: .04em;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-dark:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
}

.btn-outline-dark {
  border: 2px solid rgba(0, 0, 0, .3);
  color: var(--black);
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.btn-outline-dark:hover {
  background: rgba(0, 0, 0, .08);
}

/* ====== FOOTER (ZIP style with FontAwesome icons) ====== */
footer {
  background: var(--black);
  color: #fff;
  padding: 60px 5% 20px;
  font-family: 'Poppins', sans-serif;
  border-top: 3px solid var(--gold-bright);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  color: var(--gold-bright);
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: 700;
}

.footer-col h4 {
  color: var(--gold-bright);
  margin-bottom: 15px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-col p {
  color: #ccc;
  line-height: 1.7;
  font-size: 13px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

/* .footer-col ul li {
      margin-bottom: 8px;
    } */

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 13px;
  transition: color .3s;
}

.footer-col ul li a:hover {
  color: var(--gold-bright);
}

.footer-contact p {
  color: #ccc;
  line-height: 1.9;
  font-size: 13px;
}

.footer-contact a {
  color: var(--gold-bright);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Social icons using FontAwesome */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.social-links a {
  color: var(--gold-bright);
  font-size: 1.4rem;
  transition: transform .25s, color .25s;
}

.social-links a:hover {
  color: var(--gold-hover);
  transform: translateY(-2px);
}

.footer-hr {
  border: 0;
  border-top: 1px solid #222;
  margin: 40px auto;
  max-width: 1200px;
}

.footer-bottom {
  text-align: center;
  color: #aaa;
  font-size: 13px;
  padding-bottom: 10px;
}

.footer-bottom a {
  color: var(--gold-bright);
  text-decoration: none;
}

/* ====== SCROLL ANIMATIONS ====== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media screen and (max-width: 900px) {
  .header-top {
    flex-direction: column;
    text-align: center;
    display: none !important;
  }

  .visual-card {
    padding: 40px 20px;
  }

  .visual-card p {
    font-size: 12px;
  }

  body .logo h1 {
    font-size: 12px;
  }

  .header-main {
    padding: 12px 4%;
  }

  .logo img {
    height: 50px;
  }

  .logo h1 {
    font-size: 10px !important;
    max-width: 62vw;
  }

  .nav-links,
  .nav-book-btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .container {
    padding: 0 20px;
  }

  .hero-content {
    padding: 60px 20px;
  }

  .stat-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-grid,
  .zigzag-row,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zigzag-row.reverse {
    direction: ltr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .steps-grid::before {
    display: none;
  }

  .reviews-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .overview-features {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 500px) {
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ACCORDION FIX (SCOPED) ===== */
.hero-grid:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(135deg, #000 0%, #0d0d0a 50%, #000 100%);
  opacity: 0.7;
}

.main_section_hero {
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #000 0%, #0d0d0a 50%, #000 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url(images/5403.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

body .faq-section .faq-layout .faq-list .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease,
    opacity 0.3s ease;
  opacity: 0;
}

body .faq-section .faq-layout .faq-list .faq-item.active {
  border-color: rgba(212, 175, 55, .35);
}

body .faq-section .faq-layout .faq-list .faq-item.active .faq-question {
  color: var(--gold);
}

body .faq-section .faq-layout .faq-list .faq-item.active .faq-question::after {
  content: '−';
  color: var(--gold);
}

body .faq-section .faq-layout .faq-list .faq-item.active .faq-answer {
  opacity: 1;
  padding-bottom: 18px !important;
  margin-bottom: 18px !important;
}

/* ===== CTA NEW COMPACT DESIGN ===== */

.main_zigzag_section {
  background:
    radial-gradient(circle at center,
      rgba(212, 175, 55, .08),
      transparent 65%),
    #050505;
  padding: 0;
}

.main_zigzag_section .container {
  width: 100%;
  max-width: 100% !important;
  padding: 0px !important;
  margin: 0px !important;
}

.main_zigzag_section .container .cta-box {
  max-width: 100%;
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 100px 0px;
}

.main_zigzag_section::before,
.main_zigzag_section::after {
  display: none;
}

.cta-box {
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 55px 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgb(212 175 55 / 38%), rgba(0, 0, 0, .95));
  border: 1px solid rgba(212, 175, 55, .18);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, .45),
    inset 0 0 50px rgba(212, 175, 55, .03);
}

/* CTA Shine Effect */

.cta-box {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Moving golden glow */
.cta-box::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgb(212 175 55 / 75%) 0%, rgba(212, 175, 55, .10) 30%, transparent 70%);

  top: -120px;
  left: -120px;
  filter: blur(35px);
  animation: shineMove 8s ease-in-out infinite alternate;
  z-index: -1;
}

/* Second subtle glow */
.cta-box::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgb(255 215 0 / 45%), transparent 70%);

  bottom: -120px;
  right: -120px;
  filter: blur(40px);
  animation: shineMove2 10s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes shineMove {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(120px, 60px) scale(1.2);
  }
}

@keyframes shineMove2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-80px, -50px) scale(1.15);
  }
}

.cta-box h2 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-box h2 span {
  color: var(--gold);
}

.cta-box p {
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-primary-btn {
  background: var(--gold);
  color: #000;
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: .3s ease;
}

.cta-primary-btn:hover {
  transform: translateY(-2px);
}

.cta-phone-btn {
  border: 1px solid rgba(212, 175, 55, .35);
  color: #fff;
  padding: 16px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: .3s ease;
}

.cta-phone-btn i {
  color: var(--gold);
}

.cta-phone-btn:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, .08);
}

@media(max-width:768px) {

  .cta-box {
    padding: 40px 22px;
  }

  .cta-box h2 {
    font-size: 32px;
  }

  .cta-btns {
    flex-direction: column;
  }

  .cta-primary-btn,
  .cta-phone-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─── FOOTER ─── */
footer {
  background: #111;
  padding: 60px 60px 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  margin-top: 14px;
    max-width: 310px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 12px;
}

.footer-contact-item span {
  color: var(--gold);
  font-size: 16px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #222;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--bg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.logo-text span {
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 40px 24px 20px;
  }

  .faq-contact-item a {
    word-break: break-all;
  }

  .stat-inner .stat-item:nth-child(2) {
    border-right: 0;
  }

  .service-overview {
    padding-bottom: 0px;
  }


  .how-section .steps-grid .step-item {
    padding: 0 0px;
  }

  section.cta-section.main_zigzag_section .container .cta-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .reviews-section .Main__Container-sc-36aa5127-0.vvRbT.es-main-container {
    height: fit-content;
  }

  body .main_fleet_services_section {
    padding-bottom: 0 !important;
    padding-top: 60px !important;
  }

  .footer-bottom {
    justify-content: center;
  }

}

.main_fleet_services_section .fleet-card img {
  object-fit: contain !important;
}

.main_fleet_services_section {
  /* padding-bottom: 0 !important; */
  padding-top: 0px !important;
}

.falcon {
  width: 28px;
  height: 28px;
  fill: #d4af37;
  flex-shrink: 0;
}
.faq-contact-card h5 {
	font-size: 24px;
	font-weight: 700;
}
.main_footer_heading {
  margin-bottom: 14px;
  font-weight: 600;
}
.main_working_tranfer_section .how-header {
	margin-bottom: 0px;
}

.main_working_tranfer_section .section-sub { 
	max-width: 100%;
}