/* ============================================
   UZUNGÖL SCOOTER — COMPONENTS CSS
   Reusable UI Components
   ============================================ */

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: var(--space-4) 0;
  transition: all var(--transition-slow);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(92, 26, 42, 0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: var(--space-3) 0;
  box-shadow: var(--shadow-lg);
}

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

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

.navbar__logo img {
  height: 42px;
  width: auto;
  border-radius: var(--radius-sm);
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--color-white);
  line-height: var(--lh-tight);
}

.navbar__logo-text span {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  opacity: 0.8;
  font-family: var(--font-body);
}

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

.navbar__link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.navbar__link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
}

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

/* Language Selector */
.lang-selector {
  position: relative;
}

.lang-selector__btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-selector__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.lang-selector__btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.lang-selector.open .lang-selector__btn svg {
  transform: rotate(180deg);
}

.lang-selector__dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  right: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  overflow: hidden;
}

[dir="rtl"] .lang-selector__dropdown {
  right: auto;
  left: 0;
}

.lang-selector.open .lang-selector__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-selector__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  color: var(--color-gray-700);
  font-size: var(--fs-sm);
  transition: all var(--transition-fast);
  width: 100%;
  text-align: left;
}

[dir="rtl"] .lang-selector__item {
  text-align: right;
}

.lang-selector__item:hover {
  background: var(--color-cream);
  color: var(--color-bordo);
}

.lang-selector__item.active {
  background: var(--color-bordo-bg);
  color: var(--color-bordo);
  font-weight: var(--fw-semibold);
}

.lang-selector__flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
}

/* Mobile Menu Button */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

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

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

/* Mobile Nav */
.navbar__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(92, 26, 42, 0.98);
  backdrop-filter: var(--glass-blur);
  z-index: calc(var(--z-fixed) - 1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.navbar__mobile.open {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.navbar__mobile .navbar__link {
  font-size: var(--fs-xl);
  padding: var(--space-3) var(--space-8);
}

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar { padding: var(--space-3) 0; }
  .navbar.scrolled { padding: var(--space-2) 0; }
  .navbar__logo img { height: 34px; }
  .navbar__logo-text { font-size: var(--fs-sm); }
  .navbar__logo-text span { font-size: 0.65rem; }
  .navbar__actions { gap: var(--space-2); }
  .lang-selector__btn { padding: var(--space-1) var(--space-2); font-size: var(--fs-xs); }
}

@media (max-width: 480px) {
  .navbar__logo img { height: 30px; }
  .navbar__logo { gap: var(--space-2); }
  .navbar__mobile .navbar__link { font-size: var(--fs-lg); padding: var(--space-3) var(--space-6); }
}


/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

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

.btn--primary {
  background: var(--gradient-bordo);
  color: var(--color-white);
  box-shadow: var(--shadow-bordo);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px rgba(123, 45, 63, 0.35);
  color: var(--color-white);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-bordo);
  border: 2px solid var(--color-bordo-subtle);
}

.btn--secondary:hover {
  background: var(--color-bordo-bg);
  border-color: var(--color-bordo);
  transform: translateY(-2px);
  color: var(--color-bordo);
}

.btn--navy {
  background: var(--gradient-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-navy);
}

.btn--navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px rgba(45, 74, 122, 0.35);
  color: var(--color-white);
}

.btn--gold {
  background: var(--gradient-gold);
  color: var(--color-gray-900);
  font-weight: var(--fw-bold);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px rgba(212, 168, 67, 0.4);
  color: var(--color-gray-900);
}

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

.btn--whatsapp:hover {
  background: #20b858;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px rgba(37, 211, 102, 0.35);
  color: var(--color-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--fs-base);
  border-radius: var(--radius-xl);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-xs);
}

.btn--block {
  width: 100%;
}


/* ==========================================
   CARDS
   ========================================== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image {
  transform: scale(1.05);
}

.card__image-wrapper {
  overflow: hidden;
  position: relative;
}

.card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-1) var(--space-3);
  background: var(--color-bordo);
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  z-index: 2;
}

[dir="rtl"] .card__badge {
  left: auto;
  right: var(--space-3);
}

.card__body {
  padding: var(--space-6);
}

.card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.card__text {
  color: var(--color-gray-500);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-4);
}

.card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.card__spec {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--color-gray-600);
}

.card__spec svg {
  width: 16px;
  height: 16px;
  color: var(--color-navy-light);
}

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

.card__price-amount {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-bordo);
}

.card__price-period {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--color-gray-200);
}

/* Scooter Card variant */
.scooter-card {
  position: relative;
}

.scooter-card__image-wrapper {
  overflow: hidden;
  height: 240px;
  background: var(--color-cream-dark);
  position: relative;
}

