/* =========================================================
   LYFT SUPPORT — DESIGN TOKENS
   ========================================================= */
:root {
  /* Brand colors */
  --brand-primary: #FF00BF;
  --brand-primary-dark: #D900A2;
  --brand-dark: #11111F;
  --white: #FFFFFF;
  --light-gray: #F3F3F5;
  --ink: #333340;
  --ink-soft: #6B6B7A;
  --border-soft: rgba(17, 17, 31, 0.1);
  --success: #00B159;

  /* Type */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Layout */
  --max-width: 1100px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 4px 20px rgba(17, 17, 31, 0.08);
  --header-h: 70px;
  --utility-h: 40px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--light-gray);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 { color: var(--brand-dark); margin: 0; font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; margin: 0; padding: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--brand-dark); color: var(--white);
  padding: 12px 18px; z-index: 2000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--brand-primary); outline-offset: 2px; }

/* =========================================================
   GLASS CARD
   ========================================================= */
.glass-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 99px; font-weight: 600; font-size: 1rem;
  transition: background 0.2s, transform 0.2s; white-space: nowrap;
}
.btn--primary { background: var(--brand-primary); color: var(--white); }
.btn--primary:hover { background: var(--brand-primary-dark); transform: translateY(-1px); }
.btn--secondary { background: var(--brand-dark); color: var(--white); }
.btn--secondary:hover { background: #222233; }
.btn--submit { width: 100%; margin-top: 10px; position: relative; }
.btn__spinner {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white); border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn--submit.is-loading .btn__spinner { display: inline-block; }
.btn--submit.is-loading .btn__label { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   UTILITY BAR & HEADER
   ========================================================= */
.utility-bar {
  background: var(--brand-dark); color: var(--white);
  font-size: 0.85rem; height: var(--utility-h);
}
.utility-bar__inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.utility-bar__link { display: inline-flex; align-items: center; gap: 8px; }
.utility-bar__link:hover { color: var(--brand-primary); }

.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header__inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  height: var(--header-h); display: flex; align-items: center; justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 8px; }
.brand__lyft {
  font-size: 2.2rem; font-weight: 800; letter-spacing: -1.5px;
  color: var(--brand-primary); line-height: 1;
}
.brand__name { font-size: 1.1rem; font-weight: 600; color: var(--brand-dark); margin-top: 4px; }

.main-nav ul { display: flex; gap: 32px; }
.main-nav a { font-weight: 500; color: var(--ink); }
.main-nav a:hover { color: var(--brand-primary); }

/* Mobile Menu Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand-dark);
  transition: transform 0.2s, opacity 0.2s;
}

/* Toggle Menu Active State for Mobile Navigation */
@media (max-width: 600px) {
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-soft);
    padding: 20px;
    box-shadow: var(--shadow-soft);
  }
  .main-nav.is-active {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.hero__card {
  z-index: 2;
}

/* =========================================================
   PROMINENT LYFT GALLERY IMAGE
   ========================================================= */
.visual-gallery {
  background: var(--light-gray);
  padding: 0;
}
.visual-card {
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}
.prominent-lyft-image {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

/* =========================================================
   WHATSAPP & AI FLOATING WIDGETS (SIDE BY SIDE)
   ========================================================= */
.floating-widgets-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-body);
}

.widget-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(17, 17, 31, 0.15);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  color: var(--white);
}
.widget-btn:hover {
  transform: scale(1.1);
}

.widget-btn--whatsapp {
  background-color: #25D366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}
.widget-btn--whatsapp svg {
  width: 30px;
  height: 30px;
}

.widget-btn--ai {
  background-color: var(--brand-primary);
  box-shadow: 0 4px 16px rgba(255, 0, 191, 0.4);
}
.widget-btn--ai span {
  font-weight: 800;
  font-size: 1rem;
}

.wa-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 360px;
  height: 500px;
  background-color: #F0F2F5;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1001;
}

.wa-window.is-active {
  transform: scale(1);
}

.wa-header {
  background-color: #075E54;
  color: var(--white);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-header__profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-header__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--brand-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.wa-header__info {
  display: flex;
  flex-direction: column;
}

.wa-header__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.wa-header__status {
  font-size: 0.75rem;
  opacity: 0.85;
}

.wa-header__close {
  background: none;
  border: none;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.2s;
  padding: 4px;
}
.wa-header__close:hover {
  opacity: 1;
}

.wa-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.95;
}

