/* ============================================================
   BASH TOURS & TRAVEL — SHARED DESIGN SYSTEM
   ============================================================ */

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

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --gold:        #E8A020;
  --gold-light:  #F5C842;
  --gold-dark:   #B8781A;
  --dark:        #0F0F1A;
  --dark-2:      #1A1A2E;
  --dark-3:      #252540;
  --white:       #FFFFFF;
  --off-white:   #FAF8F3;
  --gray-100:    #F5F3EE;
  --gray-200:    #E8E4DC;
  --gray-500:    #9A9080;
  --gray-700:    #4A4540;
  --red:         #C0392B;

  --header-h:    90px;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-xl:   40px;

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.14);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.22);

  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--gray-700);
  overflow-x: hidden;
  padding-top: 0;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.font-serif { font-family: 'Playfair Display', serif; }
.font-sans  { font-family: 'Montserrat', sans-serif; }

h1,h2,h3 { line-height: 1.15; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--gold);
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 18px;
}

.section-heading span { color: var(--gold); }

.section-subtext {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 600px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── HEADER ─────────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-h);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  z-index: 1200;
  box-sizing: border-box;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
header.scrolled {
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom-color: transparent;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  width: 56px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}
.brand-name { font-family: 'Montserrat', sans-serif; text-transform: uppercase; line-height: 1; }
.brand-name .top    { font-size: 1.7rem; font-weight: 900; color: var(--white); letter-spacing: -0.5px; }
.brand-name .bottom { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.75); letter-spacing: 2.5px; display: block; margin-top: 4px; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  right: 6%;
  left: auto;
  width: auto;
  height: var(--header-h);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  z-index: 1210;
  box-sizing: border-box;
}
nav a {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  display: block;
  transition: var(--transition);
  border-radius: 50px;
}
nav a:hover,
nav a.active {
  color: var(--dark);
  background: var(--gold);
  box-shadow: 0 4px 15px rgba(232,160,32,0.4);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1210;
}
.menu-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── PAGE HERO BANNER (inner pages) ────────────────────────── */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,15,26,0.75) 0%, rgba(15,15,26,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero-content h1 em {
  color: var(--gold-light);
  font-style: italic;
}
.page-hero-breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.page-hero-breadcrumb span { color: var(--gold-light); }

/* ── SECTION LAYOUTS ────────────────────────────────────────── */
.section { padding: 100px 8%; }
.section-sm { padding: 60px 8%; }
.container { max-width: 1240px; margin: 0 auto; }

/* ── CARD BASE ──────────────────────────────────────────────── */
.card-base {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card-base:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ── DESTINATION CARD ───────────────────────────────────────── */
.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  flex-shrink: 0;
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,26,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  color: var(--white);
}
.dest-card-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.dest-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.dest-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}
.dest-card-price {
  background: var(--gold);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ── FEATURE CARD ───────────────────────────────────────────── */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}
.feature-card-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 22px;
}
.feature-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-500);
}

/* ── STAT / COUNTER ─────────────────────────────────────────── */
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
}

/* ── TESTIMONIAL CARD ───────────────────────────────────────── */
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold-light);
  position: absolute;
  top: 10px; left: 28px;
  line-height: 1;
  opacity: 0.6;
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testi-text {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-light);
}
.testi-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark);
}
.testi-role {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 110px 8%;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,26,0.88) 0%, rgba(184,120,26,0.55) 100%);
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.main-footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 8% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-col ul li a i { color: var(--gold); font-size: 0.8rem; }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ── SCROLL REVEAL ANIMATIONS ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-h: 75px; }

  header { padding: 0 5%; border-bottom: none; }
  .brand-logo { width: 44px; }
  .brand-name .top { font-size: 1.35rem; }
  .brand-name .bottom { font-size: 0.55rem; }

  nav {
    top: var(--header-h);
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  nav.open {
    max-height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  nav a {
    padding: 18px 6%;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    text-align: center;
    background: transparent;
    color: var(--white);
    box-shadow: none;
  }
  nav a:hover, nav a.active {
    background: rgba(232,160,32,0.1);
    color: var(--gold);
    box-shadow: none;
  }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }

  .section { padding: 70px 5%; }
  .section-sm { padding: 40px 5%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-banner { background-attachment: scroll; }
}
