/* ============================================================
   BINTAN TAXI PROPER 168 — MODERN MINIMALIST THEME
   Font: Montserrat (body/heading) + Playfair Display (accent)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --deep-ocean:    #080f1f;
  --midnight:      #0c1a30;
  --navy:          #162d4a;
  --slate:         #1e4a6e;
  --teal:          #18c9b8;
  --teal-light:    #6fe8de;
  --teal-muted:    rgba(24,201,184,0.12);
  --gold:          #e4c251;
  --gold-light:    #f2da85;
  --white:         #ffffff;
  --white-80:      rgba(255,255,255,0.80);
  --white-60:      rgba(255,255,255,0.60);
  --white-40:      rgba(255,255,255,0.40);
  --white-10:      rgba(255,255,255,0.07);
  --card-bg:       rgba(255,255,255,0.035);
  --border:        rgba(255,255,255,0.09);
  --radius-sm:     6px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Montserrat', sans-serif;
  --transition:    0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--deep-ocean);
  color: var(--white);
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-28px); }
  to   { opacity: 1; transform: translateY(0);     }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0);     }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1);    }
}
@keyframes slideInSidebar {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0);     }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.70) rotate(-3deg); }
  to   { opacity: 1; transform: scale(1)    rotate(0deg);  }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar {
  position: fixed;
  left: -300px;
  top: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(160deg, var(--deep-ocean) 0%, var(--midnight) 60%, var(--navy) 100%);
  border-right: 1px solid var(--border);
  box-shadow: 4px 0 48px rgba(0,0,0,0.55);
  transition: left 0.38s cubic-bezier(0.4,0,0.2,1);
  z-index: 2000;
  overflow-y: auto;
}

.sidebar.active { left: 0; }

.sidebar-header {
  padding: 10px 30px;
  border-bottom: 1px solid var(--border);
}

.sidebar-header h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal-light);
  animation: fadeInDown 0.5s ease both;
}

.sidebar-brand {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 2px;
  margin-top: 6px;
  font-weight: 400;
  text-transform: uppercase;
}

.sidebar-menu { padding: 20px 0; }

.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 28px;
  color: var(--white-60);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  border-left: 2px solid transparent;
  animation: slideInSidebar 0.4s ease both;
}

.sidebar-menu a:nth-child(1) { animation-delay: 0.05s; }
.sidebar-menu a:nth-child(2) { animation-delay: 0.10s; }
.sidebar-menu a:nth-child(3) { animation-delay: 0.15s; }
.sidebar-menu a:nth-child(4) { animation-delay: 0.20s; }
.sidebar-menu a:nth-child(5) { animation-delay: 0.25s; }
.sidebar-menu a:nth-child(6) { animation-delay: 0.30s; }

.sidebar-menu a:hover {
  background: var(--teal-muted);
  border-left-color: var(--teal);
  color: var(--white);
  padding-left: 36px;
}

.sidebar-menu a i {
  width: 18px;
  color: var(--teal);
  font-size: 15px;
  flex-shrink: 0;
}

/* ========================================
   SIDEBAR TOGGLE BUTTON
   ======================================== */
.sidebar-toggle {
  position: fixed;
  left: 20px;
  top: 20px;
  background: rgba(8,15,31,0.88);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  color: var(--teal-light);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1500;
  transition: all var(--transition);
  animation: fadeInLeft 0.6s ease both;
}

.sidebar-toggle:hover {
  background: var(--teal-muted);
  border-color: var(--teal);
  transform: scale(1.06);
}

.sidebar-toggle i { font-size: 1.3rem; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(3px);
  display: none;
  z-index: 1400;
}

.overlay.active { display: block; }

/* ========================================
   TOP NAVIGATION (desktop)
   ======================================== */
.top-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  display: none;
  justify-content: flex-end;
  padding: 20px 60px;
  background: rgba(8,15,31,0.80);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  animation: fadeInDown 0.7s ease both;
}

@media (min-width: 769px) {
  .top-nav { display: flex; }
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}

