/* ============================================================
   SmartStart Business Solutions - Global Base Styles
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;  -webkit-text-size-adjust: 100%;
  
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-main);
  background-color: #F8F9FC;
  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Typography Reset ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.375rem); font-weight: 600; }

p { color: var(--color-text-body); line-height: 1.75; }
p + p { margin-top: var(--space-4); }

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color var(--ease-base);
}
a:hover { color: var(--color-blue-light); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-pad);
}

.section--alt {
  background-color: var(--color-off-white);
}

.section--blue {
  background-color: var(--color-blue-pale);
}

.section--navy {
  background-color: var(--color-navy);
}

/* ============================================================
   Component: Label / Eyebrow Tag
   ============================================================ */
.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.6rem 1.75rem;
  border-radius: 100px;
  background: #018079;
  color: #ffffff;
  border: 1px solid #018079;
  margin-bottom: var(--space-6);
  box-shadow: 0 2px 8px rgba(1, 128, 121, 0.08);
}

.label--light {
  background: #018079;
  color: #ffffff;
}

/* ============================================================
   Component: Section Header
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}

.section-header--left {
  text-align: left;
  margin-inline: unset;
}

.section-header__title {
  margin-bottom: var(--space-4);
}

.section-header__title em {
  font-style: normal;
  color: var(--color-blue);
}

.section-header__title--white {
  color: var(--color-white);
}

.section-header__desc {
  font-size: var(--text-lg);
  color: var(--color-text-body);
  max-width: 600px;
  margin-inline: auto;
}

.section-header--left .section-header__desc {
  margin-inline: unset;
}

.section-header__desc--white {
  color: rgba(255, 255, 255, 0.75);
}

/* Decorative underline accent */
.section-header__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-green));
  border-radius: var(--radius-full);
  margin-top: var(--space-4);
  margin-inline: auto;
}

.section-header--left .section-header__title::after {
  margin-inline: unset;
}

/* ============================================================
   Component: Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-md);
  padding: 0.875rem 1.75rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ease-base);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn--primary {
  background-color: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.btn--primary:hover {
  background-color: var(--color-blue-light);
  border-color: var(--color-blue-light);
  color: var(--color-white);
  transform: translateY(-2px);
  
}

.btn--green {
  background-color: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}

.btn--green:hover {
  background-color: var(--color-green-light);
  border-color: var(--color-green-light);
  color: var(--color-white);
  transform: translateY(-2px);
  
}

.btn--green {
  background-color: #CFDD26;
  color: #018079;
  border-color: #CFDD26;
}

.btn--green:hover {
  background-color: #d8e82e; /* slightly brighter than CFDD26 */
  border-color: #d8e82e;
  color: #018079;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(207, 221, 38, 0.4);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.btn--outline:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn--outline-green {
  background-color: transparent;
  color: var(--color-green);
  border-color: var(--color-green);
}

.btn--outline-green:hover {
  background-color: var(--color-green);
  color: var(--color-navy);
  border-color: var(--color-green);
  transform: translateY(-2px);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-text-dark);
  border-color: var(--color-border);
}

.btn--ghost:hover {
  background-color: var(--color-off-white);
  border-color: var(--color-text-muted);
  color: var(--color-text-dark);
}

/* Hero Scroll Button */
.hero-scroll-btn {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 2.5rem;
  z-index: 10;
  animation: bounce 2s infinite;
  transition: color 0.3s ease;
  text-decoration: none;
}

.hero-scroll-btn:hover {
  color: #fff;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

.btn--lg {
  padding: 1.1rem 2.25rem;
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: var(--text-xs);
}

.btn svg, .btn i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   Component: Card
   ============================================================ */
.card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease-base), box-shadow var(--ease-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card--navy {
  background: var(--color-navy);
  border-color: rgba(255, 255, 255, 0.06);
}

/* ============================================================
   Component: Navigation
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: 0 var(--container-pad);
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--ease-slow), height var(--ease-slow);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  height: 70px;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
}

.navbar__logo img {
  height: 48px;
  width: auto;
  transition: opacity var(--ease-base);
}

.navbar__logo:hover img { opacity: 0.85; }

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.navbar__link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-dark);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  transition: color var(--ease-base), background-color var(--ease-base);
  position: relative;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--color-blue);
  background-color: rgba(1, 128, 121, 0.06);
}

/* Dropdown */
.navbar__item {
  position: relative;
}

.navbar__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--color-border-light);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--ease-base);
  pointer-events: none;
}

