/* =========================
   THEME: White site + Logo accents (Blue/Yellow)
   Header/Footer solid blue
========================= */
:root{
  --bg: #ffffff;
  --surface: #f7f9fc;            /* one color for all boxes */
  --surface-2: rgba(10,16,28,.04);
  --line: rgba(10,16,28,.12);

  --text: #0b1220;
  --muted: rgba(11,18,32,.68);

  /* Logo colors */
  --blue: #2f7dff;
  --blue-2: #1f5fe6;
  --yellow: #f2c14f;
  --yellow-2: #dca833;

  --radius: 18px;

  /* Dark header/footer replaced by solid blue */
  --dark: #0b3d6b;
  --dark-2: #0b3d6b;
  --dark-line: rgba(255,255,255,.12);
  --dark-text: #ffffff;
  --dark-muted: rgba(255,255,255,.75);

  --shadow: 0 18px 50px rgba(0,0,0,.10);
}

/* =========================
   BASE
========================= */
*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; }

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.page{ padding: 32px 0 60px; }

h1,h2,h3{ margin:0 0 10px; }

/* headings logo style */
h1, h2, h3, .section-title, .hero-title{
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p{ margin:0 0 14px; color: var(--muted); line-height: 1.6; }

/* =========================
   BUTTONS (one color)
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--blue);
  text-decoration:none;
  font-weight:900;
  cursor:pointer;
  user-select:none;
  transition: .2s;
}

.btn-primary{
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.btn-primary:hover{
  background: var(--blue-2);
}

/* =========================
   HEADER (solid blue)
========================= */
.header{
  position: sticky;
  top:0;
  z-index:1000;
  background: #0b3d6b;
  border-bottom: 3px solid var(--yellow);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
}

.logo-box{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.20);
  display:flex;
  align-items:center;
  justify-content:center;
}

.brand-text{
  font-size: 28px;
  font-weight: 950;
  color: #fff;
}

/* NAV */
.nav{
  display:flex;
  align-items:center;
  gap: 16px;
}

.nav-link{
  text-decoration:none;
  font-weight:900;
  padding:10px 18px;
  border-radius:14px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.20);
  color:#fff;
}

.nav-link:hover{
  background: rgba(255,255,255,.20);
}

.nav-link.active{
  background: var(--yellow);
  color:#0b1220;
}

/* =========================
   CARDS (all same color)
========================= */
.card, .hero-card, .consult-card, .test-card, .how-step, .faq-item, .final-cta{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card{ padding: 18px; }

/* =========================
   GRIDS
========================= */
.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cards-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.split{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 16px;
}

/* =========================
   FOOTER (solid blue)
========================= */
.footer{
  border-top:3px solid var(--yellow);
  background:#0b3d6b;
  padding: 22px 0;
  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 18px;
  padding-bottom: 16px;
}

.footer-col h4{
  margin:0 0 10px;
  font-size:16px;
  font-weight:950;
  color:#fff;
}

.footer-col p{
  color:rgba(255,255,255,.8);
}

.footer-col a{
  display:block;
  padding:6px 0;
  color:rgba(255,255,255,.85);
  text-decoration:none;
}

.footer-col a:hover{
  color:#fff;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.15);
  padding-top:14px;
  display:flex;
  justify-content:space-between;
  color:rgba(255,255,255,.8);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px){
  .nav{ display:none; }
  .split{ grid-template-columns:1fr; }
  .cards-3{ grid-template-columns:1fr; }
  .cards-2{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
}
/* =========================
   THEME: White site + Logo accents (Blue/Yellow)
   Header/Footer dark
========================= */
:root{
  --bg: #ffffff;                 /* page background */
  --surface: #ffffff;            /* cards on white */
  --surface-2: rgba(10,16,28,.04);
  --line: rgba(10,16,28,.12);

  --text: #0b1220;               /* main text on white */
  --muted: rgba(11,18,32,.68);

  /* Logo colors */
  --blue: #2f7dff;
  --blue-2: #1f5fe6;
  --yellow: #f2c14f;
  --yellow-2: #dca833;

  --radius: 18px;

  /* Dark header/footer */
  --dark: #070b13;
  --dark-2: rgba(7,10,19,.92);
  --dark-line: rgba(255,255,255,.12);
  --dark-text: #eaf0ff;
  --dark-muted: rgba(234,240,255,.75);

  /* Shadows */
  --shadow: 0 18px 50px rgba(0,0,0,.10);
}

/* =========================
   BASE
========================= */
*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; }
a:hover{ opacity:.96; }

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.page{ padding: 32px 0 60px; }

h1,h2,h3{ margin:0 0 10px; }

/* All headings in logo mixed gradient */
h1, h2, h3, .section-title, .hero-title{
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p{ margin:0 0 14px; color: var(--muted); line-height: 1.6; }
.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }

.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(47,125,255,.08);
  border:1px solid rgba(47,125,255,.20);
  color: rgba(11,18,32,.75);
  font-weight:800;
  font-size: 12px;
}

/* =========================
   BUTTONS (logo colors)
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  text-decoration:none;
  font-weight:900;
  cursor:pointer;
  user-select:none;
  transition: .2s;
}

.btn-primary{
  background: linear-gradient(90deg, rgba(47,125,255,.95), rgba(242,193,79,.95));
  border-color: rgba(47,125,255,.35);
  color: #0b1220; /* readable on yellow */
}

