/* ========================================= */
/* GLOBAL STYLES                             */
/* ========================================= */
:root {
  --primary: #0f4c81;
  --primary-900: #030f1a;
  --secondary: #f5a623;
  --secondary-300: #f8ba4d;
  --muted: #f1f5f9;
  --dark: #1e293b;
  --slate: #64748b;
  --card-shadow: 0 4px 24px rgba(15, 76, 129, 0.08);
  --card-hover: 0 12px 40px rgba(15, 76, 129, 0.18);
  --glass: 0 8px 32px rgba(15, 76, 129, 0.12);
  --glass-lg: 0 16px 48px rgba(15, 76, 129, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 88px;
}

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

a,
button {
  transition: all 0.25s ease;
}

a {
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
}

.site-container {
  max-width: 1536px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section-pad {
  padding: 2rem 0;
}

.bg-muted {
  background: var(--muted);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--secondary), var(--primary), #1abc9c);
}

/* ========================================= */
/* HEADER & NAVIGATION                       */
/* ========================================= */
.site-header {
  margin-bottom: -80px;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: #fff;
  border-bottom-color: #f1f5f9;
  box-shadow: var(--glass);
}

.site-header .navbar {
  min-height: 80px;
  padding: 0;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}

.brand span {
  color: white;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
}

.brand small {
  margin-top: 5px;
  color: var(--secondary-300);
  font-family: Poppins, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.site-header.scrolled .brand span {
  color: var(--primary);
}

.site-header.scrolled .brand small {
  color: var(--secondary);
}

.navbar-toggler {
  border: 0;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: none !important;
}

.site-header.scrolled .navbar-toggler {
  color: var(--primary);
}

.navbar-nav {
   gap: 0.35rem !important;
}

.nav-link {
  position: relative;
  padding: 4px 0.5rem !important;
  color: rgba(255, 255, 255, 0.78);
  font-family: Poppins, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-indicator {
  position: absolute;
  bottom: 0.2rem;
  height: 2px;
  background-color: var(--secondary);
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary) !important;
  background: transparent;
}

.site-header.scrolled .nav-link {
  color: #475569 !important;
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--primary);
  background: transparent;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-family: Poppins, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
}

.site-header.scrolled .nav-phone {
  color: var(--primary);
}

.btn-primary-site {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary));
  padding: 0.8rem 1.55rem;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(245, 166, 35, 0.25);
}

.btn-primary-site:hover {
  transform: translateY(-4px);
  color: #fff;
  filter: brightness(1.05);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.4);
}

/* --- Mobile Action Buttons Layout --- */
.mobile-action-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  margin-top: 0.75rem;
  padding: 0.75rem 0.25rem 0.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* --- Call Now Outline Button --- */
.btn-outline-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex: 1;
  border: 1.5px solid var(--primary);
  border-radius: 12px;
  background: transparent;
  padding: 0.65rem 1rem;
  color: var(--primary);
  font-family: Poppins, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-outline-call:hover {
  background: var(--primary);
  color: #fff;
}

/* --- Mobile Plan Trip Button Adjustment --- */
.mobile-plan-btn {
  flex: 1;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  text-decoration: none;
  margin: 0;
  border-radius: 12px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.55rem;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  transform: translateY(-4px);
  border-color: #fff;
  background: #fff;
  color: var(--primary);
}

/* ========================================= */
/* HERO SECTION                              */
/* ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(3, 15, 26, 0.7), rgba(3, 15, 26, 0.5), rgba(3, 15, 26, 0.9));
}

.hero-glow {
  position: absolute;
  top: 33%;
  left: 50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.1);
  filter: blur(64px);
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 10rem;
  padding-bottom: 4rem;
}

.hero-copy-wrap {
  max-width: 56rem;
}

@media (min-width: 992px) {
  .hero-copy-wrap {
    margin: 0 8rem;
  }
}

.hero-pill,
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.12);
  padding: 0.4rem 1rem;
  color: #a86b08;
  font-family: Poppins, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-pill {
  color: var(--secondary-300);
  border-color: rgba(245, 166, 35, 0.3);
  background: rgba(245, 166, 35, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  backdrop-filter: blur(4px);
}

.hero-section h1 {
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 700;
}

.hero-section h1 span {
  color: var(--secondary);
  font-style: italic;
}

.hero-section p {
  max-width: 42rem;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.65;
}

.hero-actions {
  margin-bottom: 3.5rem;
}

.hero-stats {
  max-width: 56rem;
}

.stat-card {
  height: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  backdrop-filter: blur(4px);
}

.stat-card strong {
  display: block;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.75);
  font-family: Poppins, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.discover-link {
  position: relative;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  align-self: center;
  padding-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: Poppins, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: bounce 1.8s ease-in-out infinite;
}

.discover-link:hover {
  color: #fff;
}

@keyframes bounce {

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

  50% {
    transform: translateY(8px);
  }
}

.section-title {
  max-width: 42rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-title h2,
section h2 {
  margin: 0 0 1rem;
  color: var(--dark);
  font-size: clamp(1.875rem, 4vw, 2.45rem);
  line-height: 1.25;
  font-weight: 700;
}

.section-title h2 span,
section h2 span {
  color: var(--primary);
}

.section-title p,
section p {
  color: var(--slate);
  line-height: 1.7;
}

.section-title.light h2,
.section-title.light p {
  color: #fff;
}

.section-title.light p {
  color: rgba(255, 255, 255, 0.6);
}

.section-title.light h2 span {
  color: var(--secondary);
}

.dark-badge {
  color: var(--secondary);
  border-color: rgba(245, 166, 35, 0.3);
  background: rgba(245, 166, 35, 0.2);
}

/* ========================================= */
/* ABOUT SECTION                             */
/* ========================================= */
.about-image {
  position: relative;
  max-width: 32rem;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--glass-lg);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(0deg, rgba(3, 15, 26, 0.6), transparent 52%);
}

.about-globe {
  position: absolute;
  top: -1rem;
  left: -1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border: 2px solid rgba(245, 166, 35, 0.3);
  border-radius: 16px;
  background: rgba(245, 166, 35, 0.2);
  color: var(--secondary);
  font-size: 1.7rem;
}

.about-badge {
  position: absolute;
  right: -1rem;
  bottom: -1.5rem;
  z-index: 3;
  padding: 1rem 1.25rem;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--card-hover);
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-badge strong {
  display: block;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.about-badge span {
  color: var(--slate);
  font-family: Poppins, sans-serif;
  font-size: 0.75rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.feature-grid div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(15, 76, 129, 0.1);
  border-radius: 16px;
  background: rgba(15, 76, 129, 0.05);
  padding: 0.75rem;
  color: #334155;
  font-family: Poppins, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
}

.feature-grid i,
.why-card i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 12px;
  background: rgba(15, 76, 129, 0.1);
  color: var(--primary);
}

/* ========================================= */
/* SERVICES SECTION                          */
/* ========================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  min-height: 15rem;
  overflow: hidden;
  border-radius: 24px;
  padding: 1.5rem;
  color: #fff;
  box-shadow: var(--card-shadow);
}

.service-card::before,
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  z-index: 1;
  width: 60%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skew(-15deg);
  transition: left 0.5s ease;
}

.service-card:hover::before,
.glass-card:hover::before {
  left: 130%;
}

.service-card:hover,
.destination-card:hover,
.review-small:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 1.3rem;
}

.service-card h3,
.destination-card h3,
.why-card h3,
.step-card h3 {
  margin-bottom: 0.65rem;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
}

.btn-service-enquire {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-service-enquire i {
  font-size: 0.95rem;
}

.btn-service-enquire:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.gradient-0 {
  background: linear-gradient(135deg, #0f4c81, #1565a8);
}

.gradient-1 {
  background: linear-gradient(135deg, #f5a623, #f8ba4d);
}

.gradient-2 {
  background: linear-gradient(135deg, #1abc9c, #16a085);
}

.gradient-3 {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.gradient-4 {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.gradient-5 {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.gradient-6 {
  background: linear-gradient(135deg, #10b981, #059669);
}

.gradient-7 {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.gradient-8 {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.gradient-9 {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

/* ========================================= */
/* DESTINATIONS (DOMESTIC & INTERNATIONAL)   */
/* ========================================= */
.destination-card {
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(241, 245, 249, 0.8);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--card-shadow);
}

.destination-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

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

.destination-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 15, 26, 0.75), transparent 58%);
}

.dest-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  border-radius: 999px;
  background: var(--secondary);
  padding: 0.25rem 0.75rem;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.dest-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.dest-info-overlay h3 {
  margin-bottom: 0.25rem !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 1rem !important;
  font-weight: 700;
  color: #fff;
}

.dest-info-overlay p {
  margin-bottom: 0;
  font-size: 0.70rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  gap: 0.35rem;
  align-items: flex-start;
  line-height: 1.4;
}

.dest-info-overlay p i {
  margin-top: 0.15rem;
  font-size: 0.75rem;
}

.destination-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.25rem;
  background: #fff;
}

.pricing-text {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.btn-enquire-dest {
  border: 0;
  border-radius: 8px;
  background: var(--primary);
  padding: 0.4rem 1rem;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.btn-enquire-dest:hover {
  background: var(--primary-900);
}

/* ========================================= */
/* CALL TO ACTION (CTA)                      */
/* ========================================= */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-300));
}

.cta-box {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.cta-box>i {
  display: block;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 2rem;
}

.cta-box h2 {
  color: #fff;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-rings::before,
.cta-rings::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 3s ease-in-out infinite;
}

.cta-rings::before {
  width: 240px;
  height: 240px;
}

.cta-rings::after {
  width: 430px;
  height: 430px;
  animation-delay: 0.5s;
}

@keyframes pulseRing {

  0%,
  100% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.cta-white,
.cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.35rem;
  border-radius: 16px;
  padding: 0.85rem 1.75rem;
  font-family: Poppins, sans-serif;
  font-weight: 600;

  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-white {
  background: #fff;
  color: var(--secondary);
}

.cta-outline {
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}


/* --- Hover effect for White Button --- */
.cta-white:hover {
  transform: translateY(-4px); /* Lifts the button up */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Adds a drop shadow below it */
  background: #fff !important; /* Forces the background to stay white */
  color: var(--secondary) !important;
}

/* --- Hover effect for Outline Button --- */
.cta-outline:hover {
  transform: translateY(-4px); /* Lifts the button up */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Adds a drop shadow below it */
  background: rgba(255, 255, 255, 0.15) !important; /* Forces background to stay the same */
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}


/* ========================================= */
/* WHY CHOOSE US                             */
/* ========================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}

.why-card {
  height: 100%;
  border: 1px solid rgba(241, 245, 249, 0.8);
  border-radius: 24px;
  background: #fff;
  padding: 1.4rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.why-card:hover {
  box-shadow: 0 0 15px 5px rgba(59, 130, 246, 0.4);
}

.why-card i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(15, 76, 129, 0.1);
  color: var(--primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.why-card:hover i {
  background: var(--primary-900);
  color: #fff;
}

.why-card p {
  margin: 0;
  font-size: 0.82rem;
}

/* ========================================= */
/* STEPS TO BOOK                             */
/* ========================================= */
.steps-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 10%, rgba(245, 166, 35, 0.15), transparent 22%), linear-gradient(135deg, var(--primary-900), #061f35);
}

.step-card {
  position: relative;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05); /* slightly darker for the line to be less intrusive, or keep as is */
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.3s ease;
  z-index: 1;
}

.step-card:hover {
  transform: translateY(-8px);
}

#stepsGrid {
  position: relative;
}

#stepsGrid::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: 12.5%;
  width: 75%;
  height: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 0;
  display: none;
}

@media (min-width: 992px) {
  #stepsGrid::before {
    display: block;
  }
}

.step-number {
  margin-bottom: 0.75rem;
  color: rgba(245, 166, 35, 0.65);
  font-family: Poppins, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 16px;
  background: rgba(245, 166, 35, 0.2);
  color: var(--secondary);
  font-size: 1.45rem;
}

.step-card h3 {
  color: #fff;
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* ========================================= */
/* TESTIMONIALS                              */
/* ========================================= */
.testimonial-feature {
  position: relative;
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  padding: 2rem;
  box-shadow: var(--glass-lg);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(15, 76, 129, 0.08);
  font-size: 3.5rem;
}

.stars {
  color: var(--secondary);
  letter-spacing: 0.1em;
}

.testimonial-feature p {
  margin: 1rem 0 1.5rem;
  color: var(--dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-person img {
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  object-fit: cover;
}

.review-person strong,
.review-person span {
  display: block;
  font-family: Poppins, sans-serif;
}

.review-person strong {
  font-size: 0.9rem;
}

.review-person span {
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 500;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 48rem;
  margin: 0 auto;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  color: var(--dark);
}

.icon-btn:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.review-dots {
  display: flex;
  gap: 0.4rem;
}

.review-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
}

.review-dots button.active {
  width: 1.5rem;
  background: var(--secondary);
}

.review-small {
  height: 100%;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  background: #fff;
  padding: 1.25rem;
  box-shadow: var(--card-shadow);
}

.review-small p {
  display: -webkit-box;
  min-height: 4rem;
  overflow: hidden;
  margin: 0.75rem 0 1rem;
  color: #475569;
  font-size: 0.875rem;
  -webkit-box-orient: vertical;
}

/* ========================================= */
/* GALLERY SECTION                           */
/* ========================================= */
.gallery-grid {
  columns: 2;
  column-gap: 1rem;
}

.gallery-item {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  break-inside: avoid;
  cursor: pointer;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 76, 129, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

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

.gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: attr(data-category);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2rem 1rem 0.8rem;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 2;
}

.gallery-item:hover::after {
  transform: translateY(0);
}

/* ========================================= */
/* FAQs SECTION                              */
/* ========================================= */
.faq-wrap {
  max-width: 48rem;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 0.75rem;
  overflow: hidden;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  background: transparent;
}

.accordion-button {
  border-radius: 16px !important;
  background: transparent;
  color: var(--dark);
  font-family: Poppins, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--primary);
}

.accordion-body {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========================================= */
/* CONTACT SECTION                           */
/* ========================================= */
.contact-wrap {
  max-width: 64rem;
  margin: 0 auto;
}

.contact-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--primary);
  padding: 2rem;
  color: #fff;
}

.contact-card::after {
  content: "";
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.contact-card h3,
.enquiry-form h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-card p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.contact-card a,
.contact-card div {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: #fff;
}

.contact-card i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
}

.contact-card small,
.contact-card span {
  display: block;
}

.contact-card small {
  color: rgba(255, 255, 255, 0.6);
  font-family: Poppins, sans-serif;
  font-size: 0.75rem;
}

.contact-card span {
  font-family: Poppins, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 16px;
  background: #25d366;
  padding: 1rem 1.5rem;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-weight: 600;
}

.btn-whatsapp:hover {
  transform: translateY(-4px);
  background: #20bd5a;
  color: #fff;
}

.enquiry-form {
  height: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
  padding: 1.75rem;
  box-shadow: var(--card-shadow);
}

.form-control {
  min-height: 3.1rem;
  border-color: #e2e8f0;
  border-radius: 16px;
  color: var(--dark);
  font-size: 0.9rem;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(15, 76, 129, 0.18);
}

.enquiry-form>p {
  margin: 1rem 0 0;
  text-align: center;
  color: #94a3b8;
  font-size: 0.78rem;
}

.map-frame {
  
  display: block; /* Ensures no weird inline bottom spacing */
  width: 100%;
  height: 350px; /* Slightly taller for ultra-wide screens */
  border: 0;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
}

/* ========================================= */
/* SCROLL ANIMATIONS & FLOATING ACTIONS      */
/* ========================================= */
.scroll-to-top {
  position: fixed;
  right: 1.75rem;
  bottom: 5.5rem;
  z-index: 1199;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.scroll-to-top:hover {
  background: var(--primary-900);
  color: #fff;
}

.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1200;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 0;
  border-radius: 18px;
  background: #25d366;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Orange ripple rings around floating whatsapp */
.floating-whatsapp::before,
.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30%;
  background: transparent;
  border: 3.5px solid var(--secondary);
  animation: waRipple 2.8s ease-out infinite;
  pointer-events: none;
}

.floating-whatsapp::after {
  animation-delay: 1.1s;
}

@keyframes waRipple {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.3); opacity: 0; }
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
  background: #25d366;
  color: #fff;
}

/* ========================================= */
/* MEDIA QUERIES (Mobile & Tablet)           */
/* ========================================= */
@media (min-width: 768px) {
  .section-pad {
    padding: 3rem 0;
  }

  .gallery-grid {
    columns: 3;
  }
}

@media (min-width: 1024px) {
  .site-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .about-image {
    margin-left: 0;
  }

  .gallery-grid {
    columns: 4;
  }
}



@media (max-width: 1199px) {
  .navbar-collapse {
    margin-top: 0.5rem;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    background: #fff;
    padding: 0.75rem 0.75rem 0.75rem;
    box-shadow: var(--glass);
  }

  /* Each nav item full width */
  .navbar-nav {
    gap: 0.1rem;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link,
  .site-header .nav-link,
  .site-header.scrolled .nav-link {
    color: #475569;
    border-radius: 12px;
    padding: 0.7rem 1rem !important;
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    width: 100%;
    transition: color 0.2s ease, background 0.2s ease;
  }
    .feature-grid,
  .service-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }


  .nav-link:hover,
  .site-header .nav-link:hover,
  .site-header.scrolled .nav-link:hover {
    color: var(--primary) !important;
    background: rgba(15, 76, 129, 0.06) !important;
  }

  .nav-link.active,
  .site-header .nav-link.active,
  .site-header.scrolled .nav-link.active {
    color: var(--primary) !important;
    background: rgba(15, 76, 129, 0.09) !important;
    font-weight: 600;
  }
}



@media (max-width: 767px) {
  .site-header .navbar {
    min-height: 64px;
  }

  .site-header {
    margin-bottom: -64px;
  }

  .brand span {
    font-size: 1.25rem;
  }

  .hero-content {
    padding-top: 8rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .feature-grid,
  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }



  .testimonial-controls {
    padding: 0 0.25rem;
  }
}

/* ========================================= */
/* FOOTER STYLES                             */
/* ========================================= */
.site-footer {
  background-color: var(--primary-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
  font-family: Poppins, sans-serif;
  font-size: 0.875rem;
}

.site-footer .brand {
  margin-bottom: 1.5rem;
  color: #fff;
}

.site-footer .brand span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.site-footer .brand small {
  margin-top: 5px;
  color: var(--secondary);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.footer-desc {
  line-height: 1.7;
}

.footer-heading {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: "•";
  color: var(--secondary);
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.1rem;
}

.btn-social:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
}

@media (max-width: 1199.98px) {

  .navbar-nav {
    gap: 1rem;
  }

  .nav-link {
    color: #475569 !important;
    padding: 0.5rem 0.5rem !important;
    font-size: 1.05rem;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary) !important;
    background: transparent !important;
  }

  .nav-indicator {
    display: none !important;
  }

  .navbar-toggler[aria-expanded="true"] i::before {
    content: "\f62a";
    /* Bootstrap Icon bi-x */
  }
}

/* ========================================= */
/* SCROLL ANIMATIONS UTILITIES               */
/* ========================================= */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none !important;
}

.fade-in-up { transform: translateY(40px); }
.fade-in-down { transform: translateY(-40px); }
.fade-in-left { transform: translateX(-40px); }
.fade-in-right { transform: translateX(40px); }
.zoom-in { transform: scale(0.95); }

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }