:root {
  /* Colors */

  --primary: #046bd2;
  --primary-dark: #014e9a;
  --primary-light: #e0f0fe;
  --secondary: #00d2ff;
  --background: #f0f5fa;
  --background-dark: #0f172a;
  --slate-dark: #1e293b;
  --slate-body: #334155;
  --slate-light: #64748b;
  --slate-border: #f1f5f9;
  --white: #ffffff;
  --green: #22c55e;
  --green-dark: #16a34a;
  --red: #ef4444;
  --red-dark: #dc2626;
  --yellow: #00569c;
  --yellow-dark: #0559a8;
  --accent-yellow: #046bd2;

  /* Typography */

  --font-sans: "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Shadows */

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-primary: 0 10px 20px -3px rgba(4, 107, 210, 0.25);
  --shadow-green: 0 10px 20px -3px rgba(34, 197, 94, 0.25);

  /* Borders & Radius */

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions */

  --transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------------------------------------------------
  RESET & BASE STYLES
--------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--slate-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Hide scrollbar utility */

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ---------------------------------------------------------------------
   LAYOUT & GRID SYSTEM (MOBILE-FIRST)
--------------------------------------------------------------------- */

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 24px;
}

/* ---------------------------------------------------------------------
  GENERAL UTILITIES & STYLING
--------------------------------------------------------------------- */

.header-py {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 0;
}

.py-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.section-subtitle {
  color: var(--yellow-dark);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #239adf 10%,
    var(--secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-desc {
  color: var(--slate-body);
  font-size: 14px;
  max-width: 600px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  text-align: center;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  font-size: 14px;
}

.wizard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  text-align: center;
  padding: 15px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  font-size: 14px;
}

.btn-primary {
  background-color: var(--yellow);
  font-size: 14px !important;
  color: #ffff;
  box-shadow: 0 12px 24px rgba(234, 230, 219, 0.05);
}
.btn-primary:hover {
  background-color: var(--yellow-dark);
  color: #ffff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 24px rgba(115, 134, 217, 0.35);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--slate-dark);
  border: 1px solid var(--slate-border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background-color: var(--background);
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-md);
}

.btn-green-outline {
  border: 1px solid var(--green);
  color: var(--green-dark);
  background-color: transparent;
}
.btn-green-outline:hover {
  background-color: rgba(34, 197, 94, 0.05);
  transform: translateY(-2px);
}

.btn-green-fill {
  background-color: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-green-fill:hover {
  background-color: var(--green-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.35);
}

/* White buttons for blue background */

.btn-white-fill {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.btn-white-fill:hover {
  background-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.25);
  color: var(--primary-dark);
}

.btn-white-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  background-color: transparent;
}
.btn-white-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

/* Glassmorphism */

.glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-dark {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Badges & Tags */

.badge-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(252, 193, 24, 0.12);
  color: #ffff;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.badge-highlight i {
  color: #ffff;
}

/* ---------------------------------------------------------------------
   DECORATIONS & ANIMATIONS
--------------------------------------------------------------------- */

.wave-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
.wave-circle-left {
  position: absolute;
  top: -160px;
  left: -160px;
  width: 384px;
  height: 384px;
  border-radius: var(--radius-full);
  background-color: rgba(4, 107, 210, 0.06);
  filter: blur(80px);
}
.wave-circle-right {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 384px;
  height: 384px;
  border-radius: var(--radius-full);
  background-color: rgba(0, 210, 255, 0.1);
  filter: blur(80px);
}

/* Animations */

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(4, 107, 210, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(4, 107, 210, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(4, 107, 210, 0);
  }
}
.pulse-ring-active {
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(4, 107, 210, 0.5);
    border-color: var(--primary);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(4, 107, 210, 0);
    border-color: var(--primary);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(4, 107, 210, 0);
  }
}
.pulse-highlight {
  animation: pulse-highlight 1.5s ease-out;
}

/* ---------------------------------------------------------------------
  HEADER & NAVIGATION
--------------------------------------------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Top Social Bar */

.top-social-bar {
  display: none;
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-border);
  height: 40px;
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.top-social-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.top-social-left {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}
.top-social-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-social-right .social-link {
  color: var(--primary);
  display: flex;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.top-social-right .social-link:hover {
  color: var(--primary);
  transform: scale(1.05);
}
.top-social-right .social-link i {
  width: 16px;
  height: 16px;
}

/* Main navbar container (acts as floating blue pill on mobile) */

.navbar-container {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  margin: 12px 0 0 0;
  padding: 10px 16px;
  background-color: var(--primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.navbar-inner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header:not(.scrolled) .navbar-inner-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}

.mobile-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-logo img {
  display: none;
  color: var(--white);
  height: 40px;
  scale:3.3;
  position:relative;
  left:22px;
  top:1px;
}

.mobile-logo:hover img {
  transform: scale(1.05);
}

.logo:hover img {
  transform: scale(1.05);
}

/* Nav links - hidden on mobile */

.nav-links {
  display: none;
}
.nav-link-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}
.nav-link-btn:hover {
  color: var(--white);
}
.nav-link-btn.active {
  color: var(--white);
  font-weight: 700;
}
.nav-link-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--yellow);
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-link-btn:hover::after,
.nav-link-btn.active::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

/* Hamburger menu button (white on mobile blue bar) */

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--white);
  transition: var(--transition);
}
.mobile-toggle:hover {
  opacity: 0.8;
}
.mobile-toggle i {
  font-size: 1.5rem;
  line-height: 1;
  display: block;
}

/* Header scrolled state dynamic styles - Full Width Snap */

.header.scrolled .navbar-container {
  width: 100%;
  max-width: 100% !important;
  margin: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  background-color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Mobile Drawer Panel - Floating Card Design */

.mobile-drawer {
  position: fixed;
  top: 74px;
  left: 16px;
  right: 16px;
  width: calc(100% - 32px);
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 49;
  display: none;
  transition:
    top 0.3s ease,
    left 0.3s ease,
    right 0.3s ease,
    width 0.3s ease,
    border-radius 0.3s ease;
}
.mobile-drawer.active {
  display: flex;
  animation: fadeIn 0.3s ease-out forwards;
}
.header.scrolled .mobile-drawer {
  top: 52px;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-sans);
  cursor: pointer;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  border-bottom: none;
  transition: var(--transition);
  display: block;
  width: 100%;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--yellow);
  background-color: rgba(255, 255, 255, 0.08);
  padding-left: 20px;
  font-weight: 600;
}

/* ---------------------------------------------------------------------
   FOOTER & WIDGETS
--------------------------------------------------------------------- */

.footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding-top: 64px;
  padding-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col {
  text-align: left;
}

.footer-logo img {
  height: 50px;
  width: auto;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social-btn:hover {
  background-color: var(--white);
  color: var(--primary);
}

.footer-col-title {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--primary-light);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link-btn {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-link-btn:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-link-btn span.dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: var(--secondary);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.875rem;
}
.footer-contact-item i {
  color: var(--secondary);
  font-size: 1.125rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.footer-contact-item i.whatsapp {
  color: var(--green);
}
.footer-contact-label {
  font-weight: 600;
  color: var(--white);
}
.footer-contact-val {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  word-break: break-all;
}
.footer-contact-item a:hover .footer-contact-val {
  color: var(--white);
}
.footer-contact-val.whatsapp-text {
  color: var(--green);
  font-weight: 700;
}

/* Copyright footer bar */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom strong {
  color: #ffffffca;
}
.footer-bottom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-link {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}
.footer-bottom-link:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Floating bottom right shortcuts widget actions */

.floating-widgets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-2xl);
  transition: var(--transition);
  position: relative;
}
.float-btn:hover {
  transform: scale(1.1);
}
.float-btn:active {
  transform: scale(0.95);
}
.float-btn i {
  font-size: 1.5rem;
}

.float-whatsapp {
  background-color: var(--green);
}
.float-whatsapp:hover {
  background-color: var(--green-dark);
}

.float-booking {
  background-color: var(--primary);
}
.float-booking:hover {
  background-color: var(--primary-dark);
}

.float-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 12px;
  background-color: var(--background-dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  transition: opacity 0.2s ease;
}
.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* 
   =====================================================================
   BREAKPOINT: TABLET SCREEN SIZE (min-width: 640px)
   Covers standard tablet devices in portrait and landscape
   =====================================================================
*/

/* =====================================================================
   COMMON RESPONSIVE MEDIA QUERIES
   ===================================================================== */

@media (min-width: 640px) {
  .container {
    max-width: 520px;
  }

  .py-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .header-py {
    padding-top: 80px;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  /* Grid adjustments */

  .grid-cols-2-sm {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Support Card bottom locations */

  .support-card {
    flex-direction: row;
    padding: 24px 32px;
    text-align: left;
  }

  .support-card-text {
    text-align: left;
  }

  .success-actions {
    flex-direction: row;
  }

  .success-actions .btn,
  .success-actions a {
    flex: 1;
  }

  /* Footer bottom copyright bar layout */

  .footer-bottom-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 620px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  html {
    font-size: 14.5px;
  }

  .container {
    max-width: 820px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .navbar-container {
    max-width: 820px;
  }

  .py-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .header-py {
    padding-top: 112px;
  }

  /* Header Navigation for Desktop */

  .header {
    top: 0;
    padding: 0;
  }

  .top-social-bar {
    display: block;
  }

  .navbar-container {
    width: calc(100% - 48px);
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    margin: 16px 0 0 0;
    padding: 10px 24px;
    box-shadow: 0 10px 30px rgba(4, 107, 210, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .logo img {
    height: 50px;
    image: fluid;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .nav-link-btn {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 6px 0;
  }

  .nav-link-btn:hover {
    color: var(--white);
  }

  .nav-link-btn.active {
    color: var(--white);
    font-weight: 700;
  }

  .nav-link-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--yellow);
    transition: var(--transition);
    transform: translateX(-50%);
  }

  .nav-link-btn:hover::after,
  .nav-link-btn.active::after {
    width: 100%;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-cta .btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .mobile-toggle {
    display: none;
  }

  .mobile-drawer {
    display: none !important;
  }

  /* Scrolled State for Desktop: snapped, full-width */

  .header.scrolled .top-social-bar {
    margin-top: -40px;
    opacity: 0;
    pointer-events: none;
  }

  .header.scrolled .navbar-container {
    width: 100%;
    max-width: 100% !important;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    background-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Scaling other elements for laptop screens */

  .section-title {
    font-size: 2.5rem;
  }

  .section-desc {
    font-size: 0.975rem;
  }

  .btn {
    font-size: 0.95rem;
    padding: 14px 28px;
  }

  /* Footer grid columns */

  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
  }

  .footer-col:first-child {
    grid-column: span 4;
  }

  .footer-col:nth-child(2) {
    grid-column: span 2;
  }

  .footer-col:nth-child(3) {
    grid-column: span 3;
  }

  .footer-col:nth-child(4) {
    grid-column: span 3;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1000px;
  }

  .navbar-container {
    max-width: 1000px;
    padding: 12px 32px;
  }

  .logo img {
    height: 50px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-link-btn {
    font-size: 0.9rem;
  }

  .nav-cta {
    gap: 12px;
  }

  .nav-cta .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .section-title {
    font-size: 2.75rem;
  }

  .section-desc {
    font-size: 14px;
  }

  .btn {
    font-size: 1rem;
    padding: 16px 32px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1100px;
  }

  .navbar-container {
    max-width: 1100px;
    padding: 12px 48px;
  }

  .logo img {
    height: 50px;
  }

  .nav-links {
    gap: 32px;
  }

  .nav-link-btn {
    font-size: 1rem;
  }

  .nav-cta {
    gap: 16px;
  }

  .nav-cta .btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1150px;
  }

  .navbar-container {
    max-width: 1150px;
  }

  .logo img {
    height: 50px;
  }

  .section-title {
    font-size: 3.25rem;
  }

  .section-desc {
    font-size: 14px;
  }

  .btn {
    font-size: 1.05rem;
    padding: 18px 36px;
  }
}

@media (min-width: 1650px) {
  .container {
    max-width: 1260px;
  }

  .navbar-container {
    max-width: 1260px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1380px;
  }

  .navbar-container {
    max-width: 1380px;
  }

  .py-section {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .header-py {
    padding-top: 128px;
  }

  /* Font & general component scaling */

  .logo img {
    height: 50px;
  }

  .nav-link-btn {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 3.75rem;
  }

  .section-desc {
    font-size: 14px;
    max-width: 800px;
  }

  .btn {
    font-size: 1.1rem;
    padding: 20px 40px;
  }
}

@media (min-width: 2560px) {
  .container {
    max-width: 1800px;
  }

  .navbar-container {
    max-width: 1800px;
  }

  .py-section {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .header-py {
    padding-top: 160px;
  }

  /* Scaling up elements for 4K */

  .logo img {
    height: 50x;
  }

  .nav-link-btn {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 4.5rem;
  }

  .section-desc {
    font-size: 1.35rem;
    max-width: 900px;
  }

  .btn {
    font-size: 1.25rem;
    padding: 24px 48px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .floating-widgets {
    bottom: 12px;
    right: 12px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
  }

  .float-btn i {
    font-size: 1.25rem;
  }

  .toast-container {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .toast {
    min-width: auto;
    width: 100%;
    padding: 12px 16px;
  }
}

/* #---------------Booking Section-----------------# */

.booking-section {
  height: auto;
  color: var(--slate-body);
  position: relative;
  overflow: hidden;
}

.booking-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.booking-wave-backdrop svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.booking-container {
  position: relative;
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
}

.booking-section .section-subtitle {
  color: var(--yellow-dark) !important;
}
.booking-section .section-title {
  color: var(--white);
}

/* Wizard Form Wrapper Card styling */

.wizard-card {
  background-color: rgb(255, 255, 255);
  color: var(--slate-dark);
  border-radius: var(--radius-2xl);
  padding: 24px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}

/* Step Progress Tracker bar */

.wizard-tracker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--slate-border);
  margin-bottom: 32px;
  overflow-x: auto;
}
.wizard-step-node {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.wizard-step-num {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  background-color: var(--background);
  color: var(--slate-light);
  transition: var(--transition);
}
.wizard-step-node.active .wizard-step-num {
  background-color: var(--yellow);
  color: #ffff;
  box-shadow: 0 0 0 4px rgba(40, 95, 189, 0.02);
}
.wizard-step-node.completed .wizard-step-num {
  background-color: var(--yellow-dark);
  color: #ffff;
}
.wizard-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-light);
  transition: var(--transition);
}
.wizard-step-node.active .wizard-step-label,
.wizard-step-node.completed .wizard-step-label {
  color: var(--yellow-dark);
}

.wizard-tracker-line {
  height: 4px;
  flex-grow: 1;
  min-width: 12px;
  margin-left: 6px;
  margin-right: 6px;
  background-color: var(--background);
  transition: var(--transition);
}
.wizard-tracker-line.active {
  background-color: var(--yellow-dark);
}

/* Wizard Form steps styling */

.wizard-step-content {
  display: none;
  text-align: left;
}
.wizard-step-content.active {
  display: block;
}

.wizard-step-header {
  margin-bottom: 24px;
}
.wizard-step-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--slate-dark);
  margin-bottom: 8px;
}
.wizard-step-desc {
  font-size: 0.75rem;
  color: var(--slate-body);
  text-align: left;
  margin: 0 0 24px 0;
  max-width: 600px;
}

/* Empty state placeholder in summary block */

.wizard-empty-cart-box {
  padding: 24px;
  background-color: var(--background);
  border: 1px dashed var(--slate-light);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--slate-body);
  margin-bottom: 24px;
}
.wizard-empty-cart-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--slate-dark);
  margin-bottom: 4px;
}
.wizard-empty-cart-desc {
  font-size: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
}

/* List items style in Booking Wizard Review summary */

.wizard-summary-box {
  border: 1px solid var(--slate-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.wizard-summary-items {
  max-height: 220px;
  overflow-y: auto;
  background-color: var(--white);
  padding: 8px 16px;
}
.wizard-summary-items-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-border);
}
.wizard-summary-items-row:last-child {
  border-bottom: none;
}
.wizard-summary-item-name {
  font-weight: 600;
  color: var(--slate-dark);
}
.wizard-summary-item-service {
  font-size: 0.75rem;
  color: var(--slate-light);
  font-style: italic;
  text-transform: capitalize;
}
.wizard-summary-item-total {
  font-weight: 700;
  color: var(--slate-dark);
}

.wizard-summary-total-bar {
  padding: 16px;
  background-color: var(--background);
  border-top: 1px solid var(--slate-border);
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: var(--slate-dark);
  font-size: 1rem;
}
.wizard-summary-total-bar span:last-child {
  color: var(--primary);
  font-weight: 900;
}

/* Delivery speed radio card selectors */

.wizard-speed-title {
  font-weight: 700;
  color: var(--slate-dark);
  font-size: 0.875rem;
  margin-bottom: 12px;
  display: block;
}
.wizard-speed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.radio-card {
  border: 2px solid var(--slate-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background-color: var(--white);
  transition: var(--transition);
}
.radio-card:hover {
  border-color: rgba(4, 107, 210, 0.2);
}
.radio-card.selected {
  border-color: var(--primary);
  background-color: rgba(4, 107, 210, 0.03);
}
.radio-card-left {
  text-align: left;
}
.radio-card-title {
  font-weight: 700;
  color: var(--slate-dark);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.radio-card-title i {
  color: #00569c;
}
.radio-card-lbl {
  font-size: 0.75rem;
  color: var(--slate-light);
  margin-top: 2px;
}
.radio-card input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

/* 428 Custom Swap  */

@media (max-width: 500px) {
  .logo {
    display: none;
  }

  .mobile-logo img {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}

/* Form inputs & grouping layouts */

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 769px) {
  .form-group-full {
    grid-column: span 2;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.form-label {
  font-weight: 700;
  color: var(--slate-dark);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-label i {
  color: var(--primary);
  font-size: 1rem;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-border);
  outline: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}
textarea.form-input {
  resize: vertical;
}

/* Form inputs validation state styles */

.form-input.is-invalid {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
  animation: shake 0.35s ease-in-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-4px);
  }
  40%,
  80% {
    transform: translateX(4px);
  }
}

.validation-error-msg {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Toast Notification styles */

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10000;
  pointer-events: none;
}

.toast {
  background-color: var(--white);
  color: var(--slate-dark);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
  max-width: 420px;
  pointer-events: auto;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  font-size: 1.25rem;
}

.toast-message {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}

.toast.error {
  border-left-color: var(--red);
}

.toast.error .toast-icon {
  color: var(--red);
}

.toast.success {
  border-left-color: var(--green);
}

.toast.success .toast-icon {
  color: var(--green);
}

/* Booking final review summary grid block */

.wizard-review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background-color: var(--background);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-border);
  font-size: 0.875rem;
}
.wizard-review-col {
  text-align: left;
}
.wizard-review-col-title {
  font-weight: 800;
  color: var(--slate-dark);
  border-bottom: 1px solid var(--slate-border);
  padding-bottom: 4px;
  margin-bottom: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wizard-review-col p {
  margin-bottom: 8px;
}
.wizard-review-col strong {
  font-weight: 600;
  color: var(--slate-body);
}
.wizard-review-col .text-highlight-green {
  color: var(--primary);
  font-weight: 700;
  text-transform: capitalize;
}
.wizard-review-notes {
  border-top: 1px solid var(--slate-border);
  padding-top: 12px;
  font-size: 0.75rem;
  color: var(--slate-body);
  text-align: left;
}
@media (min-width: 640px) {
  .wizard-review-notes {
    grid-column: span 2;
  }
}

/* Step actions buttons layout footer */

.wizard-step-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-border);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.wizard-step-footer.split-btns {
  justify-content: space-between;
}
.wizard-step-footer .btn {
  padding: 12px 24px;
}

/* Loading state screen styling */

.wizard-loading-panel {
  padding: 80px 0;
  text-align: center;
  display: none;
}
.wizard-loading-panel.active {
  display: block;
}
.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--slate-border);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius-full);
  margin: 0 auto 16px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-title {
  font-weight: 800;
  color: var(--slate-dark);
  font-size: 1.125rem;
  margin-bottom: 4px;
}
.loading-desc {
  font-size: 0.875rem;
  color: var(--slate-body);
}