.btn-ghost{
  background: rgba(10,16,28,.04);
}

.btn:hover{ transform: translateY(-1px); }
.btn-block{ width:100%; }
.w-100{ width:100%; }

/* =========================
   HEADER (dark)
========================= */
.header{
  position: sticky;
  top:0;
  z-index:1000;
  background: var(--dark-2);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-line);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
}

.logo-box{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--dark-line);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.logo-box img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.brand-text{
  font-size: 28px;
  font-weight: 950;
  letter-spacing: .2px;
  color: var(--dark-text);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

/* NAV in dark header */
.nav{
  display:flex;
  align-items:center;
  gap: 16px;
}

.nav-link{
  text-decoration:none;
  font-weight:900;
  padding:10px 18px;
  border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color: var(--dark-text);
  transition:.2s;
}

.nav-link:hover{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.20);
}

/* Active uses logo gradient */
.nav-link.active{
  background: linear-gradient(90deg, rgba(47,125,255,.38), rgba(242,193,79,.26));
  border: 1px solid rgba(242,193,79,.30);
}

.header-actions{
  display:flex;
  align-items:center;
  gap: 12px;
}

.currency-select{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--dark-text);
  padding: 10px 12px;
  border-radius: 14px;
  outline:none;
  font-weight: 900;
}

.menu-btn{
  display:none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--dark-text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
  font-weight: 950;
}

.mobile-nav{
  display:none;
  padding: 0 0 14px 0;
  gap: 10px;
}

.mobile-nav a{
  display:block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration:none;
  color: var(--dark-text);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}

.mobile-nav.show{ display:grid; }

/* =========================
   CARDS + GRIDS (on white)
========================= */
.card, .hero-card, .consult-card, .test-card, .how-step, .faq-item, .final-cta{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card{ padding: 18px; }
.hero-card{ padding: 20px; }
.consult-card{ padding: 20px; }
.test-card{ padding: 18px; }
.how-step{ padding: 18px; }
.faq-item{ padding: 10px 12px; }
.final-cta{ padding: 18px; }

.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cards-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.split{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 16px;
  align-items: start;
}

/* =========================
   SECTIONS
========================= */
.section{ padding: 24px 0; }
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 14px;
}

/* =========================
   HERO
========================= */
.hero{ padding: 26px 0 10px; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
  align-items: start;
}

.hero-sub{
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 14px;
}

.pill-row{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47,125,255,.20);
  background: rgba(47,125,255,.08);
  color: rgba(11,18,32,.85);
  font-weight: 950;
  font-size: 12px;
}

.hero-buttons{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tag-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.tag{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(10,16,28,.12);
  background: rgba(10,16,28,.04);
  color: rgba(11,18,32,.82);
  font-weight: 950;
  font-size: 12px;
}

/* Consultation card details */
.consult-title{
  font-size: 28px;
  font-weight: 950;
  margin-bottom: 6px;
}
.consult-sub{ color: var(--muted); margin-bottom: 12px; }

.consult-list{
  display:grid;
  gap: 10px;
  margin: 12px 0;
}

.consult-item{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(10,16,28,.12);
  background: rgba(10,16,28,.03);
}

.consult-label{
  display:block;
  font-weight: 950;
  margin-bottom: 4px;
  color: rgba(11,18,32,.85);
}

.consult-value{
  display:block;
  color: rgba(11,18,32,.75);
  font-weight: 850;
}

/* =========================
   TESTIMONIALS
========================= */
.test-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shot{
  height: 140px;
  border-radius: 14px;
  border: 1px dashed rgba(10,16,28,.25);
  background: rgba(10,16,28,.03);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(11,18,32,.55);
  font-weight: 900;
  margin-bottom: 12px;
}

/* =========================
   FAQ
========================= */
.faq{ display:grid; gap: 10px; }

.faq-item summary{
  cursor:pointer;
  list-style:none;
  font-weight: 950;
  padding: 10px 6px;
  color: rgba(11,18,32,.92);
}
.faq-item summary::-webkit-details-marker{ display:none; }

.faq-body{
  padding: 6px 6px 10px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 800;
}

/* =========================
   HOW IT WORKS
========================= */
.how{ display:grid; gap: 12px; }
.how-step h3{
  margin-bottom: 6px;
  font-weight: 950;
}

/* =========================
   ABOUT
========================= */
.about-wrap{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
}

.about-photo{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(10,16,28,.03);
}

.about-photo img{
  width:100%;
  height: 320px;
  object-fit: cover;
  display:block;
}

/* =========================
   SERVICES
========================= */
.plan-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.plan-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}

.option{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(10,16,28,.03);
  border: 1px solid rgba(10,16,28,.10);
}

.option label{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  color: rgba(11,18,32,.92);
}

.option small{
  color: rgba(11,18,32,.70);
  font-weight: 900;
}

.estimate{ margin-top: 16px; }

.table{
  width:100%;
  border-collapse: collapse;
  overflow:hidden;
  border-radius: 14px;
  border:1px solid rgba(10,16,28,.10);
}

