/* ============================================
   HASF TOUR & TRAVELS — Design System
   Kashmir-Inspired Modern Travel Website
   ============================================ */

/* Google 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');

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors — Kashmir Inspired */
  --primary: #1B4D3E;
  --primary-light: #2D7A5F;
  --primary-dark: #0F3329;
  --accent: #D4A853;
  --accent-warm: #E8722A;
  --accent-light: #F0D08C;
  --dark: #0F1923;
  --dark-surface: #1A2A38;
  --light: #F8F6F0;
  --white: #FFFFFF;
  --text: #2C3E50;
  --text-light: #7F8C8D;
  --text-on-dark: #E0E0E0;
  --border: #E0DDD5;
  --shadow: rgba(15, 25, 35, 0.12);
  --shadow-lg: rgba(15, 25, 35, 0.2);
  --overlay: rgba(15, 25, 35, 0.55);
  --overlay-dark: rgba(15, 25, 35, 0.75);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Border Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;

  /* Container */
  --container-max: 1200px;
  --container-narrow: 900px;

  /* Navbar */
  --navbar-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  font-weight: 400;
}

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

.text-center .section-subtitle {
  margin-inline: auto;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-xl);
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--space-4xl) 0;
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

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


/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--dark-surface);
  color: var(--text-on-dark);
  font-size: 0.8rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  /* Normal document flow */
  z-index: 1002;
  display: flex;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.85rem;
}

.top-bar__center {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.3;
}

.top-bar__center strong {
  display: block;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.top-bar__center span {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar__social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.top-bar__social a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
  font-weight: 500;
}

.top-bar__social a:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .top-bar {
    display: none;
  }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: absolute;
  /* Flow with normal scroll, but absolutely positioned so hero sits behind it if needed, OR just use sticky */
  top: auto;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition), top 0s;
  padding: var(--space-md) 0;
}

.navbar.scrolled {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 30px var(--shadow);
  padding: var(--space-xs) 0;
  backdrop-filter: blur(12px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
  z-index: 1001;
}

.navbar.scrolled .navbar__logo {
  color: var(--primary);
}

.navbar__logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
}

.navbar__logo span {
  font-size: 0.7em;
  font-weight: 400;
  opacity: 0.8;
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition);
}

.navbar.scrolled .navbar__links a {
  color: var(--text);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__links a:hover {
  color: var(--accent);
}

.navbar__cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  color: var(--white) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.navbar__cta::after {
  display: none !important;
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 168, 83, 0.45);
  color: var(--white) !important;
}

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

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

.navbar.scrolled .navbar__hamburger span {
  background: var(--dark);
}

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

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

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

/* Pages with light navbar */
.navbar--light .navbar__logo,
.navbar--light .navbar__links a {
  color: var(--text);
}

.navbar--light .navbar__hamburger span {
  background: var(--dark);
}


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

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(15, 25, 35, 0.4) 0%,
      rgba(15, 25, 35, 0.6) 50%,
      rgba(27, 77, 62, 0.7) 100%);
  z-index: -1;
}

.hero__content {
  text-align: center;
  max-width: 850px;
  padding: calc(var(--navbar-height) + var(--space-3xl)) var(--space-xl) var(--space-3xl);
}

.hero__label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
}

.hero__scroll-indicator svg {
  width: 20px;
  height: 20px;
}

/* Page Hero (shorter, for inner pages) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

.page-hero .hero__content {
  padding: calc(var(--navbar-height) + var(--space-2xl)) var(--space-xl) var(--space-2xl);
}

.page-hero .hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-md);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

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

.breadcrumb svg {
  width: 14px;
  height: 14px;
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  justify-content: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.45);
}

.btn--outline {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn--outline-dark {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

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

.btn--dark:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(27, 77, 62, 0.3);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn:hover svg {
  transform: translateX(3px);
}


/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card__image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

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

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

.card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.card__body {
  padding: var(--space-lg);
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
}

.card__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.card__meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary-light);
}

.card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.card__price-amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.card__price-per {
  font-size: 0.85rem;
  color: var(--text-light);
}

.card__footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Destination Card */
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  cursor: pointer;
}