.navbar__item:hover .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.navbar__dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-main);
  padding: 0.7rem var(--space-4);
  border-radius: var(--radius-md);
  transition: all var(--ease-fast);
}

.navbar__dropdown-link:hover {
  background-color: var(--color-blue-pale);
  color: var(--color-blue);
}

.navbar__dropdown-link .icon {
  width: 32px;
  height: 32px;
  background: var(--color-blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.navbar__cta {
  margin-left: var(--space-4);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: all var(--ease-base);
}

.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.navbar__mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  padding: var(--space-6) var(--container-pad);
  overflow-y: auto;
  z-index: calc(var(--z-sticky) - 1);
  transform: translateX(100%);
  transition: transform var(--ease-slow);
  border-top: 1px solid var(--color-border);
}

.navbar__mobile.open {
  transform: translateX(0);
}

.navbar__mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-dark);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border-light);
  transition: color var(--ease-base);
}

.navbar__mobile-link:hover { color: var(--color-blue); }

.navbar__mobile-sub {
  padding-left: var(--space-4);
}



/* ============================================================
   Component: Footer
   ============================================================ */
.footer {
  background-color: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-12);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-6);
  margin-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__top-socials {
  display: flex;
  gap: var(--space-3);
}

.footer__top-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: all var(--ease-base);
  text-decoration: none;
}

.footer__top-link:hover {
  background: var(--color-green);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand-logo {
  height: 52px;
  width: auto;
  display: inline-block;
  transition: transform 0.25s ease;
}
.footer__brand-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.footer__text-block {
  font-size: var(--text-sm);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 320px;
}

.footer__text-block p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-4);
}

.footer__link-inline {
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--ease-base);
}

.footer__link-inline:hover {
  color: var(--color-green);
}

.footer__heading {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--ease-base);
  text-decoration: none;
}

.footer__link:hover { color: var(--color-white); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-4);
}

