/* ============================================================
   1. VARIABLES — Core Theme Colors, Blur, Radius, Glow
============================================================ */

:root {
  --tw-bg-dark-glass: rgba(0,0,0,0.55);
  --tw-bg-dark-solid: #020617;
  --tw-glass-border: rgba(255,255,255,0.12);
  --tw-blue: #4a65ed;
  --tw-text-light: #f9fafb;
  --tw-text-muted: #9ca3af;
  --tw-radius: 14px;
  --tw-blur: blur(18px);
  --tw-transition: 0.25s ease;
  --tw-glow: 0 0 6px rgba(74,101,237,0.26);
}

/* ============================================================
   2. BASE ELEMENTS — Links, Typography, Resets
============================================================ */

a {
  color: #000000;
 
}

a:hover {
  color: #3b4fe0;

}

/* ============================================================
   3. HEADER — Sticky Dark‑Glass, 2‑Row Support
============================================================ */

.tw-header {
  position: sticky;
  color: #000000 !important;
  top: 0;
  width: 100%;
  z-index: 9990;
  backdrop-filter: blur(14px);
  background: rgba(15, 18, 28, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tw-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  gap: 14px;
  overflow: visible !important;
}

/* LEFT: hamburger + logo + book now */
.tw-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.tw-header-btn-left {
  margin-left: 18px;
  padding: 10px 18px;
  background: #4a65ed;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .25s ease;
}

.tw-header-btn-left:hover {
  background: #3b4fe0;
}

/* CENTER: desktop menu, allowed to wrap into 2 rows */

.tw-header-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 1 100%;
  order: 3; /* own row under left/right on desktop */
}

.tw-menu-root {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 32px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Desktop visibility */

@media (min-width: 961px) {
  .tw-header-center {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: 100%;
  }
}

@media (max-width: 960px) {
  .tw-header-center,
  .tw-desktop-menu,
  .tw-menu-root {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}

/* Sticky shrink */

.tw-header.tw-shrink {
  padding-top: 6px;
  padding-bottom: 6px;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.45);
  transition: padding .25s ease, background .25s ease;
}

/* ============================================================
   4. DESKTOP MENU — Root + Dropdowns + Mega
============================================================ */

.tw-desktop-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}



.tw-menu-root > li > a:hover {
 
  padding: 10px 4px;
  font-weight: 500;
   color: #111827 !important;


}
.tw-dropdown {
  margin: 0;
  padding: 14px 0;
   background: #ffffff !important; 
    border: 1px solid #e5e7eb !important;
}

.tw-menu-root > li > .tw-dropdown {
    left: 0;
    transform: translateX(0);
   
}



.tw-menu-root > li > a {
  display: inline-block;
  padding: 10px 14px; /* or whatever your design uses */
}
.tw-menu-root > li {
 
  position: relative;


 left: 0px;
  margin: 0;
  padding: 0;
}

/* Force submenu text color */
.tw-dropdown li a {
  color: #111827 !important;
}

/* Hover */
.tw-dropdown li a:hover {
  color: #000 !important;
  background: #f3f4f6 !important;
}



.tw-dropdown,
.tw-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--tw-bg-dark-glass);
  backdrop-filter: var(--tw-blur);
  border: 1px solid var(--tw-glass-border);
  border-radius: var(--tw-radius);
  padding: 14px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 999;
}

.tw-menu-root > li:hover > .tw-dropdown,
.tw-menu-root > li:hover > .tw-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tw-dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--tw-text-light);
  white-space: nowrap;
}

.tw-dropdown a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* Mega menu layout */



.tw-mega-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tw-text-muted);
  margin-bottom: 6px;
  padding-left: 4px;
}

.tw-mega-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--tw-radius);
  color: var(--tw-text-light);
}

.tw-mega-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

@media (max-width: 480px) {
  .tw-mega-menu {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   5. HAMBURGER BUTTON
============================================================ */

.tw-mobile-open {
  display: none;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.tw-mobile-open span {
  display: block;
  width: 100%;
  height: 3px;
  background: #000000;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Show hamburger only on mobile */
@media (max-width: 960px) {
  .tw-mobile-open {
    display: flex !important;
    color: #000000;
  }
}

/* Animation — Hamburger → X */

.tw-mobile-open.tw-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.tw-mobile-open.tw-open span:nth-child(2) {
  opacity: 0;
}

.tw-mobile-open.tw-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Close button inside mobile menu */

.tw-close-btn {
  display: block;
  font-size: 2rem;
  color: var(--tw-text-light);
  margin-bottom: 18px;
  text-align: right;
  cursor: pointer;
}

/* ============================================================
   6. MOBILE MENU — LEFT SIDE DRAWER
============================================================ */

.tw-mobile-menu {
  position: fixed;
  top: 0;
  left: -320px; /* hidden off-screen */
  width: 320px; /* drawer width */
  height: 100vh;
  background: var(--tw-bg-dark-glass);
  backdrop-filter: var(--tw-blur);
  border-right: 1px solid var(--tw-glass-border);
  padding: 28px 22px;
  overflow-y: auto !important;
  transition: left .32s ease, opacity .32s ease;
  opacity: 0;
  z-index: 9999;
}

.tw-mobile-menu.active {
  left: 0;
  opacity: 1;
}

/* ============================================================
   7. MOBILE LIST — Base + Accordion
============================================================ */

.tw-mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tw-mobile-list li {
  margin-bottom: 12px;
  position: static !important;
  z-index: auto !important;
  overflow: visible !important;
}

.tw-mobile-list a {
  display: block;
  padding: 12px 6px;
  color: var(--tw-text-light);
  font-size: 1rem;
  border-radius: var(--tw-radius);
  height: auto;
  line-height: 1.4;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.tw-mobile-list a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* Accordion */

.tw-mobile-list li.has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tw-mobile-list li.has-children > a::after {
  content: "▾";
  font-size: 0.85rem;
  opacity: 0.7;
  transition: transform var(--tw-transition), opacity var(--tw-transition);
}

.tw-mobile-list li.has-children.open > a::after {
  transform: rotate(180deg);
  opacity: 1;
}


/* Accordion panels hidden by default */
.tw-mobile-list li.has-children > ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

/* When open */
.tw-mobile-list li.has-children.open > ul {
  max-height: 500px; /* JS will override with scrollHeight */
}






/* ============================================================
   8. SERVICE AREAS POPUP — Overlay + Modal
============================================================ */

.tw-modal-overlay {
  position: fixed;
  top: 0;
  left: 0 !important;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  z-index: 10040;
  overflow-y: auto;
}

.tw-modal-overlay.active {
  display: flex;
}

/* Modal itself (centered card inside overlay) */

.tw-modal,
.tw-service-areas-modal,
#tw-service-areas-popup {
  background: rgba(20,20,20,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  width: 100%;
  max-width: 520px !important;
  padding: 20px !important;
  color: #fff;
  overflow: visible !important;
  z-index: 10050 !important;
  margin: 0 auto;
}

.tw-modal-title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}

.tw-modal-close {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #4a65ed;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

/* ============================================================
   9. SERVICE AREAS POPUP — 2‑Column Grid
============================================================ */

.tw-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.tw-service-col {
  min-width: 0;
}

.tw-service-col-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: normal !important;
  word-break: break-word;
}

.tw-region-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 10px 0 6px;
  color: #ffffffcc;
}

.tw-service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tw-service-item {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #e5e7eb;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease;
}

.tw-service-item:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Stack columns on very small screens */

@media (max-width: 480px) {
  .tw-service-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   10. SERVICE AREAS POPUP — City Typography Upgrade
============================================================ */

.tw-service-accordion .tw-acc-body a {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  color: #f1f5f9;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.2px;
}

.tw-service-accordion .tw-acc-body a:last-child {
  border-bottom: none;
}

.tw-service-accordion .tw-acc-body a:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(255,255,255,0.25);
}
/* ============================================================
   SIMPLE FULL-WIDTH SERVICE AREAS MENU (DESKTOP)
============================================================ */

/* Target the mega menu under "Service Areas" */
.tw-mega-menu {
  position: fixed;
  top: 100%;
  left: 0;
  width: 100% !important;          /* full width */
  background: #ffffff !important;  /* white background */
  border: 1px solid #e5e7eb;
  border-radius: 0;                /* flat edges */
  padding: 20px 30px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  backdrop-filter: none !important;
  max-height: none !important;
  overflow-y: visible !important;
color: #ffffff;
  /* SIMPLE LAYOUT */
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

/* Remove the 2-column grid */
.tw-mega-menu > div,
.tw-mega-menu > ul {
  display: block !important;
  width: 100% !important;
}

/* Titles */
.tw-mega-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 10px 0 4px;
}

/* Links */
.tw-mega-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #1f2937 !important;
  background: transparent !important;
  transition: background .2s ease;
}

.tw-mega-menu a:hover {
  background: #f3f4f6 !important; /* light gray hover */
  color: #111827 !important;
}

.tw-mega-menu {
  width: 100% !important;
  margin: 0 auto;
  position: fixed;
 
 
}


/* ============================================================
   FULL-WIDTH MEGA MENU — REGIONS AS COLUMNS
============================================================ */

.tw-mega-menu {
  position: fixed;
  top: 100%;
  left: 0;
  width: 100% !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 30px 40px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);

  /* GRID: one column per region */
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  z-index: 999;
}

/* Region block */
.tw-mega-region {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Region title */
.tw-mega-region-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

/* City list */
.tw-mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tw-mega-list li a {
  display: block;
  padding: 6px 0;
  color: #374151;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background .2s ease;
}

.tw-mega-list li a:hover {
  background: #f3f4f6;
  color: #111827;
}
/* ============================================================
   REGIONS AS COLUMNS (THE REAL FIX)
============================================================ */

.tw-mega-col {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

/* Region block */
.tw-mega-region {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Region title */
.tw-mega-region-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

/* City list */
.tw-mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tw-mega-list li a {
  display: block;
  padding: 6px 0;
  color: #374151;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background .2s ease;
}

.tw-mega-list li a:hover {
  background: #f3f4f6;
  color: #111827;
}
/* ============================================================
   FORCE REGIONS INTO COLUMNS (FINAL FIX)
============================================================ */


/* THIS is the real fix — your regions live inside .tw-mega-col */
.tw-mega-col {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
  gap: 40px !important;
  width: 100% !important;
}

/* Region block */
.tw-mega-region {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

/* Region title */
.tw-mega-region-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

/* City list */
.tw-mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tw-mega-list li a {
  display: block;
  padding: 6px 0;
  color: #374151;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background .2s ease;
}

.tw-mega-list li a:hover {
  background: #f3f4f6;
  color: #111827;
}


/* Regions as columns inside each .tw-mega-col */
.tw-mega-regions {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

/* Region block */
.tw-mega-region {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Region title */
.tw-mega-region-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

/* City list */
.tw-mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tw-mega-list li a {
  display: block;
  padding: 6px 0;
  color: #374151;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background .2s ease;
}

.tw-mega-list li a:hover {
  background: #f3f4f6;
  color: #111827;
}
/* ============================================================
   REGIONS AS COLUMNS + SEPARATORS + STRONG TITLES
============================================================ */

/* Grid for regions */
.tw-mega-col {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding: 20px 0;
}

/* Vertical separators */
.tw-mega-col > .tw-mega-region {
  position: relative;
  padding-right: 20px;
}

.tw-mega-col > .tw-mega-region:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e5e7eb;
  opacity: 0.7;
}

/* Region title — stronger + horizontal separator */
.tw-mega-region-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 6px;
  margin-bottom: 10px;
}

/* City list */
.tw-mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tw-mega-list li a {
  display: block;
  padding: 6px 0;
  color: #374151;
  font-size: 0.95rem;
  transition: background .2s ease, color .2s ease;
}

.tw-mega-list li a:hover {
  background: #f3f4f6;
  color: #111827;
}
/* ============================================================
   TARGETWASH — PREMIUM MEGA MENU (OPTION A FINAL BUILD)
   Clean • Modern • 6‑Column Layout • No Conflicts
============================================================ */

/* ------------------------------
   MEGA MENU CONTAINER
--------------------------------*/

.tw-dropdown,
.tw-mega-menu {
  position: fixed;
  top: 100%;
  left: 0;
  width: 100% !important;
   background: #ffffff !important;

  border: 3px solid #e5e7eb;
  border-radius: 21;
  padding: 24px 32px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
color: #000000; !important;
  min-width: 200px;
  opacity: 3;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 999;
}


/* ------------------------------
   WRAPPER — STACK SECTIONS
--------------------------------*/
.tw-mega-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* ------------------------------
   SECTION BLOCK
--------------------------------*/
.tw-mega-section {
  width: 100%;
}

/* ------------------------------
   ROW — TITLE LEFT, GRID RIGHT
--------------------------------*/
.tw-mega-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

/* ------------------------------
   SECTION TITLE
--------------------------------*/
.tw-mega-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #111827;
  padding-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ------------------------------
   6‑COLUMN REGION GRID
--------------------------------*/
.tw-mega-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}

/* ------------------------------
   REGION TITLE
--------------------------------*/
.tw-mega-region-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #e5e7eb;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ------------------------------
   CITY LIST
--------------------------------*/
.tw-mega-list li a {
  display: block;
  padding: 4px 0;
  font-size: 0.95rem;
  color: #374151;
  transition: color .2s ease, background .2s ease;
}

.tw-mega-list li a:hover {
  color: #111827;
  background: #f3f4f6;
}

/* ------------------------------
   BOOK BY LOCATION LABEL
--------------------------------*/
#tw-location-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

#tw-location-label i.fa {
  font-size: 14px;
  opacity: 0.8;
}



/* ------------------------------
   DROPDOWN ICON
--------------------------------*/
.w-icon-dropdown-toggle {
  font-size: 0.85rem;
  opacity: 0.7;
  transition: transform .25s ease, opacity .2s ease;
}

.has-children:hover > a .w-icon-dropdown-toggle {
  transform: rotate(180deg);
  opacity: 1;
}


/* ------------------------------
   HOVER BEHAVIOR (DESKTOP)
--------------------------------*/
.tw-desktop-menu .has-children:hover > .tw-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ------------------------------
   FULL‑WIDTH NO‑SCROLL BEHAVIOR
--------------------------------*/
.tw-mega-menu,
.tw-mega-menu * {
  max-height: none !important;
  overflow: visible !important;
}
/* Fix invisible submenu text */
.tw-dropdown li a,
.tw-dropdown .tw-service-card-title {
  color: #111827 !important; /* dark charcoal */
}

/* Hover */
.tw-dropdown li a:hover {
  color: #000 !important;
  background: #f3f4f6 !important;
}

.tw-services-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 16px;
  min-width: 260px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .2s ease;
}

.tw-services-toggle:hover .tw-services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Tabs */
.tw-service-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.tw-tab {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
}

.tw-tab.active {
  background: #000000;
  color: #fff;
}

/* Lists */
.tw-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tw-service-list li a {
  display: block;
  padding: 6px 0;
  color: #374151;
}

.tw-service-list li a:hover {
  color: #111827;
}

.hidden {
  display: none;
}
/* Accordion wrapper */
.tw-mobile-accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tw-accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.tw-accordion-btn {
  width: 100%;
  padding: 14px 16px;
  background: #f9fafb;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tw-accordion-btn::after {
  content: "▾";
  font-size: 0.9rem;
  transition: transform .25s ease;
  opacity: 0.7;
}

.tw-accordion-item.active .tw-accordion-btn::after {
  transform: rotate(180deg);
  opacity: 1;
}

.tw-accordion-panel {
  display: none;
  padding: 0 16px 12px 16px;
  background: #ffffff;
}

.tw-accordion-item.active .tw-accordion-panel {
  display: block;
}

.tw-accordion-subregion {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #111827;
}

.tw-accordion-city a {
  display: block;
  padding: 6px 0 6px 12px;
  color: #374151;
}

.tw-accordion-city a:hover {
  color: #111827;
}
/* REGION BUTTON */
.tw-region-btn {
  width: 100%;
  padding: 12px 6px;
  background: var(--tw-bg-soft);
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--tw-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tw-region-btn::after {
  content: "▾";
  font-size: 0.85rem;
  opacity: 0.7;
  transition: transform 0.25s ease;
}

.tw-region-item.open .tw-region-btn::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* REGION PANEL (cities) */
.tw-region-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding-left: 12px;
}

.tw-region-item.open > .tw-region-panel {
  max-height: 500px; /* JS overrides with scrollHeight */
}
.tw-accordion-city a.active-city {
  color: var(--tw-blue);
  font-weight: 600;
}
/* MAIN ACCORDION (Car Wash / Home Cleaning) */
.tw-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.tw-accordion-item.active > .tw-accordion-panel {
  max-height: 500px; /* enough to show content */
}

/* REGION ACCORDION */
.tw-region-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.tw-region-item.open > .tw-region-panel {
  max-height: 500px;
}

/* ============================================================
   BOOK BY LOCATION — MOBILE HEADER (MATCH DESKTOP STYLE)
============================================================ */

.tw-mobile-toggle {
  padding: 14px 20px;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
  font-size: 12px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Optional: subtle icon arrow like desktop */
.tw-mobile-toggle::after {
  content: "▾";
  font-size: 12px;
  color: #666;
  margin-left: 6px;
  opacity: 0.7;
}

/* Text inside */
.tw-mobile-toggle span {
  display: block;
}
#book-location-anchor,
#tw-book-by-location {
  display: inline-flex;
  margin: 0;
  text-align: left;
  align-items: center;
}

.tw-logo,
.tw-header-inner {
  overflow: visible !important;
}

/* Brand name styling */
.tw-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-top: 8px;
  text-align: center;
}

/* Base widget (normal position) */
.tw-book-wrapper {
  position: fixed;
  top: 200px;
  left: 7px;
  transform: none;
  z-index: 99999;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  padding: 10px 22px;
  border-radius: 40px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);

  display: inline-flex;
  align-items: center;
  gap: 18px;

  width: auto;
  max-width: 90%;
  opacity: 1;
}

/* Floating pill mode */
.tw-book-wrapper.tw-floating {
  position: fixed;
  top: 200px;
  left: 3px;
  transform: none;
  z-index: 99999;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  padding: 10px 22px;
  border-radius: 40px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);

  display: inline-flex;
  align-items: center;
  gap: 12px;

  width: auto;
  max-width: 90%;
  opacity: 1;
}

/* Highlight selected city */
.tw-city-active {
  font-weight: 700;
  color: #0a84ff !important;
}

/* ------------------------------------------------------------
   FIX ONLY THE BROKEN OVERRIDES — DO NOT TOUCH MEGA MENU LAYOUT
------------------------------------------------------------- */

/* Ensure regions + cities are visible */
.tw-mega-region .tw-mega-list {
  display: block !important;
}

.tw-mega-section {
  display: block !important;
}

/* JS-driven open states */
.tw-section-open {
  display: block !important;
}

.tw-region-open .tw-mega-list {
  display: block !important;
}

.tw-region-open .tw-mega-list li {
  display: block !important;
}
/* Hide the floating widget on mobile */
@media (max-width: 960px) {
  .tw-book-wrapper {
    display: none !important;
  }
}
.tw-accordion-btn {
  font-size: 12px !important;
  padding: 10px 14px !important;
}

.tw-region-btn {
  font-size: 12px !important;
  padding: 6px 14px !important;
}

.tw-accordion-city {
  font-size: 12px !important;
  padding: 2px 2px !important;
  /* IMPORTANT: no overflow here */
}

.tw-mobile-toggle span {
  font-size: 16px !important;
}

.tw-book-wrapper {
  border: 1px solid #4a65ed !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
  overflow-y: auto !important;
  max-height: 350px !important; /* FIX */
}



/* REQUIRED for JS accordion to work */
.tw-region-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.tw-region-item.open > .tw-region-btn {
  background: #4a65ed !important;
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(74, 101, 237, 0.25);
}