.wa-msg {
  display: flex;
  max-width: 85%;
}

.wa-msg--incoming {
  align-self: flex-start;
}

.wa-msg--outgoing {
  align-self: flex-end;
}

.wa-msg__content {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.wa-msg--incoming .wa-msg__content {
  background-color: var(--white);
  color: var(--brand-dark);
  border-top-left-radius: 2px;
}

.wa-msg--outgoing .wa-msg__content {
  background-color: #DCF8C6;
  color: var(--brand-dark);
  border-top-right-radius: 2px;
}

.wa-msg__time {
  font-size: 0.7rem;
  color: var(--ink-soft);
  text-align: right;
  margin-top: 4px;
}

/* Typing Indicator Dots */
.wa-msg__content--typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 16px;
}
.wa-msg__content--typing .dot {
  width: 6px;
  height: 6px;
  background-color: var(--ink-soft);
  border-radius: 50%;
  animation: waTyping 1.4s infinite ease-in-out both;
}
.wa-msg__content--typing .dot:nth-child(1) { animation-delay: -0.32s; }
.wa-msg__content--typing .dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes waTyping {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1.0); }
}

.wa-footer {
  background-color: #F0F2F5;
  padding: 14px 16px;
  display: flex;
  align-items: center;
}

.wa-footer input {
  flex: 1;
  border: none;
  background-color: var(--white);
  padding: 12px 16px;
  border-radius: 22px;
  font-size: 0.9rem;
  width: 100%;
}
.wa-footer input:focus {
  outline: none;
}

.wa-footer__send {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  margin-left: 8px;
  border-radius: 50%;
  background-color: #075E54;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-footer__send svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 400px) {
  .wa-window {
    width: calc(100vw - 40px);
    right: -10px;
  }
}

/* =========================================================
   LAYOUT
   ========================================================= */
.section-inner { max-width: var(--max-width); margin: 0 auto; padding: 80px 24px; }
.section-inner--narrow { max-width: 800px; }
.section-title { font-size: 2.2rem; text-align: center; margin-bottom: 12px; }
.section-lead { text-align: center; color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 48px; }
.section-title--left, .section-lead--left { text-align: left; }

/* =========================================================
   HERO
   ========================================================= */