.footer__contact-item i {
  color: var(--color-blue);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(1, 128, 121, 0.3); }
  50%       { box-shadow: 0 0 0 12px rgba(1, 128, 121, 0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes count-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Intersection Observer Animate-In Classes */
.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate--left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate--left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate--right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate--right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate--scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate--scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   Responsive
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .navbar__menu,
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__mobile { display: block; }

  :root {
    --section-pad: clamp(3rem, 6vw, 5rem);
  }
}

/* Large Mobile */
@media (max-width: 768px) {
  :root {
    --container-pad: 1.25rem;
    --section-pad: clamp(2.5rem, 5vw, 4rem);
  }

  .section-header { margin-bottom: var(--space-10); }
  .section-header__desc { font-size: var(--text-base); }

  .footer { padding-top: var(--space-16); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --container-pad: 1.25rem;
    --section-pad: 2.5rem;
  }

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
  .footer { padding-top: var(--space-12); }

  .btn--lg {
    padding: 0.875rem 1.25rem;
    font-size: var(--text-sm);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  :root {
    --container-pad: 1.25rem;
  }

  h2 { font-size: 1.625rem; }
  h3 { font-size: 1.25rem; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__social-link { width: 36px; height: 36px; font-size: 0.875rem; }
}


@media (max-width: 640px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
}

/* ============================================================
   Utilities
   ============================================================ */
.hidden {
  display: none !important;
}
/* Hide scrollbars globally while retaining scroll functionality */
::-webkit-scrollbar {
  display: none;
}
html, body, * {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* ============================================================
   Floating Action Buttons (Bottom Right 3-Button Stack)
   ============================================================ */
.floating-actions {
  position: fixed;
  right: 1.75rem;
  bottom: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.floating-action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, opacity 0.3s ease;
  font-size: 1.25rem;
}

.floating-action-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* 1. Yellow Calendar Button */
.floating-action-btn--calendar {
  background-color: #F8C83B;
  color: #3B1B54;
}

/* 2. Green WhatsApp Button */
.floating-action-btn--whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
}

/* 3. Lime Back to Top Button */
.floating-action-btn--top {
  background-color: #CFDD26 !important;
  color: #FFFFFF !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(10px) !important;
  visibility: hidden !important;
}

.floating-action-btn--top.visible {
  opacity: 1 !important;
  pointer-events: all !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

@media (max-width: 768px) {
  .floating-actions {
    display: none;
  }
  .floating-action-btn {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }
}


/* Global WhatsApp CTA Button */
.btn-header-whatsapp {
  background-color: #25D366 !important;
  color: #FFFFFF !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.6rem 1.75rem;
  border-radius: 100px;
  background: #018079;
  color: #ffffff;
  border: 1px solid #018079;
  margin-bottom: var(--space-6);
  box-shadow: 0 2px 8px rgba(1, 128, 121, 0.08);
}

.label--light {
  background: #018079;
  color: #ffffff;
}

/* ============================================================
   Component: Section Header
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}

.section-header--left {
  text-align: left;
  margin-inline: unset;
}

.section-header__title {
  margin-bottom: var(--space-4);
}

.section-header__title em {
  font-style: normal;
  color: #018079;
}

.section-header__title--white {
  color: var(--color-white);
}

.section-header__desc {
  font-size: var(--text-lg);
  color: var(--color-text-body);
  max-width: 600px;
  margin-inline: auto;
}

.section-header--left .section-header__desc {
  margin-inline: unset;
}

.section-header__desc--white {
  color: rgba(255, 255, 255, 0.75);
}

/* Decorative underline accent */
.section-header__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: #018079;
  border-radius: var(--radius-full);
  margin-top: var(--space-4);
  margin-inline: auto;
}

.btn-header-whatsapp i,
.btn-header-whatsapp .fa-whatsapp {
  color: #FFFFFF !important;
  font-size: 1.15em;
}

.btn-header-whatsapp:hover {
  background-color: #20bd5a !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  
}

.btn-header-whatsapp:hover i,
.btn-header-whatsapp:hover .fa-whatsapp {
  color: #FFFFFF !important;
}
/* ============================================================
   Mobile Sticky Action Bar (Global)
   ============================================================ */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #014d48; /* Darker logo color for high contrast */
  z-index: 9990;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
  padding: 0.6rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-action-bar__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: #ffffff !important;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 6px;
  flex: 1;
}

.mobile-action-btn i {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .mobile-action-bar {
    display: block;
  }
  body {
    padding-bottom: 65px !important;
  }
  /* Push chatbot toggle up so it doesn't overlap the new bar */
  .chatbot-toggle {
    bottom: 85px !important;
  }
}
/* ============================================================
   Mobile Bar Popup Modal
   ============================================================ */
.mobile-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.7); z-index: 10000; backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 1rem; }
.mobile-modal-overlay.active { display: flex; }
.mobile-modal-container { background: #fff; width: 100%; max-width: 450px; border-radius: 12px; position: relative; overflow: hidden; max-height: 90vh; display: flex; flex-direction: column; }
.mobile-modal-header { background: #018079; color: #fff; padding: 1.5rem; text-align: center; }
.mobile-modal-header h3 { margin: 0; font-size: 1.25rem; font-weight: 700; }
.mobile-modal-header p { margin: 0.5rem 0 0 0; font-size: 0.875rem; opacity: 0.9; }
.mobile-modal-close { position: absolute; top: 15px; right: 15px; background: rgba(255, 255, 255, 0.2); border: none; color: #fff; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mobile-modal-body { padding: 1.5rem; overflow-y: auto; }
.mobile-modal-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 3rem 1rem; height: 100%; }
.mobile-modal-success i { font-size: 3rem; color: #25D366; margin-bottom: 1rem; }
.mobile-modal-success h3 { color: #1f2937; margin-bottom: 0.5rem; }
.mobile-modal-success p { color: #4b5563; font-size: 0.9rem; }
/* ============================================================
   Mobile Bar Popup Modal Form Fixes
   ============================================================ */
#mobile-book-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 5px;
}
#mobile-book-form .meta-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
#mobile-book-form .meta-input-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
}
#mobile-book-form .meta-input-field,
#mobile-book-form .meta-select-field {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  box-sizing: border-box;
  background-color: #fff;
  color: #333;
}
#mobile-book-form .meta-input-field:focus,
#mobile-book-form .meta-select-field:focus {
  outline: none;
  border-color: #018079;
  box-shadow: 0 0 0 2px rgba(1, 128, 121, 0.1);
}
.mobile-modal-header h3,
.mobile-modal-header p {
  color: #ffffff !important;
}
/* Hover Tooltips for Floating Action Buttons */
.floating-action-btn {
  position: relative;
}

.floating-action-btn::before {
  content: attr(aria-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #ffffff;
  color: #511c74; /* Purple text to match the image */
  padding: 6px 14px;
  border-radius: 6px;
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.floating-action-btn::after {
  content: '';
  position: absolute;
  right: calc(100% + 7px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.floating-action-btn:hover::before,
.floating-action-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
.floating-action-btn--calendar:hover { color: #3B1B54 !important; }
.floating-action-btn--whatsapp:hover { color: #FFFFFF !important; }
.floating-action-btn--top:hover { color: #FFFFFF !important; }


/* Transparent Navbar support */
.navbar.navbar--transparent:not(:hover):not(.mobile-open) {
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
}
/* Transparent button override removed as per user request */
/* Hover override removed */
.navbar.navbar--transparent:not(:hover):not(.mobile-open) .navbar__link,
.navbar.navbar--transparent:not(:hover):not(.mobile-open) .navbar__phone,
.navbar.navbar--transparent:not(:hover):not(.mobile-open) .mobile-search__icon {
  color: #ffffff !important;
}
/* Transparent State (NOT hovered, NOT scrolled, NOT mobile menu open) */
.navbar.navbar--transparent:not(:hover):not(.mobile-open) .logo-colored { display: none !important; }
.navbar.navbar--transparent:not(:hover):not(.mobile-open) .logo-white { display: block !important; }

/* Solid White State (Hovered, Scrolled, or normal solid pages) */
.navbar:not(.navbar--transparent) .logo-colored,
.navbar.navbar--transparent:hover .logo-colored,
.navbar.navbar--transparent.mobile-open .logo-colored { display: block !important; }

.navbar:not(.navbar--transparent) .logo-white,
.navbar.navbar--transparent:hover .logo-white,
.navbar.navbar--transparent.mobile-open .logo-white { display: none !important; }

/* Custom scale for square Arjaya logo */
.arjaya-item img {
  transform: scale(1.6);
}
.logo-ticker__item.arjaya-item:hover img {
  transform: scale(1.7);
}

/* ============================================================
   CLIENTS TICKER SECTION
   ============================================================ */
.clients-ticker-section {
  background: #F8F9FC;
  padding: var(--space-12) 0;
  overflow: hidden;
}

/* Centered dark pill badge */
.clients-ticker-section__head {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-10);
}

/* Ticker strip */
.logo-ticker {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  /* Fade masks on edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Both the original and cloned track side by side */
.logo-ticker__track {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding: 0 var(--space-6);
  flex-shrink: 0;
  animation: logoScroll 60s linear infinite;
}

/* Pause on hover for accessibility */
.logo-ticker:hover .logo-ticker__track {
  animation-play-state: paused;
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* Each logo item */
.logo-ticker__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 220px;
  height: 100px;
  padding: 0 var(--space-6);
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #9CA3AF;
  background: #F9FAFB;
  white-space: nowrap;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.logo-ticker__item img {
  max-height: 70px;
  max-width: 180px;
  object-fit: contain;
  transition: transform 0.2s ease;
  mix-blend-mode: multiply;
}

.logo-ticker__item:hover img {
  transform: scale(1.05);
}

.logo-ticker__item:hover {
  border-color: var(--color-green);
  color: var(--color-green);
}

/* ============================================================
   GLOBAL BRAND TEXT SELECTION COLOR
   ============================================================ */
::selection {
  background-color: #018079;
  color: #ffffff;
}

::-moz-selection {
  background-color: #018079;
  color: #ffffff;
}

/* ============================================================
   GLOBAL TEXT SELECTION HIGHLIGHT COLOR
   ============================================================ */
::selection {
  background-color: #018079;
  color: #ffffff;
}
::-moz-selection {
  background-color: #018079;
  color: #ffffff;
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  border-top: 3px solid var(--color-green);
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--color-navy);
  max-width: 70%;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--color-green);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  gap: 1rem;
}

.cookie-banner__btn {
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-banner__btn--accept {
  background: var(--color-green);
  color: var(--color-navy);
}

.cookie-banner__btn--accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 236, 60, 0.4);
}

.cookie-banner__btn--decline {
  background: rgba(1, 128, 121, 0.1);
  color: var(--color-teal);
}

.cookie-banner__btn--decline:hover {
  background: rgba(1, 128, 121, 0.2);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    gap: 1rem;
  }
  .cookie-banner__text {
    max-width: 100%;
    font-size: 0.85rem;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ============================================================
   Hide reCAPTCHA v3 Floating Badge
   (Disclaimer added below forms instead per Google ToS)
   ============================================================ */
.grecaptcha-badge { 
    visibility: hidden !important;
    opacity: 0 !important;
}
@media (max-width: 768px) {
  #back-to-top, .floating-action-btn--top {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}