.table td{
  padding: 12px;
  border-bottom: 1px solid rgba(10,16,28,.08);
  color: rgba(11,18,32,.72);
  font-weight: 900;
}

.table td:last-child{
  text-align:right;
  color: rgba(11,18,32,.92);
}

.table tr:last-child td{ border-bottom:none; }

.estimate-actions{
  margin-top:14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.estimate-actions .btn{
  flex: 1;
  min-width: 220px;
  text-align:center;
}

/* =========================
   CONTACT
========================= */
.form input, .form select, .form textarea{
  width:100%;
  padding: 10px 12px;
  border-radius: 12px;
  border:1px solid rgba(10,16,28,.14);
  background: rgba(10,16,28,.03);
  color: rgba(11,18,32,.92);
  outline:none;
}

.form textarea{ min-height: 110px; resize: vertical; }

.form .row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* =========================
   FOOTER (dark like header)
========================= */
.footer{
  border-top:1px solid var(--dark-line);
  background: rgba(7,10,19,.96);
  padding: 22px 0;
  color: var(--dark-text);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 18px;
  padding-bottom: 16px;
}

.footer-col h4{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 950;
  color: var(--dark-text);
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-col p{
  margin: 0 0 12px;
  color: var(--dark-muted);
  font-weight: 800;
}

.footer-col a{
  display:block;
  padding: 6px 0;
  color: rgba(234,240,255,.82);
  text-decoration:none;
  font-weight: 900;
}

.footer-col a:hover{ color: var(--dark-text); }

.socials{
  display:flex;
  gap: 10px;
  margin-top: 10px;
}

.social{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight: 950;
  color: var(--dark-text);
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--dark-muted);
  font-weight: 900;
  font-size: 13px;
}

.footer-right{
  display:flex;
  gap: 12px;
}

.footer-right a{
  color: var(--dark-muted);
  text-decoration:none;
  font-weight: 950;
}

.footer-right a:hover{ color: var(--dark-text); }

/* =========================
   WhatsApp floating button
========================= */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2000;
  text-decoration:none;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(37,211,102,.18);
  border: 1px solid rgba(37,211,102,.45);
  color: #0b1220;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.wa-float:hover{ background: rgba(37,211,102,.28); }

/* =========================
   Responsive
========================= */
@media (max-width: 900px){
  .nav{ display:none; }
  .menu-btn{ display:inline-flex; }
  .brand-text{ font-size: 20px; }

  .split{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: 1fr; }
  .cards-2{ grid-template-columns: 1fr; }

  .hero-grid{ grid-template-columns: 1fr; }
  .test-grid{ grid-template-columns: 1fr; }
  .final-cta{ flex-direction: column; align-items: flex-start; }

  .about-wrap{ grid-template-columns: 1fr; }
  .plan-grid{ grid-template-columns: 1fr; }
  .form .row{ grid-template-columns: 1fr; }

  .footer-grid{ grid-template-columns: 1fr; }
}
/* =========================================================
   HEADER + FOOTER: single solid brand color (logo-matching)
   (Drop this at the VERY BOTTOM of style.css)
========================================================= */

:root{
  /* Pick ONE solid color for header/footer */
  --hf-bg: #0b3d6b;            /* deep logo-friendly blue */
  --hf-border: var(--yellow);  /* accent line matches logo */
  --hf-text: #ffffff;
  --hf-muted: rgba(255,255,255,.80);

  /* surfaces inside header/footer */
  --hf-chip: rgba(255,255,255,.10);
  --hf-chip-border: rgba(255,255,255,.20);
}

/* HEADER */
.header{
  background: var(--hf-bg) !important;
  border-bottom: 3px solid var(--hf-border) !important;
  backdrop-filter: none !important; /* removes dark blur look */
}

.brand-text{
  color: var(--hf-text) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

.logo-box{
  background: var(--hf-chip) !important;
  border: 1px solid var(--hf-chip-border) !important;
}

/* NAV + header controls */
.nav-link{
  background: var(--hf-chip) !important;
  border: 1px solid var(--hf-chip-border) !important;
  color: var(--hf-text) !important;
}

.nav-link:hover{
  background: rgba(255,255,255,.18) !important;
}

.nav-link.active{
  background: var(--hf-border) !important;
  color: #0b1220 !important;
  border-color: var(--hf-border) !important;
}

.currency-select,
.menu-btn{
  background: var(--hf-chip) !important;
  border: 1px solid var(--hf-chip-border) !important;
  color: var(--hf-text) !important;
}

/* Footer */
.footer{
  background: var(--hf-bg) !important;
  border-top: 3px solid var(--hf-border) !important;
  color: var(--hf-text) !important;
}

.footer-col h4{
  color: var(--hf-text) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

.footer-col p,
.footer-bottom,
.footer-right a,
.footer-col a{
  color: var(--hf-muted) !important;
}

.footer-col a:hover,
.footer-right a:hover{
  color: var(--hf-text) !important;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.15) !important;
}

.social{
  background: var(--hf-chip) !important;
  border: 1px solid var(--hf-chip-border) !important;
  color: var(--hf-text) !important;
}
/* =========================================================
   BUTTONS: match header/footer solid color
   (Drop this at the VERY BOTTOM of style.css)
========================================================= */

.btn{
  border-color: var(--hf-bg) !important;
}

.btn-primary{
  background: var(--hf-bg) !important;
  border-color: var(--hf-bg) !important;
  color: #fff !important;
}

.btn-primary:hover{
  filter: brightness(.92);
}
/* =========================================================
   MAIN HEADINGS: match header/footer color
========================================================= */

h1, h2, h3, .section-title, .hero-title{
  background: none !important;
  color: var(--hf-bg) !important;
}
/* =========================================
   FOOTER responsive improvement (no desktop change)
========================================= */

/* Tablet: show 2 columns instead of 1 */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
  }

  .footer-bottom{
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .socials{
    margin-top: 12px !important;
  }
}

/* Small phones: back to 1 column */
@media (max-width: 520px){
  .footer-grid{
    grid-template-columns: 1fr !important;
  }
}
/* =========================================
   FORCE footer columns on desktop
========================================= */
.footer-grid{
  display: grid !important;
  grid-template-columns: 1.3fr 1fr 1fr 1fr !important;
  gap: 18px !important;
}

/* Tablet/phone behavior */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 520px){
  .footer-grid{
    grid-template-columns: 1fr !important;
  }
}
.social{
  display:flex;
  align-items:center;
  justify-content:center;
}

