:root {
  --primary: #c0227d;
  --primary-dark: #99175f;
  --accent: #ffb347;
  --bg-light: #f7f8fc;
  --text-dark: #222;
  --text-muted: #666;
  --radius-lg: 18px;
  --shadow-soft: 0 15px 25px rgba(0,0,0,0.08);
}

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

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: var(--text-dark);
  line-height: 1.6;
}

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

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

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

/* HEADER */
.site-header {
  background: var(--primary);
  color: #fff;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 20px;
}

.logo-light {
  font-weight: 300;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.nav-list a {
  opacity: .9;
  position: relative;
  padding-bottom: 2px;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .25s;
}

.nav-list a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  background: linear-gradient(180deg, #fdf4ff 0%, #e0f3ff 60%, #ffffff 100%);
  padding: 28px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 180px;
  border-radius: 120px;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  opacity: 0.15;
  filter: blur(10px);
}

.hero::before {
  left: -100px;
  bottom: -40px;
}

.hero::after {
  right: -140px;
  top: -60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: 32px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #111;
}

.hero-copy h1 span {
  color: var(--primary);
}

.hero-copy p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 420px;
}

.booking-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px 20px 20px;
  margin-top: 18px;
}

.booking-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.booking-tab {
  border: none;
  background: #f1f1f8;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
}

.tab-label {
  font-weight: 500;
}

.booking-tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 14px rgba(192,34,125,0.45);
}

.booking-form {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: flex-end;
}

.form-group label {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 3px;
  display: block;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text-muted);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 10px;
  border-radius: 10px;
  border: 1px solid #dde1f0;
  font-size: 13px;
  outline: none;
  transition: border .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(192,34,125,0.12);
}

.btn-primary {
  border: none;
  padding: 11px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 16px rgba(192,34,125,0.5);
  transition: transform .15s, box-shadow .15s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(192,34,125,0.6);
}

.hero-art {
  position: relative;
  min-height: 240px;
}

.hero-illustration {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg,#e0f3ff 0%,#fff 70%);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-illustration::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.pexels.com/photos/799443/pexels-photo-799443.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
  opacity: .8;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(180deg,rgba(0,0,0,0) 0,rgba(0,0,0,0.65) 70%);
  color: #fff;
}

.hero-overlay-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-overlay-sub {
  font-size: 11px;
  margin-bottom: 8px;
}

.hero-badge-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 11px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
}

.hero-badge i {
  font-size: 11px;
}

/* GENERIC SECTIONS */
section {
  padding: 28px 0;
}

.section-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 720px;
}

/* WHY US */
.why-us {
  background: var(--bg-light);
}

.why-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.why-card {
  background: #fff;
  padding: 18px 18px 16px;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}

.why-icon {
  width: 38px;
  height: 38px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192,34,125,0.07);
  color: var(--primary);
  flex-shrink: 0;
}

.why-card h3 {
  font-size: 14px;
  margin-bottom: 3px;
}

.why-card p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ROUTES */
.routes-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.route-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.route-image-wrap {
  position: relative;
}

.route-card img {
  height: 140px;
  object-fit: cover;
}

.route-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(192,34,125,0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

.route-body {
  padding: 13px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.route-body h3 {
  font-size: 14px;
  margin-bottom: 5px;
}

.route-meta {
  font-size: 11px;
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-weight: 500;
}

.route-body ul {
  list-style: none;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.route-body ul li + li {
  margin-top: 2px;
}

.route-footer {
  padding-top: 6px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 14px rgba(192,34,125,0.45);
}

/* JOURNEY */
.journey {
  background: radial-gradient(circle at top left, #ffe8fb 0, #ffffff 40%, #e0f3ff 100%);
}

.journey-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 26px;
  align-items: center;
}

.timeline {
  position: relative;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.timeline-step {
  position: relative;
  padding-left: 24px;
  margin-bottom: 18px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  left: -5px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--primary);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
}

.timeline-step h3 {
  font-size: 13px;
  margin-bottom: 3px;
}

.timeline-step p {
  font-size: 12px;
  color: var(--text-muted);
}

.journey-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.stat-card {
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.stat-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
}

/* MOODS */
.moods {
  background: #050816;
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.moods .section-title {
  color: #fff;
}

.moods .section-subtitle {
  color: #9ca3af;
}

.moods::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(192,34,125,0.7), transparent 60%);
  top: -120px;
  right: -80px;
  opacity: .6;
}

.mood-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
}

.mood-card {
  border-radius: 18px;
  padding: 16px 16px 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(15,23,42,0.9));
  border: 1px solid rgba(148,163,184,0.4);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.mood-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,180,0,0.45), transparent 65%);
  right: -40px;
  bottom: -40px;
  opacity: .7;
}

