/* ============================================
   EGYPT TOURS — Design System & Global Styles
   ============================================ */

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

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
}

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

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

button,
input,
textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

/* --- Design Tokens / CSS Custom Properties --- */
:root {
  /* Primary Earthy / Sandy Palette */
  --clr-gold: #C8A85C;
  --clr-gold-light: #E2CFA0;
  --clr-gold-dark: #A68B3D;
  --clr-sand: #F5EFE0;
  --clr-sand-light: #FAF7F0;
  --clr-beige: #EDE0CC;
  --clr-beige-dark: #D4C4A8;

  /* Premium Contrast */
  --clr-black: #111111;
  --clr-charcoal: #1E1E1E;
  --clr-dark: #2A2A2A;
  --clr-dark-soft: #3A3A3A;

  /* CTA Accent */
  --clr-coral: #E0604E;
  --clr-coral-dark: #C0473A;
  --clr-coral-light: #F0826E;

  /* Neutral */
  --clr-white: #FFFFFF;
  --clr-gray: #888888;
  --clr-gray-light: #CCCCCC;
  --clr-gray-bg: #F8F8F8;

  /* Semantic */
  --clr-bg: var(--clr-white);
  --clr-text: var(--clr-charcoal);
  --clr-text-muted: var(--clr-gray);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .12);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, .18);
  --shadow-gold: 0 4px 20px rgba(200, 168, 92, .25);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  /* Transition */
  --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
  --transition-fast: 0.2s ease;

  /* Layout */
  --container-max: 1280px;
  --header-height: 80px;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--clr-charcoal);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-coral));
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.logo-img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  display: block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-coral), var(--clr-coral-dark));
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(224, 96, 78, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224, 96, 78, .45);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid var(--clr-white);
}

.btn-secondary:hover {
  background: var(--clr-white);
  color: var(--clr-charcoal);
}

.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 168, 92, .4);
}

.btn-outline {
  background: transparent;
  color: var(--clr-coral);
  border: 2px solid var(--clr-coral);
}

.btn-outline:hover {
  background: var(--clr-coral);
  color: var(--clr-white);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-book {
  background: linear-gradient(135deg, var(--clr-coral), #d4453a);
  color: var(--clr-white);
  padding: 12px 28px;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(224, 96, 78, .3);
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 96, 78, .45);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  height: var(--header-height);
}

.header.transparent {
  background: transparent;
}

.header.scrolled {
  background: rgba(17, 17, 17, .95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: 1px;
}

.logo-text span {
  color: var(--clr-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, .85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--clr-coral), var(--clr-coral-dark)) !important;
  color: var(--clr-white) !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(224, 96, 78, .4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, .55) 0%,
      rgba(0, 0, 0, .35) 40%,
      rgba(0, 0, 0, .60) 100%);
  z-index: -1;
}

.hero-content {
  padding: 20px;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 168, 92, .15);
  border: 1px solid rgba(200, 168, 92, .3);
  border-radius: var(--radius-xl);
  padding: 8px 20px;
  color: var(--clr-gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 6vw, 4.5rem);
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--clr-gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, .8);
  max-width: 620px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.8;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .5);
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ============================================
   FEATURED PACKAGES GRID (Home Page)
   ============================================ */
.featured-packages {
  background: var(--clr-sand-light);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.package-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
}

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

.package-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.package-card:hover .package-card-img img {
  transform: scale(1.08);
}

.package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-white);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.package-card-body {
  padding: 24px;
}

.package-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: 10px;
  line-height: 1.4;
  text-align: left;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.package-card-body p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.package-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--clr-sand);
  margin-top: auto;
}

.package-price {
  font-weight: 700;
  color: var(--clr-coral);
  font-size: 1.1rem;
  white-space: nowrap;
}

.package-price small {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

/* ============================================
   ABOUT SECTION (Home Page)
   ============================================ */
.about-section {
  background: var(--clr-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--clr-white);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  color: var(--clr-charcoal);
  margin-bottom: 12px;
  line-height: 1.25;
}

.about-content h2 span {
  color: var(--clr-gold);
}

.about-content .about-subtitle {
  color: var(--clr-gold-dark);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-content p {
  color: var(--clr-text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
}

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

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-gold);
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

/* ============================================
   HIGHLIGHTS / WHY CHOOSE US
   ============================================ */
.highlights-section {
  background: var(--clr-charcoal);
  position: relative;
  overflow: hidden;
}

.highlights-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 92, .1), transparent 70%);
  top: -100px;
  right: -100px;
}

