/* ============================================================
   Andalucía eBikes — Cinematic Scroll Styles
   ============================================================ */

/* === RESET & VARIABLES === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --olive: #4a5a2b;
  --olive-light: #6b7f3a;
  --olive-dark: #3a4a1e;
  --terracotta: #c45a3c;
  --terracotta-dark: #a8432b;
  --sand: #f5f0e8;
  --sand-dark: #e8e0d0;
  --charcoal: #2c2c2c;
  --charcoal-light: #444;
  --white: #ffffff;
  --desert-gold: #d4a843;
  --desert-warm: #e8c87a;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === SKIP LINK (A11y) === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius);
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Thin accent line at very top */
.nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--olive), var(--terracotta), var(--desert-gold), var(--terracotta), var(--olive));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav--scrolled::before {
  opacity: 1;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0.6rem 3rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
}

.nav__logo img {
  height: 60px;
  width: auto;
  transition: all var(--transition);
  opacity: 0;
}

.nav--scrolled .nav__logo img {
  height: 44px;
  opacity: 1;
}

.hero__logo {
  height: 280px;
  width: auto;
  display: block;
  margin: 0 auto 1.5rem;
  filter: brightness(0) invert(1) drop-shadow(0 2px 20px rgba(0,0,0,0.5));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-weight: 500;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  transition: all var(--transition);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width var(--transition);
}

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

.nav__links a:hover::after {
  width: 100%;
}

/* Scrolled nav: dark text on white bg */
.nav--scrolled .nav__links a {
  color: var(--charcoal-light);
}

.nav--scrolled .nav__links a:hover {
  color: var(--charcoal);
}

.nav__cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border: 1.5px solid var(--terracotta) !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all var(--transition) !important;
  box-shadow: 0 2px 8px rgba(196, 90, 60, 0.3);
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--terracotta-dark) !important;
  border-color: var(--terracotta-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(196, 90, 60, 0.45);
}

.nav--scrolled .nav__cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  border-color: var(--terracotta) !important;
  box-shadow: 0 2px 8px rgba(196, 90, 60, 0.35);
}

.nav--scrolled .nav__cta:hover {
  background: var(--terracotta-dark) !important;
  border-color: var(--terracotta-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(196, 90, 60, 0.45);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: inherit;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lang-btn.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.nav--scrolled .lang-btn {
  border-color: var(--sand-dark);
  color: var(--charcoal-light);
}

.nav--scrolled .lang-btn.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.nav__mobile .lang-btn {
  border: 2px solid var(--olive);
  color: var(--olive);
  padding: 4px 10px;
  font-size: 0.85rem;
}

.nav__mobile .lang-btn.active {
  background: var(--olive);
  color: var(--white);
}

.nav__mobile .lang-switcher {
  padding: 0.75rem 0;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.nav--scrolled .nav__hamburger span {
  background: var(--charcoal);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--white);
  padding: 6rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  z-index: 1000;
}

.nav__mobile.active {
  right: 0;
}

.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav__mobile-overlay.active {
  opacity: 1;
}

.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav__mobile a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--sand);
  transition: color var(--transition);
}

.nav__mobile a:hover {
  color: var(--terracotta);
}

.nav__mobile .nav__cta {
  display: inline-block;
  margin-top: 1rem;
  text-align: center;
  width: 100%;
}

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

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 25s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.15) translate(-2%, -1%);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74, 90, 43, 0.75) 0%,
    rgba(44, 44, 44, 0.6) 50%,
    rgba(74, 90, 43, 0.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 2rem;
  padding-top: 0;
  margin-top: -4rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--terracotta);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  font-weight: 400;
  color: #e8e0d0;
}

.hero__buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero-specific CTA style — editorial adventure feel */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
}

.hero__cta-line {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.hero__cta-line::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--terracotta);
  border-top: 2px solid var(--terracotta);
  transform: rotate(45deg);
  transition: all 0.4s ease;
}

.hero__cta:hover .hero__cta-line {
  width: 80px;
}

.hero__cta:hover {
  letter-spacing: 1.5px;
}

.hero__cta--secondary .hero__cta-line {
  background: rgba(255,255,255,0.6);
}

.hero__cta--secondary .hero__cta-line::after {
  border-color: rgba(255,255,255,0.6);
}