/* Success panel screen styling */

.wizard-success-panel {
  padding: 48px 0;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  display: none;
}
.wizard-success-panel.active {
  display: block;
}
.success-icon-box {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background-color: rgba(34, 197, 94, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 3rem;
}
.success-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--slate-dark);
  margin-bottom: 12px;
}
.success-desc {
  font-size: 0.875rem;
  color: var(--slate-body);
  line-height: 1.6;
  margin-bottom: 24px;
}
.success-desc strong {
  font-weight: 700;
  color: var(--slate-dark);
}

.success-details-summary {
  background-color: var(--background);
  border: 1px solid var(--slate-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: left;
  font-size: 0.75rem;
  color: var(--slate-body);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  /* Booking Wizard */

  .wizard-card {
    padding: 40px;
  }

  .wizard-step-title {
    font-size: 1.5rem;
  }

  .wizard-step-desc {
    font-size: 14px;
  }

  .wizard-speed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .wizard-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  /* Booking Wizard */

  .wizard-step-title {
    font-size: 1.625rem;
  }

  .wizard-step-desc {
    font-size: 0.9rem;
  }

  .form-label {
    font-size: 0.95rem;
  }

  .form-input {
    font-size: 0.95rem;
    padding: 14px 18px;
  }

  .wizard-step-num {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .wizard-step-label {
    font-size: 0.825rem;
  }
}

@media (min-width: 1536px) {
  /* Booking Wizard */

  .wizard-step-title {
    font-size: 2rem;
  }

  .wizard-step-desc {
    font-size: 1rem;
  }

  .form-label {
    font-size: 1.05rem;
  }

  .form-input {
    font-size: 1.05rem;
    padding: 16px 20px;
  }

  .wizard-step-num {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .wizard-step-label {
    font-size: 0.95rem;
  }
}

@media (min-width: 2560px) {
  /* Booking Wizard */
  .wizard-step-title {
    font-size: 2.5rem;
  }

  .wizard-step-desc {
    font-size: 1.25rem;
  }

  .form-label {
    font-size: 1.25rem;
  }

  .form-input {
    font-size: 1.25rem;
    padding: 20px 24px;
  }

  .wizard-step-num {
    width: 56px;
    height: 56px;
    font-size: 1.35rem;
  }

  .wizard-step-label {
    font-size: 1.15rem;
  }
}

/* =====================================================================
   GLOBAL SCROLL REVEAL ANIMATIONS
   ===================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================================
   LOCATIONS DROPDOWN & MOBILE ACCORDION
   ===================================================================== */

/* Locations Dropdown Menu (Desktop) */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--white);
  min-width: 170px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--slate-border);
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--primary) !important;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark) !important;
}

.dropdown-toggle i {
  font-size: 0.75rem;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.nav-dropdown-wrapper:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

/* Mobile Accordion Styles */
button.mobile-dropdown-toggle {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-dropdown-toggle i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-menu.open {
  max-height: 200px; /* Large enough to display items */
  margin-bottom: 8px;
}

.mobile-dropdown-item {
  padding-left: 32px !important;
  font-size: 0.95rem;
}

.mobile-dropdown-item:hover {
  padding-left: 36px !important;
}
