/* ========================================
   TipToe Africa Safaris — Modern Refactor
   Sleek, clean, easy to navigate
   ======================================== */

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

:root {
  /* Core palette */
  --bg: #0C0A09;
  --bg-alt: #141110;
  --bg-card: #1A1614;
  --bg-card-hover: #221E1B;
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-glow: rgba(201, 169, 110, 0.15);
  --orange: #D4834A;
  --terracotta: #8B4A3C;
  --deep: #0A0807;
  --cream: #F5EDE0;
  
  /* Text */
  --text: #F0EBE0;
  --text-secondary: #A09888;
  --text-muted: #7A7268;
  
  /* UI */
  --border: rgba(201, 169, 110, 0.1);
  --border-hover: rgba(201, 169, 110, 0.25);
  --radius: 12px;
  --radius-sm: 8px;
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
  
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.35s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; }
::selection { background: var(--gold); color: var(--bg); }

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 10, 9, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(12, 10, 9, 0.96);
  box-shadow: 0 1px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.nav-brand-sub {
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

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

.nav-links .cta-link {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  background: transparent;
  margin-left: 8px;
}

.nav-links .cta-link:hover {
  background: var(--gold);
  color: var(--bg);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding-top: var(--nav-height);
}

/* Animated gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 110, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(212, 131, 74, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 70% 80%, rgba(139, 74, 60, 0.04) 0%, transparent 50%);
  animation: ambientShift 20s ease-in-out infinite alternate;
}

@keyframes ambientShift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-2%, -1%) rotate(2deg); }
}

/* Stars */
.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-stars span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: twinkle 3s ease-in-out infinite;
}

.hero-stars span:nth-child(1) { top: 8%; left: 12%; animation-delay: 0s; }
.hero-stars span:nth-child(2) { top: 15%; left: 45%; animation-delay: 0.8s; }
.hero-stars span:nth-child(3) { top: 5%; left: 70%; animation-delay: 1.6s; }
.hero-stars span:nth-child(4) { top: 20%; left: 85%; animation-delay: 0.4s; }
.hero-stars span:nth-child(5) { top: 12%; left: 30%; animation-delay: 2.2s; }
.hero-stars span:nth-child(6) { top: 18%; left: 55%; animation-delay: 1.2s; }
.hero-stars span:nth-child(7) { top: 6%; left: 90%; animation-delay: 0.6s; }
.hero-stars span:nth-child(8) { top: 22%; left: 5%; animation-delay: 1.8s; }

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.8; transform: scale(1); }
}