.hero__cta--secondary:hover .hero__cta-line {
  background: var(--white);
}

.hero__cta--secondary:hover .hero__cta-line::after {
  border-color: var(--white);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: var(--white);
  opacity: 0.7;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

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

.btn--primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(196, 90, 60, 0.35);
}

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

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

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

.btn--olive:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(74, 90, 43, 0.35);
}

.btn--gold {
  background: var(--desert-gold);
  color: var(--charcoal);
  border-color: var(--desert-gold);
}

.btn--gold:hover {
  background: var(--desert-warm);
  border-color: var(--desert-warm);
  transform: translateY(-2px);
}

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

/* === SECTIONS === */
section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--olive);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section__tag--light {
  color: var(--desert-warm);
}

.section__title--left {
  text-align: left;
}

.morocco__title {
  color: var(--charcoal);
}

.cal__detail {
  display: none;
}

.honey-field {
  display: none;
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--left {
  transform: translateX(-60px);
}

.reveal--right {
  transform: translateX(60px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__bg img {
    animation: none;
  }
  .hero__scroll {
    animation: none;
  }
}

/* === WHY RIDE WITH US === */
.features {
  background: var(--sand);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--sand);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all var(--transition);
}

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

.feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 0.6rem;
}

.feature-card__text {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

/* === TOURS === */
.tours__grid {
  display: grid;
  gap: 3rem;
}

.tour-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  transition: all var(--transition);
}

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

.tour-card:nth-child(even) .tour-card__image {
  order: 2;
}

.tour-card:nth-child(even) .tour-card__info {
  order: 1;
}

.tour-card__image {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.tour-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-card__info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tour-card__location {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.tour-card__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--olive);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.tour-card__desc {
  color: var(--charcoal-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

.tour-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tour-card__meta svg {
  width: 16px;
  height: 16px;
  stroke: var(--olive-light);
}

/* === RENTALS === */
.rentals {
  background: var(--sand);
  position: relative;
}

.rentals__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.rentals__tab {
  padding: 0.75rem 2rem;
  border: 2px solid var(--olive);
  background: transparent;
  color: var(--olive);
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}

.rentals__tab.active,
.rentals__tab:hover {
  background: var(--olive);
  color: var(--white);
}

.rentals__panel {
  display: none;
}

.rentals__panel.active {
  display: block;
}

.rentals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rental-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
}

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

.rental-card--featured {
  border: 2px solid var(--terracotta);
  position: relative;
}

/* Badge is now a real DOM element with data-i18n for translation */

.rental-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.rental-card__image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.rental-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.rental-card__body {
  padding: 2rem;
}

.rental-card__type {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--terracotta);
  margin-bottom: 0.25rem;
}

.rental-card__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--olive);
  margin-bottom: 1rem;
}

.rental-card__price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.rental-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: #888;
}

.rental-card__duration {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.rental-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.rental-card__features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--charcoal-light);
  border-bottom: 1px solid var(--sand);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rental-card__features li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--olive-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* === TEAM BUILDING (Parallax) === */
.team-building {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-image: url('images/grupo-abadia.webp');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.team-building__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 90, 43, 0.88), rgba(44, 44, 44, 0.75));
}

.team-building__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  padding: 4rem 2rem;
}

.team-building__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.team-building__text {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.team-building__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  list-style: none;
}

.team-building__features li {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* === MOROCCO / INTERNATIONAL === */
.morocco {
  background: linear-gradient(135deg, #f9f0e0, #f5e6cc);
  position: relative;
  overflow: hidden;
}

.morocco::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--desert-gold), var(--terracotta), var(--desert-gold));
}

.morocco__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.morocco__tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--desert-gold);
  margin-bottom: 0.75rem;
}

.morocco__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.morocco__text {
  color: var(--charcoal-light);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.morocco__tours {
  list-style: none;
  margin-bottom: 2rem;
}

.morocco__tours li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(212, 168, 67, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.morocco__tours li strong {
  color: var(--charcoal);
}

.morocco__tours li span {
  color: var(--desert-gold);
  font-weight: 600;
}

.morocco__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.morocco__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* === GALLERY === */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery__item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery__item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox__frame {
  position: relative;
  max-width: 75vw;
  max-height: 80vh;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  transform: scale(0.85) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.lightbox.active .lightbox__frame {
  transform: scale(1) translateY(0);
}

.lightbox__frame img {
  display: block;
  max-width: 75vw;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  transform: translateY(100%);
  transition: transform 0.4s ease 0.15s;
}

.lightbox.active .lightbox__caption {
  transform: translateY(0);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}

.lightbox__close:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  transform: rotate(90deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}

.lightbox__nav:hover {
  background: rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.5);
}

.lightbox__nav--prev {
  left: 1.5rem;
}

.lightbox__nav--next {
  right: 1.5rem;
}

@media (max-width: 768px) {
  .lightbox__frame {
    max-width: 92vw;
    max-height: 70vh;
  }

  .lightbox__frame img {
    max-width: 92vw;
    max-height: 70vh;
  }

  .lightbox__nav {
    width: 36px;
    height: 36px;
  }

  .lightbox__nav--prev {
    left: 0.75rem;
  }

  .lightbox__nav--next {
    right: 0.75rem;
  }
}

/* === STATS / COUNTER === */
.stats {
  background: var(--olive);
  color: var(--white);
  padding: 4rem 2rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.95rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === CONTACT === */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact__info-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--olive);
  margin-bottom: 1rem;
}

.contact__info-text {
  color: var(--charcoal-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--olive);
}

.contact__detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--olive);
}

.contact__detail-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.contact__detail-content p,
.contact__detail-content a {
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

.contact__detail-content a:hover {
  color: var(--terracotta);
}

.contact__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact__social a {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.contact__social a:hover {
  background: var(--olive);
  color: var(--white);
  transform: translateY(-3px);
}

.contact__social svg {
  width: 20px;
  height: 20px;
}

/* Contact Form */
.contact__form {
  background: var(--sand);
  padding: 2.5rem;
  border-radius: var(--radius);
}

.contact__form h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--olive);
  margin-bottom: 1.5rem;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid transparent;
  background: var(--white);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color var(--transition);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--olive);
}

.form__row {
  display: flex;
  gap: 1rem;
}

.form__group--half {
  flex: 1;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__submit {
  width: 100%;
  padding: 1rem;
  background: var(--olive);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.form__submit:hover {
  background: var(--olive-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 90, 43, 0.3);
}

/* === FOOTER === */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 2rem 1.5rem;
}

.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer__brand img {
  height: 48px;
  filter: brightness(10);
  opacity: 0.9;
}

.footer__col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer__col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

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

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.8);
}

.footer__bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
}

/* === AVAILABILITY CALENDAR === */
.availability {
  background: var(--sand);
}

.cal {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2rem;
}

.cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cal__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--sand-dark);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--charcoal);
}

.cal__nav-btn:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}

.cal__nav-btn svg {
  stroke: currentColor;
}

.cal__month {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--olive);
  text-transform: capitalize;
}

.cal__legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.cal__legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

.cal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.cal__dot--available {
  background: var(--olive-light);
}

.cal__dot--limited {
  background: var(--desert-gold);
}

.cal__dot--full {
  background: var(--terracotta);
}

.cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal-light);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--sand);
}

.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal__day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: default;
  transition: all var(--transition);
  position: relative;
}

.cal__day--empty {
  visibility: hidden;
}

.cal__day--past {
  color: var(--sand-dark);
}

.cal__day--available {
  cursor: pointer;
  background: rgba(107, 127, 58, 0.1);
}

.cal__day--available:hover {
  background: var(--olive-light);
  color: var(--white);
  transform: scale(1.1);
}

.cal__day--limited {
  cursor: pointer;
  background: rgba(212, 168, 67, 0.15);
}

.cal__day--limited:hover {
  background: var(--desert-gold);
  color: var(--white);
  transform: scale(1.1);
}

.cal__day--full {
  background: rgba(196, 90, 60, 0.1);
  color: var(--charcoal-light);
  text-decoration: line-through;
}

.cal__day--today {
  font-weight: 700;
  box-shadow: inset 0 0 0 2px var(--olive);
}

.cal__day-indicator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  bottom: 4px;
}

.cal__detail {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--sand);
  border-radius: 8px;
  animation: fadeUp 0.3s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cal__detail h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--olive);
  margin-bottom: 0.75rem;
}