.highlights-section .section-header h2 {
  color: var(--clr-white);
}

.highlights-section .section-header p {
  color: rgba(255, 255, 255, .6);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.highlight-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.highlight-card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(200, 168, 92, .3);
  transform: translateY(-4px);
}

.highlight-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(200, 168, 92, .15), rgba(224, 96, 78, .1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
  transition: var(--transition);
}

.highlight-card:hover .highlight-img {
  transform: scale(1.08);
}

.highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.highlight-card h3 {
  color: var(--clr-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.highlight-card p {
  color: rgba(255, 255, 255, .55);
  font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--clr-black);
  color: rgba(255, 255, 255, .7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}

.footer-socials a:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-white);
}

.footer h4 {
  color: var(--clr-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--clr-gold);
  margin-top: 10px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--clr-gold);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-contact .icon {
  color: var(--clr-gold);
  font-size: 1rem;
  min-width: 20px;
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .4);
}

.footer-bottom span {
  color: var(--clr-gold);
}

/* ============================================
   PACKAGES PAGE — Hero Banner
   ============================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, .6) 0%,
      rgba(0, 0, 0, .4) 100%);
}

.page-hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 5vw, 3.5rem);
  color: var(--clr-white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.page-hero-content p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.1rem;
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .5);
}

.breadcrumb a {
  color: var(--clr-gold-light);
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--clr-gold);
}

/* ============================================
   TAB SYSTEM (Packages Page)
   ============================================ */
.tabs-section {
  background: var(--clr-sand-light);
}

.tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  background: var(--clr-white);
  padding: 8px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  background: transparent;
  color: var(--clr-text-muted);
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--clr-charcoal);
  background: var(--clr-sand);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-white);
  box-shadow: var(--shadow-gold);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Day Tours Grid --- */
.day-tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.tour-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--clr-sand);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tour-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--clr-gold-light);
}

.tour-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--clr-sand-light);
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.tour-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-card-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-charcoal);
  margin-bottom: 8px;
  line-height: 1.4;
}

.tour-card-body p {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
  flex: 1;
  line-height: 1.6;
}

/* --- Holiday Package Cards --- */
.holiday-packages-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

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

.holiday-card:hover {
  box-shadow: var(--shadow-md);
}

.holiday-card-header {
  background: linear-gradient(135deg, var(--clr-charcoal), var(--clr-dark));
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.holiday-card-header h3 {
  color: var(--clr-white);
  font-size: 1.2rem;
  font-weight: 700;
}

.holiday-card-header .duration-badge {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-white);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.holiday-card-body {
  padding: 32px;
}

/* --- Timeline / Accordion --- */
.itinerary-timeline {
  position: relative;
  padding-left: 36px;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--clr-gold), var(--clr-beige));
}

.timeline-item {
  position: relative;
  margin-bottom: 8px;
}

.timeline-dot {
  position: absolute;
  left: -36px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clr-gold);
  border: 3px solid var(--clr-sand-light);
  box-shadow: 0 0 0 3px rgba(200, 168, 92, .2);
  z-index: 1;
}

.timeline-item.active .timeline-dot {
  background: var(--clr-coral);
  box-shadow: 0 0 0 3px rgba(224, 96, 78, .2);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--clr-sand-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  user-select: none;
}

.accordion-header:hover {
  background: var(--clr-sand);
  border-color: var(--clr-beige);
}

.accordion-header.active {
  background: var(--clr-sand);
  border-color: var(--clr-gold-light);
}

.accordion-header .day-label {
  background: var(--clr-gold);
  color: var(--clr-white);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.accordion-header h4 {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-charcoal);
}

.accordion-header .toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200, 168, 92, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.8rem;
  color: var(--clr-gold-dark);
}

.accordion-header.active .toggle-icon {
  transform: rotate(180deg);
  background: var(--clr-gold);
  color: var(--clr-white);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}

.accordion-body.open {
  max-height: 600px;
  padding: 16px 20px;
}

