/* ============================================================
   COMPLETE STYLES - TITO X-UK BIKES
   Production-grade with optimizations
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --primary: #0F172A;
  --primary-light: #1E293B;
  --accent-blue: #2563EB;
  --accent-blue-dark: #1D4ED8;
  --accent-green: #22C55E;
  --accent-green-dark: #16A34A;
  --accent-orange: #F59E0B;
  --accent-orange-dark: #D97706;
  --accent-pink: #EC4899;
  --accent-pink-dark: #DB2777;
  --accent-red: #EF4444;
  --accent-red-dark: #DC2626;
  
  /* Neutral */
  --bg: #F8FAFC;
  --bg-dark: #0F172A;
  --text: #111827;
  --text-light: #64748B;
  --text-white: #FFFFFF;
  --card-bg: #FFFFFF;
  --border-light: #E2E8F0;
  --border-dark: #334155;
  
  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.14);
  --shadow-xl: 0 30px 60px rgba(15, 23, 42, 0.18);
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 60px;
  --container-padding: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-base: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Z-index */
  --z-header: 1000;
  --z-mobile: 999;
  --z-floating: 950;
  --z-lightbox: 2000;
  --z-skip: 9999;
  --z-loading: 3000;
}

/* ===== DARK THEME ===== */
[data-theme="dark"] {
  --bg: #0F172A;
  --text: #E2E8F0;
  --text-light: #94A3B8;
  --card-bg: #1E293B;
  --border-light: #334155;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background var(--transition-base), color var(--transition-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); }
h3 { font-size: clamp(1rem, 1.4vw, 1.3rem); }
h4 { font-size: clamp(0.95rem, 1.1vw, 1.1rem); }

p {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 60ch;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
}

.section-head {
  margin-bottom: 36px;
}

.section-head .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-blue);
  margin-bottom: 10px;
}

.section-head h2 {
  margin-bottom: 6px;
}

.section-head p {
  color: var(--text-light);
  max-width: 500px;
}

.text-center {
  text-align: center;
}

.bg-light {
  background: var(--bg);
}

.mt-8 {
  margin-top: 40px;
}

/* ===== FADE UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: none;
  transition: all var(--transition-base);
  cursor: pointer;
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  min-height: 40px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 7px 16px;
  font-size: 0.78rem;
  min-height: 32px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-light);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(37, 99, 235, 0.04);
  box-shadow: none;
}

.btn-outline::after {
  background: rgba(37, 99, 235, 0.04);
}

.btn-green {
  background: var(--accent-green);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.btn-green:hover {
  background: var(--accent-green-dark);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.btn-dark {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.btn-dark:hover {
  background: var(--primary-light);
}

.btn-promo {
  background: var(--accent-red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
  animation: pulse-promo 2s ease-in-out infinite;
}

.btn-promo:hover {
  background: var(--accent-red-dark);
}

.btn-orange {
  background: var(--accent-orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-orange:hover {
  background: var(--accent-orange-dark);
}

.btn-pink {
  background: var(--accent-pink);
  color: #fff;
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.3);
}

.btn-pink:hover {
  background: var(--accent-pink-dark);
}

@keyframes pulse-promo {
  0%, 100% { box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3); }
  50% { box-shadow: 0 4px 24px rgba(239, 68, 68, 0.5); }
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  background: var(--accent-green);
  color: #fff;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.badge-orange {
  background: var(--accent-orange);
}

.badge-pink {
  background: var(--accent-pink);
}

.promo-badge {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-blue);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent-blue);
  color: #fff;
  padding: 10px 16px;
  z-index: var(--z-skip);
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2.5px solid var(--accent-blue);
  outline-offset: 2px;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: var(--z-loading);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-inner {
  text-align: center;
}

.loading-icon {
  font-size: 2.2rem;
  color: var(--accent-blue);
  margin-bottom: 10px;
  animation: pedal 1s ease-in-out infinite;
}

@keyframes pedal {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(6deg); }
}

.loading-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 1px;
}

.loading-text span {
  color: var(--accent-blue);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  padding: 14px 0;
  transition: all var(--transition-base);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

[data-theme="dark"] .site-header.scrolled {
  background: rgba(15, 23, 42, 0.92);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -0.5px;
  transition: color var(--transition-base);
}

.scrolled .logo {
  color: var(--text);
}

.logo span {
  color: var(--accent-blue);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.nav-links li a {
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--transition-fast);
}

.scrolled .nav-links li a {
  color: var(--text);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width var(--transition-fast);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a.active {
  color: var(--accent-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions .icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  color: #fff;
  transition: all var(--transition-fast);
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.scrolled .nav-actions .icon-btn {
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
}

.nav-actions .icon-btn:hover {
  background: var(--accent-blue);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.scrolled .hamburger span {
  background: var(--text);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE PANEL ===== */
.mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 80px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: var(--z-mobile);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

[data-theme="dark"] .mobile-panel {
  background: rgba(15, 23, 42, 0.98);
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links li a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  display: block;
}

.mobile-nav-links li a.active {
  color: var(--accent-blue);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 30px 0;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 16px;
  border-radius: 60px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-title {
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 440px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: float 2.4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-list i {
  color: var(--accent-green);
  font-size: 0.9rem;
}

/* ===== FEATURES ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.feature-item {
  text-align: center;
  padding: 22px 16px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent-blue);
  margin-bottom: 10px;
}

.feature-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== BIKE GRID ===== */
.bike-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.bike-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.bike-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.bike-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f1f5f9;
}

.bike-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.bike-card:hover .bike-media img {
  transform: scale(1.05);
}

.bike-body {
  padding: 16px 18px 20px;
}

.bike-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.bike-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-blue);
  font-weight: 600;
}

.bike-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-top: 8px;
}

[data-theme="dark"] .bike-price {
  color: #fff;
}

.bike-price .from {
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--text-light);
}

.bike-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.bike-actions .btn {
  flex: 1;
}

/* ===== RENTAL CAROUSEL ===== */
.rental-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  border-radius: var(--radius-md);
}

.rental-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 0;
}

.rental-slide {
  min-width: 100%;
  padding: 0 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}

.rental-card {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.rental-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rental-card.featured {
  border-color: var(--accent-blue);
}

.rental-card.promo {
  border-color: var(--accent-red);
}

.rental-card.popular {
  border-color: var(--accent-orange);
}

.rental-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f1f5f9;
  max-height: 140px;
}

.rental-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.rental-card:hover .rental-media img {
  transform: scale(1.04);
}

.rental-body {
  padding: 10px 12px 14px;
}

.rental-body h4 {
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.rental-duration {
  color: var(--text-light);
  font-size: 0.7rem;
}

.rental-price {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  margin: 4px 0 6px;
}

[data-theme="dark"] .rental-price {
  color: #fff;
}

.rental-price .from {
  font-weight: 400;
  font-size: 0.65rem;
  color: var(--text-light);
}

.rental-price .per-unit {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-light);
}

.rental-price .original {
  text-decoration: line-through;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--accent-red);
  margin-left: 6px;
}

.rental-id-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.65rem;
  color: #92400E;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  margin-bottom: 6px;
}

[data-theme="dark"] .rental-id-note {
  color: #FCD34D;
  background: rgba(245, 158, 11, 0.15);
}

.rental-id-note i {
  margin-top: 1px;
  font-size: 0.65rem;
}

/* ===== RENTAL INFO BANNER ===== */
.rental-info-banner {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(34, 197, 94, 0.06));
  border: 1.5px solid var(--accent-blue);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.rental-info-banner i {
  font-size: 1.4rem;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.rental-info-banner .info-text {
  font-size: 0.9rem;
  color: var(--text);
  flex: 1;
}

.rental-info-banner .info-text strong {
  color: var(--accent-blue);
}

.rental-info-banner .info-tag {
  background: var(--accent-red);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

[data-theme="dark"] .rental-info-banner {
  background: rgba(37, 99, 235, 0.12);
  border-color: var(--accent-blue);
}

/* ===== ICE POP SECTION ===== */
.icepop-section {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(251, 191, 36, 0.05));
  border: 2px solid var(--accent-pink);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}

.icepop-section::before {
  content: '🍦';
  position: absolute;
  font-size: 5rem;
  right: -10px;
  bottom: -20px;
  opacity: 0.08;
  transform: rotate(-10deg);
  pointer-events: none;
}

.icepop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 500px;
  margin: 16px auto 0;
}

.icepop-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  text-align: center;
}

.icepop-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.icepop-item .icepop-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fef3c7;
  max-height: 150px;
}

.icepop-item .icepop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.icepop-item:hover .icepop-img img {
  transform: scale(1.06);
}