.mood-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,23,42,0.8);
  color: var(--accent);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.mood-card h3 {
  font-size: 14px;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.mood-card p {
  font-size: 12px;
  color: #cbd5f5;
  position: relative;
  z-index: 1;
}

.mood-tag {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15,23,42,0.75);
  font-size: 11px;
  position: relative;
  z-index: 1;
}

/* FLEET */
.fleet {
  background: #ffffff;
}

.fleet-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 22px;
}

.fleet-copy p {
  font-size: 13px;
  color: var(--text-muted);
}

.fleet-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  font-size: 11px;
}

.fleet-badge {
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px dashed rgba(148,163,184,0.8);
  color: var(--text-muted);
}

.fleet-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
  gap: 14px;
}

.fleet-card {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  padding: 10px 10px 12px;
  font-size: 12px;
}

.fleet-card img {
  border-radius: 12px;
  height: 90px;
  object-fit: cover;
  margin-bottom: 6px;
}

.fleet-card h3 {
  font-size: 13px;
  margin-bottom: 2px;
}

.fleet-capacity {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.fleet-price {
  font-size: 11px;
  color: var(--primary-dark);
  font-weight: 600;
}

/* DEALS STRIP */
.deals-strip {
  margin-top: 22px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(90deg,#ff9a9e,#fecfef,#f6d365);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #3b0764;
}

.deal-tag {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.8);
  font-weight:600;
}

.deal-coupons {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.coupon-pill {
  padding:4px 9px;
  border-radius:999px;
  border:1px dashed rgba(88,28,135,0.7);
  background:rgba(255,255,255,0.85);
  font-size:11px;
}

.deal-note {
  font-size:11px;
}

/* REVIEWS */
.reviews-section {
  background:#f9fafb;
}

.reviews-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
  font-size: 12px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.review-name {
  font-weight: 600;
  font-size: 13px;
}

.review-trip {
  font-size:11px;
  color:var(--text-muted);
}

.review-stars {
  color: #f0a500;
  font-size: 12px;
}

/* CITY LINKS */
.city-links {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 10px;
  font-size: 12px;
}

.city-links h4 {
  font-size: 12px;
  margin-bottom: 4px;
  font-weight: 600;
}

.city-links ul {
  list-style: none;
  color: var(--text-muted);
}

.city-links li + li {
  margin-top: 2px;
}

.city-links a:hover {
  color: var(--primary);
}

/* FAQ */
.faq-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 22px;
}

.faq-item {
  border-radius: 14px;
  background: #ffffff;
  margin-bottom: 8px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
  overflow: hidden;
}

.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
}

.faq-label span {
  font-weight: 500;
}

.faq-toggle {
  display: none;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  font-size: 12px;
  color: var(--text-muted);
  transition: max-height .3s ease;
}

.faq-toggle:checked ~ .faq-content {
  max-height: 200px;
  padding-bottom: 10px;
}

.faq-label i {
  font-size: 10px;
  color: var(--primary);
  transition: transform .3s;
}

.faq-toggle:checked + .faq-label i {
  transform: rotate(180deg);
}

.faq-side {
  border-radius: 18px;
  padding: 18px 16px;
  background: linear-gradient(150deg,#c0227d,#f97316);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  font-size: 13px;
}

.faq-side h3 {
  font-size:16px;
  margin-bottom:6px;
}

.faq-highlights {
  margin-top: 10px;
  font-size: 12px;
}

.faq-highlights li {
  margin-left: 18px;
  margin-bottom: 4px;
}

.faq-btn {
  margin-top:10px;
}

/* CITYLINE + FOOTER */
.cityline {
  margin-top: 40px;
  background: #111827;
  color: #fff;
}

.cityline-art {
  background: #fff;
  padding: 26px 0 8px;
}

.cityline-art img {
  max-width: 1080px;
  margin: 0 auto;
}

.site-footer {
  background: #111827;
  color: #e5e7eb;
  font-size: 12px;
  padding: 26px 0 18px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 18px;
}

.footer-cols h4 {
  font-size: 12px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.footer-cols ul {
  list-style: none;
  color: #9ca3af;
}

.footer-cols li + li {
  margin-top: 3px;
}

.footer-cols a {
  color: inherit;
}

.footer-cols a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(148,163,184,0.4);
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: #9ca3af;
}

.footer-social {
  display: flex;
  gap: 8px;
  font-size: 14px;
}

.footer-social a:hover {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
  }

  .booking-form {
    grid-template-columns: repeat(2,minmax(0,1fr));
    row-gap: 10px;
  }

  .journey-grid,
  .fleet-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
  }

  .nav-list {
    gap: 16px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 26px;
  }

  .deals-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ANIMATED SHOWCASE */
.animated-showcase {
  background: radial-gradient(circle at top, #ffe8fb 0, #ffffff 45%, #e0f3ff 100%);
  position: relative;
  overflow: hidden;
}

.anim-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 26px;
  align-items: center;
}

.anim-copy h3 {
  font-size: 20px;
  margin: 8px 0 6px;
}

.anim-copy p {
  font-size: 13px;
  color: var(--text-muted);
}

.anim-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(192,34,125,0.08);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 500;
}

.anim-pill i {
  font-size: 12px;
}

.anim-points {
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: var(--text-dark);
}

.anim-points li i {
  color: var(--primary);
  margin-right: 4px;
}

/* Visual side */
.anim-visual {
  position: relative;
  padding: 22px 18px;
  border-radius: 22px;
  background: linear-gradient(145deg,#0f172a,#1e293b);
  box-shadow: 0 16px 32px rgba(15,23,42,0.6);
  overflow: hidden;
}

/* Road animation */
.road-strip {
  position: relative;
  height: 70px;
  border-radius: 999px;
  background: radial-gradient(circle at top, #1f2937 0, #020617 100%);
  box-shadow: inset 0 0 0 1px rgba(148,163,184,0.3);
  overflow: hidden;
}

.road-line {
  position: absolute;
  top: 50%;
  left: -40%;
  width: 180%;
  height: 4px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(
    to right,
    rgba(248,250,252,0.9) 0 32px,
    transparent 32px 48px
  );
  opacity: 0.9;
  animation: road-move 2s linear infinite;
}

.car-icon {
  position: absolute;
  top: 50%;
  left: -18%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg,#f97316,#facc15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 20px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.6);
  animation: car-drive 3.6s ease-in-out infinite;
}

/* Floating bubbles */
.anim-bubble {
  position: absolute;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(148,163,184,0.7);
  color: #e5e7eb;
  font-size: 11px;
  min-width: 140px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
}

.anim-bubble .bubble-label {
  font-weight: 600;
  display: block;
}

.anim-bubble .bubble-sub {
  color: #9ca3af;
}

.bubble-1 {
  top: 16px;
  left: 18px;
  animation: bubble-float 4s ease-in-out infinite;
}

.bubble-2 {
  top: 10px;
  right: 16px;
  animation: bubble-float 4.3s ease-in-out infinite;
}

.bubble-3 {
  bottom: 12px;
  right: 34px;
  animation: bubble-float 4.6s ease-in-out infinite;
}

/* KEYFRAMES */
@keyframes car-drive {
  0% {
    left: -18%;
    transform: translate(-50%, -50%) scale(0.95);
  }
  15% {
    transform: translate(-50%, -55%) scale(1.02);
  }
  50% {
    left: 50%;
    transform: translate(-50%, -50%) scale(1.05);
  }
  85% {
    transform: translate(-50%, -45%) scale(1.02);
  }
  100% {
    left: 118%;
    transform: translate(-50%, -50%) scale(0.9);
  }
}

@keyframes road-move {
  from { transform: translate(-10%, -50%); }
  to   { transform: translate(-30%, -50%); }
}

@keyframes bubble-float {
  0%   { transform: translateY(0); opacity: 0.8; }
  50%  { transform: translateY(-6px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.8; }
}

/* Responsive tweaks for animation section */
@media (max-width: 900px) {
  .anim-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .anim-visual {
    margin-top: 10px;
  }
}
/* ENJOYMENT ANIMATION SECTION */
.enjoy-section {
  background: linear-gradient(180deg, #fff3f7, #f0f9ff);
  position: relative;
  overflow: hidden;
}

.enjoy-wrapper {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 30px;
  align-items: center;
}

.enjoy-tag {
  background: rgba(192,34,125,0.1);
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
}

.enjoy-text h3 {
  margin-top: 8px;
  font-size: 24px;
  color: #111;
}

.enjoy-text p {
  font-size: 13px;
  margin-top: 4px;
  color: var(--text-muted);
}

.enjoy-points {
  margin-top: 12px;
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 13px;
}

.enjoy-points li i {
  margin-right: 8px;
  color: var(--primary);
}

/* Animated visual card */
.enjoy-visual {
  background: linear-gradient(180deg, #c0227d, #8a1458);
  border-radius: 20px;
  height: 240px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(0,0,0,0.25);
}

/* Sun animation */
.sun-anim {
  position: absolute;
  top: 18px;
  right: 26px;
  width: 55px;
  height: 55px;
  background: radial-gradient(circle, #ffe97a, #ffbe3a);
  border-radius: 50%;
  box-shadow: 0 0 20px #ffdd6a;
  animation: sun-glow 3s ease-in-out infinite;
}

/* Hills */
.hill {
  position: absolute;
  bottom: 0;
  width: 160px;
  height: 90px;
  border-radius: 100px;
  background: #4b0e33;
  transform: translateY(15px);
}

.hill-1 { left: -20px; }
.hill-2 { left: 90px; width: 210px; }
.hill-3 { left: 260px; width: 180px; }

/* Car animation */
.enjoy-car {
  position: absolute;
  bottom: 36px;
  left: -60px;
  width: 60px;
  height: 34px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c0227d;
  font-size: 22px;
  animation: enjoy-drive 4s ease-in-out infinite;
  box-shadow: 0 6px 14px rgba(255,255,255,0.3);
}

/* Floating music notes */
.note {
  position: absolute;
  bottom: 62px;
  color: #fff;
  font-size: 18px;
  opacity: 0;
  animation: music-rise 3.5s ease-in-out infinite;
}

.note-1 { left: 120px; animation-delay: 0.2s; }
.note-2 { left: 170px; animation-delay: 0.7s; }
.note-3 { left: 210px; animation-delay: 1.1s; }

/* ANIMATIONS */
@keyframes sun-glow {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
}

@keyframes enjoy-drive {
  0% { left: -70px; transform: scale(0.92); }
  30% { transform: scale(1.05); }
  50% { left: 55%; transform: scale(1.1); }
  80% { transform: scale(1.05); }
  100% { left: 120%; transform: scale(0.9); }
}

@keyframes music-rise {
  0% { transform: translateY(0); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(-40px); opacity: 0; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .enjoy-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .enjoy-visual {
    height: 200px;
  }
}