.accordion-body p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.accordion-body ul {
  list-style: disc;
  padding-left: 20px;
}

.accordion-body ul li {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
  line-height: 1.6;
}

/* --- Optional Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--clr-sand);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-gold-light);
}

.service-img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(200, 168, 92, .12), rgba(200, 168, 92, .04));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  transition: var(--transition);
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-charcoal), var(--clr-black));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 92, .08), transparent 70%);
  top: -200px;
  left: -200px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 96, 78, .06), transparent 70%);
  bottom: -100px;
  right: -100px;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: var(--clr-white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, .65);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 36px;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

  .about-img-float {
    right: 20px;
    bottom: -20px;
    width: 160px;
    height: 160px;
  }

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

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  /* Mobile Menu */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(17, 17, 17, .98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .mobile-menu.open {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .mobile-menu a {
    color: var(--clr-white);
    font-size: 1.3rem;
    font-weight: 600;
    transition: var(--transition-fast);
  }

  .mobile-menu a:hover {
    color: var(--clr-gold);
  }

  /* Hero */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Page Hero */
  .page-hero {
    height: auto;
    min-height: 60vh;
    align-items: flex-start;
    padding: calc(var(--header-height) + 20px) 0 60px;
  }

  .page-hero-content h1 {
    font-size: clamp(1.35rem, 5.5vw, 3.5rem);
  }

  /* Packages Grid */
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .day-tours-grid {
    grid-template-columns: 1fr;
  }

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

  /* Tabs */
  .tabs-nav {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 6px;
    max-width: 100%;
    width: 100%;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
  }

  /* About */
  .about-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-img-main img {
    height: 320px;
  }

  .about-img-float {
    display: none;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Details */
  .details-grid {
    padding: 24px;
  }

  /* Holiday Card */
  .holiday-card-header {
    padding: 20px 24px;
  }

  .holiday-card-body {
    padding: 24px;
  }

  .itinerary-timeline {
    padding-left: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .package-card-img {
    height: 200px;
  }

  .package-card-footer {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .package-card-footer .btn {
    width: 100%;
    justify-content: center;
  }

  .package-card-body h3 {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .accordion-header {
    padding: 12px 14px;
    gap: 8px;
  }

  .accordion-header h4 {
    font-size: 0.85rem;
  }

  .details-grid {
    padding: 16px;
  }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow-gold);
  font-size: 1.2rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 168, 92, .5);
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--clr-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(200, 168, 92, .2);
  border-top-color: var(--clr-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   PACKAGE DETAIL PAGE
   ============================================ */

/* Section title used inside detail page */
.section-title-sm {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--clr-charcoal);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title-sm::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-coral));
  margin-top: 10px;
  border-radius: 2px;
}

.package-overview .container {
  max-width: 1100px;
}

/* Overview grid */
.overview-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  margin-bottom: 70px;
  align-items: start;
}

.overview-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
}

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

.overview-image:hover img {
  transform: scale(1.03);
}

.overview-duration {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(17, 17, 17, .75);
  color: var(--clr-white);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.overview-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-sand);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-gold-light);
}

.info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-gray);
  margin-bottom: 8px;
}

.info-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-charcoal);
}

.info-value.price {
  font-size: 1.4rem;
  color: var(--clr-coral);
}

.info-value.price small {
  font-size: 0.85rem;
  color: var(--clr-gray);
  font-weight: 500;
}

/* Gallery */
.gallery-section,
.details-section,
.itinerary-section {
  margin-bottom: 70px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-thumb {
  border: none;
  background: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-thumb:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.gallery-thumb:hover img {
  transform: scale(1.08);
}

/* Details */
.details-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  background: var(--clr-sand-light);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.details-description p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--clr-text);
}

.details-highlights h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--clr-charcoal);
}

.details-highlights ul {
  list-style: none;
  padding: 0;
}

.details-highlights li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}

.details-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, .1);
  color: var(--clr-white);
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--clr-gold);
  color: var(--clr-charcoal);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .85);
  font-size: 0.95rem;
  text-align: center;
  max-width: 80vw;
}

/* Responsive */
@media (max-width: 900px) {

  .overview-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .overview-info {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-card {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .info-card {
    flex: 1 1 100%;
  }

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

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }
}