.cal__detail-tour {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--sand-dark);
  font-size: 0.95rem;
}

.cal__detail-tour:last-child {
  border-bottom: none;
}

.cal__detail-status {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cal__detail-status--available {
  background: rgba(107, 127, 58, 0.15);
  color: var(--olive);
}

.cal__detail-status--limited {
  background: rgba(212, 168, 67, 0.15);
  color: #b8922e;
}

.cal__detail-status--full {
  background: rgba(196, 90, 60, 0.1);
  color: var(--terracotta);
}

.cal__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin-top: 1.25rem;
  font-style: italic;
}

/* === CYCLING HOLIDAYS === */
.cycling-holidays {
  background: var(--sand);
}

.holidays__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.holiday-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
}

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

.holiday-card--featured {
  border: 2px solid var(--terracotta);
  position: relative;
}

.holiday-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.holiday-card__image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.holiday-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.holiday-card__body {
  padding: 2rem;
}

.holiday-card__duration {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--olive);
  background: var(--sand);
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.holiday-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--olive);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.holiday-card__itinerary {
  list-style: none;
  margin-bottom: 1.5rem;
}

.holiday-card__day {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--sand);
  font-size: 0.95rem;
  color: var(--charcoal-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.holiday-card__day:last-child {
  border-bottom: none;
}

.holiday-card__includes {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.holiday-card__includes li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--charcoal-light);
  border-bottom: 1px solid var(--sand);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.holiday-card__includes li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--olive-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* === INCENTIVES === */
.incentives__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.incentives__text {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.incentives__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.incentives__feat {
  padding: 1rem 0;
}

.incentives__feat h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 0.4rem;
}

.incentives__feat p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

.incentives__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* === MOROCCO GRID === */
.morocco__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.morocco-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.morocco-card__image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.morocco-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.morocco-card__body {
  padding: 1.5rem;
}

.morocco-card__duration {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--desert-gold);
  background: rgba(212, 168, 67, 0.15);
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

/* === LUGGAGE === */
.luggage {
  background: var(--sand);
}

.luggage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.luggage__text {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.luggage__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.luggage__detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.luggage__detail strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
}

.luggage__detail span {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.luggage__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-card {
    grid-template-columns: 1fr;
  }

  .tour-card:nth-child(even) {
    direction: ltr;
  }

  .tour-card__image {
    min-height: 250px;
  }

  .morocco__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .morocco__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .holidays__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .incentives__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .luggage__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 1.5rem;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile {
    display: block;
  }

  .nav__mobile-overlay {
    display: block;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .tour-card__info {
    padding: 1.5rem;
  }

  .rentals__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item:nth-child(1) {
    grid-column: span 2;
  }

  .holidays__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .incentives__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .incentives__features {
    grid-template-columns: 1fr;
  }

  .morocco__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .luggage__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .luggage__details {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Fix parallax on mobile */
  .team-building {
    background-attachment: scroll;
  }

  /* Reduce battery drain on mobile */
  .hero__bg img {
    animation-duration: 40s;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 0.75rem 1rem;
  }

  .rentals__tabs {
    flex-direction: column;
    align-items: center;
  }

  .rentals__tab {
    width: 100%;
    max-width: 250px;
  }

  .form__row {
    flex-direction: column;
    gap: 0;
  }

  .morocco__tours li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* ========== TEAM BUILDING DETAIL ========== */
.team-detail {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.team-detail__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.team-detail__main h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.team-detail__main > p {
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.team-detail__block {
  margin-bottom: 2rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--olive-light);
}

.team-detail__block h4 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.team-detail__block p {
  color: var(--warm-gray);
  line-height: 1.7;
}

.team-detail__card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 1.25rem;
}

.team-detail__card h4 {
  color: var(--olive);
  margin-bottom: 0.5rem;
}

.team-detail__card p {
  color: var(--warm-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.team-detail__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.team-detail__list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--charcoal);
}

.team-detail__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 700;
}

@media (max-width: 768px) {
  .team-detail__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== INCENTIVES DETAIL ========== */
.incentives__detail {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.incentives__detail h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  text-align: center;
}

.incentives__detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.incentives__detail-card {
  background: var(--ivory);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--olive-light);
}

.incentives__detail-card h4 {
  color: var(--olive);
  margin-bottom: 0.5rem;
}

.incentives__detail-card p {
  color: var(--warm-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* DETOX Workshop */
.incentives__detox {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2d3436 100%);
  border-radius: 16px;
  padding: 3rem;
  color: white;
}

.incentives__detox .section__tag {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.incentives__detox h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.incentives__detox p {
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.incentives__detox-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.incentives__detox-list li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  opacity: 0.9;
}

.incentives__detox-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--desert-gold);
  font-weight: 700;
}

@media (max-width: 768px) {
  .incentives__detail-grid {
    grid-template-columns: 1fr;
  }
  .incentives__detox {
    padding: 2rem 1.5rem;
  }
}

/* ========== LUGGAGE EXPANDED ========== */
.luggage__pricing {
  margin: 1.5rem 0;
}

.luggage__pricing h4 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.luggage__price-grid {
  display: flex;
  gap: 1.5rem;
}

.luggage__price-item {
  background: var(--ivory);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  flex: 1;
}

.luggage__price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--olive);
}

.luggage__price-period {
  font-size: 0.85rem;
  color: var(--warm-gray);
}

/* Steps */
.luggage__steps {
  margin: 2rem 0;
}

.luggage__steps h4 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.luggage__step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.luggage__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--olive);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
}

