/* ===== CSS Variables ===== */
:root {
  --primary: #FFD700;
  --primary-dark: #E6C200;
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --font-sans: 'Poppins', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Loader ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loader-text {
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 4px;
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: var(--gray-800);
  border-radius: 2px;
  margin: 20px auto 0;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  width: 0;
  background: var(--primary);
  border-radius: 2px;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes loading {
  0% { width: 0; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: block;
  }
}

.logo-title {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.logo-subtitle {
  color: var(--primary);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.nav-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.btn-book-now {
  display: none;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

@media (min-width: 1024px) {
  .btn-book-now {
    display: inline-block;
  }
}

.btn-book-now:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  width: 20px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.mobile-menu-btn.active .hamburger {
  background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile Navigation */
.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.nav-mobile.active {
  display: flex;
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-link-mobile {
  color: var(--white);
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link-mobile:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--primary);
}

.btn-book-now-mobile {
  display: inline-block;
  padding: 14px 24px;
  background: var(--primary);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-align: center;
  margin-top: 10px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-tagline {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  color: var(--gray-300);
  font-size: clamp(16px, 2vw, 20px);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  color: var(--gray-400);
  font-size: 14px;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--black);
  border-color: var(--primary);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Section Styles ===== */
.section-tagline {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(247, 211, 4, 0.384);
  border-radius: 50px;
  color: black(--primary);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-desc {
  color: var(--gray-600);
  font-size: 18px;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ===== About Section ===== */
.about {
  padding: 100px 0;
  background: var(--gray-100);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  display: none;
}

@media (min-width: 768px) {
  .about-img-secondary {
    display: block;
  }
}

.about-img-secondary img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  display: none;
}

@media (min-width: 768px) {
  .experience-badge {
    display: flex;
  }
}

.exp-number {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
}

.exp-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  line-height: 1.2;
}

.about-text {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

.feature {
  display: flex;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  color: var(--black);
}

.feature h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature p {
  font-size: 14px;
  color: var(--gray-500);
}

/* ===== Destinations Section ===== */
.destinations {
  padding: 100px 0;
}

.destinations-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  background: var(--gray-100);
  color: var(--gray-600);
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--black);
  color: var(--white);
}

.tab-btn:hover:not(.active) {
  background: var(--gray-200);
}

.destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 640px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.destination-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.destination-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.destination-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.destination-card:hover .destination-img img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.destination-card:hover .destination-overlay {
  opacity: 1;
}

.destination-content {
  padding: 24px;
}

.destination-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.destination-content p {
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 16px;
}

.destination-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-500);
  font-size: 13px;
}

.destination-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.destination-meta svg {
  color: var(--primary);
}

/* ===== Packages Section ===== */
.packages {
  padding: 100px 0;
  background: var(--gray-100);
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 640px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .packages-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.package-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  flex-direction: column;
  display: flex;
  height: 100%;
}
.package-card .btn,
.package-card .book-btn,
.package-card button {
  align-self: center;
  min-width: 130px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
   margin-top: auto;

}

.package-card.featured {
  border: 2px solid var(--primary);
}

.package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  background: var(--primary);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  z-index: 10;
}

.package-img {
  height: 200px;
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.package-card:hover .package-img img {
  transform: scale(1.1);
}

.package-content {
  padding: 24px;
}

.package-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.package-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 20px;
}

.package-features {
  margin-bottom: 24px;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features svg {
  color: var(--primary);
  flex-shrink: 0;
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.package-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 12px;
  color: var(--gray-500);
}

.price-value {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.price-per {
  font-size: 12px;
  color: var(--gray-500);
}

/* ===== Gallery Section ===== */
.gallery {
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
/* Fix image card layout on desktop */
@media (min-width: 769px) {
  .card,
  .image-card,
  .package-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
@media (min-width: 769px) {
  .card img,
  .image-card img,
  .package-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .card .btn,
  .image-card .btn,
  .package-card .btn,
  .card button {
    margin-top: auto;
    align-self: center;
  }
}
@media (min-width: 769px) {
  .card .btn,
  .image-card .btn {
    min-width: 140px;
    padding: 12px 28px;
  }
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--primary);
  color: var(--black);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  color: var(--black);
}

/* ===== Testimonials Section ===== */
.testimonials {
  padding: 100px 0;
  background: var(--black);
}

.testimonials .section-tagline {
  background: yellow;
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-desc {
  color: var(--gray-400);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  background: var(--gray-900);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--gray-800);
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
  }
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-text {
  color: var(--gray-300);
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
}

.author-info h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.author-info p {
  color: var(--gray-500);
  font-size: 14px;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gray-700);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testimonial-btn:hover {
  background: var(--primary);
  color: var(--black);
  border-color: var(--primary);
}

/* ===== Contact Section ===== */
.contact {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-desc {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  color: var(--black);
}

.contact-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--gray-600);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: var(--black);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 14px;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  margin-top: 10px;
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  padding: 80px 0 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--gray-800);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-logo {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
  margin-bottom: 20px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-tagline {
  color: var(--gray-400);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
    color: #ffffff !important;

}

.footer-social {
  display: flex;
  gap: 12px;
}
/* Facebook */
.facebook {
  background: #1877F2;
  color: #ffffff;
}
/* Instagram */
.instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  color: #ffffff;
}

/* YouTube */
.youtube {
  background: #FF0000;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--black);
}

.footer-links h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-400);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-contact svg {
  color: var(--primary);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--gray-500);
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* Fix for floating buttons appearing behind other elements */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999 !important; /* Increased z-index */
}

.floating-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 9999 !important; /* Ensure buttons are on top */
}
.floating-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.floating-btn.call {
  background: #FFD700;
  color: #000;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.floating-btn.whatsapp {
  background: #25D366;
  color: var(--white);
}

.floating-btn.call {
  background: var(--primary);
  color: var(--black);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
}
/* Prevent any other elements from overlapping */
.floating-buttons::before {
  content: '';
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 200px;
  pointer-events: none;
  z-index: 9998;
}

.floating-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--black);
}
/* Mobile responsiveness */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  
  .floating-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* ===== Page Hero Section ===== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin-top: 40px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-desc {
  color: var(--gray-300);
  font-size: 18px;
  margin-bottom: 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== Destinations Page ===== */
.destinations-page-section {
  padding: 80px 0;
}

.destinations-page-section.ladakh-section {
  background: var(--gray-100);
}

.destinations-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .destinations-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.destination-page-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.destination-page-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.destination-page-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.destination-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.destination-page-card:hover .destination-page-img img {
  transform: scale(1.1);
}

.destination-page-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  background: var(--primary);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
}

.destination-page-content {
  padding: 24px;
}

.destination-page-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 600;
}

.destination-page-rating .reviews {
  color: var(--gray-500);
  font-weight: 400;
  font-size: 13px;
}

.destination-page-content h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.destination-page-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 16px;
}

.destination-page-location svg {
  color: var(--primary);
}

.destination-page-desc {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.destination-page-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.destination-page-highlights span {
  padding: 6px 14px;
  background: rgba(255, 215, 0, 0.1);
  color: var(--black);
  font-size: 13px;
  border-radius: 50px;
  border: 1px solid var(--primary);
}

.destination-page-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.destination-page-price span {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
}

.destination-page-price strong {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--primary);
}

/* ===== Packages Page ===== */
.package-categories {
  padding: 50px 0;
  background: var(--gray-100);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.category-card:hover,
.category-card.active {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.category-icon svg {
  color: var(--primary);
}

.category-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.category-card p {
  font-size: 14px;
  color: var(--gray-500);
}

.packages-page-section {
  padding: 80px 0;
}

.packages-page-section.ladakh-bg {
  background: var(--gray-100);
}

.packages-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 1024px) {
  .packages-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-page-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.package-page-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.package-page-card.featured {
  border: 2px solid var(--primary);
}

.package-page-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  z-index: 10;
}

.package-page-badge.bestseller { background: var(--primary); color: var(--black); }
.package-page-badge.popular { background: #FF6B6B; color: var(--white); }
.package-page-badge.romance { background: #FF69B4; color: var(--white); }
.package-page-badge.family { background: #4ECDC4; color: var(--white); }
.package-page-badge.adventure { background: #FF8C00; color: var(--white); }
.package-page-badge.spiritual { background: #9B59B6; color: var(--white); }
.package-page-badge.premium { background: var(--black); color: var(--primary); }
.package-page-badge.value { background: #27AE60; color: var(--white); }

.package-page-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.package-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.package-page-card:hover .package-page-img img {
  transform: scale(1.1);
}

.package-page-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.package-duration-badge {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.package-page-content {
  padding: 24px;
}

.package-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.package-page-header h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
}

.package-page-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 13px;
}

.package-page-desc {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.package-page-itinerary {
  margin-bottom: 20px;
}

.package-page-itinerary h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}

.package-page-itinerary ul {
  max-height: 180px;
  overflow-y: auto;
}

.package-page-itinerary li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
}

.package-page-itinerary li:last-child {
  border-bottom: none;
}

.package-page-itinerary .day {
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.package-page-inclusions {
  margin-bottom: 24px;
}

.package-page-inclusions h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.inclusions-grid span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-600);
}

.inclusions-grid svg {
  color: var(--primary);
  flex-shrink: 0;
}

.package-page-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.package-page-price {
  display: flex;
  flex-direction: column;
}

.original-price {
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: line-through;
}

.current-price {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
}

.per-person {
  font-size: 12px;
  color: var(--gray-500);
}

/* ===== Why Choose Section ===== */
.why-choose-section {
  padding: 80px 0;
  background: var(--black);
}

.why-choose-section .section-tagline {
  background: rgba(255, 217, 0, 0.959);
}

.why-choose-section .section-title {
  color: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (min-width: 768px) {
  .why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-choose-card {
  text-align: center;
  padding: 30px 20px;
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-choose-icon svg {
  color: var(--primary);
}

.why-choose-card h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-choose-card p {
  color: var(--gray-400);
  font-size: 14px;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--gray-800);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--black);
  color: var(--white);
}

.cta-buttons .btn-primary:hover {
  background: var(--gray-900);
}

.cta-buttons .btn-outline {
  border-color: var(--black);
  color: var(--black);
}

.cta-buttons .btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 767px) {
  .hero-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .slider-controls {
    bottom: 80px;
  }
  
  .scroll-down {
    display: none;
  }
  
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-btn {
    width: 52px;
    height: 52px;
  }
  
  .back-to-top {
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}
/*css for contact page*/
/* ===============================
   ROOT VARIABLES
================================ */
:root {
  --primary: #f5c400;
  --dark: #0f0f0f;
  --dark-soft: #1a1a1a;
  --light: #ffffff;
  --muted: #cfcfcf;
  --text: #2b2b2b;
  --border: #e5e5e5;
}

/* ===============================
   PAGE HERO
================================ */
.page-hero {
  position: relative;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.6)
  );
}

.page-hero-content {
  position: relative;
  max-width: 800px;
  padding: 20px;
  color: #fff;
}

.hero-tagline {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-hero-desc {
  font-size: 18px;
  color: #e0e0e0;
}

.breadcrumb {
  margin-top: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

/* ===============================
   CONTACT SECTION
================================ */
.contact-page-section {
  padding: 100px 0;
  background: #fafafa;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
}

/* LEFT INFO */
.contact-info-section .section-tagline {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-info-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.contact-desc {
  color: #555;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* CONTACT DETAILS */
.contact-detail-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.contact-detail-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-detail-item p {
  font-size: 14px;
  color: #555;
}

/* SOCIAL */
.social-links-contact {
  margin-top: 40px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-link-contact {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #000;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link-contact:hover {
  background: var(--primary);
  color: #000;
}

/* ===============================
   CONTACT FORM
================================ */
.contact-form-section {
  background: #fff;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.contact-page-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

/* BUTTON */
.btn-primary {
  background: var(--primary);
  color: #000;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #e0b000;
}

/* ===============================
   MAP SECTION
================================ */
.map-section {
  padding: 80px 0;
}

.map-container iframe {
  width: 100%;
  border-radius: 18px;
}

/* ===============================
   FAQ SECTION
================================ */
.faq-section {
  padding: 100px 0;
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.faq-item {
  padding: 30px;
  border-radius: 16px;
  background: #fafafa;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .page-hero-title {
    font-size: 38px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}
/*about us page css*/
/* ===============================
   ABOUT PAGE SECTION
================================ */
.page-hero {
  position: relative;
  width: 100%;
}
.about-page-section {
  padding: 100px 0;
  background: #fafafa;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGES */
.about-page-images {
  position: relative;
}

.about-page-img-main img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-page-img-secondary {
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 55%;
}

.about-page-img-secondary img {
  width: 100%;
  border-radius: 18px;
  border: 8px solid #fff;
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

/* EXPERIENCE BADGE */
.experience-badge-large {
  position: absolute;
  top: 30px;
  left: -25px;
  background: var(--primary);
  color: #000;
  padding: 18px 20px;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.exp-number {
  font-size: 28px;
  display: block;
}

.exp-text {
  font-size: 13px;
}

/* CONTENT */
.about-page-content .section-tagline {
  color: black(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-page-content .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.about-page-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* STATS */
.about-page-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 35px;
}

.about-stat {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.about-stat-number {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.about-stat-label {
  font-size: 14px;
  color: #555;
}

/* ===============================
   MISSION & VISION
================================ */

.mission-vision-section {
  padding: 100px 0;
  background: #fff;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mission-card,
.vision-card {
  background: #fafafa;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.mission-card h3,
.vision-card h3 {
  margin: 20px 0 10px;
  font-size: 22px;
}

.mission-card p,
.vision-card p {
  color: #555;
  line-height: 1.8;
}

.mission-icon,
.vision-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

/* ===============================
   WHY CHOOSE US
================================ */

.why-choose-about-section {
  padding: 100px 0;
  background: #fafafa;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-desc {
  color: #666;
}

.why-choose-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-choose-about-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 25px 55px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.why-choose-about-card:hover {
  transform: translateY(-8px);
}

.why-choose-about-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.why-choose-about-card h3 {
  margin-bottom: 10px;
}

.why-choose-about-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

/* ===============================
   TEAM SECTION
================================ */
/* ==========================
   SIMPLE TEAM SLIDER (CSS)
   ========================== */

.team-slider-simple {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 10px 40px;
  scroll-snap-type: x mandatory;
}

.team-slider-simple::-webkit-scrollbar {
  height: 6px;
}

.team-slider-simple::-webkit-scrollbar-thumb {
  background: #f5c400;
  border-radius: 10px;
}

.team-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  scroll-snap-align: start;
}

/* Avatar */
.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f5c400;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-role {
  display: block;
  font-size: 14px;
  color: #f5c400;
  margin-bottom: 10px;
}

/* Desktop polish */
@media (min-width: 1024px) {
  .team-slider-simple {
    justify-content: center;
    overflow-x: hidden; /* looks like a slider */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .team-card {
    min-width: 260px;
  }
}


/* Mobile fix */
@media (max-width: 768px) {
  .team-avatar {
    width: 90px;
    height: 90px;
  }
}

/* ===== About Page Mobile Fix ===== */
@media (max-width: 768px) {

  .page-hero {
    min-height: auto;
    padding-top: 100%; /* space for fixed header */
    background-position: center;
  }

  .page-hero-content {
    max-width: 100%;
    padding: 0 16px;
    text-align: center;
  }

  .page-hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .page-hero-desc {
    font-size: 15px;
    line-height: 1.6;
  }

  .breadcrumb {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 768px) {

  .about-page-section,
  .mission-vision-section,
  .why-choose-about-section,
  .team-section,
  .cta-section {
    padding: 50px 16px;
  }

  .about-grid,
  .mission-grid,
  .why-choose-grid,
  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .about-image img,
  .mission-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }
}

/* ===============================
   CTA SECTION
================================ */

.cta-section {
  padding: 90px 0;
  background: #f8f4f4; /* solid dark background */
  color: #ffffff;
  text-align: center;
}

.cta-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--primary);
  color: #000;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .about-page-grid,
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .about-page-img-secondary {
    position: static;
    width: 100%;
    margin-top: 20px;
  }

  .about-page-stats {
    grid-template-columns: 1fr 1fr;
  }

  .why-choose-about-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .about-page-stats,
  .why-choose-about-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-page-content .section-title {
    font-size: 34px;
  }
}

/* css for our blog page*/

/* =========================
   PAGE HERO (NO IMAGE)
========================= */

.page-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
  color: #ffffff;
}

.page-hero-overlay {
  display: none;
}

.hero-tagline {
  color: black;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  margin-bottom: 15px;
}

.page-hero-desc {
  max-width: 700px;
  margin: 0 auto 20px;
  color: black;
  font-size: 20px;
}

.breadcrumb {
  font-size: 18px;
  color: #aaa;
}

.breadcrumb a {
  color: #f5c400;
}

/* =========================
   FEATURED BLOG
========================= */

.featured-blog-section {
  padding: 80px 0;
  background: #fafafa;
}

.featured-blog-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  overflow: hidden;
}

.featured-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-blog-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f5c400;
  color: #000;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.featured-blog-content {
  padding: 40px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.featured-blog-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.featured-blog-content p {
  color: #555;
  line-height: 1.7;
}

/* =========================
   BLOG CATEGORIES
========================= */

.blog-categories-section {
  padding: 30px 0;
  background: #fff;
}

.blog-categories {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-category-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid #eee;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
}

.blog-category-btn.active,
.blog-category-btn:hover {
  background: #f5c400;
  border-color: #f5c400;
  color: #000;
}

/* =========================
   BLOG GRID
========================= */

.blog-grid-section {
  padding: 80px 0;
  background: #fafafa;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card-img {
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #f5c400;
  color: #000;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.blog-card-content {
  padding: 25px;
}

.blog-card-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.blog-read-more {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f5c400;
  font-weight: 600;
}

.blog-read-more svg {
  transition: transform 0.3s;
}

.blog-read-more:hover svg {
  transform: translateX(4px);
}

/* =========================
   LOAD MORE
========================= */

.blog-load-more {
  text-align: center;
  margin-top: 50px;
}

/* =========================
   NEWSLETTER (NO IMAGE)
========================= */

.newsletter-section {
  padding: 70px 0;
  background: #0f0f0f;
  color: #fff;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter-text h2 {
  font-size: 32px;
}

.newsletter-text p {
  color: #ccc;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  padding: 14px 18px;
  border-radius: 50px;
  border: none;
  min-width: 260px;
}

.newsletter-form button {
  padding: 14px 28px;
  border-radius: 50px;
  background: #f5c400;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 992px) {
  .featured-blog-card {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .page-hero-title {
    font-size: 38px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* our blog css pop up*/
/* Read More Button */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.blog-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-content {
  padding: 22px;
}

.blog-read-more-btn {
  margin-top: 15px;
  background: #facc15;
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

.blog-read-more-btn:hover {
  background: #eab308;
}

/*SOCIAL MEDIA CSS EACH PAGE*/
/* ===== SOCIAL MEDIA LINKS - ORIGINAL BRAND COLORS ===== */

/* Footer Social Links */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
  border: none;
}

/* Facebook - Original Blue */
.footer-social a:nth-child(1),
.footer-social a.facebook {
  background: #1877F2;
  color: #ffffff;
}

.footer-social a:nth-child(1):hover,
.footer-social a.facebook:hover {
  background: #0d5dbf;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* Instagram - Original Gradient */
.footer-social a:nth-child(2),
.footer-social a.instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  color: #ffffff;
}

.footer-social a:nth-child(2):hover,
.footer-social a.instagram:hover {
  background: linear-gradient(45deg, #E1306C, #C13584, #5B51D8, #405DE6);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

/* YouTube - Original Red */
.footer-social a:nth-child(3),
.footer-social a.youtube {
  background: #FF0000;
  color: #ffffff;
}

.footer-social a:nth-child(3):hover,
.footer-social a.youtube:hover {
  background: #CC0000;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

/* X (Twitter) - Black (if exists) */
.footer-social a:nth-child(4),
.footer-social a.twitter,
.footer-social a.x-twitter {
  background: #000000;
  color: #ffffff;
}

.footer-social a:nth-child(4):hover,
.footer-social a.twitter:hover,
.footer-social a.x-twitter:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* ===== CONTACT PAGE SOCIAL LINKS ===== */
.social-links-contact {
  margin-top: 40px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-link-contact {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #ffffff;
}

/* Facebook */
.social-link-contact:nth-child(1),
.social-link-contact.facebook {
  background: #1877F2;
}

.social-link-contact:nth-child(1):hover,
.social-link-contact.facebook:hover {
  background: #0d5dbf;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* Instagram */
.social-link-contact:nth-child(2),
.social-link-contact.instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-link-contact:nth-child(2):hover,
.social-link-contact.instagram:hover {
  background: linear-gradient(45deg, #E1306C, #C13584, #5B51D8, #405DE6);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

/* YouTube */
.social-link-contact:nth-child(3),
.social-link-contact.youtube {
  background: #FF0000;
}

.social-link-contact:nth-child(3):hover,
.social-link-contact.youtube:hover {
  background: #CC0000;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

/* X (Twitter) */
.social-link-contact:nth-child(4),
.social-link-contact.twitter,
.social-link-contact.x-twitter {
  background: #000000;
}

.social-link-contact:nth-child(4):hover,
.social-link-contact.twitter:hover,
.social-link-contact.x-twitter:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* ===== GENERAL SOCIAL LINKS (used in other sections) ===== */
.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #ffffff;
}

/* Facebook */
.social-link:nth-child(1),
.social-link.facebook {
  background: #1877F2;
}

.social-link:nth-child(1):hover,
.social-link.facebook:hover {
  background: #0d5dbf;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* Instagram */
.social-link:nth-child(2),
.social-link.instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-link:nth-child(2):hover,
.social-link.instagram:hover {
  background: linear-gradient(45deg, #E1306C, #C13584, #5B51D8, #405DE6);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

/* YouTube */
.social-link:nth-child(3),
.social-link.youtube {
  background: #FF0000;
}

.social-link:nth-child(3):hover,
.social-link.youtube:hover {
  background: #CC0000;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

/* X (Twitter) */
.social-link:nth-child(4),
.social-link.twitter,
.social-link.x-twitter {
  background: #000000;
}

.social-link:nth-child(4):hover,
.social-link.twitter:hover,
.social-link.x-twitter:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
/* Footer Brand Section - White Text */
.footer-brand p {
  color: #ffffff !important;
}

/* Or more specifically target the tagline */
.footer-tagline {
  color: #ffffff !important;
}
.blog-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      padding: 20px;
      box-sizing: border-box;
    }

    .blog-modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .blog-modal {
      background: #fff;
      border-radius: 16px;
      max-width: 800px;
      width: 100%;
      max-height: 90vh;
      overflow: hidden;
      position: relative;
      transform: scale(0.9) translateY(20px);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .blog-modal-overlay.active .blog-modal {
      transform: scale(1) translateY(0);
    }

    .blog-modal-close {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .blog-modal-close:hover {
      background: #fff;
      transform: rotate(90deg);
    }

    .blog-modal-close svg {
      color: #333;
    }

    .blog-modal-img {
      position: relative;
      width: 100%;
      height: 300px;
      flex-shrink: 0;
    }

    .blog-modal-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .blog-modal-category {
      position: absolute;
      bottom: 15px;
      left: 15px;
      background: linear-gradient(135deg, #2e7d32, #388e3c);
      color: #fff;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
      font-family: 'Poppins', sans-serif;
    }

    .blog-modal-content {
      padding: 30px;
      overflow-y: auto;
      flex: 1;
    }

    .blog-modal-meta {
      display: flex;
      gap: 20px;
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 15px;
      font-family: 'Poppins', sans-serif;
    }

    .blog-modal-meta span {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .blog-modal-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: #1a1a1a;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .blog-modal-body {
      font-family: 'Poppins', sans-serif;
      color: #444;
      line-height: 1.8;
      font-size: 1rem;
    }

    .blog-modal-body p {
      margin-bottom: 15px;
    }

    .blog-modal-body h3 {
      font-family: 'Playfair Display', serif;
      color: #1a1a1a;
      margin: 25px 0 15px;
      font-size: 1.3rem;
    }

    .blog-modal-body ul {
      margin: 15px 0;
      padding-left: 25px;
    }

    .blog-modal-body ul li {
      margin-bottom: 8px;
    }

    .blog-modal-body strong {
      color: #2e7d32;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .blog-modal {
        max-height: 95vh;
        border-radius: 12px;
      }

      .blog-modal-img {
        height: 200px;
      }

      .blog-modal-content {
        padding: 20px;
      }

      .blog-modal-title {
        font-size: 1.4rem;
      }

      .blog-modal-body {
        font-size: 0.95rem;
      }
    }

    /* Body scroll lock when modal is open */
    body.modal-open {
      overflow: hidden;
    }
    /* ===== Modal Overflow Fix ===== */
body {
  overflow-y: scroll; /* Always show scrollbar space to prevent layout shift */
}

body.modal-open {
  overflow: hidden;
}

/* ===== Header Should Stay Fixed/Sticky ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* Ensure header maintains its background color */
  background-color: black;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* When header is scrolled, add shadow */
.header.scrolled {
  background-color: rgba(12, 12, 12, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ===== Modal Styling ===== */
.blog-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
  overflow-y: auto;
  padding: 40px 20px;
}

.blog-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-modal {
  background-color: white;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.blog-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  color: #333;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-modal-close:hover {
  color: #d4af37;
}

/* Ensure proper scrolling on modal content */
.blog-modal-content {
  padding: 40px;
  max-height: calc(90vh - 300px);
  overflow-y: auto;
}

/* ===== Prevent Layout Shift on Scrollbar ===== */
html {
  scrollbar-gutter: stable;
}

/* For older browsers, use this approach */
body::before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  display: none;
}

body.modal-open::before {
  display: block;
}
/* ===============================
   GLOBAL BUTTON ALIGN FIX (DESKTOP)
   =============================== */

/* Make all cards behave consistently */
@media (min-width: 769px) {

  /* Package cards (index + packages page) */
  .package-card,
  .package-page-card,
  .card,
  .image-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  /* Content area should grow equally */
  .package-content,
  .package-page-content,
  .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  /* Footer area stays at bottom */
  .package-footer,
  .package-page-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Force buttons to same baseline */
  .package-card .btn,
  .package-page-card .btn,
  .card .btn,
  .image-card .btn,
  .package-card button,
  .package-page-card button {
    margin-top: auto;
    align-self: center;
    min-width: 140px;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
  }

  /* Fix image height consistency */
  .package-img,
  .package-page-img,
  .card img,
  .image-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
  }
}

/* ===============================
   BUTTON VISUAL CONSISTENCY
   =============================== */

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Prevent button shifting on hover */
.btn:hover,
button:hover {
  transform: translateY(-2px);
}

/* ===============================
   SAFETY: NO EFFECT ON MOBILE
   =============================== */
@media (max-width: 768px) {
  .package-card,
  .package-page-card,
  .card,
  .image-card {
    height: auto;
  }
}
/* ==============================
   DESTINATION CARD BUTTON ALIGN
   ============================== */

.destination-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Content area grows */
.destination-card .destination-content {
  flex: 1;
}

/* Button always sticks to bottom */
.destination-card .btn,
.destination-card .inquire-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Center button if needed */
.destination-card .btn {
  align-self: center;
}
.destination-card button,
.destination-card a {
  margin-top: auto;
  align-self: center;
}
.nav-mobile {
    display: none;
}

.nav-mobile.active {
    display: block;
}
@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}
.page-hero,
.featured-blog-section {
    width: 100%;
    overflow-x: hidden;
}