.scooter-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.scooter-card:hover .scooter-card__image {
  transform: scale(1.08);
}


/* ==========================================
   PRICING CARDS
   ========================================== */
.price-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  border: 2px solid transparent;
}

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

.price-card--featured {
  border-color: var(--color-bordo);
  background: var(--color-white);
}

.price-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-bordo);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.price-card__label {
  display: inline-block;
  padding: var(--space-1) var(--space-4);
  background: var(--color-bordo-bg);
  color: var(--color-bordo);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.price-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.price-card__price {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  color: var(--color-bordo);
  margin-bottom: var(--space-1);
}

.price-card__period {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  margin-bottom: var(--space-6);
}

.price-card__features {
  text-align: left;
  margin-bottom: var(--space-6);
}

[dir="rtl"] .price-card__features {
  text-align: right;
}

.price-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--fs-sm);
  color: var(--color-gray-700);
}

.price-card__feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-success);
  flex-shrink: 0;
}


/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-gray-900);
}

.hero--sm {
  min-height: 50vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-soft);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  color: var(--color-white);
  max-width: 720px;
  padding-top: var(--space-20);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-6);
  color: rgba(255, 255, 255, 0.95);
  animation: fadeInDown 0.8s ease-out;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-6);
  color: var(--color-white);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__title span {
  color: var(--color-gold);
}

.hero__subtitle {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-xs);
  animation: float 3s ease-in-out infinite;
}

.hero__scroll-indicator svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero--sm { min-height: 40vh; }
  .hero__title { font-size: var(--fs-3xl); }
  .hero__subtitle { font-size: var(--fs-base); }
  .hero__content { padding-top: var(--space-24); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__badge { font-size: var(--fs-xs); padding: var(--space-1) var(--space-3); }
  .hero__scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .hero__title { font-size: var(--fs-2xl); }
  .hero__subtitle { font-size: var(--fs-sm); margin-bottom: var(--space-6); }
  .hero__content { padding-top: var(--space-20); }
  .hero__actions .btn { font-size: var(--fs-sm); }
}


/* ==========================================
   FEATURE CARDS (Why Us)
   ========================================== */
.feature-card {
  text-align: center;
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.feature-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bordo-bg);
  color: var(--color-bordo);
  border-radius: var(--radius-xl);
  margin: 0 auto var(--space-5);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-card__icon {
  background: var(--color-bordo);
  color: var(--color-white);
  transform: scale(1.1);
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
}

.feature-card__text {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
}


/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
  background: var(--gradient-bordo);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 2;
}

.stat {
  text-align: center;
  color: var(--color-white);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  margin-bottom: var(--space-2);
  color: var(--color-gold);
}

.stat__label {
  font-size: var(--fs-sm);
  opacity: 0.85;
  font-weight: var(--fw-medium);
}

@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .stats { padding: var(--space-10) 0; }
  .stat__number { font-size: var(--fs-3xl); }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .stat__number { font-size: var(--fs-2xl); }
  .stat__label { font-size: var(--fs-xs); }
}


/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__logo img {
  height: 40px;
  border-radius: var(--radius-sm);
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--color-white);
}

.footer__desc {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

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

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

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

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

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

.footer__link {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__link:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

[dir="rtl"] .footer__link:hover {
  transform: translateX(-4px);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--fs-sm);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-bordo-subtle);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .footer { padding: var(--space-10) 0 var(--space-6); }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
  }
  .footer__brand {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
  }
  .footer__brand .footer__logo { justify-content: center; }
  .footer__brand .footer__social { justify-content: center; }
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }
  .footer__brand .footer__desc { font-size: var(--fs-xs); }
  .footer__heading { font-size: var(--fs-sm); margin-bottom: var(--space-4); }
  .footer__links { align-items: center; }
  .footer__contact-item { justify-content: center; }
}


/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-whatsapp);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-3);
}

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: var(--space-6);
  align-items: flex-start;
}

.whatsapp-float__tooltip {
  background: var(--color-white);
  color: var(--color-gray-800);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float__btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-green-whatsapp);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: pulseGlow 2s ease-in-out infinite;
  text-decoration: none;
}

.whatsapp-float__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  color: var(--color-white);
}

.whatsapp-float__btn svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  .whatsapp-float { bottom: var(--space-4); right: var(--space-4); }
  .whatsapp-float__btn { width: 52px; height: 52px; }
  .whatsapp-float__btn svg { width: 26px; height: 26px; }
  .whatsapp-float__tooltip { display: none; }
}

@media (max-width: 480px) {
  .whatsapp-float { bottom: var(--space-3); right: var(--space-3); }
  .whatsapp-float__btn { width: 48px; height: 48px; }
  .whatsapp-float__btn svg { width: 24px; height: 24px; }
}


