/* ===== HNS TRAVELS - MAIN STYLESHEET ===== */

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

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1a3a2a;
  --primary-light: #2d6a4f;
  --secondary: #c8a96e;
  --secondary-light: #e8c98a;
  --accent: #74b49b;
  --dark: #0d1f17;
  --light: #f5f0e8;
  --white: #fefdf9;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --overlay: rgba(13, 31, 23, 0.7);

  --font-display: 'Cormorant Garamond', serif;
  --font-sans: 'Josefin Sans', sans-serif;
  --font-heading: 'Playfair Display', serif;

  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-heavy: 0 30px 80px rgba(0,0,0,0.3);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

/* ===== LOADING SCREEN ===== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.15), 0 0 40px rgba(74,180,120,0.3);
  animation: loaderPulse 2s ease-in-out infinite;
  margin-bottom: 4px;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.loader-subtitle {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--secondary);
  margin-top: 8px;
  text-transform: uppercase;
}

.loader-bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 40px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  width: 0%;
  animation: loaderBar 2.2s ease forwards;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes loaderBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(13, 31, 23, 0.96);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 56px;
  width: 56px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.08);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.6), 0 0 16px rgba(255,255,255,0.2);
}

nav.scrolled .nav-logo-img {
  box-shadow: 0 0 0 2px rgba(45,106,79,0.4);
}

nav.scrolled .nav-logo:hover .nav-logo-img {
  box-shadow: 0 0 0 3px rgba(45,106,79,0.7), 0 4px 12px rgba(0,0,0,0.15);
}

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

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary);
}

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

.nav-cta {
  background: var(--secondary) !important;
  color: var(--dark) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--secondary-light) !important;
}

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

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100%;
  background: var(--dark);
  z-index: 999;
  padding: 100px 50px 50px;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ===== SECTION COMMONS ===== */
section {
  position: relative;
  overflow: hidden;
}

.section-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--primary-light);
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  max-width: 500px;
  line-height: 1.8;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5, 15, 10, 0.88) 0%,
    rgba(13, 31, 23, 0.72) 50%,
    rgba(5, 15, 10, 0.92) 100%
  );
}

@keyframes heroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1.0); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--secondary);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) translateX(30px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--secondary);
  display: block;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  margin-top: 28px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-buttons {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 16px 44px;
  background: var(--secondary);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.btn-primary:hover span {
  color: var(--secondary);
}

.btn-outline {
  display: inline-block;
  padding: 16px 44px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(200, 169, 110, 0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 2s forwards;
  opacity: 0;
  cursor: default;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

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

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--secondary);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 600;
  padding: 0 40px;
}

.marquee-item i {
  margin: 0 10px;
  font-size: 0.5rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 120px 60px;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-images {
  position: relative;
  height: 600px;
}

.about-img-main {
  position: absolute;
  width: 75%;
  height: 80%;
  top: 0;
  left: 0;
  object-fit: cover;
  filter: grayscale(10%);
  transition: var(--transition-slow);
}

.about-img-main:hover {
  filter: grayscale(0%);
}

.about-img-second {
  position: absolute;
  width: 55%;
  height: 55%;
  bottom: 0;
  right: 0;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition-slow);
}

.about-img-second:hover {
  transform: scale(1.03);
}

.about-years {
  position: absolute;
  bottom: 80px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 24px 30px;
  text-align: center;
}

.about-years .num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--secondary);
  display: block;
  line-height: 1;
}

.about-years .label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.about-text .section-title {
  margin-bottom: 28px;
}

.about-body {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.9;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.stat-item .stat-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* ===== DESTINATIONS ===== */
.destinations-section {
  padding: 120px 60px;
  background: var(--light);
}

.section-header {
  max-width: 1300px;
  margin: 0 auto 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}

.dest-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
}