.hero { background: var(--brand-dark); color: var(--white); position: relative; overflow: hidden; padding: 60px 0; }
.hero__inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
}
.hero__content .eyebrow { color: var(--brand-primary); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; font-size: 0.85rem; }
.hero__title { font-size: 3.5rem; color: var(--white); margin: 10px 0 20px; line-height: 1.1; }
.hero__subtitle { font-size: 1.1rem; color: #A0A0B0; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 16px; margin-bottom: 40px; }
.hero__actions .btn { flex-shrink: 0; }
.hero__trust { display: flex; gap: 40px; }
.hero__trust strong { display: block; font-size: 1.5rem; color: var(--brand-primary); }
.hero__trust span { font-size: 0.9rem; color: #A0A0B0; }

.hero__panel { position: relative; height: 350px; }
.hero__card { position: absolute; padding: 20px; width: 240px; }
.hero__card--one { top: 20px; right: 40px; }
.hero__card--two { bottom: 40px; left: 0; }
.hero__card-label { font-size: 0.8rem; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.hero__card-value { display: block; font-size: 1.2rem; font-weight: 700; color: var(--brand-dark); margin-top: 4px; }

/* Progress Dots */
.lyft-progress { display: flex; gap: 8px; margin-top: 10px; }
.lyft-progress__dot { width: 8px; height: 8px; border-radius: 50%; background: #E0E0E0; }
.lyft-progress--active .lyft-progress__dot:nth-child(1),
.lyft-progress--active .lyft-progress__dot:nth-child(2) { background: var(--brand-primary); }

/* =========================================================
   SERVICES / TOPICS
   ========================================================= */
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); padding: 32px 24px;
  border-radius: var(--radius-md); border: 1px solid var(--border-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.accordion__item { border-bottom: 1px solid var(--border-soft); }
.accordion__trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; background: none; font-size: 1.1rem; font-weight: 600; color: var(--brand-dark);
  text-align: left;
}
.accordion__icon {
  width: 20px; height: 20px; position: relative; flex-shrink: 0; margin-left: 16px;
}
.accordion__icon::before, .accordion__icon::after {
  content: ''; position: absolute; background: var(--brand-primary);
}
.accordion__icon::before { width: 20px; height: 2px; top: 9px; left: 0; }
.accordion__icon::after { width: 2px; height: 20px; top: 0; left: 9px; transition: transform 0.3s; }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: rotate(90deg); opacity: 0; }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion__panel:not([hidden]) { padding-bottom: 24px; }
.accordion__panel p { color: var(--ink-soft); }

/* =========================================================
   CONTACT & FORM
   ========================================================= */
.contact { background: var(--white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }

.tracker-card { padding: 32px; margin-top: 40px; background: var(--light-gray); border: none; }
.tracker-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.tracker-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 16px; }
.tracker-form { display: flex; gap: 10px; margin-top: 16px; }
.tracker-form input { flex: 1; padding: 12px; border: 1px solid var(--border-soft); border-radius: var(--radius-sm); font-size: 1rem; }
.tracker-form input:focus { outline: none; border-color: var(--brand-primary); background: var(--white); }
.tracker-result { margin-top: 16px; font-size: 0.95rem; font-weight: 500; line-height: 1.4; }

.form-card { padding: 40px; }
.form-card__title { font-size: 1.5rem; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.9rem; }
.form-field input, .form-field select, .form-field textarea {
  padding: 14px; border: 1px solid var(--border-soft); border-radius: var(--radius-sm);
  background: var(--light-gray); font-family: inherit; font-size: 1rem;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--brand-primary); background: var(--white);
}
.form-field textarea { min-height: 120px; resize: vertical; }

.form-status { margin-top: 10px; font-size: 0.95rem; color: #D0021B; text-align: center; font-weight: 500; }

.form-success { text-align: center; padding: 40px 20px; }
.form-success__icon { color: var(--success); width: 64px; height: 64px; margin: 0 auto 20px; }
.form-success__case { font-family: var(--font-mono); font-size: 1.8rem; font-weight: 700; color: var(--brand-dark); margin: 16px 0; }
.form-success__note { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 24px; }

/* =========================================================
   FOOTER & MODAL
   ========================================================= */
.site-footer { background: var(--brand-dark); color: #A0A0B0; padding: 60px 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.brand--footer .brand__lyft { color: var(--white); }
.footer__brand p { margin-top: 16px; max-width: 300px; }
.footer__col h4 { color: var(--white); margin-bottom: 16px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a:hover { color: var(--brand-primary); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; margin-top: 40px; font-size: 0.85rem; }

.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(17,17,31,0.6); backdrop-filter: blur(4px); }
.modal__dialog { position: relative; background: var(--white); width: 90%; max-width: 600px; padding: 40px; border-radius: var(--radius-lg); z-index: 10; }
.modal__close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.5rem; color: var(--ink-soft); }
.modal__close:hover { color: var(--brand-primary); }
.modal__content h2 { margin-bottom: 20px; }

/* =========================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================= */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__panel { display: block; position: relative; height: 280px; width: 100%; max-width: 500px; margin: 30px auto 0; } /* Show stylized panel layout but adapted nicely */
  .hero__image-asset { opacity: 0.25; }
  .hero__card { width: 180px; padding: 12px; }
  .hero__card--one { top: 10px; right: 10px; }
  .hero__card--two { bottom: 10px; left: 10px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 600px) {
  .site-header__inner { padding: 0 16px; }
  .hero__title { font-size: 2.2rem; }
  .hero__subtitle { font-size: 1rem; }
  .hero__actions { flex-direction: column; width: 100%; gap: 12px; }
  .hero__actions .btn { width: 100%; }
  .main-nav { display: none; } /* Handled with is-active class */
  .header-actions .btn { display: none; } /* Get Help action goes inline */
  .nav-toggle { display: flex; }
  .wa-window {
    width: calc(100vw - 30px);
    height: calc(100vh - 100px);
    bottom: 0;
    right: -15px;
  }
}

@media (max-width: 480px) {
  .hero__panel { display: none; } /* Hide complicated cards if viewport gets extremely tight */
  .section-inner { padding: 40px 16px; }
  .form-grid { grid-template-columns: 1fr; gap: 16px; }
  .services__grid { grid-template-columns: 1fr; }
}