.dest-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.dest-card:hover .dest-card__image {
  transform: scale(1.1);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
      rgba(15, 25, 35, 0.85) 0%,
      rgba(15, 25, 35, 0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  transition: background var(--transition);
}

.dest-card:hover .dest-card__overlay {
  background: linear-gradient(0deg,
      rgba(27, 77, 62, 0.9) 0%,
      rgba(15, 25, 35, 0.2) 60%);
}

.dest-card__title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.dest-card__subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-md);
}

.dest-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--transition);
}

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


/* ============================================
   FEATURES / ICONS GRID
   ============================================ */
.feature-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 8px 30px var(--shadow);
  transform: translateY(-5px);
}

.feature-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, rgba(27, 77, 62, 0.1), rgba(45, 122, 95, 0.08));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition);
}

.feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  transform: scale(1.1);
}

.feature-card__icon svg {
  width: 30px;
  height: 30px;
}

.feature-card__title {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.feature-card__text {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}


/* ============================================
   STATS BAR
   ============================================ */
.stats {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: var(--space-3xl) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}

.testimonial__quote-icon {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.15;
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial__text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial__name {
  font-weight: 600;
  color: var(--dark);
}

.testimonial__location {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonial__stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
}


/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
  color: var(--white);
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 77, 62, 0.9), rgba(15, 25, 35, 0.85));
  z-index: -1;
}

.cta-section__content {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.cta-section__title {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.cta-section__text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: var(--space-4xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer__brand-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer__contact-item a {
  transition: color var(--transition);
}

.footer__contact-item a[href^="tel:"] {
  white-space: nowrap;
}

.footer__contact-item a:hover {
  color: var(--accent);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer__bottom-links a:hover {
  color: var(--accent);
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.contact-info-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-lg);
  border-color: var(--primary-light);
}

.contact-info-card__icon {
  width: 65px;
  height: 65px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, rgba(27, 77, 62, 0.1), rgba(45, 122, 95, 0.05));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-info-card__icon svg {
  width: 26px;
  height: 26px;
}

.contact-info-card__title {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.contact-info-card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-info-card__text a {
  color: var(--primary);
  font-weight: 500;
}

.contact-info-card__text a:hover {
  color: var(--accent);
}

/* Contact Form */
.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(27, 77, 62, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.form-message {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius);
  font-size: 0.95rem;
  display: none;
}

.form-message--success {
  display: block;
  background: rgba(27, 77, 62, 0.1);
  color: var(--primary);
  border: 1px solid rgba(27, 77, 62, 0.2);
}

.form-message--error {
  display: block;
  background: rgba(232, 114, 42, 0.1);
  color: var(--accent-warm);
  border: 1px solid rgba(232, 114, 42, 0.2);
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 450px;
  box-shadow: 0 4px 20px var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
}


/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-content__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow);
  position: relative;
}

.about-content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.about-content__image-badge {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  color: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius);
  font-weight: 700;
}

.about-content__image-badge span {
  display: block;
  font-size: 2rem;
  font-family: var(--font-heading);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.value-item {
  display: flex;
  gap: var(--space-md);
}

.value-item__icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(27, 77, 62, 0.1), rgba(45, 122, 95, 0.05));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.value-item__icon svg {
  width: 22px;
  height: 22px;
}

.value-item__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.value-item__text {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}


/* ============================================
   PACKAGES PAGE
   ============================================ */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
}

.filter-tab {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(27, 77, 62, 0.05);
}

.filter-tab.active {
  background: var(--primary);
  color: var(--white);
}

.package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.package-highlight {
  font-size: 0.8rem;
  padding: 0.25rem 0.65rem;
  background: rgba(27, 77, 62, 0.08);
  color: var(--primary);
  border-radius: var(--radius);
  font-weight: 500;
}


/* ============================================
   LEGAL PAGES (Privacy / Terms)
   ============================================ */
.legal-content {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding: var(--space-3xl) var(--space-xl);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p,
.legal-content li {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-content a {
  color: var(--primary);
  font-weight: 500;
}

.legal-content a:hover {
  color: var(--accent);
}


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

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

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

.reveal--scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible,
.reveal--left.visible,
.reveal--right.visible,
.reveal--scale.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger children */
.stagger-children>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 0.15s;
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 0.25s;
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 0.35s;
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: 0.45s;
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: 0.55s;
}

.stagger-children.visible>*:nth-child(7) {
  transition-delay: 0.65s;
}

.stagger-children.visible>*:nth-child(8) {
  transition-delay: 0.75s;
}

.stagger-children.visible>*:nth-child(9) {
  transition-delay: 0.85s;
}

.stagger-children.visible>*:nth-child(10) {
  transition-delay: 0.95s;
}

.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes bounceDown {

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

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

@keyframes float {

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

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}


/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3);
}

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

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(27, 77, 62, 0.4);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}


/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}


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

/* Large Tablets */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-content {
    gap: var(--space-2xl);
  }

  .contact-form-section {
    gap: var(--space-2xl);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

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

  section {
    padding: var(--space-3xl) 0;
  }

  .container {
    padding-inline: var(--space-lg);
  }

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

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

  /* Navbar Mobile */
  .navbar__hamburger {
    display: flex;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--navbar-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    box-shadow: -5px 0 30px var(--shadow-lg);
    transition: right var(--transition);
    gap: var(--space-xs);
  }

  .navbar__links.active {
    right: 0;
  }

  .navbar__links a {
    color: var(--text) !important;
    font-size: 1.05rem;
    width: 100%;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border);
  }

  .navbar__cta {
    margin-top: var(--space-md);
    width: 100%;
    text-align: center;
    border-bottom: none !important;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }

  .mobile-overlay.active {
    display: block;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero__buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

  /* Contact */
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

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

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

  .map-container {
    min-height: 350px;
  }

  /* About */
  .about-content {
    grid-template-columns: 1fr;
  }

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

  /* Destinations */
  .dest-card {
    height: 320px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  :root {
    --navbar-height: 65px;
  }

  h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  section {
    padding: var(--space-2xl) 0;
  }

  .container {
    padding-inline: var(--space-md);
  }

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

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .card__image {
    height: 200px;
  }

  .dest-card {
    height: 280px;
  }

  .filter-tabs {
    gap: 6px;
  }

  .filter-tab {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }

  .testimonial {
    padding: var(--space-lg);
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* Print */
@media print {

  .navbar,
  .footer,
  .back-to-top,
  .whatsapp-float {
    display: none;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: var(--space-xl);
    color: var(--dark);
  }

  .hero__overlay,
  .hero__bg {
    display: none;
  }

  body {
    font-size: 12pt;
  }
}

/* ============================================
   BOOKING WIDGET
   ============================================ */
.booking-widget-wrapper {
  margin-top: var(--space-2xl);
  position: relative;
  z-index: 10;
}

.booking-widget {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px var(--shadow-lg);
}

.booking-widget form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: flex-end;
}

.booking-field {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.booking-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 4px;
}

.booking-field label .req {
  color: var(--accent-warm);
}

.input-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 0.8rem;
  background: var(--light);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.1);
  background: var(--white);
}

.input-group.disabled-group {
  background: rgba(15, 25, 35, 0.05);
  cursor: not-allowed;
}

.input-icon {
  display: flex;
  color: var(--primary);
  margin-right: var(--space-xs);
}

.input-group input,
.input-group select {
  border: none;
  background: transparent;
  width: 100%;
  outline: none;
  color: var(--dark);
  font-size: 0.95rem;
}

.input-group select {
  cursor: pointer;
  appearance: none;
}

.booking-actions {
  flex: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.booking-actions label {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9rem;
  color: var(--text-light);
  cursor: pointer;
}

.booking-actions a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.btn-book-now {
  background: var(--primary);
  color: var(--white);
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--transition);
}

.btn-book-now:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 77, 62, 0.3);
}

@media (max-width: 900px) {
  .booking-widget form {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Force gallery to 2 columns */
.gallery-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}

/* Navbar logo image */
.navbar__logo-img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