.luggage__step strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.luggage__step p {
  color: var(--warm-gray);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Transfers */
.luggage__transfers {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.luggage__transfers h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.luggage__transfers-text {
  color: var(--warm-gray);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.luggage__transfers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.luggage__transfer-card {
  background: var(--ivory);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: left;
}

.luggage__transfer-card h4 {
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.luggage__transfer-card p {
  color: var(--warm-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* FAQ */
.luggage__faq,
.tour-detail__faq {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.luggage__faq h3,
.tour-detail__faq h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.faq__item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  background: var(--ivory);
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq__question:hover {
  background: #f0ede8;
}

.faq__question::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--olive);
  transition: transform 0.3s;
}

.faq__item.active .faq__question::after {
  content: "−";
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
  padding: 1rem 1.25rem;
}

.faq__answer p {
  color: var(--warm-gray);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .luggage__price-grid {
    flex-direction: column;
  }
  .luggage__transfers-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== TOUR DETAILS EXPANDED ========== */
.tour-details {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.tour-details__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  text-align: center;
}

.tour-detail__panel {
  background: var(--ivory);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.tour-detail__panel h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.tour-detail__panel > p {
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tour-detail__itinerary h5,
.tour-detail__includes h5,
.tour-detail__highlights h5 {
  font-size: 1.05rem;
  color: var(--olive);
  margin-bottom: 0.75rem;
}

.tour-detail__itinerary ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.tour-detail__itinerary li {
  color: var(--warm-gray);
  padding: 0.35rem 0;
  line-height: 1.6;
}

.tour-detail__includes ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.tour-detail__includes li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  color: var(--warm-gray);
}

.tour-detail__includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 700;
}

.tour-detail__highlights p {
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tour-detail__note {
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tour-detail__price {
  font-size: 1.15rem;
  color: var(--charcoal);
}

.tour-detail__price strong {
  font-size: 1.4rem;
  color: var(--olive);
}

/* ========== BLOG SECTION ========== */
.blog {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.blog-card__image {
  height: 200px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__date {
  font-size: 0.8rem;
  color: var(--olive);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card__title {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin: 0.5rem 0;
  line-height: 1.4;
}

.blog-card__excerpt {
  color: var(--warm-gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card__link {
  color: var(--olive);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.blog-card__link:hover {
  color: var(--olive-light);
}

@media (max-width: 768px) {
  .blog__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ========== CONTACT SERVICES ========== */
.contact__services {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.contact__services h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact__services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.contact__service-item {
  background: var(--ivory);
  padding: 1.25rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.2s;
}

.contact__service-item:hover {
  transform: translateY(-2px);
}

.contact__service-item a {
  text-decoration: none;
}

.contact__service-item strong {
  display: block;
  color: var(--charcoal);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact__service-item p {
  color: var(--warm-gray);
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .contact__services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .contact__services-grid {
    grid-template-columns: 1fr;
  }
}