.icepop-item .icepop-body {
  padding: 12px 14px 16px;
}

.icepop-item .icepop-body h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.icepop-item .icepop-body .icepop-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-pink);
}

.icepop-item .icepop-body .icepop-price small {
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--text-light);
}

.icepop-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.icepop-head h3 {
  font-size: 1.4rem;
}

.icepop-head .icepop-emoji {
  font-size: 2rem;
}

.icepop-badge {
  background: var(--accent-pink);
  color: #fff;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== CAROUSEL CONTROLS ===== */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  background: var(--card-bg);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-base);
  display: grid;
  place-items: center;
}

.carousel-btn:hover {
  background: var(--accent-blue);
  color: #fff;
  border-color: var(--accent-blue);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-light);
  cursor: pointer;
  transition: all var(--transition-base);
}

.carousel-dot.active {
  background: var(--accent-blue);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: var(--accent-blue);
  opacity: 0.7;
}

/* ===== PROMOTIONS ===== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.promo-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  border: 2px solid var(--border-light);
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.promo-card.highlight {
  border-color: var(--accent-orange);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(245, 158, 11, 0.02));
}

.promo-card.highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
}

.promo-icon {
  font-size: 2rem;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.promo-card .price-big {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-blue);
}

.promo-card .price-big .original {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--accent-red);
  font-weight: 400;
  margin-left: 6px;
}

/* ===== PACKAGES ===== */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.package-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.package-card.best {
  border-color: var(--accent-orange);
  position: relative;
}

.package-card.best::before {
  content: '⭐ Best Value';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: #fff;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
}

.package-card .package-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin: 8px 0 2px;
}

[data-theme="dark"] .package-card .package-price {
  color: #fff;
}

.package-card .package-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}

.package-features {
  list-style: none;
  margin: 12px 0 16px;
  text-align: left;
}

