:root {
  --brick:       #8B3A1A;   /* ancient brick red — main brand */
  --brick-light: #A84E2A;
  --brick-dark:  #501E08;
  --moss:        #5A7A3A;   /* jungle moss CTA */
  --moss-dark:   #3D5A22;
  --limestone:   #FAF4E8;   /* pale limestone background */
  --lime-mid:    #F0E6CC;
  --gold:        #C8923A;   /* ancient gold accent */
  --charcoal:    #1C1610;
  --slate:       #5A4A38;
  --white:       #ffffff;
  --border:      rgba(139,58,26,0.13);
  --shadow-card: 0 4px 28px rgba(139,58,26,0.11);
}

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

/* THE ULTIMATE SCROLL LOCK */
html, body {
  max-width: 100%;
  overflow-x: hidden !important; 
}
html { 
  scroll-behavior: smooth; 
}
body { 
  font-family: 'DM Sans', sans-serif; 
  background: var(--limestone); 
  color: var(--charcoal); 
  line-height: 1.65; 
  width: 100%; 
  position: relative; 
}

/* Hero & Placeholder Protection (Traps the LessTaxi Header) */
#header-placeholder, #footer-placeholder {
  max-width: 100%;
  overflow-x: hidden;
}

/* HERO */
.hero {
  background: var(--brick-dark);
  position: relative; 
  min-height: 80vh; /* Reduced for injected header space */
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; 
  padding: 60px 20px 100px; /* Added padding to protect scroll indicator */
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 115%, rgba(200,146,58,0.14) 0%, transparent 62%),
    radial-gradient(ellipse 65% 55% at 10% 0%, rgba(168,78,42,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 90% 0%, rgba(80,30,8,0.75) 0%, transparent 60%);
  z-index: 0;
}
/* brick / lattice pattern */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='20' viewBox='0 0 40 20' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='38' height='9' rx='1' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='0.8'/%3E%3Crect x='20' y='10' width='38' height='9' rx='1' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 40px 20px; z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,146,58,0.18); border: 1px solid rgba(200,146,58,0.4);
  color: #ffd49a; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 7px 18px; border-radius: 50px;
  margin-bottom: 28px; animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: 'Lora', serif; 
  font-size: clamp(2.2rem, 8vw, 5.1rem); /* Lowered minimum size for long words on mobile */
  font-weight: 700; color: var(--white); line-height: 1.09;
  letter-spacing: -0.01em; margin-bottom: 20px;
  animation: fadeUp 0.7s 0.1s ease both;
  word-wrap: break-word;
  overflow-wrap: break-word; /* Extra safety for long words */
}
.hero-title span { color: var(--gold); }
.hero-title em { font-style: italic; color: #e8b870; }
.hero-sub {
  font-size: clamp(0.98rem, 2vw, 1.14rem); color: rgba(255,255,255,0.68);
  max-width: 560px; margin: 0 auto 40px; font-weight: 300;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }
.btn-primary {
  background: var(--moss); color: var(--white); font-weight: 700; font-size: 0.94rem;
  padding: 14px 32px; border-radius: 8px; border: none; cursor: pointer;
  text-decoration: none; display: inline-block; letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(90,122,58,0.38);
}
.btn-primary:hover { background: var(--moss-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(90,122,58,0.48); }
.btn-outline {
  background: transparent; color: var(--white); font-weight: 600; font-size: 0.94rem;
  padding: 13px 30px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.32);
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 44px; justify-content: center; margin-top: 56px; flex-wrap: wrap; animation: fadeUp 0.7s 0.45s ease both; }
.stat { text-align: center; }
.stat-num { font-family: 'Lora', serif; font-size: 2.1rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.73rem; color: rgba(255,255,255,0.44); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.34); font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase;
  animation: fadeUp 1s 0.8s ease both;
}
.scroll-dot { width: 1px; height: 38px; background: linear-gradient(to bottom, rgba(255,255,255,0.38), transparent); animation: scrollPulse 2s infinite; }

/* VEHICLE STRIP */
.vehicle-strip { background: var(--brick); padding: 18px 24px; display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }
.vehicle-strip span { color: rgba(255,255,255,0.64); font-size: 0.81rem; letter-spacing: 0.08em; text-transform: uppercase; }
.vehicle-strip strong { color: #ffd49a; font-size: 0.84rem; }
.v-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 50%; }

/* MUSEUM NOTICE */
.museum-banner {
  background: rgba(90,122,58,0.09); border-top: 3px solid var(--moss);
  border-bottom: 1px solid rgba(90,122,58,0.2);
  padding: 14px 24px; display: flex; align-items: flex-start; justify-content: center;
  gap: 12px; font-size: 0.83rem; color: #2a3e18; line-height: 1.6; text-align: center;
}
.museum-banner strong { color: var(--moss-dark); }