.nav-links li {
  animation: fadeInDown 0.5s ease both;
}
.nav-links li:nth-child(1) { animation-delay: 0.10s; }
.nav-links li:nth-child(2) { animation-delay: 0.18s; }
.nav-links li:nth-child(3) { animation-delay: 0.26s; }
.nav-links li:nth-child(4) { animation-delay: 0.34s; }

.nav-links a {
  color: var(--white-60);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ========================================
   HERO SECTION
   ======================================== */
.video-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--midnight) 0%, var(--deep-ocean) 100%);
}

.video-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    align-items: start;
}

.video-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}

.video-title {
    padding: 14px 18px;
    color: #fff;
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
    letter-spacing: 0.4px;
}

/* Mobile */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 16px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .video-title {
        font-size: 0.9rem;
    }
}

.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(24,201,184,0.10) 0%, transparent 68%),
    linear-gradient(170deg, var(--deep-ocean) 0%, var(--midnight) 45%, var(--navy) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Grid overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24,201,184,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,201,184,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Glow orb */
.hero::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(24,201,184,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  width: 100%;
}

/* Logo */
.hero-logo {
  width: 400px;
  height: auto;
  
  margin-bottom: 28px;
  animation: popIn 0.85s cubic-bezier(0.175,0.885,0.32,1.275) 0.15s both;
}

/* Eyebrow label */
.hero-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: fadeInUp 0.6s ease 0.35s both;
}

/* Hero title */
.hero-title {
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #ffffff 0%, var(--teal-light) 50%, var(--gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.7s ease 0.45s both, shimmer 6s linear 1.5s infinite;
}

/* Hero description */
.hero-description {
  max-width: 500px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.9;
  color: var(--white-40);
  font-weight: 300;
  letter-spacing: 0.3px;
  animation: fadeInUp 0.7s ease 0.6s both;
}

/* ========================================
   SECTION SHARED ELEMENTS
   ======================================== */
.section-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-heading {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--white);
}

.section-divider {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  margin: 16px auto 0;
}

/* ========================================
   PACKAGE DETAIL SECTION
   ======================================== */
.package-detail {
  background: var(--midnight);
  padding: 0 0 83px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Sticky header */
.section-title-sticky {
  position: sticky;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--midnight);
  border-bottom: 1px solid var(--border);
  padding: 52px 20px 32px;
  text-align: center;
}

/* Scroll wrapper */
.package-card-scroll {
  width: 100%;
  overflow-x: auto;
  padding: 36px 48px 52px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) rgba(255,255,255,0.04);
}

.package-card-scroll::-webkit-scrollbar        { height: 3px; }
.package-card-scroll::-webkit-scrollbar-track  { background: rgba(255,255,255,0.04); border-radius: 10px; }
.package-card-scroll::-webkit-scrollbar-thumb  { background: var(--teal); border-radius: 10px; }

/* Card row */
.package-card-row {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: stretch;
  justify-content:center ;
}

/* Individual package card */
.package-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px 86px;
  background: var(--card-bg);
  width: 320px;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.7s ease both;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.package-card:hover {
  border-color: rgba(24,201,184,0.40);
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.38), 0 0 32px rgba(24,201,184,0.07);
}

.package-card:nth-child(1) { animation-delay: 0.10s; }
.package-card:nth-child(2) { animation-delay: 0.18s; }
.package-card:nth-child(3) { animation-delay: 0.26s; }
.package-card:nth-child(4) { animation-delay: 0.34s; }
.package-card:nth-child(5) { animation-delay: 0.42s; }

