/* =========================================================
   AURA LEAF HOSPITALITY — GLOBAL STYLES
   ========================================================= */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #214D38;
  --primary-dark: #183827;
  --primary-light: #2d6b4f;
  --secondary: #C5A46D;
  --secondary-dark: #a8864e;
  --secondary-light: #d4b98a;
  --bg: #F8F5EF;
  --white: #FFFFFF;
  --dark: #1F2937;
  --gray: #6B7280;
  --light-gray: #E5E7EB;
  --card-bg: #FFFFFF;
  --border: rgba(33, 77, 56, 0.12);
  --shadow-sm: 0 2px 8px rgba(33, 77, 56, 0.08);
  --shadow-md: 0 8px 24px rgba(33, 77, 56, 0.12);
  --shadow-lg: 0 20px 60px rgba(33, 77, 56, 0.15);
  --shadow-gold: 0 8px 24px rgba(197, 164, 109, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: 1.25rem;
}

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

.section-desc {
  font-size: 1.0625rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.8;
}

.section-header { margin-bottom: 2.75rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ---------- Sections ---------- */
.section-pad { padding: 86px 0; }
.section-pad-sm { padding: 60px 0; }

.bg-white { background-color: var(--white); }
.bg-dark {
  background-color: var(--primary);
  color: var(--white);
}
.bg-dark .section-title { color: var(--white); }
.bg-dark .section-desc { color: rgba(255,255,255,0.75); }

/* Responsive section padding */
@media (max-width: 991.98px) {
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 46px 0; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 52px 0; }
  .section-pad-sm { padding: 38px 0; }
}

@media (max-width: 575.98px) {
  .section-pad { padding: 44px 0; }
  .section-pad-sm { padding: 32px 0; }
}

/* ---------- Navbar ---------- */
.navbar-main {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(197, 164, 109, 0.22);
  padding: 0.9rem 0;
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 2px 20px rgba(33, 77, 56, 0.04);
}

.navbar-main.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(197, 164, 109, 0.35);
  box-shadow: 0 4px 30px rgba(33, 77, 56, 0.08);
}

.navbar-brand-wrapper { display: flex; align-items: center; gap: 12px; }

.brand-logo-icon {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid rgba(197, 164, 109, 0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  overflow: hidden;
  padding: 2px;
}

.brand-logo-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.brand-text { line-height: 1.15; }
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  letter-spacing: 0.01em;
}
.brand-tagline {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  display: block;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.78rem !important;
  font-weight: 600;
  color: var(--dark) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 1rem;
  right: 1rem;
  height: 1.5px;
  background: var(--secondary);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-dark) !important;
}

.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* Custom premium navbar button styling */
.navbar-main .btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 1px solid rgba(197, 164, 109, 0.4);
  color: var(--white);
  padding: 0.65rem 1.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(33, 77, 56, 0.15);
}

.navbar-main .btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197, 164, 109, 0.3);
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(33, 77, 56, 0.3);
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33, 77, 56, 0.4);
  color: var(--white);
}

.btn-secondary-custom {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-gold);
}

.btn-secondary-custom:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 164, 109, 0.45);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.7rem 1.65rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 0.7rem 1.65rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-lg-custom { padding: 1rem 2.25rem; font-size: 1rem; }

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-dark);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-section .container {
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Navbar offset */
}

#intro {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(24, 56, 39, 0.88) 0%,
    rgba(33, 77, 56, 0.72) 45%,
    rgba(33, 77, 56, 0.35) 100%
  );
}

.hero-content { position: relative; z-index: 2; width: 100%; padding: 0; margin: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 164, 109, 0.2);
  border: 1px solid rgba(197, 164, 109, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  color: var(--secondary-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge i { color: var(--secondary); font-size: 0.75rem; }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title .accent {
  color: var(--secondary-light);
  font-style: italic;
  display: inline-block;
  white-space: nowrap;
  overflow: visible;
  text-align: left;
}

/* Scale down typewriter font on smaller screens to fit single line */
@media (max-width: 575.98px) {
  .hero-title .accent {
    font-size: 0.75em;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title .accent {
    font-size: 0.85em;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title .accent {
    font-size: 0.9em;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-item { text-align: left; }

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary-light);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.35rem;
}

/* ---------- Floating Hero Cards ---------- */
.hero-float-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.float-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(197, 164, 109, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.float-card-icon i { color: var(--secondary-light); font-size: 1.25rem; }

/* ---------- Page Hero Banner ---------- */
.page-hero {
  position: relative;
  height: 400px;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background-color: var(--primary-dark);
}

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

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24,56,39,0.92) 0%, rgba(33,77,56,0.80) 100%);
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero-content { position: relative; z-index: 2; }

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-desc {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.breadcrumb-custom li { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.breadcrumb-custom li a { color: var(--secondary-light); }
.breadcrumb-custom li.sep { color: rgba(255,255,255,0.35); }
.breadcrumb-custom li.active { color: var(--white); }

/* ---------- Cards ---------- */
.card-premium {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  height: 100%;
}

.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 164, 109, 0.25);
}

.card-img-wrapper {
  overflow: hidden;
  position: relative;
  height: 240px;
}

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

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

.card-body-custom { padding: 1.75rem; }

.card-badge {
  display: inline-block;
  background: rgba(33, 77, 56, 0.08);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.card-title-custom {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.card-text-custom { font-size: 0.9375rem; color: var(--gray); line-height: 1.7; }

/* ---------- Corporate Package Cards ---------- */
.packages-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.62) 0%, rgba(248,245,239,0.96) 100%),
    var(--bg);
  border-top: 1px solid rgba(197, 164, 109, 0.18);
}

.packages-section .section-header {
  margin-bottom: 2.4rem;
}

.packages-section .section-desc {
  margin-top: 0.9rem;
}

.packages-grid {
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, #fffdf9 100%);
  border: 1px solid rgba(33, 77, 56, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 35px rgba(33, 77, 56, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 164, 109, 0.28);
  box-shadow: 0 22px 48px rgba(33, 77, 56, 0.13);
}

.package-card:hover::before,
.package-card-popular::before {
  opacity: 1;
}

.package-card-popular {
  border: 1.5px solid rgba(197, 164, 109, 0.75);
  box-shadow: 0 18px 48px rgba(197, 164, 109, 0.18), 0 12px 35px rgba(33, 77, 56, 0.08);
}

.package-ribbon {
  position: absolute;
  top: 1rem;
  right: -2.45rem;
  width: 9.5rem;
  padding: 0.34rem 0;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(38deg);
  box-shadow: 0 8px 18px rgba(168, 134, 78, 0.22);
}

.package-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.15rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid rgba(33, 77, 56, 0.1);
}

.package-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  background: rgba(33, 77, 56, 0.08);
  border-radius: 14px;
  font-size: 1.35rem;
}

.package-icon-gold {
  color: var(--secondary-dark);
  background: rgba(197, 164, 109, 0.13);
}

.package-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  margin-bottom: 0.45rem;
  color: var(--primary);
  background: rgba(33, 77, 56, 0.07);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.package-kicker-gold {
  color: var(--secondary-dark);
  background: rgba(197, 164, 109, 0.14);
}

.package-title {
  margin: 0;
  color: var(--dark);
  font-size: 1.45rem;
}

.package-desc {
  min-height: 4.7rem;
  margin-bottom: 1.1rem;
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.75;
}

.package-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.package-meta span {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.7rem;
  color: var(--primary);
  background: rgba(33, 77, 56, 0.055);
  border: 1px solid rgba(33, 77, 56, 0.09);
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.package-features {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 0 0 1.45rem;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.45;
  list-style: none;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.package-features i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.02rem;
  color: var(--primary);
  background: rgba(33, 77, 56, 0.09);
  border-radius: 50%;
  font-size: 0.62rem;
}

.package-card-popular .package-features i {
  color: var(--secondary-dark);
  background: rgba(197, 164, 109, 0.16);
}

.package-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

@media (max-width: 991.98px) {
  .packages-section .section-header {
    margin-bottom: 2rem;
  }

  .package-card {
    padding: 1.65rem;
  }

  .package-desc {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .packages-section .section-header {
    text-align: left;
  }

  .packages-section .section-header .gold-divider,
  .packages-section .section-header .section-desc {
    margin-left: 0;
    margin-right: 0;
  }

  .package-card {
    padding: 1.5rem;
  }

  .package-card-head {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  .package-title {
    font-size: 1.32rem;
  }
}

@media (max-width: 575.98px) {
  .packages-grid {
    --bs-gutter-y: 1rem;
  }

  .package-card {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .package-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 1.15rem;
  }

  .package-meta {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .package-meta span {
    min-height: 34px;
    justify-content: flex-start;
    text-align: left;
  }

  .package-features {
    gap: 0.62rem;
    font-size: 0.86rem;
  }
}

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(33,77,56,0.08), rgba(33,77,56,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.service-icon i {
  font-size: 1.625rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon i { color: var(--white); }

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-desc { font-size: 0.9375rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.25rem; }

.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.service-link:hover { color: var(--secondary); gap: 0.75rem; }

/* ---------- Why Choose Us Features ---------- */
.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i { color: var(--secondary-light); font-size: 1.25rem; }

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.feature-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.6; margin: 0; }

/* Responsive adjustments for feature items */
@media (max-width: 767.98px) {
  .feature-item {
    padding: 1rem;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .feature-icon i {
    font-size: 1.1rem;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-desc {
    font-size: 0.8125rem;
  }
}

@media (max-width: 575.98px) {
  .feature-item {
    padding: 0.875rem;
    gap: 0.75rem;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
  }

  .feature-icon i {
    font-size: 1rem;
  }

  .feature-title {
    font-size: 0.9375rem;
  }

  .feature-desc {
    font-size: 0.75rem;
  }
}

/* ---------- Stats Counter ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(197, 164, 109, 0.06);
  pointer-events: none;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
}

.stat-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-card:last-child::after { display: none; }

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--secondary-light);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  height: 100%;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--secondary);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars { color: var(--secondary); margin-bottom: 1rem; font-size: 0.875rem; }

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 1rem; }

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.1rem;
}

.author-role { font-size: 0.8rem; color: var(--gray); }

/* ---------- Hotel Cards ---------- */
.hotel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.hotel-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.hotel-img-wrapper { position: relative; height: 280px; overflow: hidden; }

.hotel-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.hotel-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-gold);
}

.hotel-rating {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hotel-rating i { color: #FBBF24; }

.hotel-body { padding: 2rem; }

.hotel-location {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.hotel-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.hotel-desc { font-size: 0.9375rem; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.7; }

.hotel-amenities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; }

.amenity-tag {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(33, 77, 56, 0.07);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
}

.amenity-tag i { font-size: 0.7rem; }

.hotel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--light-gray);
}

/* ---------- MICE Cards ---------- */
.mice-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.mice-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.mice-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(33,77,56,0.08), rgba(33,77,56,0.14));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.mice-card:hover .mice-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.mice-icon i {
  font-size: 1.75rem;
  color: var(--primary);
  transition: var(--transition);
}

.mice-card:hover .mice-icon i { color: var(--white); }

.mice-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.mice-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ---------- Contact Form ---------- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-floating-custom .form-control,
.form-floating-custom .form-select {
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--dark);
  background: #FAFAF9;
  transition: var(--transition);
  padding: 1rem 1.25rem;
}

.form-floating-custom .form-control:focus,
.form-floating-custom .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(33, 77, 56, 0.1);
  background: var(--white);
  outline: none;
}

.form-label-custom {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
  display: block;
}

#inquiry-form input::placeholder,
#inquiry-form textarea::placeholder,
.newsletter-input::placeholder {
  color: rgba(107, 114, 128, 0.46);
  opacity: 1;
}

.contact-captcha {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.45fr);
  gap: 0.75rem;
  align-items: stretch;
}

.contact-captcha-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.875rem 1rem;
  color: var(--primary);
  background: rgba(33, 77, 56, 0.06);
  border: 1.5px solid rgba(33, 77, 56, 0.12);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.contact-captcha-refresh {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  background: var(--white);
  border: 1px solid rgba(33, 77, 56, 0.14);
  border-radius: 50%;
  transition: var(--transition);
}

.contact-captcha-refresh:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.contact-captcha .form-control {
  min-height: 52px;
  padding: 0.875rem 1rem;
  color: var(--dark);
  background: #FAFAF9;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.contact-captcha .invalid-feedback {
  grid-column: 1 / -1;
}

/* ---------- Contact Info Cards ---------- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: center;
  transition: var(--transition);
}

.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i { color: var(--secondary-light); font-size: 1.25rem; }

.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.3rem;
}

.contact-value { font-size: 0.95rem; color: var(--dark); font-weight: 500; }
.contact-value a { color: var(--dark); }
.contact-value a:hover { color: var(--primary); }

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,164,109,0.12) 0%, transparent 70%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,164,109,0.08) 0%, transparent 70%);
}

.cta-content { position: relative; z-index: 2; }

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta-desc { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2.5rem; }

/* ---------- Newsletter Section ---------- */
.newsletter-section {
  background: var(--bg);
  padding: 64px 0 68px;
  position: relative;
  border-top: 1px solid var(--border);
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light), var(--secondary));
}

.newsletter-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 77, 56, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-wrap {
  position: relative;
  z-index: 1;
}

.newsletter-badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-md);
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.newsletter-title span {
  color: var(--secondary);
  font-style: italic;
}

.newsletter-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 440px;
}

.newsletter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--secondary), var(--secondary-dark));
}

.newsletter-form {
  position: relative;
  z-index: 2;
}

.newsletter-input-group {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.newsletter-input {
  flex: 1;
  border: 1.5px solid var(--light-gray);
  outline: none;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.newsletter-input::placeholder {
  color: rgba(107, 114, 128, 0.46);
  opacity: 1;
}

.newsletter-input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(33, 77, 56, 0.1);
}

.newsletter-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.newsletter-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.newsletter-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newsletter-message {
  margin-top: 1rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.newsletter-success {
  background: rgba(33, 77, 56, 0.08);
  color: var(--primary);
  border: 1px solid rgba(33, 77, 56, 0.15);
}

.newsletter-error {
  background: rgba(244, 67, 54, 0.08);
  color: #C62828;
  border: 1px solid rgba(244, 67, 54, 0.2);
}

/* Responsive Newsletter */
@media (max-width: 991.98px) {
  .newsletter-section {
    padding: 54px 0;
  }

  .newsletter-desc {
    max-width: none;
    margin-bottom: 0.5rem;
  }

  .newsletter-card {
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .newsletter-section {
    padding: 46px 0;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
}

/* ---------- Client Logos ---------- */
.clients-section { padding: 60px 0; background: var(--white); }

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  background: rgba(33, 77, 56, 0.04);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.client-logo:hover {
  background: rgba(33, 77, 56, 0.08);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.client-logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.04em;
  text-align: center;
  transition: var(--transition);
}

.client-logo:hover .client-logo-text { color: var(--primary); }

/* ---------- Partners Marquee ---------- */
.partners-marquee-wrapper {
  overflow: hidden;
  padding: 3rem 0;
  position: relative;
  background: linear-gradient(180deg, rgba(33,77,56,0.02) 0%, rgba(197,164,109,0.03) 100%);
  border-top: 1px solid rgba(197,164,109,0.2);
  border-bottom: 1px solid rgba(197,164,109,0.2);
}

.partners-marquee-wrapper::before,
.partners-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
}

.partners-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--white) 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
}

.partners-marquee {
  display: flex;
  width: 100%;
}

.partners-track {
  display: flex;
  gap: 2.5rem;
  animation: marquee 45s linear infinite;
  will-change: transform;
}

.partners-track:hover {
  animation-play-state: paused;
}

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

.partner-item {
  flex-shrink: 0;
  min-width: 220px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
  border: 1px solid rgba(197,164,109,0.15);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(33,77,56,0.06);
  position: relative;
  overflow: hidden;
}

.partner-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.partner-item:hover::before {
  transform: scaleX(1);
}

.partner-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197,164,109,0.05) 0%, rgba(33,77,56,0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.partner-item:hover::after {
  opacity: 1;
}

.partner-item:hover {
  border-color: rgba(197,164,109,0.4);
  box-shadow: 0 12px 35px rgba(33,77,56,0.12), 0 0 0 1px rgba(197,164,109,0.2);
  transform: translateY(-8px);
}

.partner-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  letter-spacing: 0.03em;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  text-transform: capitalize;
}

.partner-item:hover .partner-logo {
  color: var(--secondary-dark);
  transform: scale(1.08);
  text-shadow: 0 2px 8px rgba(197,164,109,0.2);
}

/* Add subtle pattern overlay */
#trusted-partners {
  position: relative;
}

#trusted-partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(197,164,109,0.3) 50%, transparent 100%);
}

/* Responsive Partners Marquee */
@media (max-width: 991.98px) {
  .partner-item {
    min-width: 200px;
    height: 130px;
    padding: 1.75rem 2rem;
  }

  .partner-logo {
    font-size: 1.125rem;
  }

  .partners-track {
    gap: 2rem;
    animation: marquee 40s linear infinite;
  }

  .partners-marquee-wrapper::before,
  .partners-marquee-wrapper::after {
    width: 120px;
  }
}

@media (max-width: 767.98px) {
  .partner-item {
    min-width: 180px;
    height: 120px;
    padding: 1.5rem 1.75rem;
  }

  .partner-logo {
    font-size: 1rem;
  }

  .partners-track {
    gap: 1.75rem;
    animation: marquee 35s linear infinite;
  }

  .partners-marquee-wrapper {
    padding: 2.5rem 0;
  }

  .partners-marquee-wrapper::before,
  .partners-marquee-wrapper::after {
    width: 80px;
  }
}

@media (max-width: 575.98px) {
  .partner-item {
    min-width: 160px;
    height: 110px;
    padding: 1.25rem 1.5rem;
  }

  .partner-logo {
    font-size: 0.9375rem;
  }

  .partners-track {
    gap: 1.5rem;
    animation: marquee 30s linear infinite;
  }

  .partners-marquee-wrapper {
    padding: 2rem 0;
  }

  .partners-marquee-wrapper::before,
  .partners-marquee-wrapper::after {
    width: 60px;
  }
}

/* ---------- Values Cards ---------- */
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.value-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(33, 77, 56, 0.08);
  line-height: 1;
  margin-bottom: -0.5rem;
  display: block;
}

.value-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon-wrap i { font-size: 1.5rem; color: var(--white); }

.value-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.value-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ---------- Corporate Travel Features ---------- */
.travel-feature {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary);
  transition: var(--transition);
  height: 100%;
}

.travel-feature:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }

.travel-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.travel-icon i { color: var(--secondary-light); font-size: 1.25rem; }

.travel-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.travel-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ---------- Image Grid / Gallery ---------- */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-rounded { border-radius: var(--radius-md); overflow: hidden; }

.intro-media {
  position: relative;
}

.intro-image {
  height: 460px;
  overflow: hidden;
}

.intro-experience-badge {
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  max-width: 200px;
  padding: 1.25rem 1.5rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: 1px solid rgba(212, 185, 138, 0.22);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.intro-years {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--secondary-light);
}

.intro-years-label {
  margin-top: 0.45rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

/* ---------- Gold Divider ---------- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.gold-divider.centered { margin-left: auto; margin-right: auto; }

/* ---------- Scroll To Top ---------- */
#scroll-top {
  position: fixed;
  bottom: 10rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px) scale(1);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s;
  box-shadow: 0 6px 20px rgba(182, 142, 64, 0.3);
  border: none;
}

#scroll-top.visible { opacity: 1; transform: translateY(0) scale(1); }
#scroll-top.visible:hover { 
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  transform: translateY(-5px) scale(1.15); 
  color: var(--white);
  box-shadow: 0 8px 28px rgba(182, 142, 64, 0.5);
}

/* ---------- WhatsApp Floating Button ---------- */
#wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: wa-pulse 3s infinite;
}

#wa-float:hover {
  transform: scale(1.15) rotate(10deg);
  animation: none;
  color: var(--white);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
}

/* ---------- Phone Floating Button ---------- */
#phone-float {
  position: fixed;
  bottom: 5.75rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 6px 24px rgba(33, 77, 56, 0.4);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: phone-pulse 3s infinite 1.5s;
}

#phone-float:hover {
  transform: scale(1.15) rotate(-10deg);
  animation: none;
  color: var(--white);
  box-shadow: 0 10px 32px rgba(33, 77, 56, 0.65);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 36px rgba(37, 211, 102, 0.65); }
}

@keyframes phone-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(33, 77, 56, 0.4); }
  50% { box-shadow: 0 6px 36px rgba(33, 77, 56, 0.65); }
}

/* ---------- Footer ---------- */
.footer-main {
  background: linear-gradient(150deg, #0f2318 0%, var(--primary-dark) 100%);
  color: rgba(255,255,255,0.75);
  padding-top: 80px;
}

.footer-brand { margin-bottom: 1.75rem; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 2px;
}

.footer-logo-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.footer-brand-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-light);
  display: block;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.footer-socials { display: flex; gap: 0.75rem; }

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: 1.5rem;
  display: block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.footer-links a i { font-size: 0.7rem; color: var(--secondary); }

.footer-links a:hover { color: var(--white); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item.is-clickable {
  cursor: pointer;
}

.footer-contact-item.is-clickable:focus-visible {
  outline: 2px solid var(--secondary-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.footer-contact-item i {
  color: var(--secondary-light);
  font-size: 0.9rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-contact-item a {
  flex: 1;
  color: rgba(255,255,255,0.6);
  min-width: 0;
  overflow-wrap: anywhere;
}
.footer-contact-item a:hover { color: var(--secondary-light); }

.footer-bottom {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

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

/* ---------- Map Embed ---------- */
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.map-wrapper iframe { display: block; border: none; }

/* ---------- Animations & Helpers ---------- */
.text-gold { color: var(--secondary); }
.text-primary-custom { color: var(--primary); }

.bg-light-custom { background-color: var(--bg); }

.hover-lift { transition: var(--transition); }
.hover-lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.rounded-custom { border-radius: var(--radius-md) !important; }

/* ---------- Divider Lines ---------- */
.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  margin: 1.5rem auto 0;
}

/* ---------- Navbar Toggler ---------- */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(33,77,56,0.08);
}

.navbar-toggler:focus { box-shadow: none; }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23214D38' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Progress Bars ---------- */
.progress-custom {
  height: 6px;
  border-radius: 3px;
  background: var(--light-gray);
  overflow: hidden;
}

.progress-bar-custom {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 1.5s ease;
}

/* ---------- Accordion ---------- */
.accordion-custom .accordion-button {
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm) !important;
  box-shadow: none;
  border: 1px solid var(--border);
}

.accordion-custom .accordion-button:not(.collapsed) {
  background: rgba(33,77,56,0.04);
  color: var(--primary);
  border-color: var(--primary);
}

.accordion-custom .accordion-button:focus { box-shadow: none; }

/* ---------- Tag Pills ---------- */
.tag-pill {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.775rem;
  font-weight: 600;
  background: rgba(33,77,56,0.07);
  color: var(--primary);
  margin: 0.2rem;
}

/* ---------- Image Overlay Cards ---------- */
.overlay-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
}

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

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

.overlay-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(0deg, rgba(24,56,39,0.92) 0%, transparent 100%);
  color: var(--white);
}

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

.overlay-sub { font-size: 0.8rem; color: var(--secondary-light); }

/* ---------- Room Type Tags ---------- */
.room-type {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(33,77,56,0.04);
  border: 1px solid var(--border);
  margin-bottom: 0.5rem;
}

.room-type i { color: var(--secondary); }
.room-type-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.room-type-desc { font-size: 0.8rem; color: var(--gray); margin-left: auto; }

/* =========================================================
   RESPONSIVE — FULL DEVICE COMPATIBILITY
   Mobile-first. Breakpoints: 575, 767, 991, 1199, 1399
   ========================================================= */

/* ---- Global overflow & scroll snapping ---- */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

@media (min-width: 768px) {
  html {
    scroll-snap-type: y proximity;
  }
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- Ensure all sections respect viewport ---- */
section, footer, header, nav {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ---- Bootstrap row gutter responsive fix ----
   g-5 = 3rem gutter = -24px negative margin on rows
   Container padding on mobile = 12px — so g-5 bleeds 12px each side.
   We override row gutters on small screens to prevent overflow.         */
@media (max-width: 767.98px) {
  .row.g-5,
  .row.g-4 {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.5rem;
  }
  .row.g-5 > *,
  .row.g-4 > * {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left:  calc(var(--bs-gutter-x) * 0.5);
  }
}

@media (max-width: 575.98px) {
  .row.g-5,
  .row.g-4,
  .row.g-3 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1.25rem;
  }
  .row.g-5 > *,
  .row.g-4 > *,
  .row.g-3 > * {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left:  calc(var(--bs-gutter-x) * 0.5);
  }
}

/* =========================================================
   NAVBAR
   ========================================================= */
@media (max-width: 1199.98px) {
  .navbar-main {
    padding: 0.35rem 0;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .navbar-nav .nav-link {
    padding: 0.65rem 0.75rem !important;
    font-size: 0.9rem !important;
  }

  .navbar-nav .nav-link::after { display: none; }

  /* CTA button in mobile menu */
  .navbar-collapse .btn-primary-custom {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .brand-name   { font-size: 1.05rem; }
  .brand-tagline { font-size: 0.58rem; }
  .brand-logo-icon { width: 36px; height: 36px; }
  .brand-logo-icon i { font-size: 17px; }
}

/* =========================================================
   SECTION PADDING
   ========================================================= */
@media (max-width: 991.98px) {
  .section-pad    { padding: 64px 0; }
  .section-pad-sm { padding: 46px 0; }
}

@media (max-width: 767.98px) {
  .section-pad    { padding: 52px 0; }
  .section-pad-sm { padding: 38px 0; }
}

@media (max-width: 575.98px) {
  .section-pad    { padding: 44px 0; }
  .section-pad-sm { padding: 32px 0; }
}

/* =========================================================
   HERO SECTION (HOME)
   ========================================================= */
@media (max-width: 991.98px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    scroll-snap-align: none;
  }
  .hero-section .container {
    height: auto;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .hero-content { padding: 0; }
  .hero-title   { font-size: clamp(2.2rem, 7vw, 3.5rem); }
}

@media (max-width: 767.98px) {
  .hero-content  { padding: 0; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 1.25rem; }
  .hero-badge    { font-size: 0.68rem; padding: 0.35rem 0.85rem; margin-bottom: 0.75rem; }
}

@media (max-width: 575.98px) {
  .hero-title    { font-size: clamp(1.75rem, 7.5vw, 2.25rem); line-height: 1.25; margin-bottom: 0.75rem; }
  .hero-subtitle { font-size: 0.875rem; margin-bottom: 1rem; }

  /* Hero action buttons — full width stack */
  .hero-actions {
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }
  .hero-actions .btn-primary-custom,
  .hero-actions .btn-outline-white {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }

  /* Hero stats — 2x2 grid */
  .hero-stats {
    gap: 0.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1rem;
  }
  .hero-stat-item {
    padding: 0.4rem 0.25rem;
  }
  .hero-stat-num  { font-size: 1.35rem; }
  .hero-stat-label { font-size: 0.65rem; }
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
@media (max-width: 991.98px) {
  .page-hero {
    height: 360px;
    min-height: 360px;
  }
  .page-hero-title { font-size: clamp(2rem, 6vw, 3rem); }
}

@media (max-width: 767.98px) {
  .page-hero {
    height: 340px;
    min-height: 340px;
  }
}

@media (max-width: 575.98px) {
  .page-hero {
    height: 340px;
    min-height: 340px;
  }
  .page-hero-title { font-size: clamp(1.7rem, 7vw, 2.25rem); }
  .page-hero-desc  { font-size: 0.9375rem; }
  .breadcrumb-custom { flex-wrap: wrap; gap: 0.3rem; }
}

/* =========================================================
   SECTION TITLES & TYPOGRAPHY
   ========================================================= */
@media (max-width: 767.98px) {
  .section-title { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
  .section-desc  { font-size: 1rem; }
}

@media (max-width: 575.98px) {
  .section-title  { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-header { margin-bottom: 2.1rem; }
}

/* =========================================================
   BUTTONS — Full-width on smallest screens
   ========================================================= */
@media (max-width: 400px) {
  .btn-lg-custom { padding: 0.875rem 1.5rem; font-size: 0.9rem; }

  /* CTA section buttons */
  .cta-section .d-flex.gap-3 {
    flex-direction: column;
    gap: 0.75rem !important;
  }
  .cta-section .btn-secondary-custom,
  .cta-section .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   CARD COMPONENTS
   ========================================================= */
@media (max-width: 767.98px) {
  .service-card { padding: 1.75rem; }
  .service-icon { width: 54px; height: 54px; margin-bottom: 1.25rem; }
  .service-icon i { font-size: 1.375rem; }
  .service-title { font-size: 1.1rem; }

  .value-card { padding: 1.75rem; }
  .value-icon-wrap { width: 54px; height: 54px; }

  .mice-card { padding: 1.75rem; }
  .mice-icon { width: 60px; height: 60px; }

  .travel-feature { padding: 1.5rem; }
  .travel-icon { width: 48px; height: 48px; }

  .feature-item { padding: 1.25rem; gap: 1rem; }
  .feature-icon { width: 44px; height: 44px; }
  .feature-icon i { font-size: 1.1rem; }
}

@media (max-width: 575.98px) {
  .service-card  { padding: 1.5rem; }
  .mice-card     { padding: 1.5rem; }
  .value-card    { padding: 1.5rem; }
  .travel-feature { padding: 1.25rem; }
}

/* =========================================================
   HOTEL CARDS
   ========================================================= */
@media (max-width: 767.98px) {
  .hotel-img-wrapper { height: 220px; }
  .hotel-body { padding: 1.5rem; }
  .hotel-name { font-size: 1.25rem; }
  .hotel-desc { font-size: 0.9rem; }
  .hotel-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hotel-footer .btn-primary-custom { width: 100%; justify-content: center; }
}

@media (max-width: 575.98px) {
  .hotel-img-wrapper { height: 200px; }
  .hotel-body { padding: 1.25rem; }
  .amenity-tag { font-size: 0.71rem; padding: 0.3rem 0.6rem; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
@media (max-width: 575.98px) {
  .testimonial-card { padding: 1.5rem; }
  .testimonial-text { font-size: 0.9rem; }
  .author-avatar    { width: 40px; height: 40px; font-size: 1rem; }
}

/* =========================================================
   STATS SECTION
   ========================================================= */
@media (max-width: 991.98px) {
  .stats-section { padding: 60px 0; }
  .stat-card::after { display: none; }
}

@media (max-width: 767.98px) {
  .stats-section { padding: 50px 0; }
  .stat-card { padding: 2rem 1rem; }
  .stat-num  { font-size: clamp(2rem, 5vw, 2.75rem); }
  .stat-label { font-size: 0.8rem; }
}

@media (max-width: 575.98px) {
  .stat-card  { padding: 1.5rem 0.75rem; }
  .stat-num   { font-size: 2rem; }
  .stat-label { font-size: 0.75rem; letter-spacing: 0.04em; }
}

/* =========================================================
   CTA SECTION
   ========================================================= */
@media (max-width: 991.98px) {
  .cta-section { padding: 80px 0; }
}

@media (max-width: 767.98px) {
  .cta-section { padding: 65px 0; }
  .cta-title   { font-size: clamp(1.75rem, 5.5vw, 2.5rem); }
  .cta-desc    { font-size: 1rem; }
}

@media (max-width: 575.98px) {
  .cta-section  { padding: 55px 0; }
  .cta-title    { font-size: clamp(1.6rem, 6.5vw, 2rem); }

  .cta-section .d-flex {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-section .btn-secondary-custom,
  .cta-section .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   INTRO / STORY IMAGE PANEL (floating badge fix)
   ========================================================= */
@media (max-width: 991.98px) {
  /* Floating badges on images often overflow — constrain */
  [style*="position:absolute"][style*="left:-1.5rem"],
  [style*="position:absolute"][style*="right:-1rem"] {
    left: 1rem !important;
    right: auto !important;
    bottom: 1rem !important;
    top: auto !important;
    max-width: 160px !important;
  }
}

@media (max-width: 767.98px) {
  .img-rounded { height: 280px !important; }
}

@media (max-width: 575.98px) {
  .img-rounded { height: 220px !important; }
}

@media (max-width: 767.98px) {
  #intro .row {
    --bs-gutter-y: 1.35rem;
  }

  #intro .intro-media {
    border-radius: var(--radius-md);
    box-shadow: 0 18px 42px rgba(33, 77, 56, 0.12);
  }

  #intro .intro-image {
    height: 260px !important;
    border-radius: var(--radius-md);
  }

  #intro .intro-experience-badge {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    max-width: none;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(24, 56, 39, 0.93);
    border-color: rgba(212, 185, 138, 0.32);
    box-shadow: 0 14px 32px rgba(15, 35, 24, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  #intro .intro-years {
    font-size: 1.55rem;
    min-width: 3.1rem;
  }

  #intro .intro-years-label {
    margin-top: 0;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  #intro .intro-copy {
    margin-top: 0 !important;
    padding: 0.25rem 0.1rem 0 !important;
    background: transparent;
    box-shadow: none;
  }

  #intro .section-label {
    margin-bottom: 0.45rem;
  }

  #intro .section-title {
    margin-bottom: 0.9rem;
    line-height: 1.14;
  }

  #intro .gold-divider {
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 575.98px) {
  #intro .intro-image {
    height: 232px !important;
  }

  #intro .intro-experience-badge {
    padding: 0.78rem 0.9rem;
  }
}

/* =========================================================
   CLIENTS / LOGOS SECTION
   ========================================================= */
@media (max-width: 575.98px) {
  .clients-section { padding: 44px 0; }
  .client-logo { padding: 0.75rem 1rem; }
  .client-logo-text { font-size: 0.85rem; }
}

/* =========================================================
   CONTACT FORM & INFO
   ========================================================= */
@media (max-width: 991.98px) {
  .contact-form-wrap { padding: 2rem; }
}

@media (max-width: 767.98px) {
  .contact-form-wrap { padding: 1.75rem; }
  .contact-info-card { padding: 1.5rem; gap: 1rem; }
  .contact-icon { width: 44px; height: 44px; }
  .contact-icon i { font-size: 1.1rem; }
}

@media (max-width: 575.98px) {
  .contact-form-wrap { padding: 1.25rem; border-radius: var(--radius-md); }

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

  /* Stack contact card action button */
  .contact-info-card {
    flex-wrap: wrap;
  }
  .contact-info-card .btn-primary-custom,
  .contact-info-card .btn-secondary-custom {
    width: 100%;
    justify-content: center;
    margin-left: 0 !important;
    margin-top: 0.75rem;
  }

  /* Map height */
  .map-wrapper iframe { height: 280px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
@media (max-width: 991.98px) {
  .footer-main { padding-top: 60px; }
  .footer-bottom-links { justify-content: flex-start; margin-top: 0.5rem; }
}

@media (max-width: 767.98px) {
  .footer-main { padding-top: 50px; }
  .footer-bottom {
    margin-top: 2.5rem;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
    margin-top: 0.75rem;
    gap: 1rem;
  }
  .footer-bottom .row > div:first-child { text-align: center; }
}

@media (max-width: 575.98px) {
  .footer-main {
    padding-top: 34px;
    background:
      radial-gradient(circle at top left, rgba(197, 164, 109, 0.12), transparent 34%),
      linear-gradient(150deg, #0f2318 0%, var(--primary-dark) 100%);
  }

  .footer-main .row.g-5 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0.85rem;
  }

  .footer-main .row.g-5 > [class*="col"] {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
  }

  .footer-brand {
    margin-bottom: 0;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 0.85rem;
  }

  .footer-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
  }

  .footer-brand-name {
    font-size: 1.08rem;
    line-height: 1.2;
  }

  .footer-brand-tag {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .footer-desc {
    max-width: 28rem;
    margin: 0 auto 1rem;
    color: rgba(255,255,255,0.66);
    font-size: 0.84rem;
    line-height: 1.65;
  }

  .footer-socials {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.82rem;
  }

  .footer-heading {
    margin-bottom: 0.75rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .footer-links li {
    margin-bottom: 0;
  }

  .footer-links a {
    min-height: 40px;
    padding: 0.62rem 0.7rem;
    background: rgba(255,255,255,0.045);
    border-radius: 10px;
    color: rgba(255,255,255,0.72);
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .footer-links a:hover {
    padding-left: 0.7rem;
  }

  .footer-links a i {
    font-size: 0.62rem;
  }

  .footer-contact-item {
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    padding: 0.7rem;
    background: rgba(255,255,255,0.045);
    border-radius: 10px;
    color: rgba(255,255,255,0.72);
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .footer-contact-item i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    color: var(--secondary-light);
    background: rgba(197,164,109,0.12);
    border-radius: 8px;
  }

  .footer-contact-item a {
    color: rgba(255,255,255,0.78);
  }

  .footer-main .btn-secondary-custom {
    width: 100%;
    justify-content: center;
    padding: 0.72rem 1rem;
    border-radius: 12px;
    font-size: 0.84rem;
  }

  .footer-bottom {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    text-align: center;
  }

  .footer-bottom-text {
    font-size: 0.74rem;
    line-height: 1.5;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.4rem;
  }

  .footer-bottom-links a {
    padding: 0.4rem 0.62rem;
    background: rgba(255,255,255,0.055);
    border-radius: 999px;
    font-size: 0.72rem;
  }
}

/* =========================================================
   FLOATING BUTTONS (WhatsApp + Scroll-Top)
   ========================================================= */
@media (max-width: 575.98px) {
  #wa-float {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
  #phone-float {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
    bottom: 4.25rem;
    right: 1.25rem;
  }
  #scroll-top {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    bottom: 7.25rem;
    right: 1.25rem;
  }

  body.footer-actions-muted #wa-float,
  body.footer-actions-muted #phone-float,
  body.footer-actions-muted #scroll-top {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
    transform: translateY(12px) scale(0.92) !important;
  }
}

/* =========================================================
   ACCORDION (FAQ)
   ========================================================= */
@media (max-width: 575.98px) {
  .accordion-custom .accordion-button {
    font-size: 0.9rem;
    padding: 0.875rem 1rem;
  }
  .accordion-body { padding: 1rem; }
}

/* =========================================================
   ROOM TYPE ROWS
   ========================================================= */
@media (max-width: 575.98px) {
  .room-type {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .room-type-desc { margin-left: 0; font-size: 0.85rem; }
}

/* =========================================================
   CORPORATE TRAVEL — PACKAGE CARDS
   ========================================================= */
@media (max-width: 575.98px) {
  .card-premium { padding: 1.5rem !important; }
}

/* =========================================================
   INLINE STYLES — PANEL OVERRIDES ON MOBILE
   Various sections use inline `style=""` — these compensate.
   ========================================================= */

/* Why-Us green panel */
@media (max-width: 991.98px) {
  .why-us-green-panel,
  [style*="linear-gradient(135deg,var(--primary),var(--primary-dark)"] {
    padding: 2rem !important;
  }
}

/* Generic rich text panels with heavy padding */
@media (max-width: 575.98px) {
  /* Process step circles on services page */
  [style*="width:72px"][style*="height:72px"],
  [style*="width:56px"][style*="height:56px"] {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.15rem !important;
  }

  /* Inline stats grid panels */
  [style*="font-size:2rem"][style*="font-weight:700"] {
    font-size: 1.6rem !important;
  }
}

/* =========================================================
   NAVBAR TOGGLER
   ========================================================= */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(33, 77, 56, 0.08);
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23214D38' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =========================================================
   LOADING / ANIMATION KEYFRAMES
   ========================================================= */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   TABLET (768–991px) SPECIFIC TWEAKS
   ========================================================= */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title     { font-size: clamp(2.4rem, 5vw, 3.2rem); }
  .service-card   { padding: 2rem; }
  .contact-form-wrap { padding: 2.25rem; }
  .hotel-img-wrapper { height: 240px; }
  .stats-section  { padding: 55px 0; }
  .stat-card      { padding: 2rem 1.25rem; }
}

/* =========================================================
   DESKTOP OPTIMIZATIONS (≥992px)
   ========================================================= */
@media (min-width: 992px) {
  /* Split layout editorial overlaps (Taj/Oberoi luxury style) */
  .editorial-left {
    margin-right: -3rem;
    position: relative;
    z-index: 3;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }
  .editorial-right {
    margin-left: -3rem;
    position: relative;
    z-index: 3;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }
  
  /* Staggered hero float cards */
  .hero-float-card:nth-child(1) {
    transform: translate3d(0, 0, 0);
  }
  .hero-float-card:nth-child(2) {
    transform: translate3d(-25px, 0, 0);
  }
  .hero-float-card:nth-child(3) {
    transform: translate3d(-50px, 0, 0);
  }
}

/* =========================================================
   MEDIUM DESKTOP & LAPTOPS (≥1200px)
   ========================================================= */
@media (min-width: 1200px) {
  /* Navbar spacing */
  .navbar-nav .nav-link {
    font-size: 0.78rem !important;
    padding: 0.5rem 0.9rem !important;
  }
  
  .hero-content { padding: 160px 0 100px; }
  .hero-title   { font-size: 3.85rem; }
  
  /* Subtle glow & layout lift on hover for grids */
  .card-premium, .service-card, .mice-card, .value-card, .travel-feature {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.4s ease;
  }
  
  /* Vertical gold line dividers for stats on desktop */
  .stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    bottom: 25%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--secondary-light), transparent);
    opacity: 0.6;
    display: block;
  }
}

/* =========================================================
   LARGE DESKTOP (≥1400px)
   ========================================================= */
@media (min-width: 1400px) {
  .container {
    max-width: 1340px;
  }
  .section-pad { padding: 96px 0; }
  .hero-content { padding: 180px 0 120px; }
  .hero-title { font-size: 4.25rem; line-height: 1.15; }
  .hero-subtitle { font-size: 1.15rem; max-width: 600px; }
  .section-title { font-size: 3.25rem; }
  
  /* Expand editorial padding */
  .editorial-left { margin-right: -5rem; padding: 4rem; }
  .editorial-right { margin-left: -5rem; padding: 4rem; }
}

/* =========================================================
   ULTRA-WIDE DESKTOP (≥1600px)
   Scales up the container and font sizing so the layout 
   doesn't look like a narrow band on massive screens.
   ========================================================= */
@media (min-width: 1600px) {
  .container {
    max-width: 1520px;
  }
  
  .section-pad { padding: 112px 0; }
  .hero-content { padding: 210px 0 150px; }
  .hero-title { font-size: 4.75rem; }
  .hero-subtitle { font-size: 1.25rem; max-width: 660px; }
  .section-title { font-size: 3.5rem; }
  
  .card-body-custom { padding: 2.25rem; }
  .service-card { padding: 3rem; }
}

/* =========================================================
   CINEMATIC / 4K DISPLAY BREAKPOINT (≥1920px)
   ========================================================= */
@media (min-width: 1920px) {
  .container {
    max-width: 1780px;
  }
  
  .section-pad { padding: 128px 0; }
  .hero-content { padding: 250px 0 180px; }
  .hero-title { font-size: 5.25rem; }
  .hero-subtitle { font-size: 1.35rem; max-width: 720px; }
  .section-title { font-size: 4rem; }
}

/* =========================================================
   SHORT SCREEN VIEWPORTS (max-height: 800px)
   ========================================================= */
@media (max-height: 800px) and (min-width: 992px) {
  .hero-section { min-height: 550px; }
  .hero-section .container { padding-top: 70px; }
  .hero-title { font-size: clamp(2rem, 4vw, 3rem) !important; margin-bottom: 0.75rem !important; }
  .hero-subtitle { font-size: 0.95rem !important; margin-bottom: 1.25rem !important; }
  .hero-actions { margin-bottom: 1.5rem !important; }
  .hero-stats { padding-top: 1rem !important; gap: 1rem !important; }
  .hero-float-card { padding: 1rem !important; }
  .float-card-icon { width: 36px !important; height: 36px !important; margin-bottom: 0.5rem !important; }
  .float-card-icon i { font-size: 1rem !important; }
}

/* =========================================================
   PRINT
   ========================================================= */
@media print {
  #wa-float, #scroll-top, #phone-float, .navbar-main { display: none !important; }
  .hero-section { min-height: auto; }
  body { font-size: 12pt; }
}

/* =========================================================
   RESPONSIVE POLISH — Comprehensive layout fixes
   Covers all screen-size edge cases not handled above
   ========================================================= */

/* ---- 1. EDITORIAL PANELS — Tablet overflow fix (768–991px) ----
   The negative margin trick looks great on desktop but bleeds
   outside the container on tablet widths.                        */
@media (max-width: 991.98px) {
  .editorial-left,
  .editorial-right {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: 2rem !important;
  }
}
@media (max-width: 575.98px) {
  .editorial-left,
  .editorial-right {
    padding: 1.5rem !important;
    border-radius: var(--radius-md) !important;
  }
}

/* ---- 2. FLOATING BADGES on story/about image panels ----
   Absolute-positioned badges overflow on narrow screens.   */
@media (max-width: 991.98px) {
  /* Story / intro image floating badge */
  .img-rounded + [style*="position:absolute"],
  [style*="position:relative"] > [style*="position:absolute"][style*="right:1rem"],
  [style*="position:relative"] > [style*="position:absolute"][style*="right: 1rem"] {
    right: 0.75rem !important;
    top: 0.75rem !important;
    padding: 0.875rem 1.25rem !important;
  }
}
@media (max-width: 767.98px) {
  /* Move badge to bottom-left and shrink it on small tablets */
  [style*="position:relative"] > [style*="position:absolute"][style*="right:1rem"],
  [style*="position:relative"] > [style*="position:absolute"][style*="right: 1rem"] {
    right: auto !important;
    left: 0.75rem !important;
    top: auto !important;
    bottom: 0.75rem !important;
    padding: 0.75rem 1rem !important;
  }
}
@media (max-width: 575.98px) {
  /* Remove absolute positioning entirely — flow it below the image */
  [style*="position:relative"] > [style*="position:absolute"][style*="right:1rem"],
  [style*="position:relative"] > [style*="position:absolute"][style*="right: 1rem"],
  [style*="position:relative"] > [style*="position:absolute"][style*="bottom:2rem"],
  [style*="position:relative"] > [style*="position:absolute"][style*="bottom: 2rem"] {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 0.75rem !important;
    display: inline-block !important;
    max-width: 100% !important;
  }
}

/* ---- 3. HERO STATS — 576–767px range cramping ----
   On this range, 4 columns are too tight. Use 2x2.         */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }
}

/* ---- 4. IMG-ROUNDED HEIGHT — 576–767px gap ----
   The 280px rule only fires at ≤767px but inline style
   [height:460px] needs clamping at the 576–767px range too. */
@media (min-width: 576px) and (max-width: 767.98px) {
  .img-rounded { height: 280px !important; }
  [style*="height:460px"] { height: 280px !important; }
  [style*="height:480px"] { height: 280px !important; }
  [style*="height:460px;"] { height: 280px !important; }
  [style*="height:480px;"] { height: 280px !important; }
}

/* ---- 5. WHATSAPP INLINE CARD in hotel section ----
   On narrow mobile the ms-auto button overflows the flex row. */
@media (max-width: 575.98px) {
  /* Inline flex card with whatsapp button */
  [style*="display:flex"][style*="align-items:center"][style*="gap:1.25rem"] {
    flex-wrap: wrap !important;
  }
  [style*="display:flex"][style*="align-items:center"][style*="gap:1.25rem"] .ms-auto,
  [style*="display:flex"][style*="align-items:center"][style*="gap:1.25rem"] .btn-secondary-custom {
    margin-left: 0 !important;
    width: 100% !important;
    justify-content: center !important;
    margin-top: 0.75rem !important;
  }
}

/* ---- 8. HERO SECTION — min-height clamp on tall mobile ----
   On devices like iPhone SE (375px wide), 100svh with lots of
   content can create excessive scroll. Cap inner content.    */
@media (max-width: 575.98px) {
  .hero-section .container {
    padding-top: 90px !important;
    padding-bottom: 36px !important;
  }
  .hero-section {
    min-height: 100svh;
    height: auto !important;
  }
}

/* ---- 9. NAVBAR — very small screens (≤360px) ----         */
@media (max-width: 360px) {
  .brand-name    { font-size: 0.95rem; }
  .brand-tagline { display: none; }       /* hide tagline on tiny phones */
  .brand-logo-icon { width: 32px; height: 32px; }
}

/* ---- 10. CONTACT FORM inline styles override ----
   Form inputs use inline padding:0.875rem on col-md-6 fields.
   On mobile they all stack to col-12 naturally via Bootstrap,
   but the inline border-radius needs extra safety.           */
@media (max-width: 575.98px) {
  .contact-form-wrap .row.g-3 [style*="border-radius"],
  form.needs-validation input[style],
  form.needs-validation select[style],
  form.needs-validation textarea[style] {
    border-radius: var(--radius-sm) !important;
    font-size: 0.9rem !important;
  }
}

/* ---- 11. FOOTER GRID — better stacking on mobile ----      */
@media (max-width: 575.98px) {
  /* Footer brand + contact stack cleanly */
  .footer-main .row.g-5 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0.85rem;
  }
  /* Footer inquiry button full width */
  .footer-main .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }
}

/* ---- 12. CTA BUTTONS — better flex wrapping on ≤480px ---- */
@media (max-width: 480px) {
  .cta-section .d-flex.gap-3,
  .hero-actions {
    flex-direction: column !important;
    gap: 0.6rem !important;
    align-items: stretch !important;
  }
  .cta-section .btn-secondary-custom,
  .cta-section .btn-outline-white,
  .hero-actions .btn-primary-custom,
  .hero-actions .btn-outline-white {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ---- 13. STATS SECTION — 2-column on mobile ----           */
@media (max-width: 575.98px) {
  .stats-section .row.g-0 > .col-6 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stats-section .row.g-0 > .col-6:nth-last-child(-n+2) {
    border-bottom: none;
  }
  /* Add vertical separator between the 2 columns */
  .stats-section .row.g-0 > .col-6:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ---- 14. GENERAL OVERFLOW SAFETY ----                       */
section, footer, header, nav, main {
  max-width: 100%;
  overflow-x: clip;  /* clip is safer than hidden - allows sticky/fixed children */
}

/* Prevent any content from causing horizontal scroll globally */
@media (max-width: 767.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  /* Bootstrap col negative margins compensation */
  .row {
    --bs-gutter-x: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }
}