/* SECTION */
.section { padding: 88px 20px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-label { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brick); background: rgba(139,58,26,0.09); padding: 5px 14px; border-radius: 50px; margin-bottom: 14px; }
.section-title { font-family: 'Lora', serif; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; color: var(--brick-dark); line-height: 1.14; margin-bottom: 16px; }
.section-desc { font-size: 1rem; color: var(--slate); max-width: 580px; line-height: 1.72; }

/* TABS */
.tabs-wrap { margin-bottom: 48px; }
.tabs { display: flex; gap: 8px; flex-wrap: wrap; background: rgba(139,58,26,0.07); padding: 6px; border-radius: 12px; width: fit-content; }
.tab { padding: 10px 22px; border-radius: 8px; border: none; background: transparent; color: var(--slate); font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.87rem; cursor: pointer; transition: all 0.22s; white-space: nowrap; }
.tab.active, .tab:hover { background: var(--brick); color: var(--white); }
.tab.active { box-shadow: 0 2px 12px rgba(139,58,26,0.28); }

/* GRID */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 28px; }

/* CARD */
.pkg-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; border: 1px solid var(--border); animation: fadeUp 0.5s ease both; }
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 18px 52px rgba(139,58,26,0.17); }

.pkg-img-frame { position: relative; height: 218px; background: var(--brick-dark); overflow: hidden; display: block; text-decoration: none; cursor: pointer; }
.pkg-img-frame img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.4s, opacity 0.3s; }
.pkg-card:hover .pkg-img-frame img { transform: scale(1.05); opacity: 0.95; }
.pkg-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(145deg, var(--brick) 0%, var(--brick-dark) 100%); }
.pkg-img-placeholder .alt-text { font-size: 0.73rem; color: rgba(255,255,255,0.42); text-align: center; padding: 0 26px; font-style: italic; line-height: 1.55; }
.pkg-img-placeholder .img-icon { width: 48px; height: 48px; border: 1.5px dashed rgba(255,255,255,0.24); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.34); }
.pkg-badge { position: absolute; top: 16px; left: 16px; background: var(--moss); color: var(--white); font-weight: 700; font-size: 0.71rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 6px; z-index: 2; }
.pkg-price-badge { position: absolute; top: 16px; right: 16px; background: rgba(80,30,8,0.9); color: var(--white); font-weight: 700; font-size: 1.1rem; padding: 7px 14px; border-radius: 10px; z-index: 2; border: 1px solid rgba(255,255,255,0.1); line-height: 1.2; text-align: right; backdrop-filter: blur(4px); }
.pkg-price-badge small { display: block; font-size: 0.64rem; font-weight: 400; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }

/* Card body */
.pkg-body { padding: 26px 26px 18px; flex: 1; display: flex; flex-direction: column; }
.pkg-name { font-family: 'Lora', serif; font-size: 1.42rem; font-weight: 700; color: var(--brick-dark); margin-bottom: 5px; line-height: 1.22; }
.pkg-tagline { font-size: 0.83rem; color: var(--slate); margin-bottom: 20px; line-height: 1.55; }
.pkg-meta { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 20px; }
.meta-pill { display: flex; align-items: center; gap: 5px; font-size: 0.77rem; font-weight: 600; color: var(--brick); background: rgba(139,58,26,0.08); padding: 5px 12px; border-radius: 50px; }

/* Museum first-stop notice */
.museum-note { display: flex; align-items: flex-start; gap: 8px; background: rgba(90,122,58,0.07); border: 1px solid rgba(90,122,58,0.2); border-radius: 10px; padding: 11px 14px; margin-bottom: 18px; font-size: 0.79rem; color: #2a3e18; line-height: 1.6; }
.museum-note strong { color: var(--moss-dark); }
.museum-note svg { flex-shrink: 0; margin-top: 1px; }

/* Stops */
.stops-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; color: var(--slate); margin-bottom: 12px; }
.stops-list { list-style: none; margin-bottom: 20px; }
.stops-list li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(139,58,26,0.08); font-size: 0.85rem; color: var(--charcoal); cursor: pointer; user-select: none; }
.stops-list li:last-child { border-bottom: none; }
.stop-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brick); flex-shrink: 0; margin-top: 5px; transition: background 0.2s; }
.stops-list li:hover .stop-dot { background: var(--gold); }
.stop-info { flex: 1; }
.stop-name { font-weight: 600; color: var(--brick-dark); line-height: 1.3; }
.stop-time { font-size: 0.76rem; color: var(--slate); margin-top: 2px; }
.stop-detail { max-height: 0; overflow: hidden; transition: max-height 0.34s ease; }
.stop-detail.open { max-height: 340px; }
.stop-detail-inner { padding: 8px 0 4px 10px; border-left: 2px solid rgba(139,58,26,0.15); margin-top: 6px; }
.detail-row { display: flex; gap: 6px; margin-bottom: 4px; align-items: flex-start; font-size: 0.79rem; }
.detail-key { font-weight: 700; color: var(--brick); white-space: nowrap; flex-shrink: 0; }
.detail-val { color: var(--slate); line-height: 1.55; }

/* Extras */
.extras-block { background: rgba(139,58,26,0.045); border-radius: 10px; padding: 13px 15px; margin-bottom: 18px; font-size: 0.79rem; color: var(--slate); border: 1px dashed rgba(139,58,26,0.15); line-height: 1.6; }
.extras-block strong { color: var(--brick); }

/* Dropoff */
.dropoff-block { font-size: 0.78rem; color: var(--slate); margin-bottom: 18px; }
.dropoff-block strong { color: var(--charcoal); }

/* Footer */
.pkg-footer { padding: 0 26px 24px; }
.book-btn { display: block; width: 100%; background: var(--moss); color: var(--white); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.92rem; padding: 14px; border-radius: 10px; border: none; cursor: pointer; text-align: center; text-decoration: none; letter-spacing: 0.03em; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 3px 14px rgba(90,122,58,0.3); }
.book-btn:hover { background: var(--moss-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(90,122,58,0.4); }

/* INFO SECTION */
.info-section { background: var(--brick); padding: 72px 20px; }
.info-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
.info-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 28px 24px; transition: background 0.2s; }
.info-card:hover { background: rgba(255,255,255,0.11); }
.info-icon { width: 46px; height: 46px; background: rgba(200,146,58,0.22); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.info-card h3 { font-family: 'Lora', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.info-card p { font-size: 0.83rem; color: rgba(255,255,255,0.56); line-height: 1.65; }

/* PRICING */
.pricing-section { background: var(--limestone); padding: 88px 20px; }
.pricing-inner { max-width: 880px; margin: 0 auto; }

/* NEW RESPONSIVE TABLE WRAPPER */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  margin-top: 36px;
  background: var(--white);
}

.price-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 500px; }
.price-table thead tr { background: var(--brick); }
.price-table thead th { color: var(--white); font-size: 0.77rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 16px 20px; text-align: left; }
.price-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.price-table tbody tr:hover { background: rgba(139,58,26,0.04); }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table td { padding: 15px 20px; font-size: 0.87rem; color: var(--charcoal); vertical-align: middle; }
.price-tag { display: inline-block; background: var(--moss); color: var(--white); font-weight: 700; padding: 4px 12px; border-radius: 6px; font-size: 0.9rem; white-space: nowrap; }

.notice { background: rgba(139,58,26,0.07); border: 1px solid rgba(139,58,26,0.18); border-radius: 10px; padding: 13px 18px; font-size: 0.81rem; color: var(--brick-dark); margin-bottom: 36px; display: flex; gap: 10px; align-items: flex-start; line-height: 1.6; }


/* ANIMATIONS & MEDIA QUERIES */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 0.82; } }

@media (max-width: 680px) { 
  .hero-stats { gap: 20px; } 
  .pkg-grid { grid-template-columns: 1fr; } 
  .tabs { width: 100%; } 
  .tab { flex: 1; text-align: center; font-size: 0.8rem; } 
  .vehicle-strip { gap: 14px; } 
  .v-dot { display: none; } 
}

/* LAPTOP FIX */
@media (max-height: 768px) {
  .hero { padding: 100px 20px 80px; }
  .hero-stats { margin-top: 36px; gap: 24px; }
  .hero-scroll { bottom: 15px; }
}

/* LARGE MONITOR FIX */
@media (min-width: 1400px) {
  .hero {
    min-height: auto; /* Remove the vh constraint on giant screens */
    height: 750px; /* Lock the height to a reasonable maximum */
    padding: 150px 20px 80px; /* Adjust padding to keep content centered */
  }
  
  .hero-title {
    font-size: 5.5rem; /* Cap the font size so it doesn't get ridiculously huge */
  }
  
  .hero-sub {
    font-size: 1.2rem;
    max-width: 650px; /* Let the text breathe a little more on wide screens */
  }
}

/* SUPER WIDE / ULTRA WIDE MONITOR FIX */
@media (min-width: 1800px) {
  .hero {
    height: 800px; 
  }
  .hero-title {
    font-size: 6rem; 
  }
}