/* ========================================
   TUSU EXPLORE — Premium Design System
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* ---- TOKENS ---- */
:root {
  /* === Light Yellow Theme — Colors from tusu_logo_new.png === */
  --primary:       #1B6B45;
  --primary-light: #2D8A5A;
  --primary-dark:  #0F4A30;
  --accent:        #D4650A;   /* Logo warm orange */
  --accent-dark:   #B85408;
  --accent-light:  #F07A20;
  --accent-warm:   #E07820;

  /* Light theme backgrounds */
  --bg:            #fdf8e8;   /* warm light yellow */
  --bg-2:          #f5eed4;   /* slightly deeper cream */
  --bg-card:       #fffdf0;   /* near-white card */
  --bg-glass:      rgba(255,248,220,0.7);
  --border:        rgba(27,107,69,0.12);
  --border-accent: rgba(212,101,10,0.3);

  /* Light theme text */
  --text:          #1c2b1e;   /* dark green-black */
  --text-muted:    #5a7060;   /* muted green */
  --text-light:    #8a9e80;

  --radius-sm:     10px;
  --radius:        16px;
  --radius-lg:     24px;
  --shadow:        0 12px 50px rgba(27,107,69,0.12);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.08);
  --glow:          0 0 30px rgba(212,101,10,0.12);
}

/* ---- RESET ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 6px 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(212,101,10,0.2);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: rgba(253,248,232,0.96) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(27,107,69,0.15);
  padding: 0.55rem 0;
  top: 34px;
  transition: all 0.35s ease;
  box-shadow: 0 2px 20px rgba(27,107,69,0.08);
}

.navbar.scrolled {
  top: 0;
  background: rgba(253,248,232,0.99) !important;
  border-bottom-color: rgba(212,101,10,0.25);
  padding: 0.35rem 0;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.15));
}

.navbar.scrolled .logo-img { height: 40px; }

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  text-decoration: none;
}

.nav-link {
  color: #2a4a30 !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem !important;
  transition: all 0.2s;
  border-radius: 8px;
  position: relative;
  letter-spacing: 0.1px;
}

.nav-link:hover {
  color: var(--accent) !important;
  background: rgba(212,101,10,0.06);
}

.nav-link.active {
  color: var(--accent) !important;
  background: rgba(212,101,10,0.08);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.25s cubic-bezier(0.25,0.8,0.25,1);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after { width: 60%; }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2827,107,69,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-theme {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #1a1000;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.2px;
  transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
  box-shadow: 0 4px 20px rgba(212,101,10,0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-theme:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,101,10,0.5);
  color: #1a0800;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}

.btn-theme:active { transform: translateY(0px); }

.btn-highlight {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 800;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 40px rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-highlight:hover {
  transform: translateY(-5px) scale(1.05);
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 15px 50px rgba(255,255,255,0.5), 0 0 20px rgba(255,255,255,0.3);
}

@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.merch-strip .btn-highlight {
  animation: btnPulse 2s infinite;
}

.btn-outline-theme {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-outline-theme:hover {
  background: var(--accent);
  color: #1a0800;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,101,10,0.35);
}

.btn-green {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  color: #fff; border:none;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(45,106,79,0.35);
}

.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(45,106,79,0.45); color:#fff; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 50%, rgba(27,107,69,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 40%, rgba(212,101,10,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #fdf8e8 0%, #f8f0cc 50%, #fdf5dd 100%);
}

/* Animated floating blobs — light mode */
.hero-bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,107,69,0.07) 0%, transparent 70%);
  top: 50%; left: 10%;
  transform: translate(-50%, -50%);
  animation: heroFloat 10s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,101,10,0.05) 0%, transparent 70%);
  bottom: 10%; right: 15%;
  animation: heroFloat 14s ease-in-out infinite reverse;
}

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

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,101,10,0.1);
  border: 1px solid rgba(212,101,10,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: #1c2b1e;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.hero-title span { 
  color: var(--accent);
  font-style: italic;
}

.hero-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: flex; gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Hero visual card */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card {
  background: rgba(255,253,240,0.85);
  border: 1px solid rgba(27,107,69,0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(27,107,69,0.1);
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,107,69,0.04) 0%, rgba(212,101,10,0.03) 100%);
  pointer-events: none;
}

.hero-card-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  display: block;
  animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.destination-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
}

.destination-tag {
  background: rgba(27,107,69,0.08);
  border: 1px solid rgba(27,107,69,0.2);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: var(--primary-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,101,10,0.08);
  border: 1px solid rgba(212,101,10,0.2);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.section-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
  line-height: 1.7;
}

/* ============================================================
   TRIP CARDS
   ============================================================ */
.trip-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.trip-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), var(--glow);
}

.trip-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.trip-card:hover .trip-card-img { transform: scale(1.06); }

.trip-card-img-placeholder {
  height: 220px;
  background: linear-gradient(135deg, #e8f5ee 0%, #c8e8d8 50%, #d4f0e4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.trip-card:hover .trip-card-img-placeholder { filter: brightness(1.15); }

.trip-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trip-card-body h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text);
  margin: 0.6rem 0 0.5rem;
  line-height: 1.3;
}

.trip-card-body p { color: var(--text-muted); font-size: 0.85rem; flex: 1; }