.social i{
  font-size:18px;
  color:#fff;
  line-height:1;
}
/* =========================
   FIX social icons size + alignment (footer)
========================= */
.footer .socials{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.footer .social{
  width: 38px;                 /* same as your original design */
  height: 38px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.footer .social svg{
  width: 18px;                 /* icon size */
  height: 18px;
  display:block;
  color: #ffffff;              /* icon color */
}

.footer .social svg path{
  fill: currentColor;          /* ensures the path uses the color above */
}
.shot-img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:10px;
}
/* =========================
   TESTIMONIAL SLIDER (ADD THIS AT VERY BOTTOM)
   Keeps rest of site same
========================= */

.testimonial-slider{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px 0;
}

.testimonial-track{
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 16px;
  transition: transform .45s ease;
  will-change: transform;
}

/* Desktop: show 3 cards */
.testimonial-track .slide{
  flex: 0 0 calc((100% - 32px) / 3);
}

/* Arrow buttons */
.slider-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  background: var(--hf-bg);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  z-index: 10;
  display:flex;
  align-items:center;
  justify-content:center;
}

.slider-btn.prev{ left: 10px; }
.slider-btn.next{ right: 10px; }

/* Tablet: 2 cards */
@media (max-width: 900px){
  .testimonial-track .slide{
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

/* Mobile: 1 card */
@media (max-width: 520px){
  .testimonial-track .slide{
    flex: 0 0 100%;
  }
}
/* =========================
   TESTIMONIAL IMAGE POPUP
========================= */
.testimonial-img{
  cursor: zoom-in;
}

.img-popup{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 18px;
}

.img-popup.show{
  display: flex;
}

.popup-content{
  max-width: 980px;
  width: 100%;
  text-align: center;
}

.popup-content img{
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 14px;
  background: #111;
}

#popupDesc{
  color: #fff;
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.5;
}

.popup-close{
  position: absolute;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
}
/* =========================
   HEADER LAYOUT FIX (LEFT / CENTER / RIGHT)
   Put at VERY BOTTOM of styles.css
========================= */

.header-row{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap: 18px !important;
}

.brand{
  display:flex !important;
  align-items:center !important;
  gap: 12px !important;
  flex: 0 0 auto !important;
  min-width: 260px; /* keeps Ecom With Ahmad visible */
}

.nav{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap: 16px !important;
  flex: 1 1 auto !important;
  white-space: nowrap;
}

.header-actions{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap: 12px !important;
  flex: 0 0 auto !important;
  white-space: nowrap;
}

/* =========================
   FORCE BUTTON COLOR (same as header/footer)
========================= */

.btn{
  border-color: var(--hf-bg) !important;
}

.btn-primary{
  background: var(--hf-bg) !important;
  border-color: var(--hf-bg) !important;
  color: #fff !important;
}

.btn-primary:hover{
  filter: brightness(.92);
}
/* Make header tighter & less stuffed */
.header-row{ gap: 14px !important; }

.nav{ gap: 10px !important; }

.nav-link{
  padding: 8px 12px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
}

.header-actions{ gap: 10px !important; }

.header-actions .btn{
  padding: 8px 12px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  white-space: nowrap !important;
}

.currency-select{
  padding: 8px 10px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
}
/* ===== HEADER: use full width (only header) ===== */
.header .container{
  width: calc(100% - 40px) !important;   /* full width with padding */
  max-width: none !important;            /* remove 1120px limit */
}

/* Keep layout spacing nice */
.header-row{
  gap: 16px !important;
}

/* Let the nav stay centered and not push too much */
.nav{
  flex: 1 !important;
  justify-content: center !important;
}

/* Keep logo tight left, actions tight right */
.brand{
  flex-shrink: 0 !important;
}

.header-actions{
  flex-shrink: 0 !important;
  margin-left: auto !important;
}
/* ===== Reviews drag / swipe scroller ===== */
.review-scroller{
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 2px 18px;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;

  /* optional: nicer snap */
  scroll-snap-type: x mandatory;
}

.review-scroller:active{ cursor: grabbing; }

.review-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 16px;
  align-items: stretch;
}

.review-card{
  scroll-snap-align: start;
}

.review-stars{
  color: #f2c14f;
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.review-location{
  font-size: 13px;
  color: var(--muted);
}

/* Hide scrollbar (optional) */
.review-scroller::-webkit-scrollbar{ height: 8px; }
.review-scroller::-webkit-scrollbar-thumb{ background: rgba(0,0,0,.15); border-radius: 99px; }

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 46px;
  left: 0;
  min-width: 220px;
  background: rgba(7,10,19,.96);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  z-index: 9999;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(234,240,255,.92);
  font-weight: 900;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,.08);
}

.dropdown:hover .dropdown-menu {
  display: block;
}
/* ===== Services dropdown ===== */
.dropdown{
  position: relative;
  display: inline-block;
}

.dropdown-menu{
  display: none;
  position: absolute;
  top: 48px;
  left: 0;
  min-width: 240px;
  background: rgba(7,10,19,.96);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  z-index: 999999;
}

.dropdown-menu a{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(234,240,255,.92);
  font-weight: 900;
}

.dropdown-menu a:hover{
  background: rgba(255,255,255,.08);
}

.dropdown:hover .dropdown-menu{
  display: block;
}
/* ===== FIX: dropdown must be clickable + above everything ===== */
.header, .header-row, .nav { overflow: visible !important; }

.dropdown{
  position: relative;
  display: inline-block;
}

.dropdown-toggle{
  cursor: pointer;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--dark-text);
}

.dropdown-toggle .caret{
  margin-left: 6px;
  font-weight: 900;
}

.dropdown-menu{
  display: none;
  position: absolute;
  top: calc(100% + 10px);   /* removes “gap” so hover doesn’t break */
  left: 0;

  min-width: 260px;
  padding: 10px;
  border-radius: 14px;

  background: rgba(7,10,19,.98);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);

  z-index: 999999;          /* SUPER IMPORTANT */
  pointer-events: auto;     /* clickable */
}

.dropdown-item{
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(234,240,255,.92);
  font-weight: 900;
  white-space: nowrap;
}

.dropdown-item:hover{
  background: rgba(255,255,255,.10);
}

/* show menu on hover AND keyboard focus */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu{
  display: block;
}
/* =========================
   CLICKABLE SERVICES DROPDOWN (HEADER)
========================= */
.nav-dropdown{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropbtn{
  cursor: pointer;
}

.nav-dropbtn .caret{
  font-size: 10px;
  margin-left: 8px;
  opacity: .9;
}

.nav-dropmenu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  z-index: 5000;                 /* IMPORTANT so it stays above page */
  display: none;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.nav-dropmenu a{
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  color: rgba(234,240,255,.92);
  border: 1px solid transparent;
}

.nav-dropmenu a:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.nav-dropmenu a.active{
  background: linear-gradient(90deg, rgba(47,125,255,.38), rgba(242,193,79,.26));
  border: 1px solid rgba(242,193,79,.30);
}

/* show menu when open */
.nav-dropdown.open .nav-dropmenu{
  display: block;
}
/* Dropdown fix (clickable) */
.nav-dropdown { position: relative; }

.nav-dropmenu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  z-index: 5000;
  background: rgba(7,10,19,.98);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 10px;
  display: none;
}

.nav-dropdown:hover .nav-dropmenu,
.nav-dropdown:focus-within .nav-dropmenu{
  display: block;
}

.nav-dropmenu a{
  display:block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration:none;
  color: rgba(234,240,255,.9);
  font-weight: 900;
}

.nav-dropmenu a:hover{
  background: rgba(255,255,255,.08);
}
.option select{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(10,16,28,.14);
  background: rgba(10,16,28,.03);
  font-weight:900;
}
/* =========================
   COMBO PAGE: match checkout/service form style
   Paste at VERY BOTTOM of styles.css
========================= */

.checkout-grid{
  align-items: start;
}

.checkout-grid .card{
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

/* Make the service list look like your other checkout lists */
.checkout-grid .option{
  background: rgba(10,16,28,.03);
  border: 1px solid rgba(10,16,28,.12);
  border-radius: 14px;
  padding: 12px 14px;
}

.checkout-grid .option + .option{
  margin-top: 10px;
}

/* headings spacing */
.checkout-grid h3{
  margin-bottom: 14px;
}

.checkout-grid h4{
  margin: 14px 0 10px;
  font-weight: 950;
  color: rgba(11,18,32,.92);
  background: none !important;
}

/* summary table spacing */
.checkout-grid .table{
  margin-top: 10px;
}

/* buttons consistent */
.checkout-grid .estimate-actions .btn{
  min-width: 180px;
}

/* Mobile better stacking */
@media (max-width: 900px){
  .checkout-grid{
    grid-template-columns: 1fr !important;
  }
}
.option{
    font-weight:500;
}
.option strong{
    font-weight:600;
}

.option label{
    font-weight:500;
}
/* =========================
   NAV DROPDOWN (Services)
   ========================= */
.nav-dropdown{
  position: relative;
  display: inline-block;
}

.nav-dropbtn{
  border: none;
  background: var(--hf-chip);
  border: 1px solid var(--hf-chip-border);
  cursor: pointer;
}

.nav-caret{
  font-size: 12px;
  margin-left: 6px;
  opacity: .9;
}

.nav-dropmenu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: rgba(7,10,19,.96);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
  display: none;
  z-index: 9999;
}

