/* ═══ CSS VARIABLES ═══ */
:root {
  --green: #2d5a27;
  --green-light: #5a8f52;
  --green-pale: #e8f0e6;
  --dark: #1a1a1a;
  --dark2: #111;
  --muted: #6b7280;
  --pastel: #a8c4a0;
  --cream: #faf8f4;
  --white: #ffffff;
  --gold: #c9a84c;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Jost", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-up.show,
.fade-left.show,
.fade-right.show {
  opacity: 1;
  transform: none;
}

/* ─── SHARED BUTTONS ─── */
.btn-green {
  background: var(--green);
  color: #fff;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 2px solid var(--green);
  transition:
    background 0.3s,
    color 0.3s;
  text-decoration: none;
}
.btn-green:hover {
  background: #fff;
  color: var(--green);
  border: 1px solid var(--green)
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 22px;
  transition:
    background 0.3s,
    color 0.3s;
  text-decoration: none;
}
.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-white-outline:hover {
  background: #fff;
  color: var(--green);
  border-color: #fff;
}

/* ─── SECTION LABEL ─── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
}
.section-title span {
  color: var(--green);
}
.section-divider {
  width: 50px;
  height: 2px;
  background: var(--green);
  margin-top: 14px;
}

/* ═══ NAVBAR ═══ */
.navbar {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px 0;
  z-index: 1000;
}
.navbar-brand img{
   width: 140px;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark) !important;
  padding: 8px 16px !important;
  transition: color 0.3s;
}
.nav-link:hover {
  color: var(--green) !important;
}
.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}
.dropdown-item {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 1px;
  padding: 10px 20px;
  color: var(--dark);
  transition:
    background 0.2s,
    color 0.2s;
}
.dropdown-item:hover {
  background: var(--green-pale);
  color: var(--green);
}

/* ═══ HERO ═══ */
#hero {
  min-height: 92vh;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(45, 90, 39, 0.4) 100%),
    url("https://images.unsplash.com/photo-1478720568477-152d9b164e26?w=1600&q=85")
      center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-content {
  max-width: 680px;
  padding: 60px 0;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══ WORLD CLASS ═══ */
#worldclass {
  padding: 100px 0;
  background: var(--cream);
}
.wc-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.wc-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 14px;
}
.wc-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.wc-body {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.9;
  margin-bottom: 20px;
}
.wc-check {
  font-size: 0.82rem;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wc-check i {
  color: var(--green);
  font-size: 0.4rem;
}

/* ═══ PRODUCTIONS (Our Productions) ═══ */
#productions {
  padding: 100px 0;
  background: #fff;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.prod-card {
  position: relative;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
}
.prod-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.prod-card:hover img {
  transform: scale(1.06);
}
.prod-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 40, 18, 0.85) 0%,
    transparent 55%
  );
  transition: background 0.4s;
}
.prod-card:hover .prod-overlay {
  background: linear-gradient(
    to top,
    rgba(20, 40, 18, 0.9) 0%,
    rgba(45, 90, 39, 0.3) 100%
  );
}
.prod-info {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  color: #fff;
}
.prod-info h5 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 6px;
}
.prod-info p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
}
.prod-card:hover .prod-info p {
  opacity: 1;
  transform: none;
}
@media (max-width: 768px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-card {
    height: 260px;
  }
}

/* ═══ MEET THE BRAND ═══ */
#meet {
  padding: 100px 0;
  background: var(--green);
  position: relative;
}
#meet::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/cubes.png")
    repeat;
  opacity: 0.04;
}
.meet-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.meet-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}
.meet-body {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.87rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ═══ EXPERTISE (Services) ═══ */
#expertise {
  padding: 100px 0;
  background: var(--cream);
}
.exp-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  cursor: pointer;
}
.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.exp-card:hover img {
  transform: scale(1.05);
}
.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 10, 0.8) 0%,
    transparent 60%
  );
}
.exp-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  color: #fff;
}
.exp-info h5 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.exp-info p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

/* ═══ STATS ═══ */
#stats {
  padding: 100px 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(20, 50, 15, 0.7) 100%),
    url("https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1400&q=80")
      center/cover no-repeat fixed;
  position: relative;
}
.stats-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}
.stats-sub {
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 60px;
}
.stat-box {
  text-align: center;
  padding: 20px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--pastel);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ═══ GALLERY (Iconic Locations) ═══ */
#lovestories {
  padding: 100px 0;
  background: #fff;
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  height: 280px;
}
.gallery-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  height: 280px;
}
.gallery-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / 3;
  height: 580px;
}
.gallery-item:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
  height: 280px;
}
.gallery-item:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
  height: 280px;
}
.gallery-item:nth-child(6) {
  grid-column: 1 / 3;
  grid-row: 3;
  height: 260px;
}
.gallery-item:nth-child(7) {
  grid-column: 3;
  grid-row: 3;
  height: 260px;
}
.gallery-cta-block {
  background: var(--green-pale);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gallery-cta-block h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.gallery-cta-block p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2;
    height: 220px;
  }
  .gallery-item:nth-child(6) {
    grid-column: 1 / 3;
  }
}

/* ═══ WHY CHOOSE US ═══ */
#whychoose {
  padding: 100px 0;
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(45, 90, 39, 0.15);
}
.why-item {
  padding: 36px 28px;
  border-right: 1px solid rgba(45, 90, 39, 0.15);
  border-bottom: 1px solid rgba(45, 90, 39, 0.15);
  transition: background 0.3s;
  position: relative;
}
.why-item:hover {
  background: var(--green-pale);
}
.why-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(45, 90, 39, 0.12);
  line-height: 1;
  margin-bottom: 10px;
}
.why-icon {
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 14px;
}
.why-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.why-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══ TESTIMONIALS ═══ */
#testimonials {
  padding: 100px 0;
  background: #fff;
}
.testi-track-wrap {
  overflow: hidden;
  position: relative;
}
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.testi-card {
  min-width: calc(33.33% - 16px);
  background: var(--cream);
  padding: 36px;
  border-left: 3px solid var(--green);
  flex-shrink: 0;
}
.testi-quote {
  font-size: 2.5rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--font-serif);
}
.testi-text {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.testi-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.testi-role {
  font-size: 0.72rem;
  color: var(--green-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.testi-nav {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-btn:hover {
  background: var(--green);
  color: #fff;
}
@media (max-width: 768px) {
  .testi-card {
    min-width: calc(100% - 0px);
  }
}

/* ═══ AWARDS ═══ */
#awards {
  padding: 100px 0;
  background: var(--green);
}
.awards-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.awards-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 560px;
}
.award-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px 24px;
  text-align: center;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.award-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}
.award-badge i {
  font-size: 2rem;
  color: var(--pastel);
  margin-bottom: 14px;
  display: block;
}
.award-badge h6 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 6px;
}
.award-badge p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

/* ═══ CLIENT LOGOS ═══ */
#clients {
  padding: 80px 0;
  background: var(--cream);
  overflow: hidden;
}
.logo-track-wrap {
  overflow: hidden;
  position: relative;
}
.logo-track-wrap::before,
.logo-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}
.logo-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.logo-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}
.logo-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: logoScroll 30s linear infinite;
  width: max-content;
}
.logo-track:hover {
  animation-play-state: paused;
}
@keyframes logoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.logo-item {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  filter: grayscale(1);
  transition:
    opacity 0.3s,
    filter 0.3s;
  flex-shrink: 0;
}
.logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
}
.logo-item span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* ═══ INSTAGRAM ═══ */
#instagram {
  padding: 100px 0;
  background: #fff;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.insta-item:hover img {
  transform: scale(1.08);
}
.insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(45, 90, 39, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.insta-item:hover .insta-hover {
  opacity: 1;
}
.insta-hover i {
  color: #fff;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══ BLOGS ═══ */
#press {
  padding: 100px 0;
  background: var(--cream);
}
.blog-card {
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.blog-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.blog-card:hover img {
  transform: scale(1.04);
}
.blog-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 24px 10px;
}
.blog-cat {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
}
.blog-date {
  font-size: 0.72rem;
  color: var(--muted);
}
.blog-body {
  padding: 0 24px 28px;
}
.blog-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.blog-card:hover .blog-title {
  color: var(--green);
}
.blog-excerpt {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ═══ FAQ ═══ */
#faq {
  padding: 100px 0;
  background: #fff;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px 0;
  cursor: pointer;
}
.faq-q {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q i {
  color: var(--green);
  transition: transform 0.3s;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
}
.faq-a {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.9;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 14px;
}

/* ═══ FINAL CTA ═══ */
#finalcta {
  padding: 120px 0;
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(20, 50, 15, 0.72) 100%
    ),
    url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?w=1400&q=80")
      center/cover no-repeat fixed;
  text-align: center;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto 40px;
}
.cta-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
  min-width: 240px;
}

/* ═══ DESTINATIONS ═══ */
#destinations {
  padding: 100px 0;
  background: #fff;
}
.dest-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.dest-card:hover img {
  transform: scale(1.06);
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 50%);
}
.dest-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
}
.dest-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: #fff;
}
.dest-city {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.dest-count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ═══ FOOTER ═══ */
footer {
  background: var(--dark2);
  padding: 32px 0 0;
  color: rgba(255, 255, 255, 0.5);
}
.footer-brand {
  width: 140px;
}
.footer-brand em {
  color: var(--green-light);
  font-style: italic;
}
.footer-desc {
  font-size: 0.82rem;
  /* line-height: 1.9; */
  margin-bottom: 24px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-right: 8px;
  transition: all 0.3s;
  text-decoration: none;
}
.social-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding-left: 0;
}
.footer-links li {
  /* margin-bottom: 10px; */
}
.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--green-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 10px;
  font-size: 0.75rem;
}

/* ═══ WHATSAPP FLOAT ═══ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ═══ SCROLL TO TOP ═══ */
#scrollTop {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 9998;
  transition: all 0.3s;
}
#scrollTop:hover {
  background: var(--dark);
}
#scrollTop.visible {
  display: flex;
}

.service-hero {
  height: 60vh; 
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.process-step {
  padding: 40px;
  background: #fdfcf9;
  border-bottom: 1px solid #eee;
}
.step-number {
  font-family: "Cormorant Garamond";
  font-size: 4rem;
  color: var(--green-light);
  opacity: 0.3;
  line-height: 1;
}
.sidebar-card {
  background: var(--green);
  color: white;
  padding: 30px;
  position: sticky;
  top: 100px;
}
/* ═══ RESPONSIVE OVERRIDES ═══ */

/* --- Large Tablets & Laptops (Max 1200px) --- */
@media (max-width: 1200px) {
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Tablets (Max 992px) --- */
@media (max-width: 992px) {
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-btns {
    justify-content: center;
  }
  
  section {
    padding: 60px 0 !important; /* Reduce section spacing on mobile */
  }

  .wc-img, .meet-img {
    height: 400px;
    margin-bottom: 30px;
  }

  .stats-title {
    margin-bottom: 30px;
  }
  
  .stat-box {
    margin-bottom: 30px;
  }

  .award-badge {
    margin-bottom: 15px;
  }
}

/* --- Mobile Landscape & Large Phones (Max 768px) --- */
@media (max-width: 768px) {
  /* Already partially covered in your CSS, but consolidated here */
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    display: flex;
    flex-direction: column; /* Stack gallery for better visibility */
    gap: 15px;
  }
  
  .gallery-item, 
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7) {
    height: 300px !important;
    width: 100%;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testi-card {
    min-width: 100%;
    padding: 25px;
  }

  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom .text-end {
    text-align: center !important;
    margin-top: 10px;
  }
}

/* --- Small Phones (Max 576px) --- */
@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .dest-info{
    left: 10px;
    right: 10px;
  }
  .dest-card{
    height: 200px;
  }
  .hero-btns .btn-green, 
  .hero-btns .btn-white-outline {
    width: 100% !important;
    display: block !important;
    text-align: center;
  }

  .prod-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-form {
    flex-direction: column;
    width: 100%;
  }

  .cta-form input {
    width: 100%;
    margin-bottom: 10px;
  }

  .cta-form .btn-green {
    width: 100%;
  }

  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  #scrollTop {
    bottom: 75px;
    right: 20px;
    width: 38px;
    height: 38px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }

  .logo-track {
    gap: 30px;
    animation: logoScroll 15s linear infinite; /* Speed up for smaller screens */
  }
}

/* --- Fix for Touch Devices (Hovers) --- */
@media (hover: none) {
  .prod-info p {
    opacity: 1;
    transform: none;
  }
  .prod-overlay {
    background: linear-gradient(to top, rgba(20, 40, 18, 0.8) 0%, transparent 60%);
  }
  .insta-hover {
    opacity: 0.2; /* Show icons slightly so users know they are clickable */
  }
}

 
/* ✨ Hero */
.about-hero {
  height: 70vh;
  background:
  linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1600');
  background-size: cover;
  background-position: center;
  display:flex;
  align-items:center;
  text-align:center;
  color:#fff;
}

/* 💎 Glass Card */
.glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 16px;
}

/* 📊 Timeline */
.timeline {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}
.timeline-item {
  margin-bottom: 30px;
  position: relative;
}
.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: -27px;
  top: 5px;
}

/* 🧱 Feature Cards */
.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  transition: 0.4s;
  border: 1px solid #eee;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


/* FILTER */
.gallery-filter button{
border:none;
background:none;
margin:0 10px;
font-weight:500;
color:var(--muted);
position:relative;
}
.gallery-filter button.active,
.gallery-filter button:hover{
color:var(--green);
}
.gallery-filter button.active::after{
content:'';
position:absolute;
bottom:-6px;
left:0;
width:100%;
height:2px;
background:var(--gold);
}

/* GRID */
.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

/* ITEM */
.gallery-item{
position:relative;
overflow:hidden;
border-radius:12px;
}
.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}

/* OVERLAY */
.gallery-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.6);
opacity:0;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:#fff;
transition:.4s;
}
.gallery-item:hover img{transform:scale(1.1);}
.gallery-item:hover .gallery-overlay{opacity:1;}
.gallery-overlay i{transition:.3s;}
.gallery-item:hover i{transform:scale(1.3);}

/* LIGHTBOX */
.lightbox{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,.9);
z-index:9999;
justify-content:center;
align-items:center;
}
.lightbox img{
max-width:90%;
max-height:80%;
border-radius:10px;
}
.lightbox .close{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:#fff;
cursor:pointer;
}
 

/* RESPONSIVE */
@media(max-width:992px){
.gallery-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:576px){
.gallery-grid{grid-template-columns:1fr;}
}
.blog-card {
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  transition:.4s;
}
.blog-card:hover {
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}
/* SIDEBAR CARD */
.sidebar-card-2 {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
  border: 1px solid #f1f1f1;
}
.sidebar-card-2:hover {
  transform: translateY(-5px);
}

/* TITLE */
.sidebar-title {
  font-family: var(--font-serif);
  position: relative;
  margin-bottom: 20px;
}
.sidebar-title::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold);
  display: block;
  margin-top: 8px;
}

/* LIST */
.sidebar-list {
  list-style: none;
  padding: 0;
}
.sidebar-list li {
  margin-bottom: 12px;
}

/* LINKS */
.sidebar-list a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

/* ARROW ICON */
.sidebar-list a::after {
  content: '\f105';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  opacity: 0;
  transition: 0.3s;
}

/* HOVER EFFECT */
.sidebar-list a:hover {
  color: var(--green);
  padding-left: 5px;
}
.sidebar-list a:hover::after {
  opacity: 1;
}