/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  background: var(--gradient-navy);
  padding: var(--space-16) 0;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(123, 45, 63, 0.15);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-section__content {
  position: relative;
  z-index: 2;
}

.cta-section__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-section__text {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-section { padding: var(--space-10) 0; }
  .cta-section__title { font-size: var(--fs-2xl); }
  .cta-section__text { font-size: var(--fs-sm); }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .cta-section { padding: var(--space-8) 0; }
  .cta-section__actions .btn { max-width: 100%; }
}


/* ==========================================
   TESTIMONIAL CARDS
   ========================================== */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card__quote {
  font-size: var(--fs-3xl);
  color: var(--color-bordo-subtle);
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-family: Georgia, serif;
  line-height: 1;
}

[dir="rtl"] .testimonial-card__quote {
  left: auto;
  right: var(--space-6);
}

.testimonial-card__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-gray-600);
  margin-bottom: var(--space-6);
  padding-top: var(--space-4);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bordo-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  color: var(--color-bordo);
  font-size: var(--fs-sm);
}

.testimonial-card__name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--color-gray-800);
}

.testimonial-card__rating {
  display: flex;
  gap: 2px;
  color: var(--color-gold);
  font-size: var(--fs-sm);
}


/* ==========================================
   CONTACT INFO
   ========================================== */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bordo-bg);
  color: var(--color-bordo);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-card__title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-gray-800);
  margin-bottom: var(--space-1);
}

.contact-card__text {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
}

.contact-card__text a {
  color: var(--color-navy);
  font-weight: var(--fw-medium);
}

.contact-card__text a:hover {
  color: var(--color-bordo);
}

@media (max-width: 480px) {
  .contact-card { padding: var(--space-4); gap: var(--space-3); }
  .contact-card__icon { width: 44px; height: 44px; }
  .contact-card__icon svg { width: 20px; height: 20px; }
}


/* ==========================================
   MAP CONTAINER
   ========================================== */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ==========================================
   ROUTES PREVIEW
   ========================================== */
.route-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.route-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.route-card:hover .route-card__image {
  transform: scale(1.1);
}

.route-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 39, 68, 0.85) 0%, rgba(26, 39, 68, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
  color: var(--color-white);
}

.route-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.route-card__desc {
  font-size: var(--fs-sm);
  opacity: 0.85;
}

.route-card__distance {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-gold);
  margin-top: var(--space-2);
}

/* ==========================================
   LOADING / SKELETON
   ========================================== */
.skeleton {
  background: linear-gradient(90deg, var(--color-gray-100) 25%, var(--color-gray-200) 50%, var(--color-gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-top {
  position: fixed;
  bottom: var(--space-6);
  left: var(--space-6);
  z-index: var(--z-fixed);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bordo);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: var(--shadow-bordo);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  cursor: pointer;
}

[dir="rtl"] .scroll-top {
  left: auto;
  right: var(--space-6);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-bordo-dark);
  transform: translateY(-2px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: var(--space-4);
    left: var(--space-4);
    width: 40px;
    height: 40px;
  }
  .scroll-top svg { width: 18px; height: 18px; }
}


/* ==========================================
   PRICE CARD — Mobile
   ========================================== */
@media (max-width: 768px) {
  .price-card { padding: var(--space-6); }
  .price-card__price { font-size: var(--fs-3xl); }
  .price-card__title { font-size: var(--fs-lg); }
}

@media (max-width: 480px) {
  .price-card { padding: var(--space-5); }
  .price-card__price { font-size: var(--fs-2xl); }
}


/* ==========================================
   TESTIMONIAL CARD — Mobile
   ========================================== */
@media (max-width: 768px) {
  .testimonial-card { padding: var(--space-6); }
}

@media (max-width: 480px) {
  .testimonial-card { padding: var(--space-4); }
  .testimonial-card__text { font-size: var(--fs-xs); }
  .testimonial-card__quote { font-size: var(--fs-2xl); }
}


/* ==========================================
   FEATURE CARD — Mobile
   ========================================== */
@media (max-width: 480px) {
  .feature-card { padding: var(--space-5); }
  .feature-card__icon { width: 52px; height: 52px; }
  .feature-card__icon svg { width: 24px; height: 24px; }
  .feature-card__title { font-size: var(--fs-base); }
  .feature-card__text { font-size: var(--fs-xs); }
}


/* ==========================================
   CARD — Mobile
   ========================================== */
@media (max-width: 480px) {
  .card__body { padding: var(--space-4); }
  .card__image { height: 180px; }
  .card__footer { padding: var(--space-3) var(--space-4); }
  .card__price-amount { font-size: var(--fs-xl); }
  .scooter-card__image-wrapper { height: 200px; }
}