/* Popular badge */
.badge-hot{
  position: absolute;
  top: -1px;
  right: 22px;
  background: var(--teal);
  color: var(--deep-ocean);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 10px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* package promo */
:root {
    --green: #13b896;
    --purple: #0011fc;
    --white: #ffffff;
    --deep-ocean: #001240;
    --teal: #13b896;
    --font-body: 'Nunito', sans-serif;
    --radius-sm: 6px;
    --transition: 0.2s ease;
  }
  
.Package-promo {
    display: flex;
    align-items: center;   /* vertikal center */
    gap: 50px;                /* tidak ada gap, tombol mepet ribbon */
  }

  .promo-btn-wrapper {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 0 0 20px;  /* jarak dari ujung ribbon */
  }

  .btn-promo {
    width: 190px;
    padding: 20px 23px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--white);
    background: var(--purple);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
  }

  .btn-promo:hover {
    opacity: 0.85;
    transform: translateY(-1px);
  }

  /* ── Banner ── */
  .banner {
    position: relative;
    display: flex;
    align-items: center;
    width:70%;
    height: 140px;
    animation: slideIn 0.6s ease both;
    flex-shrink: 0;
  }

  @keyframes slideIn {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  .ribbon-body {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px 0 50px;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%);
  }

  .b3 .ribbon-body {
    background: var(--green);
  }

  .ribbon-fold {
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 30px;
    height: 18px;
  }

  .ribbon-fold::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 18px 30px 0 0;
    border-color: #0a7a64 transparent transparent transparent;
  }

  .left-content {
    display: flex;
    flex-direction: column;
  }

  .b3 .label-top {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    display: inline-block;
  }

  .b3 .main-text {
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
  }

  .right-content {
    padding: 0;
  }

  .b3 .price-box {
    text-align: right;
    color: var(--white);
  }

  .b3 .price-box .small {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.85;
  }

  .b3 .price-box .big {
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
  }
  
/* Package images */
.package-img {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.package-img img {
  height: 130px;
  width: calc(50% - 3.5px);
  border-radius: var(--radius-sm);
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition);
}

.package-card:hover .package-img img { transform: scale(1.05); }

/* Package title */
.package-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--white);
}

/* Package description */
.package-description {
  font-size: 12.5px;
  line-height: 1.9;
  color: var(white);
  font-weight: 300;
  margin-bottom: 14px;
}

/* Price block */
.price-block {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(white);
}

.price-amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-family: var(--font-display);
  font-style: italic;
}

.price-unit {
  font-size: 11px;
  color: var(--white-40);
}

/* Note / Includes block */
.note-block {
  margin-top: 14px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.note-title,
.include-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 5px;
  margin-top: 12px;
}

.note-text,
.include-text {
  font-size: 12px;
  line-height: 1.8;
  color: var(--white-40);
  font-weight: 300;
}

/* Card button */
.card-btn-wrapper {
  position:absolute;
  bottom:0;
  padding: 15px 60px;
  align-items:center ;
  justify-content: center;
}

.btn-order {
  width: 100%;
  padding: 12px 15px;
  text-decoration: none;
  position:relative;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--deep-ocean);
  background: var(--teal);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-order:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24,201,184,0.35);
}

.btn-order:active { transform: translateY(0); }

/* ========================================
   CAR SECTION
   ======================================== */
.car-section {
  background: linear-gradient(180deg, var(--midnight) 0%, var(--deep-ocean) 100%);
  padding: 80px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: flex-start;
}

.car-section-header {
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
  animation: fadeInDown 0.7s ease 0.1s both;
}

/* Car card */
.car-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  background: #ffffff;
  width: 100%;
  max-width: 440px;
  box-sizing: border-box;
  box-shadow: 0 8px 36px rgba(0,0,0,0.32);
  animation: fadeInUp 0.7s ease both;
  transition: transform var(--transition), box-shadow var(--transition);
}

.car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 56px rgba(0,0,0,0.40);
}

.car-card:nth-child(2) { animation-delay: 0.10s; }
.car-card:nth-child(3) { animation-delay: 0.20s; }
.car-card:nth-child(4) { animation-delay: 0.30s; }

/* Car image */
.car-img {
  width: 280px;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  transition: transform var(--transition);
  animation: scaleIn 0.6s ease 0.2s both;
}

.car-card:hover .car-img { transform: scale(1.03); }

/* Car title */
.car-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--midnight);
  margin-bottom: 18px;
  text-align: center;
  animation: fadeInUp 0.5s ease 0.3s both;
}

/* Price table wrapper */
.price-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  scrollbar-width: thin;
  scrollbar-color: var(--navy) #ebebeb;
  animation: fadeIn 0.6s ease 0.4s both;
}

.price-table-wrapper::-webkit-scrollbar        { height: 4px; }
.price-table-wrapper::-webkit-scrollbar-track  { background: #ebebeb; border-radius: 4px; }
.price-table-wrapper::-webkit-scrollbar-thumb  { background: var(--navy); border-radius: 4px; }

/* Price table */
.price-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-size: 13px;
  font-family: var(--font-body);
}

.price-table thead {
  background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--navy) 100%);
  color: #fff;
}

.price-table th {
  padding: 13px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.price-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; text-align: right; }

.price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  color: #666;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 400;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--midnight);
}

.price-table tbody tr {
  transition: background var(--transition);
  animation: fadeInUp 0.4s ease both;
}

.price-table tbody tr:nth-child(1) { animation-delay: 0.40s; }
.price-table tbody tr:nth-child(2) { animation-delay: 0.46s; }
.price-table tbody tr:nth-child(3) { animation-delay: 0.52s; }
.price-table tbody tr:nth-child(4) { animation-delay: 0.58s; }

.price-table tbody tr:hover          { background: #f4f9ff; }
.price-table tbody tr:last-child td  { border-bottom: none; }

/* Car order button */
.btn-order-car {
  text-decoration: none;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(24,201,184,0.22);
  animation: scaleIn 0.5s ease 0.65s both;
}

.btn-order-car:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(24,201,184,0.38);
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--slate) 100%);
}

.btn-order-car:active { transform: translateY(0); }

/* ========================================
   CONTACT / SOCIAL SECTION
   ======================================== */
.contact-section {
  text-align: center;
  padding: 72px 20px 60px;
  background: var(--deep-ocean);
  border-top: 1px solid var(--border);
  animation: fadeIn 0.8s ease 0.2s both;
}

.contact-title {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.social-icons {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--white-40);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all var(--transition);
  animation: popIn 0.5s cubic-bezier(0.175,0.885,0.32,1.275) both;
}

.social-icons a:nth-child(1) { animation-delay: 0.20s; }
.social-icons a:nth-child(2) { animation-delay: 0.30s; }
.social-icons a:nth-child(3) { animation-delay: 0.40s; }

.social-icons a:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: var(--teal-muted);
  transform: translateY(-5px);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--deep-ocean);
  border-top: 1px solid var(--border);
  color: var(--white-40);
  text-align: center;
  padding: 30px 20px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.footer-copy {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-tagline {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ========================================
   RESPONSIVE — MOBILE
   ======================================== */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding: 100px 20px 60px;
  }

  .hero-logo {
    width: 230px;
    height: 200px;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
    letter-spacing: -1px;
  }

  .Package-promo {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .banner {
    width:100%;
    height: auto;
    min-height: 80px;
  }

  .ribbon-body {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 16px 40px 16px 20px;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
    width: 100%;
  }

  .left-content {
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 1px;
  }

  .b3 .label-top {
    font-size: 13px;
    margin-bottom: 0;
  }

  .b3 .main-text {
    font-size: 18px;
  }

  .right-content {
    width: 100%;
  }

  .b3 .price-box {
    text-align: left;
  }

  .b3 .price-box .big {
    font-size: 22px;
  }

  .promo-btn-wrapper {
    display: flex;
    width: 100%;
    
    
  }

  .btn-promo {
    width: 50%;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 12px 35px;
    text-decoration: none;
  }

  .package-card-scroll {
    padding: 24px 16px 36px;
  }

  .package-card {
    width: 290px;
  }

  .car-section {
    padding: 60px 16px;
  }

  .car-img {
    width: 100%;
    height: 180px;
  }
}