/* ========================================
   Shakadan Escapes - Main Stylesheet
   Brand Colors: Navy #1B2B4B, Gold #C8972A, Teal #1A9DA0, Orange #E07B30
   ======================================== */

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

:root {
  --navy: #1B2B4B;
  --navy-light: #2a3f6b;
  --gold: #C8972A;
  --gold-light: #e8b44a;
  --gold-dark: #a07820;
  --teal: #1A9DA0;
  --teal-light: #2abfc2;
  --orange: #E07B30;
  --orange-dark: #c05f20;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --light-gray: #f0ede8;
  --dark-gray: #333;
  --text-muted: #777;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --shadow-sm: 0 2px 8px rgba(27,43,75,0.1);
  --shadow-md: 0 8px 24px rgba(27,43,75,0.15);
  --shadow-lg: 0 16px 48px rgba(27,43,75,0.2);
  --radius: 12px;
  --transition: all 0.35s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
.script { font-family: var(--font-script); color: var(--gold); }
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(27,43,75,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--gold);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.navbar-brand img { height: 52px; width: auto; }
.navbar-brand .brand-text { display: flex; flex-direction: column; line-height: 1; }
.navbar-brand .brand-name { font-family: var(--font-script); color: var(--gold); font-size: 1.5rem; }
.navbar-brand .brand-tag { color: rgba(255,255,255,0.7); font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; }

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: 14%; right: 14%; }
.nav-link:hover, .nav-link.active { color: var(--gold) !important; background: rgba(200,151,42,0.1) !important; }

.btn-book-nav {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--white) !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  box-shadow: 0 4px 15px rgba(200,151,42,0.4);
  letter-spacing: 1px;
}
.btn-book-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,151,42,0.6) !important; }
.btn-book-nav::after { display: none; }

.navbar-toggler { border: 2px solid var(--gold); }
.navbar-toggler-icon { filter: invert(1); }

/* ===== HERO SLIDER ===== */
#heroSlider { margin-top: 74px; }
.hero-slide {
  position: relative;
  height: 92vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.carousel-item.active .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(27,43,75,0.88) 0%,
    rgba(27,43,75,0.65) 45%,
    rgba(27,43,75,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 680px;
}
.hero-eyebrow {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.8;
}
.hero-badge {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(200,151,42,0.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(10px);
  animation: rotateBadge 20s linear infinite;
}
@keyframes rotateBadge { to { transform: translateY(-50%) rotate(360deg); } }
.hero-badge span { animation: rotateBadge 20s linear infinite reverse; color: var(--white); font-size: 0.65rem; letter-spacing: 1px; text-transform: uppercase; }
.hero-badge strong { color: var(--gold); font-size: 1rem; font-weight: 800; }

.hero-social {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.hero-social a:hover { background: var(--gold); border-color: var(--gold); transform: scale(1.1); }

.hero-travelers {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.hero-avatars { display: flex; }
.hero-avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-left: -10px;
  object-fit: cover;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-stars { color: var(--gold); font-size: 0.75rem; }
.hero-traveler-text { color: rgba(255,255,255,0.85); font-size: 0.8rem; font-weight: 600; }

.carousel-control-prev, .carousel-control-next {
  width: 50px; height: 50px;
  top: 50%; bottom: auto;
  transform: translateY(-50%);
  background: rgba(200,151,42,0.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  margin: 0 15px;
  opacity: 0.8;
  transition: var(--transition);
}
.carousel-control-prev:hover, .carousel-control-next:hover { background: var(--gold); opacity: 1; }
.carousel-indicators [data-bs-target] {
  width: 30px; height: 3px;
  background: rgba(255,255,255,0.5);
  border: none;
  border-radius: 2px;
}
.carousel-indicators .active { background: var(--gold); }

/* ===== SECTION STYLES ===== */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); margin-bottom: 12px; }
.section-script { font-family: var(--font-script); color: var(--gold); font-size: 1.4rem; display: block; margin-bottom: 4px; }
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px auto;
}
.section-divider span { display: block; height: 2px; width: 40px; background: var(--gold); }
.section-divider i { color: var(--gold); font-size: 1rem; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ===== PACKAGES ===== */
#packages { background: var(--off-white); }
.package-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
  height: 100%;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.package-card.popular { border-color: var(--gold); transform: scale(1.03); }
.package-card.popular:hover { transform: scale(1.03) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(200,151,42,0.5);
}
.package-img { position: relative; height: 200px; overflow: hidden; }
.package-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.package-card:hover .package-img img { transform: scale(1.08); }
.package-type-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-bronze { background: rgba(139,69,19,0.9); color: #fff; }
.badge-silver { background: rgba(26,157,160,0.9); color: #fff; }
.badge-gold { background: rgba(200,151,42,0.9); color: #fff; }
.package-body { padding: 24px; }
.package-header-row { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.package-icon { font-size: 1.4rem; }
.package-name { font-family: var(--font-heading); font-size: 1.2rem; color: var(--navy); font-weight: 700; margin: 0; }
.package-tagline { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 14px; }
.package-meta { display: flex; gap: 16px; margin-bottom: 16px; padding: 12px; background: var(--off-white); border-radius: 8px; }
.package-meta span { font-size: 0.78rem; color: var(--navy); display: flex; align-items: center; gap: 5px; font-weight: 600; }
.package-meta i { color: var(--gold); }
.package-features { list-style: none; padding: 0; margin-bottom: 18px; }
.package-features li { padding: 4px 0; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.package-features li::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: 0.85rem; }
.package-price { padding: 14px; border: 2px solid var(--gold); border-radius: 10px; text-align: center; margin-bottom: 16px; }
.price-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.price-amount { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900; color: var(--navy); }
.price-per { font-size: 0.75rem; color: var(--text-muted); }
.btn-package {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.btn-package:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: none; }
.package-card.popular .btn-package { background: var(--gold); border-color: var(--gold); }
.package-card.popular .btn-package:hover { background: var(--orange); border-color: var(--orange); }

/* ===== DESTINATIONS ===== */
.destination-card {
  position: relative;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.destination-card:hover img { transform: scale(1.08); }
.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,43,75,0.9) 0%, rgba(27,43,75,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}
.destination-name { color: var(--white); font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.destination-tag { color: var(--gold-light); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.btn-explore {
  display: inline-block;
  padding: 7px 20px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  transform: translateY(10px);
  opacity: 0;
}
.destination-card:hover .btn-explore { transform: translateY(0); opacity: 1; }
.destination-card:hover .btn-explore:hover { background: var(--gold); border-color: var(--gold); }

/* ===== USPs ===== */
.usp-section { background: var(--navy); padding: 50px 0; }
.usp-item { text-align: center; color: var(--white); padding: 20px; }
.usp-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 12px; display: block; }
.usp-title { font-size: 0.85rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.usp-desc { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(rgba(27,43,75,0.85), rgba(27,43,75,0.9)),
              url('../images/cape-coast-aerial.jpeg') center/cover no-repeat fixed;
  padding: 100px 0;
  text-align: center;
}
.cta-script { font-family: var(--font-script); color: var(--gold-light); font-size: 1.6rem; display: block; margin-bottom: 8px; }
.cta-title { font-family: var(--font-heading); color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 12px; }
.cta-sub { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1rem; }

/* ===== GALLERY ===== */
.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  transition: var(--transition);
  cursor: pointer;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

/* ===== SHOP ===== */
.product-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-img { position: relative; overflow: hidden; height: 220px; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-badge-sale {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.product-body { padding: 18px; }
.product-cat { font-size: 0.7rem; color: var(--teal); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.product-name { font-family: var(--font-heading); font-size: 1rem; color: var(--navy); margin: 4px 0 10px; }
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--gold-dark); }
.product-price del { color: var(--text-muted); font-size: 0.85rem; font-weight: 400; margin-right: 6px; }
.btn-add-cart {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 9px 18px;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: 12px;
}
.btn-add-cart:hover { background: var(--gold); }

/* ===== ABOUT ===== */
.about-img {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.about-img img { width: 100%; height: 500px; object-fit: cover; object-position: top; }
.about-img-badge {
  position: absolute;
  bottom: 24px; left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-img-badge strong { display: block; font-size: 1.8rem; font-weight: 900; line-height: 1; }
.about-img-badge span { font-size: 0.75rem; letter-spacing: 1px; }
.about-value {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.about-value-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.about-value-text h6 { font-family: var(--font-heading); color: var(--navy); margin-bottom: 2px; font-size: 0.95rem; }
.about-value-text p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }
.quote-block {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 30px;
  border-radius: 14px;
  border-left: 4px solid var(--gold);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 30px 0;
  position: relative;
}
.quote-block::before { content: '"'; font-size: 5rem; color: var(--gold); opacity: 0.3; position: absolute; top: -10px; left: 20px; font-family: Georgia, serif; line-height: 1; }

/* ===== CONTACT ===== */
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  padding: 40px;
  border-radius: 18px;
  height: 100%;
}
.contact-info-card h3 { font-family: var(--font-heading); color: var(--gold); margin-bottom: 24px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(200,151,42,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text small { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-item-text span { font-size: 0.9rem; font-weight: 500; }
.contact-form-card { background: var(--white); padding: 40px; border-radius: 18px; box-shadow: var(--shadow-md); }
.form-control, .form-select {
  border: 1.5px solid #e0dcd8;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,42,0.15);
}
.form-label { font-weight: 600; font-size: 0.85rem; color: var(--navy); margin-bottom: 6px; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-brand img { height: 60px; margin-bottom: 14px; }
.footer-brand-name { font-family: var(--font-script); color: var(--gold); font-size: 1.6rem; }
.footer-brand-tag { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.footer-about { font-size: 0.85rem; line-height: 1.8; margin: 14px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-heading { color: var(--white); font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.85rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-newsletter .input-group { border-radius: 8px; overflow: hidden; }
.footer-newsletter input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 10px 16px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter input:focus { background: rgba(255,255,255,0.15); border-color: var(--gold); box-shadow: none; color: white; }
.footer-newsletter .btn { background: var(--gold); border: none; color: var(--white); font-weight: 700; padding: 10px 20px; border-radius: 0 8px 8px 0; }
.footer-newsletter .btn:hover { background: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; margin-top: 50px; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn-primary-gold {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--white);
  border: none;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(200,151,42,0.4);
}
.btn-primary-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(200,151,42,0.5); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-3px); }

/* ===== CART ===== */
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cart-nav-btn { position: relative; }
.cart-sidebar {
  position: fixed;
  right: -100%;
  top: 0; bottom: 0;
  width: 380px;
  background: var(--white);
  z-index: 9999;
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9998; }
.cart-overlay.open { display: block; }
.cart-header { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; background: var(--navy); color: white; }
.cart-header h5 { margin: 0; font-family: var(--font-heading); }
.cart-close { background: none; border: none; color: white; font-size: 1.2rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.cart-item-details { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.cart-item-price { color: var(--gold-dark); font-weight: 700; font-size: 0.85rem; }
.cart-item-remove { background: none; border: none; color: #ccc; cursor: pointer; font-size: 0.9rem; }
.cart-item-remove:hover { color: red; }
.cart-footer { padding: 20px; border-top: 1px solid #eee; }
.cart-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; color: var(--navy); }
.btn-checkout { display: block; width: 100%; padding: 14px; background: var(--gold); color: var(--white); border: none; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: var(--transition); }
.btn-checkout:hover { background: var(--orange); }
.cart-empty { text-align: center; padding: 40px 20px; color: var(--text-muted); }
.cart-empty i { font-size: 3rem; color: #ddd; margin-bottom: 10px; display: block; }

/* ===== ANIMATIONS ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ===== LIGHTBOX ===== */
.lightbox-modal .modal-dialog { max-width: 90vw; }
.lightbox-modal img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: 8px; }

/* ===== BOOKING MODAL ===== */
.booking-modal .modal-content { border-radius: 18px; overflow: hidden; border: none; }
.booking-modal .modal-header { background: var(--navy); color: var(--white); }
.booking-modal .modal-title { font-family: var(--font-heading); color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(rgba(27,43,75,0.8), rgba(27,43,75,0.9)),
              url('../images/cape-coast-aerial.jpeg') center/cover no-repeat;
  padding: 130px 0 70px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 10px; }
.page-hero .script { font-size: 1.3rem; margin-bottom: 10px; }

/* ===== TOAST ===== */
.toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 9999; }
.toast-msg { background: var(--navy); color: var(--white); padding: 14px 20px; border-radius: 10px; margin-top: 8px; border-left: 4px solid var(--gold); font-size: 0.88rem; box-shadow: var(--shadow-md); animation: slideInRight 0.3s ease; }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero-badge { display: none; }
  .hero-social { display: none; }
  .hero-slide { height: 75vh; }
  .package-card.popular { transform: none; }
  .cart-sidebar { width: 100%; }
  .about-img-badge { left: 10px; }
}

.cta-section{
  position:relative;
  padding:100px 0;
 background-image:url('/public/images/ada-foah-banner.webp'); /* use your uploaded image */
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  overflow:hidden;
}

/* Dark premium overlay */
.cta-section::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.55));
  z-index:1;
}

/* Keep content above overlay */
.cta-section .container{
  position:relative;
  z-index:2;
}

/* Typography enhancement */
.cta-title{
  font-family:'Playfair Display', serif;
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:800;
  color:#fff;
  margin-bottom:10px;
}

.cta-script{
  display:block;
  font-family:'Playfair Display', serif;
  font-style:italic;
  color:#C9A84C;
  margin-bottom:10px;
}

.cta-sub{
  color:rgba(255,255,255,0.75);
  max-width:600px;
  margin:0 auto 30px;
}