.nav-dropmenu a{
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 8px;
}

.nav-dropmenu a:last-child{ margin-bottom: 0; }

.nav-dropmenu a:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}

/* Show dropdown on hover (desktop) */
.nav-dropdown:hover .nav-dropmenu{
  display: block;
}

/* Also show dropdown when opened by click (mobile/fallback) */
.nav-dropdown.open .nav-dropmenu{
  display: block;
}
/* Fix Services dropdown color */

.nav-dropmenu{
    background:#1f5a89 !important;   /* same blue as header */
}

.nav-dropmenu a{
    background:rgba(255,255,255,0.10) !important;
    color:white !important;
}

.nav-dropmenu a:hover{
    background:rgba(255,255,255,0.20) !important;
}
/* ===== Improve Services Dropdown Size ===== */

.nav-dropmenu{
    min-width: 200px;   /* smaller width */
    padding: 8px;
}

.nav-dropmenu a{
    padding: 8px 12px;  /* reduce height */
    font-size: 15px;    /* slightly smaller text */
    border-radius: 8px;
    margin-bottom: 6px;
}

.nav-dropmenu a:last-child{
    margin-bottom: 0;
}
/* ===== Slim Header ===== */

.header{
    padding: 8px 0 !important;
}

.header-row{
    min-height: 56px !important;
}

/* Navigation buttons */
.nav-link{
    padding: 6px 14px !important;
    font-size: 15px;
}

/* Logo text */
.brand-text{
    font-size: 20px;
}

/* Currency dropdown */
.currency-select{
    padding: 6px 10px;
}
/* Slim the blue header bar */
.header{
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

/* Reduce inner spacing */
.header-row{
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.header-row{
  min-height: 60px !important;
}
/* ===== Ultra Slim Header ===== */

.header{
  padding: 2px 0 !important;   /* reduce top/bottom spacing */
}

.header-row{
  min-height: 44px !important; /* control total header height */
  padding: 0 !important;
}

/* Navigation buttons */
.nav-link{
  padding: 4px 12px !important;
  font-size: 14px;
}

/* Logo area */
.brand{
  padding: 0 !important;
}

/* Logo text size */
.brand-text{
  font-size: 18px;
}

/* HERO: stop right card stretching too tall */
.hero-grid{
  align-items: flex-start !important; /* was stretch / causing right box to grow */
}

/* (optional) keep consultation box naturally sized */
.consult-card{
  height: auto !important;
  align-self: flex-start !important;
}
/* Make Free Consultation box a bit more compact (height only, width unchanged) */
.consult-card{
  padding: 18px !important;  /* reduce if needed: 16px */
}

.consult-sub{
  margin-bottom: 12px !important;
}

.consult-list{
  gap: 10px !important;
}

.consult-item{
  padding: 12px !important;
}
/* Reduce height of Free Consultation box */

.consult-card{
  padding:16px !important;
}

.consult-card h3{
  margin-bottom:8px !important;
}

.consult-item{
  padding:10px 12px !important;
  margin-bottom:8px !important;
}

.consult-card .btn{
  padding:10px !important;
}

.consult-card p{
  margin-bottom:8px !important;
}
/* Remove Fast Response box */
.consult-card .consult-item:first-of-type{
  display:none;
}
/* Hide Fast Response and Email sections in consultation box */

.consult-card .consult-item:nth-child(1),
.consult-card .consult-item:nth-child(2){
    display: none;
}
<div class="consult-item">
  <strong>Free Strategy Consultation</strong>
  Whether you're just starting your Amazon or eBay journey or already running a store and looking to scale, this consultation will help you understand the best strategy for your business. We’ll discuss your goals, opportunities, and the steps needed to grow successfully.
</div>
/* ===== Ultra Slim Services Dropdown ===== */

.nav-dropdown{
  padding: 6px !important;
  border-radius: 10px !important;
  width: 200px !important;
}

.nav-dropdown a{
  display: block;
  padding: 5px 12px !important;   /* ultra thin height */
  font-size: 13px !important;
  border-radius: 8px !important;
  margin-bottom: 4px !important;
  font-weight: 600;
}

/* remove extra space on last item */
.nav-dropdown a:last-child{
  margin-bottom: 0;
}
/* Slightly thicker blue header line */

.header{
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
/* Fix About page image display */

.about-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.about-image{
  min-height: 260px;
  overflow: hidden;
}
/* Fix About image size */

.about-photo{
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.about-photo img{
  width:100%;
  height:auto;
  object-fit:contain;
  border-radius:12px;
}
.consult-book{
margin-top:20px;
padding-top:15px;
border-top:1px solid rgba(0,0,0,0.08);
}

.consult-book h3{
font-size:18px;
margin-bottom:8px;
}

.consult-book p{
font-size:14px;
color:#555;
margin-bottom:12px;
line-height:1.5;
}
/* Remove checkout section ONLY on contact page */

body:has(.quick-info) .estimate-actions{
display:none !important;
}

body:has(.quick-info) #purchaseBtn{
display:none !important;
}

body:has(.quick-info) #purchaseAmount{
display:none !important;
}
.quick-info .btn-primary{
margin-top:10px;
width:100%;
}
/* Contact page layout */

.contact-wrap{
display:flex;
gap:24px;
align-items:flex-start;
flex-wrap:wrap;
}

.contact-wrap > div{
flex:1;
min-width:300px;
}
.contact-wrap{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
}

@media(max-width:900px){
.contact-wrap{
grid-template-columns:1fr;
}
}
/* Contact page button spacing */
.contact-wrap .btn{
display:block;
width:100%;
margin-top:10px;
}

.contact-wrap .btn:first-of-type{
margin-top:14px;
}
/* FORCE COMPANY PAGE SERVICES TO MATCH OTHER SERVICE PAGES */

.option{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 16px;
margin-top:10px;
border-radius:12px;
background:#f5f7fb;
border:1px solid rgba(0,0,0,0.08);
font-weight:700;
}

.option span{
display:flex;
align-items:center;
gap:10px;
}

.option strong{
font-weight:900;
}

/* keep description but style it properly */

.option + p.tiny{
margin:6px 6px 14px 6px;
font-size:12px;
color:#6b7280;
}
/* Mobile Specific Changes */
@media (max-width: 768px) {
  /* Hide the desktop navigation links */
  .nav-links, .desktop-buttons {
    display: none;
  }

  /* Ensure the header stays as one slim row */
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

  /* Show the Blue Hamburger Button on the right */
  .mobile-toggle-btn {
    display: flex;
    background-color: #0099ff; /* Your specific blue */
    padding: 8px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
  }
}

/* Desktop Specific (769px and above) */
@media (min-width: 769px) {
  /* Hide the mobile button on desktop */
  .mobile-toggle-btn {
    display: none;
  }
  
  /* Show your desktop buttons as normal */
  .nav-links {
    display: flex;
  }
}
/* =========================================
   FORCE MOBILE HEADER (Reference Style)
   ========================================= */
@media (max-width: 900px) {
  /* 1. Hide the horizontal scrolling buttons (Home, Services, etc.) */
  .nav, .header-actions .nav-link, .header-actions .btn {
    display: none !important;
  }

  /* 2. Style the Header Container to be a slim row */
  .header-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 8px 0 !important;
  }

  /* 3. Make the Logo stay on the left */
  .brand {
    flex: 0 1 auto !important;
  }

  /* 4. Show and style the BLUE Hamburger Button on the right */
  .menu-btn {
    display: flex !important; /* Forces the button to show */
    background: #007bff !important; /* Bright Blue from reference */
    color: #ffffff !important;
    border: none !important;
    padding: 12px 14px !important;
    border-radius: 8px !important;
    font-size: 22px !important;
    line-height: 1;
    cursor: pointer;
  }

  /* 5. Ensure the text 'Ecom With Ahmad' doesn't wrap */
  .brand-text {
    font-size: 18px !important;
    white-space: nowrap !important;
  }
}

/* =========================
   MOBILE HEADER FIX
========================= */
@media (max-width: 900px) {
  /* 1. Hide the wide desktop buttons */
  .nav, .header-actions {
    display: none !important;
  }

  /* 2. Fix the layout row */
  .header-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 0 !important;
  }

  /* 3. Style the Blue Hamburger Button on the right */
  .menu-btn {
    display: flex !important;
    background: #007bff !important; /* The Blue from your reference */
    color: white !important;
    border: none !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    font-size: 22px !important;
    cursor: pointer;
  }

  /* 4. Ensure logo text fits on one line */
  .brand-text {
    font-size: 18px !important;
    white-space: nowrap !important;
  }
}

/* Hide the button on Desktop view */
@media (min-width: 901px) {
  .menu-btn {
    display: none !important;
  }
}
/* hide hamburger on desktop */
.menu-btn {
  display: none;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
  .header {
    position: relative;
  }

  .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* keep logo left */
  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand-text {
    font-size: 18px; /* adjust if needed */
  }

  .logo-box img {
    max-height: 42px;
    width: auto;
    display: block;
  }

  /* hide desktop nav */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b3d6d; /* use your existing header color */
    padding: 14px 16px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  /* show mobile menu when active */
  .nav.show {
    display: flex;
  }

  /* mobile links full width */
  .nav .nav-link,
  .nav .nav-dropbtn,
  .nav .nav-dropmenu a {
    width: 100%;
    text-align: left;
  }

  /* dropdown block on mobile */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropmenu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 8px;
    border-radius: 10px;
  }

  .nav-dropdown.open .nav-dropmenu {
    display: block;
  }

  /* hide right-side desktop actions */
  .currency-select,
  .snipcart-checkout {
    display: none;
  }

  /* show hamburger only on mobile */
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    padding: 6px 8px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
/* hide mobile menu button on desktop */
.menu-btn {
  display: none;
}

/* MOBILE HEADER FIX ONLY */
@media (max-width: 768px) {
  .header {
    position: relative;
  }

  .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* logo area */
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
  }

  .brand-text {
    font-size: 16px;
    white-space: nowrap;
  }

  .logo-box img {
    height: 42px;
    width: auto;
    display: block;
  }

  /* hide desktop nav and right items */
  .nav,
  .currency-select,
  .snipcart-checkout {
    display: none !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center;
    margin-left: auto;
  }

  /* show hamburger on mobile */
  .menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    padding: 6px 8px;
  }

  /* opened mobile menu */
  .nav.show {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b3d6d;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px 18px;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .nav.show .nav-link,
  .nav.show .nav-dropbtn,
  .nav.show .nav-dropmenu a {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropmenu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 8px;
  }

  .nav-dropdown.open .nav-dropmenu {
    display: block;
  }
}
.menu-btn {
  display: none;
}

@media (max-width: 768px) {
  .header {
    position: relative;
  }

  .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    display: none !important;
  }

  .nav.show {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b3d6d;
    padding: 15px;
    z-index: 999;
  }

  .nav.show .nav-link,
  .nav.show .nav-dropbtn,
  .nav.show .nav-dropmenu a {
    width: 100%;
    text-align: left;
  }

  .currency-select,
  .snipcart-checkout {
    display: none !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center;
    margin-left: auto;
  }

  .menu-btn {
    display: block !important;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    padding: 6px 8px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropmenu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 8px;
  }

  .nav-dropdown.open .nav-dropmenu {
    display: block;
  }
}
.mobile-dropdown {
  width: 100%;
}

.mobile-dropbtn {
  width: 100%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 18px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-dropmenu {
  display: none;
  margin-top: 8px;
  padding-left: 10px;
}

.mobile-dropmenu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 12px 14px;
  margin-top: 8px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
}

.mobile-dropdown.open .mobile-dropmenu {
  display: block;
}
.mobile-dropdown {
  width: 100%;
}

.mobile-dropbtn {
  width: 100%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 16px 18px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-dropmenu {
  display: none;
  margin-top: 8px;
}

.mobile-dropmenu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 14px 16px;
  margin-top: 8px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
}

.mobile-dropdown.open .mobile-dropmenu {
  display: block;
}

.mobile-dropdown.open .mobile-caret {
  transform: rotate(180deg);
}

.mobile-caret {
  transition: transform 0.2s ease;
}
.mobile-dropdown {
  width: 100%;
}

.mobile-dropbtn {
  width: 100%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 16px 18px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.mobile-dropmenu {
  display: none !important;
  margin-top: 8px;
}

.mobile-dropmenu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 14px 16px;
  margin-top: 8px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
}

.mobile-dropdown.open .mobile-dropmenu {
  display: block !important;
}

.mobile-caret {
  transition: transform 0.2s ease;
}

.mobile-dropdown.open .mobile-caret {
  transform: rotate(180deg);
}
.mobile-dropdown {
  width: 100%;
}

.mobile-dropbtn {
  width: 100%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 16px 18px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.mobile-dropmenu {
  display: none !important;
  margin-top: 8px;
}

.mobile-dropmenu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 14px 16px;
  margin-top: 8px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
}

.mobile-dropdown.open .mobile-dropmenu {
  display: block !important;
}

.mobile-caret {
  transition: transform 0.2s ease;
}

.mobile-dropdown.open .mobile-caret {
  transform: rotate(180deg);
}
/* MOBILE SERVICES DROPDOWN FIX */
.mobile-dropdown {
  width: 100%;
}

.mobile-dropbtn {
  width: 100%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 16px 18px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.mobile-dropmenu {
  display: none;
  margin-top: 8px;
}

.mobile-dropmenu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 14px 16px;
  margin-top: 8px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
}

.mobile-dropdown.open .mobile-dropmenu {
  display: block;
}

.mobile-caret {
  transition: transform 0.2s ease;
}

.mobile-dropdown.open .mobile-caret {
  transform: rotate(180deg);
}
/* ===== FINAL ISOLATED HERO SERVICES DROPDOWN ===== */

.hero-services-shell{
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

#heroServicesMenuFixed[hidden]{
  display: none !important;
}

#heroServicesMenuFixed{
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  z-index: 99999 !important;

  width: 210px !important;
  padding: 8px !important;
  margin: 0 !important;

  background: #ffffff !important;
  border: 1px solid #e6ebf2 !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.08) !important;

  box-sizing: border-box !important;
}

#heroServicesMenuFixed:not([hidden]){
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

#heroServicesMenuFixed a{
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;

  padding: 8px 12px !important;
  margin: 0 !important;

  background: #f5f7fb !important;
  border: 1px solid #e6ebf2 !important;
  border-radius: 999px !important;

  color: #0b2a4a !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

#heroServicesMenuFixed a:hover{
  background: #e9eef6 !important;
  border-color: #dbe4ef !important;
}

@media (max-width: 768px){
  .hero-services-shell{
    display: flex !important;
    width: 100% !important;
  }

  #heroServicesMenuFixed{
    position: static !important;
    width: 100% !important;
    margin-top: 10px !important;
  }
}