.dest-card.featured {
  grid-row: span 2;
  height: 100%;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  transition: var(--transition);
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(13, 31, 23, 0.9) 0%, rgba(13, 31, 23, 0.3) 60%);
}

.dest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  transform: translateY(20px);
  transition: var(--transition);
}

.dest-card:hover .dest-content {
  transform: translateY(0);
}

.dest-region {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}

.dest-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.dest-card.featured .dest-name {
  font-size: 2.4rem;
}

.dest-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  margin-bottom: 20px;
}

.dest-card:hover .dest-desc {
  opacity: 1;
  transform: translateY(0);
}

.dest-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  text-decoration: none;
  opacity: 0;
  transition: var(--transition);
}

.dest-card:hover .dest-link {
  opacity: 1;
}

.dest-link i {
  transition: transform 0.3s;
}

.dest-link:hover i {
  transform: translateX(6px);
}

/* ===== PACKAGES ===== */
.packages-section {
  padding: 120px 60px;
  background: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
}

.package-card {
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

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

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

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

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

.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.package-body {
  padding: 32px;
}

.package-duration {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}

.package-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.package-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.package-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-features li {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features li i {
  color: var(--accent);
  width: 14px;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.package-price {
  display: flex;
  flex-direction: column;
}

.package-price .from {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
}

.package-price .amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
}

.package-price .per {
  font-size: 0.65rem;
  color: var(--text-light);
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 120px 60px;
  background: var(--dark);
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-section .section-tag {
  color: var(--secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
  max-width: 1300px;
  margin: 50px auto 0;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,169,110,0.15);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  color: var(--white);
  font-size: 2rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 120px 60px;
  background: var(--light);
}

.testimonials-slider {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
}

.testimonial-slide {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

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

.testimonial-stars {
  color: var(--secondary);
  font-size: 0.9rem;
  letter-spacing: 4px;
  margin-bottom: 30px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--primary);
  line-height: 1.5;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 40px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}

.author-info .name {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.1em;
}

.author-info .origin {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 2px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--secondary);
  transform: scale(1.3);
}

/* ===== WHY US ===== */
.whyus-section {
  padding: 120px 60px;
  background: var(--primary);
}

.whyus-section .section-title {
  color: var(--white);
}

.whyus-section .section-tag {
  color: var(--secondary);
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 70px auto 0;
}

.why-card {
  text-align: center;
  padding: 50px 30px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-6px);
}

.why-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.4rem;
  color: var(--secondary);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 14px;
}

.why-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 140px 60px;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1920&q=80') center/cover;
}

.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 23, 0.82);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 24px;
}

.cta-banner-title em {
  font-style: italic;
  color: var(--secondary);
}

.cta-banner-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 44px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding: 80px 60px 60px;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 0.1em;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}

.footer-brand .footer-logo span {
  color: var(--secondary);
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 30px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(200,169,110,0.1);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-links a i {
  font-size: 0.6rem;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.footer-links a:hover i {
  opacity: 1;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--secondary);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.footer-contact-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-bottom {
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  height: 55vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,15,10,0.82) 0%, rgba(5,15,10,0.90) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}

.page-hero-title em {
  font-style: italic;
  color: var(--secondary);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: var(--secondary);
  text-decoration: none;
}

.breadcrumb span {
  opacity: 0.4;
}

/* ===== FORM STYLES ===== */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
}

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

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 46px;
  height: 46px;
  background: var(--secondary);
  color: var(--dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .whyus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  nav { padding: 18px 30px; }
  nav.scrolled { padding: 14px 30px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 400px; }
  .packages-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-grid { grid-template-rows: auto; }

  .section-header { flex-direction: column; gap: 20px; align-items: flex-start; }
}

@media (max-width: 600px) {
  .about-section, .destinations-section, .packages-section,
  .gallery-section, .testimonials-section, .whyus-section,
  .cta-banner { padding: 80px 24px; }

  .destinations-grid { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 60px 24px 40px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 10px; text-align: center; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}