.package-features li {
  padding: 4px 0;
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-features li i {
  color: var(--accent-green);
  width: 16px;
  font-size: 0.8rem;
}

/* ===== SERVICES ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.service-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-banner {
  aspect-ratio: 16/9;
  background: #e2e8f0;
  overflow: hidden;
}

.service-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  max-height: 140px;
}

.service-item:hover .service-banner img {
  transform: scale(1.04);
}

.service-info {
  padding: 16px 18px 20px;
}

.service-icon {
  font-size: 1.5rem;
  color: var(--accent-blue);
  margin-bottom: 4px;
}

.service-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.service-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.service-list {
  list-style: none;
  margin: 6px 0 10px;
}

.service-list li {
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 2px 0 2px 18px;
  position: relative;
}

.service-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-green);
  font-size: 0.65rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.testimonial-card {
  background: var(--card-bg);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-card .stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 6px;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 8px;
}

.testimonial-card cite {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: normal;
  font-weight: 500;
}

/* ===== GALLERY ===== */
.gallery {
  columns: 4 180px;
  column-gap: 16px;
  margin-top: 32px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  transition: all var(--transition-base);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
  max-height: 200px;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(2px);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin: 32px auto 0;
}

.faq-grid details {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: all var(--transition-base);
  cursor: pointer;
}

.faq-grid details:hover {
  border-color: var(--accent-blue);
}

.faq-grid summary {
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  color: var(--text-light);
  transition: transform var(--transition-base);
}

.faq-grid details[open] summary::after {
  transform: rotate(180deg);
}

.faq-grid details p {
  padding-top: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ===== ID CALLOUT ===== */
.id-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-top: 24px;
}

.id-callout i {
  font-size: 1.4rem;
  color: #B45309;
  margin-top: 2px;
}

[data-theme="dark"] .id-callout i {
  color: #FCD34D;
}

.id-callout h4 {
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.id-callout p {
  color: var(--text);
  opacity: 0.85;
  margin: 0;
  font-size: 0.88rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
  align-items: start;
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 340px;
  background: #e2e8f0;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info {
  background: var(--card-bg);
  padding: 26px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.contact-info h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.contact-detail i {
  width: 32px;
  height: 32px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent-blue);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-hours {
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  margin-top: 4px;
}

.contact-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  place-items: center;
  padding: 30px;
}

.lightbox.show {
  display: grid;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: var(--z-floating);
}

.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.fab:hover {
  transform: scale(1.06) translateY(-2px);
}

.fab-whatsapp {
  background: #25D366;
}

.fab-call {
  background: var(--accent-blue);
}

.fab-back {
  background: var(--primary);
  opacity: 0;
  pointer-events: none;
}

.fab-back.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   FOOTER STYLES - IMPROVED
   ============================================================ */

.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 50px 0 20px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== BRAND COLUMN ===== */
.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand .logo-icon {
  font-size: 1.8rem;
  color: var(--accent-blue);
}

.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer-brand .brand-name span {
  color: var(--accent-blue);
}

.footer-brand .brand-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 16px;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ===== FOOTER LINK COLUMNS ===== */
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.7;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

/* ===== CONTACT SECTION IN FOOTER ===== */
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact ul li i {
  width: 16px;
  color: var(--accent-blue);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact ul li .label {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1px;
}

.footer-contact ul li a,
.footer-contact ul li span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-contact ul li a:hover {
  color: #fff;
}

/* ===== FOOTER ACTION BUTTONS ===== */
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.footer-actions .btn {
  font-size: 0.7rem;
  padding: 6px 12px;
  min-height: 30px;
  border-radius: 6px;
  flex: 1;
  min-width: 80px;
  justify-content: center;
}

.footer-actions .btn-green {
  background: #25D366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.footer-actions .btn-green:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.footer-actions .btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
}

.footer-actions .btn-outline:hover {
  border-color: var(--accent-blue);
  color: #fff;
  background: rgba(37, 99, 235, 0.1);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .rental-slide {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery {
    columns: 3 160px;
  }
  .icepop-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 0.95rem;
  }
  .section {
    padding: 40px 0;
  }
  .bike-grid,
  .service-grid,
  .promo-grid,
  .package-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  .feature-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .floating-buttons {
    bottom: 14px;
    right: 14px;
  }
  .floating-buttons .fab {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .id-callout {
    flex-direction: column;
  }
  .rental-slide {
    grid-template-columns: 1fr;
  }
  .rental-media {
    max-height: 120px;
  }
  .gallery {
    columns: 2 140px;
  }
  .rental-info-banner {
    flex-direction: column;
    text-align: center;
    padding: 14px 16px;
  }
  .rental-info-banner .info-tag {
    align-self: center;
  }
  .icepop-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 320px;
  }
  .icepop-section::before {
    font-size: 3rem;
    right: -5px;
    bottom: -10px;
  }
  .icepop-head h3 {
    font-size: 1.1rem;
  }

  /* Footer responsive */
  .site-footer {
    padding: 36px 0 16px;
  }
  .footer-grid {
    gap: 20px;
    padding-bottom: 20px;
  }
  .footer-brand .brand-logo {
    justify-content: center;
  }
  .footer-brand .brand-description {
    text-align: center;
    max-width: 100%;
  }
  .social-links {
    justify-content: center;
  }
  .footer-links h4,
  .footer-contact h4 {
    text-align: center;
  }
  .footer-links ul {
    text-align: center;
  }
  .footer-contact ul li {
    justify-content: center;
  }
  .footer-contact ul li i {
    margin-top: 0;
  }
  .footer-actions {
    justify-content: center;
  }
  .footer-actions .btn {
    flex: 0 1 auto;
    min-width: 100px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
  .bike-grid,
  .service-grid,
  .promo-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    columns: 2 120px;
  }
  .section-head h2 {
    font-size: 1.4rem;
  }
  .contact-info {
    padding: 16px;
  }
  .contact-actions .btn {
    flex: 1;
  }
  .rental-media {
    max-height: 100px;
  }
  .icepop-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 280px;
  }
  .icepop-item .icepop-img {
    max-height: 100px;
  }
  .icepop-item .icepop-body {
    padding: 8px 10px 12px;
  }
  .icepop-item .icepop-body h4 {
    font-size: 0.75rem;
  }
  .icepop-item .icepop-body .icepop-price {
    font-size: 1rem;
  }

  /* Footer responsive */
  .footer-brand .brand-name {
    font-size: 1.1rem;
  }
  .footer-actions .btn {
    flex: 1 1 100%;
    min-width: unset;
  }
  .social-links a {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
  .scroll-indicator {
    animation: none !important;
  }
  .bike-card:hover .bike-media img,
  .rental-card:hover .rental-media img,
  .service-item:hover .service-banner img,
  .gallery-item:hover img {
    transform: none !important;
  }
}