/* ====================================================
   LESS TAXI — NEW DESIGN SYSTEM
   style-new.css
   ==================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #012c60;
  --navy-deep: #001a3d;
  --navy-mid: #01428e;
  --gold: #e2ae3f;
  --gold-light: #f4c36f;
  --gold-pale: #fff7dc;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8888aa;
  --green-wa: #25d366;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 12px rgba(1, 44, 96, 0.08);
  --shadow-md: 0 8px 32px rgba(1, 44, 96, 0.12);
  --shadow-lg: 0 20px 60px rgba(1, 44, 96, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', Arial, sans-serif;
}

/* ===== GLOBAL RESETS FOR NEW DESIGN ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

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

/* ===== SHARED SECTION COMPONENTS ===== */
.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(226, 174, 63, 0.12);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-label.light {
  color: var(--gold-light);
  background: rgba(244, 195, 111, 0.15);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  /* Header height offset handled below */
}

/* Push hero below fixed header — approximate header height */
.hero-section {
  padding-top: 160px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url('https://dxk1acp76n912.cloudfront.net/images/background-1.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(1, 26, 61, 0.82) 0%,
    rgba(1, 44, 96, 0.70) 50%,
    rgba(226, 174, 63, 0.18) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 174, 63, 0.15) 0%, transparent 70%);
  animation: floatParticle 8s ease-in-out infinite;
}

.hero-particles::before {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
}

.hero-particles::after {
  width: 400px;
  height: 400px;
  bottom: -80px;
  left: 5%;
  animation-delay: -4s;
}

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px 80px;
  animation: heroReveal 1s ease both;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 78px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(226, 174, 63, 0.4);
}

.hero-btn-primary:hover {
  background: white;
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(226, 174, 63, 0.5);
}

.hero-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.hero-btn-whatsapp:hover {
  background: var(--green-wa);
  border-color: var(--green-wa);
  transform: translateY(-3px);
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  padding: 20px 40px;
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-light);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: 100px 0;
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(226, 174, 63, 0.2);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card--wide {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.why-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.why-card--wide .why-icon-wrap {
  margin-bottom: 0;
}

.why-icon-wrap i {
  font-size: 24px;
  color: var(--gold);
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
}

.why-card--wide > div {
  flex: 1;
}

.payment-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}

.payment-logos-grid img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s;
}

.payment-logos-grid img:hover {
  transform: scale(1.1);
}

/* ===== INQUIRY SECTION ===== */
.inquiry-section-new {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #014f8c 100%);
  position: relative;
  overflow: hidden;
}

.inquiry-section-new::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,174,63,0.12) 0%, transparent 70%);
}

.inquiry-section-new::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}

.inquiry-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.inquiry-left {
  padding-top: 8px;
}

.inquiry-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  margin-top: 12px;
}

.inquiry-heading em {
  color: var(--gold-light);
  font-style: italic;
}

.inquiry-desc {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.inquiry-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inquiry-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 500;
}

.inquiry-perks li i {
  color: var(--gold);
  font-size: 17px;
  flex-shrink: 0;
}

.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  border-radius: 100px;
  color: white;
  font-size: 13px;
  font-weight: 600;
}

.trust-badge i {
  color: var(--gold);
}

/* Inquiry Card (Right) */
.inquiry-right {
  position: relative;
}

.inquiry-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.promo-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(226,174,63,0.15), rgba(226,174,63,0.05));
  border: 1.5px solid rgba(226,174,63,0.4);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: 14px;
}

.promo-banner i {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.promo-banner strong {
  color: var(--navy);
}

/* Form Fields */
.new-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-field label em {
  font-style: normal;
  font-weight: 400;
  color: var(--text-light);
  font-size: 12px;
}

.field-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 14px;
  color: var(--text-light);
  font-size: 14px;
  z-index: 1;
  pointer-events: none;
}

.field-input-wrap input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid #e8e8f0;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fafafa;
  transition: var(--transition);
  outline: none;
}

.form-field > input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e8e8f0;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fafafa;
  transition: var(--transition);
  outline: none;
}

.field-input-wrap input:focus,
.form-field > input:focus {
  border-color: var(--navy);
  background: white;
  box-shadow: 0 0 0 3px rgba(1,44,96,0.08);
}

/* Custom Dropdown (Duration) */
.custom-dropdown-new {
  position: relative;
  width: 100%;
  border: 1.5px solid #e8e8f0;
  border-radius: var(--radius-sm);
  background: #fafafa;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}

.custom-dropdown-new .selected {
  padding: 12px 40px 12px 14px;
  font-size: 15px;
  color: var(--text-dark);
}

.custom-dropdown-new .arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-mid);
  transform: translateY(-50%);
  transition: transform 0.2s;
  pointer-events: none;
}

.custom-dropdown-new.open {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(1,44,96,0.08);
}

.custom-dropdown-new.open .arrow {
  transform: translateY(-50%) rotate(180deg);
}