/* Savannah landscape silhouette at bottom */
.hero-landscape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-landscape::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    /* Acacia tree 1 */
    radial-gradient(ellipse 2px 70px at 20% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 2px 55px at 23% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 55px 20px at 21% 82%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 40px 14px at 19% 84%, #0A0807 0%, transparent 100%),
    /* Acacia tree 2 */
    radial-gradient(ellipse 2px 80px at 72% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 3px 65px at 76% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 65px 22px at 74% 80%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 48px 16px at 76% 82%, #0A0807 0%, transparent 100%),
    /* Acacia tree 3 */
    radial-gradient(ellipse 2px 50px at 48% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 40px 14px at 48% 87%, #0A0807 0%, transparent 100%),
    /* Distant hills */
    radial-gradient(ellipse 120% 30px at 5% 100%, rgba(10,8,7,0.7) 0%, transparent 100%),
    radial-gradient(ellipse 80% 25px at 40% 100%, rgba(10,8,7,0.6) 0%, transparent 100%),
    radial-gradient(ellipse 100% 28px at 65% 100%, rgba(10,8,7,0.7) 0%, transparent 100%),
    /* Ground */
    linear-gradient(180deg, transparent 40%, rgba(10,8,7,0.8) 70%, #0A0807 100%);
}

/* Elephant silhouette */
.hero-elephant {
  position: absolute;
  bottom: 22%;
  right: 15%;
  width: 90px;
  height: 55px;
  z-index: 2;
  opacity: 0.15;
  pointer-events: none;
}

.hero-elephant svg {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeUp 1s var(--ease) forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid rgba(201, 169, 110, 0.3);
  margin-bottom: 32px;
  box-shadow: 0 0 60px rgba(201, 169, 110, 0.1);
  object-fit: cover;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero .tagline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}

/* --- Scroll indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s var(--ease) 0.5s both;
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Section Common --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
}

.section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

/* --- Cards Grid --- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

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

.card-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: inline-block;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border-radius: var(--radius-sm);
}

.card h3 {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 600;
}

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

/* --- Stats --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 32px 16px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40%;
  background: var(--border);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* --- Destinations --- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
}

.dest-card:hover {
  border-color: var(--border-hover);
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.dest-visual {
  position: absolute;
  inset: 0;
  transition: var(--transition);
}

.dest-card:hover .dest-visual {
  transform: scale(1.05);
}

/* Mara */
.dest-mara .dest-visual {
  background:
    linear-gradient(135deg, #1A0F0A 0%, #6B302E 30%, #B85C38 50%, #F08E27 70%, #E2C185 100%);
}

.dest-mara .dest-visual::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background:
    radial-gradient(ellipse 2px 55px at 25% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 3px 45px at 55% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 2px 60px at 78% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 50px 16px at 27% 85%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 40px 14px at 55% 87%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 45px 15px at 78% 84%, #0A0807 0%, transparent 100%),
    linear-gradient(to top, #0A0807 5%, transparent 60%);
}

.dest-mara .dest-visual::after {
  content: '';
  position: absolute;
  top: 30%; left: 40%;
  width: 60px; height: 60px;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.4), transparent 70%);
  border-radius: 50%;
}

/* Amboseli */
.dest-amboseli .dest-visual {
  background:
    linear-gradient(180deg, #3D2A10 0%, #8A5E20 30%, #C89428 55%, #E8D5B0 75%, #C8D8E8 85%, #A0C4E0 100%);
}

.dest-amboseli .dest-visual::before {
  content: '';
  position: absolute;
  top: 15%; left: 5%; right: 5%;
  height: 40%;
  background: linear-gradient(135deg, transparent 35%, rgba(255,255,255,0.12) 42%, rgba(200,148,40,0.15) 48%, transparent 55%);
  clip-path: polygon(0% 100%, 25% 0%, 75% 0%, 100% 100%);
}

.dest-amboseli .dest-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 50%;
  background:
    radial-gradient(ellipse 2px 40px at 20% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 3px 35px at 60% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 2px 30px at 80% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 35px 12px at 22% 88%, #0A0807 0%, transparent 100%),
    linear-gradient(to top, #0A0807 5%, transparent 60%);
}

/* Samburu */
.dest-samburu .dest-visual {
  background:
    linear-gradient(180deg, #1A0F0A 0%, #5C2E0E 30%, #8B4513 55%, #A0522D 75%, #D4A574 90%);
}

.dest-samburu .dest-visual::before {
  content: '';
  position: absolute;
  top: 38%; left: 0; right: 0; height: 62%;
  background:
    radial-gradient(ellipse 2px 50px at 18% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 3px 40px at 45% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 2px 55px at 72% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 40px 14px at 20% 88%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 35px 12px at 45% 90%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 45px 16px at 72% 86%, #0A0807 0%, transparent 100%),
    linear-gradient(to top, #0A0807 3%, transparent 55%);
}

/* Nakuru */
.dest-nakuru .dest-visual {
  background:
    linear-gradient(180deg, #1A0F0A 0%, #8A3A2E 25%, #C86A5A 45%, #E8927C 60%, #F0B8A8 75%, #8FBC8F 100%);
}

.dest-nakuru .dest-visual::before {
  content: '';
  position: absolute;
  top: 40%; left: 10%; right: 10%;
  height: 25%;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(232, 146, 124, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.dest-nakuru .dest-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 45%;
  background:
    radial-gradient(ellipse 3px 45px at 30% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 2px 35px at 65% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 35px 12px at 32% 88%, #0A0807 0%, transparent 100%),
    linear-gradient(to top, #0A0807 5%, transparent 60%);
}

.dest-overlay {
  position: relative;
  z-index: 1;
  background: linear-gradient(transparent, rgba(12, 10, 9, 0.95));
  padding: 32px 24px 24px;
  width: 100%;
}

.dest-overlay h3 {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.dest-overlay p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.about-text .section-label {
  text-align: left;
}

.about-text .section-label::after {
  margin: 12px 0 0;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, #2D1F14 0%, #4A3424 30%, #6B4A30 50%, #8B6340 70%, #6B4A30 85%, #2D1F14 100%);
  border: 1px solid var(--border);
}

.about-visual::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 55%;
  background:
    radial-gradient(ellipse 3px 60px at 20% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 2px 50px at 50% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 3px 70px at 78% 100%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 55px 18px at 22% 83%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 45px 15px at 50% 85%, #0A0807 0%, transparent 100%),
    radial-gradient(ellipse 60px 20px at 78% 80%, #0A0807 0%, transparent 100%),
    linear-gradient(to top, #0A0807 5%, transparent 55%);
}

.about-visual::after {
  content: '';
  position: absolute;
  top: 15%; left: 50%; transform: translateX(-50%);
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.12), transparent 70%);
  border-radius: 50%;
}

.about-visual-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 24px;
  text-align: center;
}

/* --- Packages --- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-card), rgba(201, 169, 110, 0.05));
}

.package-card.featured::before {
  content: 'Best Value';
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 40px;
  transform: rotate(45deg);
}

.package-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.package-card.featured:hover {
  border-color: var(--gold-light);
}

.package-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 8px;
  font-weight: 600;
}

.package-duration {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.package-price {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}

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

.package-deposit {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.package-details-list {
  list-style: none;
  margin-bottom: 28px;
}

.package-details-list li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.package-details-list li:last-child {
  border-bottom: none;
}

.package-details-list .check {
  color: var(--gold);
  font-size: 0.9rem;
}

.package-details-list .cross {
  color: var(--terracotta);
  font-size: 0.9rem;
}

.package-cta {
  width: 100%;
  text-align: center;
}

/* --- Gallery Preview --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: var(--gold);
  transform: scale(1.02);
}

.gallery-item.gallery-main {
  aspect-ratio: auto;
}

/* Gallery visual placeholders */
.gallery-visual {
  position: absolute;
  inset: 0;
  transition: var(--transition);
}

.gv-1 {
  background: linear-gradient(135deg, #2D1F14, #8B6340, #6B4A30);
}
.gv-1::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: radial-gradient(ellipse 2px 50px at 25% 100%, #0A0807 0%, transparent 100%),
              radial-gradient(ellipse 3px 40px at 55% 100%, #0A0807 0%, transparent 100%),
              radial-gradient(ellipse 45px 14px at 27% 87%, #0A0807 0%, transparent 100%),
              linear-gradient(to top, #0A0807 5%, transparent 60%);
}

.gv-2 {
  background: linear-gradient(135deg, #1A0F0A, #6B302E, #B85C38);
}
.gv-2::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: radial-gradient(ellipse 2px 55px at 30% 100%, #0A0807 0%, transparent 100%),
              radial-gradient(ellipse 3px 45px at 65% 100%, #0A0807 0%, transparent 100%),
              radial-gradient(ellipse 50px 16px at 32% 85%, #0A0807 0%, transparent 100%),
              linear-gradient(to top, #0A0807 5%, transparent 55%);
}

.gv-3 {
  background: linear-gradient(135deg, #3D2A10, #C89428, #E8D5B0);
}
.gv-3::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: radial-gradient(ellipse 2px 40px at 30% 100%, #0A0807 0%, transparent 100%),
              radial-gradient(ellipse 3px 35px at 60% 100%, #0A0807 0%, transparent 100%),
              radial-gradient(ellipse 35px 12px at 32% 88%, #0A0807 0%, transparent 100%),
              linear-gradient(to top, #0A0807 5%, transparent 60%);
}

.gv-4 {
  background: linear-gradient(135deg, #0A0807, #2D1F14, #8B6340);
}
.gv-4::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: radial-gradient(ellipse 2px 60px at 25% 100%, #0A0807 0%, transparent 100%),
              radial-gradient(ellipse 3px 50px at 70% 100%, #0A0807 0%, transparent 100%),
              radial-gradient(ellipse 55px 18px at 27% 83%, #0A0807 0%, transparent 100%),
              linear-gradient(to top, #0A0807 5%, transparent 55%);
}

.gv-5 {
  background: linear-gradient(135deg, #5C2E0E, #A0522D, #D4A574);
}
.gv-5::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: radial-gradient(ellipse 2px 45px at 35% 100%, #0A0807 0%, transparent 100%),
              radial-gradient(ellipse 3px 55px at 68% 100%, #0A0807 0%, transparent 100%),
              radial-gradient(ellipse 40px 14px at 37% 87%, #0A0807 0%, transparent 100%),
              linear-gradient(to top, #0A0807 5%, transparent 60%);
}

.gallery-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
}

.cta-section .section-subtitle {
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-info > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.contact-detail .icon {
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- Footer --- */
.footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 16px;
  object-fit: cover;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer h5 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Mobile sidebar --- */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(12, 10, 9, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 4px;
    transition: right 0.35s var(--ease);
    border-left: 1px solid var(--border);
    align-items: stretch;
    list-style: none;
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 14px 16px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
  }

  .nav-links .cta-link {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  /* Mobile overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

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

  .hero .tagline {
    font-size: 0.9rem;
  }

  .hero-logo {
    width: 100px;
    height: 100px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section {
    padding: 70px 0;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-number {
    font-size: 2.2rem;
  }

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

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

  .gallery-grid .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-logo {
    width: 80px;
    height: 80px;
  }

  .section-title {
    font-size: 1.5rem;
  }

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

  .section {
    padding: 50px 0;
  }

  .stat-number {
    font-size: 1.8rem;
  }

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

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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

/* Smooth transition for page load */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Page Header --- */
.page-header {
  padding: 140px 0 80px;
  text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}