.trip-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.trip-price {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

.trip-price small { color: var(--text-muted); font-size: 0.72rem; font-weight: 400; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(27,107,69,0.07);
  border: 1px solid rgba(27,107,69,0.15);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 500;
}

.tag-special {
  background: rgba(212,101,10,0.1);
  border-color: rgba(212,101,10,0.3);
  color: var(--accent);
}

/* ============================================================
   GLASS CARD
   ============================================================ */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  padding: 2rem;
  transition: all 0.3s;
}

.glass-card:hover {
  background: rgba(255,252,230,0.95);
  border-color: rgba(212,101,10,0.2);
}

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1a7a50 100%);
  padding: 130px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(212,101,10,0.3);
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(212,101,10,0.1) 0%, transparent 70%);
}

.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}

.page-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FORMS (Public)
   ============================================================ */
.form-control, .form-select {
  background: #fff !important;
  border: 1.5px solid rgba(27,107,69,0.2) !important;
  color: var(--text) !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.65rem 1rem !important;
  font-size: 0.875rem !important;
  transition: all 0.25s;
  outline: none;
}

.form-control:focus, .form-select:focus {
  background: #fffef5 !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(212,101,10,0.1) !important;
  color: var(--text) !important;
}

.form-control option, .form-select option {
  background: #fff;
  color: var(--text);
}

.form-control::placeholder { color: rgba(28,43,30,0.35) !important; }

.form-label {
  color: #2a4a30;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.booking-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 110px;
}

.sidebar-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.sidebar-label { color: var(--text-muted); font-size: 0.78rem; }

.price-hint {
  background: rgba(82,183,136,0.08);
  border: 1px solid rgba(82,183,136,0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: #74c69d;
  margin-top: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(27,107,69,0.08);
}

.summary-row .label { color: var(--text-muted); }
.summary-row .value { color: var(--text); font-weight: 600; }
.summary-row .value.accent { color: var(--accent); }

/* Special option box */
.special-option-block {
  background: rgba(244,162,97,0.05);
  border: 1px dashed rgba(244,162,97,0.35);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  animation: fadeSlideIn 0.3s ease;
}

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

/* ============================================================
   FEATURE CARDS (Why Us)
   ============================================================ */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(212,101,10,0.15), rgba(212,101,10,0.05));
  border: 1px solid rgba(212,101,10,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}

.feature-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--primary-dark);   /* dark green footer like original site */
  border-top: 2px solid rgba(212,101,10,0.35);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand i { color: var(--accent); }

.footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.footer-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--accent); }

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  margin-right: 6px;
}

.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 2.5rem 0 1.5rem;
}

.footer-copy {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  text-align: center;
}

/* ============================================================
   BADGE / PILL
   ============================================================ */
.badge-upcoming {
  background: rgba(250,176,5,0.15);
  color: #fab005;
  border: 1px solid rgba(250,176,5,0.3);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
}

.badge-completed {
  background: rgba(82,183,136,0.15);
  color: #52b788;
  border: 1px solid rgba(82,183,136,0.3);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ============================================================
   ALERTS
   ============================================================ */
.alert-success-custom {
  background: rgba(82,183,136,0.1);
  border: 1px solid rgba(82,183,136,0.25);
  border-radius: var(--radius-sm);
  color: #74c69d;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}

.alert-warning-custom {
  background: rgba(244,162,97,0.1);
  border: 1px solid rgba(244,162,97,0.25);
  border-radius: var(--radius-sm);
  color: var(--accent);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.modal-header { border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; }
.modal-body { padding: 2rem; }
.modal-footer { border-top: 1px solid var(--border); padding: 1.25rem 2rem; }

/* ============================================================
   NAVBAR JS SCROLL FIX
   ============================================================ */
body { padding-top: 0; }

/* ============================================================
   NEW HOMEPAGE SERVICES & COLLAB
   ============================================================ */
.service-row-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-row-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(27,107,69,0.2), transparent);
}

.service-card-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  background: #eee;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.service-card-main:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 40px rgba(27,107,69,0.15);
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card-main:hover .service-card-img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,26,14,0.9) 0%, rgba(10,26,14,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all 0.4s;
}

.service-card-main:hover .service-card-overlay {
    background: linear-gradient(0deg, rgba(212,101,10,0.85) 0%, rgba(212,101,10,0.2) 60%, transparent 100%);
}

.service-card-title {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.service-card-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  max-width: 80%;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s;
}

.service-card-main:hover .service-card-text {
  transform: translateY(0);
  opacity: 1;
}

/* Merch Section */
.merch-strip {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(212,101,10,0.15);
}

.merch-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.merch-phrase {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.merch-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    object-fit: cover;
    z-index: 1;
}

/* Collab Section */
.collab-card {
  background: #1c2b1e;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,101,10,0.15);
}

.collab-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.collab-visual-img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  object-fit: cover;
  opacity: 0.45;
  mask-image: linear-gradient(to right, transparent, black);
  -webkit-mask-image: linear-gradient(to right, transparent, black);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .navbar { top: 0; }
  .announcement-bar { display: none; }
  .hero { min-height: auto; padding: 110px 0 60px; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2.2rem; }
  .page-banner { padding: 100px 16px 40px; }
  .service-card-main { height: 125px; }
  .service-card-overlay { padding: 1.25rem; }
  .service-card-title { font-size: 1.1rem; }
  .service-card-text { font-size: 0.75rem; }
  .trip-card-img, .trip-card-img-placeholder { height: 160px; }
  .trip-card-body { padding: 1rem; }
}