.custom-dropdown-new .options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1.5px solid #e8e8f0;
  border-radius: var(--radius-sm);
  max-height: 180px;
  overflow-y: auto;
  z-index: 100;
  list-style: none;
  padding: 4px;
  margin: 0;
  box-shadow: var(--shadow-md);
  display: none;
}

.custom-dropdown-new.open .options {
  display: block;
}

.custom-dropdown-new .options li {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
}

.custom-dropdown-new .options li:hover {
  background: var(--gold-pale);
  color: var(--navy);
}

/* Vehicle Select */
.vehicle-select-wrap {
  position: relative;
}

.vehicle-select-wrap .field-icon {
  left: 14px;
}

.vehicle-select-new {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid #e8e8f0;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fafafa;
  appearance: none;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}

.vehicle-select-new:focus {
  border-color: var(--navy);
  background: white;
  box-shadow: 0 0 0 3px rgba(1,44,96,0.08);
}

.vehicle-desc-new {
  margin-top: 10px;
  background: rgba(1,44,96,0.04);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--text-mid);
  white-space: pre-line;
  line-height: 1.5;
  display: none;
}

.vehicle-desc-new:not(:empty) {
  display: block;
}

/* Phone input overrides */
#whatsapp-number {
  width: 100% !important;
}

.iti {
  width: 100% !important;
}

.iti__flag-container {
  height: 48px;
}

/* Submit button */
.submit-new-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  box-shadow: 0 8px 24px rgba(1,44,96,0.3);
}

.submit-new-btn:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(226,174,63,0.4);
}

.error-msg-new {
  color: #e63946;
  font-size: 12.5px;
  margin-top: 4px;
  font-weight: 500;
}

/* ===== TOURS SECTION ===== */
.tours-section {
  padding: 100px 0;
  background: white;
}

/* Tour Filter Tabs */
.tour-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tour-tab {
  padding: 10px 24px;
  border: 2px solid #e8e8f0;
  border-radius: 100px;
  background: white;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}

.tour-tab:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.tour-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  box-shadow: 0 4px 16px rgba(1,44,96,0.25);
}

/* Tour Grid */
.tour-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  animation: fadeInGrid 0.4s ease both;
}

.tour-grid.active {
  display: grid;
}

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

/* Tour Cards */
.tour-card-new {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid #f0f0f8;
  display: flex;
  flex-direction: column;
}

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

.tour-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.tour-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(1, 44, 96, 0.88);
  backdrop-filter: blur(4px);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 100px;
}

.tour-info {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.tour-info h3 a {
  color: inherit;
}

.tour-info p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}

.tour-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  transition: gap 0.2s;
  margin-top: auto;
}

.tour-card-new:hover .tour-link {
  gap: 10px;
  color: var(--navy);
}

/* ===== VEHICLES SECTION ===== */
.vehicles-section-new {
  padding: 100px 0;
  background: var(--off-white);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

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

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

.vehicle-img-new {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #f0f4fa;
}

.vehicle-img-new img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.4s ease;
}

.vehicle-card-new:hover .vehicle-img-new img {
  transform: scale(1.05);
}

.vehicle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1,44,96,0.7), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: var(--transition);
}

.vehicle-card-new:hover .vehicle-overlay {
  opacity: 1;
}

.vehicle-overlay i {
  color: var(--gold);
  font-size: 22px;
}

.vehicle-details {
  padding: 16px;
}

.vehicle-details h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.vehicle-capacity {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.vehicle-capacity i {
  color: var(--gold);
}

.vehicle-models {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

/* ===== SEASONS SECTION ===== */
.seasons-section {
  padding: 100px 0;
  background: white;
}

.seasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.season-card-new {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}

.season-img-new {
  position: absolute;
  inset: 0;
}

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

.season-card-new:hover .season-img-new img {
  transform: scale(1.05);
}

.season-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1,26,61,0.9) 0%, rgba(1,44,96,0.3) 50%, transparent 100%);
}

.season-content-new {
  position: relative;
  z-index: 2;
  padding: 36px;
  width: 100%;
}

.season-months {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.season-content-new h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.season-content-new p {
  color: rgba(255,255,255,0.8);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.season-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.season-highlights span {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* ===== COMPARE SECTION ===== */
.compare-section-new {
  padding: 100px 0;
  background: var(--off-white);
}

.compare-grid-new {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.compare-col-new {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-col-new.lesstax {
  border: 2px solid rgba(1,44,96,0.15);
}

.compare-col-new.agent {
  border: 2px solid #f0f0f8;
  opacity: 0.8;
}

.compare-col-header {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-col-new.lesstax .compare-col-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}

.compare-col-new.lesstax .compare-col-header h3,
.compare-col-new.lesstax .compare-col-header i {
  color: white;
}

.compare-col-new.lesstax .compare-col-header i {
  color: var(--gold);
}

.compare-col-new.agent .compare-col-header {
  background: #f8f8f8;
}

.compare-col-new.agent .compare-col-header h3 {
  color: var(--text-mid);
}

.compare-col-new.agent .compare-col-header i {
  color: #e63946;
}

.compare-col-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.compare-list {
  list-style: none;
  padding: 20px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.compare-list li:hover {
  background: var(--off-white);
}

.compare-col-new.lesstax .compare-list li > i {
  color: var(--navy);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.compare-col-new.agent .compare-list li > i {
  color: var(--text-light);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.compare-list li > div strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.compare-list li > div p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
  margin: 0;
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  padding: 0 28px;
  margin-top: 120px;
  position: relative;
}

.compare-vs::before {
  content: '';
  position: absolute;
  top: -80px;
  bottom: -80px;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

/* ===== FAQ SECTION ===== */
.faq-section-new {
  padding: 100px 0;
  background: white;
}

.faq-grid-new {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item-new {
  border: 1.5px solid #e8e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item-new.open {
  border-color: var(--navy);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-item-new.open .faq-question {
  background: var(--navy);
  color: white;
}

.faq-icon {
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item-new.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item-new.open .faq-answer {
  max-height: 400px;
  padding: 20px 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.faq-answer a {
  color: var(--green-wa);
  font-weight: 600;
  text-decoration: underline;
}

.faq-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}

.faq-payment-icons img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section-new {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--off-white) 0%, white 100%);
}

.reviews-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.reviews-track-outer {
  flex: 1;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card-new {
  flex: 0 0 calc(33.333% - 16px);
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0f0f8;
  border-left: 4px solid var(--navy);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.review-card-new:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
}

.review-stars {
  color: #f4b400;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-card-new h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.review-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 14px;
}

.review-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f0f0f8;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.review-author span {
  font-size: 12px;
}

.review-author a {
  color: #00af87;
  font-size: 12px;
  text-decoration: underline;
}

.rev-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e8e8f0;
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.rev-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.tripadvisor-link-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tripadvisor-link-wrap .TA_selfserveprop {
  max-width: 100%;
  overflow: hidden;
}

.tripadvisor-link-wrap .TA_selfserveprop ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy) 50%, #014f8c);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,174,63,0.1) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(226,174,63,0.35);
}

.cta-btn-primary:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(255,255,255,0.2);
}

.cta-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.cta-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.4);
  filter: brightness(1.05);
}


/* ===================================================
   RESPONSIVE BREAKPOINTS
   =================================================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .section-container {
    max-width: 1360px;
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop (1024px – 1399px) — default grid applies */

/* Tablet Landscape (768px – 1023px) */
@media (max-width: 1023px) {
  .hero-section {
    padding-top: 180px;
  }

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

  .why-card--wide {
    grid-column: span 2;
  }

  .inquiry-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .inquiry-left {
    text-align: center;
  }

  .trust-badges {
    justify-content: center;
  }

  .inquiry-perks {
    align-items: center;
  }

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

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

  .season-card-new {
    min-height: 300px;
  }

  .compare-grid-new {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .compare-vs {
    margin-top: 0;
    padding: 20px 0;
    font-size: 22px;
  }

  .compare-vs::before {
    display: none;
  }

  .review-card-new {
    flex: 0 0 calc(50% - 12px);
  }
}

/* Tablet Portrait (640px – 767px) */
@media (max-width: 767px) {
  .hero-section {
    padding-top: 200px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-stats {
    gap: 20px;
    padding: 16px 24px;
  }

  .stat-divider {
    display: none;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn-primary,
  .hero-btn-whatsapp {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

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

  .why-card--wide {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .inquiry-card {
    padding: 24px 20px;
  }

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

  .tour-tabs {
    gap: 6px;
  }

  .tour-tab {
    padding: 8px 16px;
    font-size: 13px;
  }

  .review-card-new {
    flex: 0 0 calc(100% - 0px);
  }

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

  .cta-btn-primary,
  .cta-btn-whatsapp {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

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

/* Mobile (max 639px) */
@media (max-width: 639px) {
  .section-container {
    padding: 0 16px;
  }

  .why-section,
  .inquiry-section-new,
  .tours-section,
  .vehicles-section-new,
  .seasons-section,
  .compare-section-new,
  .faq-section-new,
  .reviews-section-new,
  .cta-section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .hero-title {
    font-size: 36px;
  }

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

  .hero-stats {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }

  .stat-num {
    font-size: 22px;
  }

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

  .compare-grid-new {
    grid-template-columns: 1fr;
  }

  .vehicle-img-new {
    height: 130px;
  }

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

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

  .season-card-new {
    min-height: 260px;
  }

  .season-content-new {
    padding: 24px;
  }

  .season-content-new h3 {
    font-size: 22px;
  }

  .inquiry-wrapper {
    padding: 0 16px;
  }

  .reviews-carousel-wrap {
    gap: 8px;
  }

  .rev-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .compare-col-header {
    padding: 20px 20px;
  }

  .compare-list {
    padding: 12px 16px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px 18px;
  }

  .faq-item-new.open .faq-answer {
    padding: 16px 18px;
  }
}

/* Small Mobile (max 400px) */
@media (max-width: 400px) {
  .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .hero-btn-primary,
  .hero-btn-whatsapp {
    font-size: 14px;
    padding: 14px 28px;
  }
}

/* Scroll animation utility */
[data-delay] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-delay].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }