@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  --color-primary: #053269;      /* Deep Royal Blue */
  --color-primary-light: #08458c;
  --color-primary-dark: #011730;
  --color-accent: #96cdf6;       /* Sky Blue */
  --color-accent-hover: #7cbdf0;
  --color-text-dark: #000000;    /* Black text, as requested */
  --color-text-light: #485c70;   /* Muted gray-blue */
  --color-bg-cream: #f4f8fb;     /* Cool alabaster blue-white */
  --color-bg-card: #ffffff;
  --color-white: #ffffff;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(4, 54, 107, 0.03), 0 2px 4px -1px rgba(4, 54, 107, 0.02);
  --shadow-md: 0 10px 15px -3px rgba(4, 54, 107, 0.04), 0 4px 6px -2px rgba(4, 54, 107, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(4, 54, 107, 0.06), 0 10px 10px -5px rgba(4, 54, 107, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(4, 54, 107, 0.12);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --border-gold-light: 1px solid rgba(201, 160, 84, 0.2);
}

/* ==========================================
   RESET & BASICS
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
	overflow-x:hidden;
}

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

body {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  background-color: var(--color-bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
}

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

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
}
.hero-inner-new {
  margin-top: 125px;
}

/* Container for right-center placement */
.contact-floating-widget {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px; /* Space between Call and WhatsApp button */
  z-index: 9999;
}

/* Base button styling */
.widget-btn {
  height: 48px;
  border-radius: 24px 0 0 24px;
  display: flex;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
  box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-end;
}

/* Call Button Color */
.call-btn {
  background-color: #007bff; /* Blue */
}
.call-btn:hover {
  background-color: #0056b3;
}

/* WhatsApp Button Color */
.whatsapp-btn {
  background-color: #25d366; /* Green */
}
.whatsapp-btn:hover {
  background-color: #20ba5a;
}

/* Icon Box */
.widget-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Text Box (Hidden by default) */
.widget-text {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  padding-left: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effect: Text slides open */
.widget-btn:hover .widget-text {
  max-width: 140px;
  opacity: 1;
  padding-left: 16px;
}

/* ==========================================
   REUSABLE UTILITIES
   ========================================== */
.text-center { text-align: center; }
.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #33a8ff;
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.section-desc {
  color: var(--color-text-light);
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
  font-size: 1.05rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-cream);
}
::-webkit-scrollbar-thumb {
  background: #c3cfcd;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(201, 160, 84, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.3s ease;
}
.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
  background-color: #011f42;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(201, 160, 84, 0.1);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: auto;
  width: 320px;
}

.site-header.scrolled .logo-img
{
    height: auto;
    width: 200px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.logo-subtitle {
  color: var(--color-accent);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-accent);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-accent);
}

.header-cta .btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1010;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-white);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hamburger transition to 'X' */
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  padding: 0;
  overflow: hidden;
  background-color: var(--color-primary-dark);
      border-radius: 0 0 0 120px;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 50, 105, 0.4) 0%, rgba(1, 23, 48, 0.65) 50%, rgba(1, 23, 48, 0.95) 100%);
  z-index: 3;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: 5rem;
}

.hero-inner {
  max-width: 800px;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #43afff;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--color-white);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  background: none;
  border: none;
}

.video-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.video-play-btn svg {
  fill: var(--color-white);
  transition: var(--transition-smooth);
  margin-left: 2px; /* Center the play triangle */
}

.btn-video:hover .video-play-btn {
  background-color: var(--color-white);
  border-color: var(--color-white);
  transform: scale(1.1);
}

.btn-video:hover .video-play-btn svg {
  fill: var(--color-primary);
}

.btn-video:hover {
  color: var(--color-accent);
}

/* Hero Footer Features */
.hero-features {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-features-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3.5rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 160, 84, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.1rem;
}

.hero-feature-text {
  text-align: left;
}

.feature-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-white);
  line-height: 1.2;
}

.feature-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.1rem;
}

/* ==========================================
   AMENITIES SECTION
   ========================================== */
.amenities-section {
  background-color: var(--color-bg-cream);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.amenity-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(4, 42, 37, 0.04);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 160, 84, 0.3);
}

.amenity-card:hover::before {
  transform: scaleX(1);
}

.amenity-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(5, 50, 105, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem auto;
  color: var(--color-primary);
  transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon-box {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: rotateY(180deg);
}

.amenity-card-title {
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.amenity-card-desc {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ==========================================
   DESTINATION SECTION (ALL-IN-ONE)
   ========================================== */
.destination-section {
  background-color: #faf6f0; /* Soft warm ivory cream background */
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Floating leaf decoration on left */
.decor-leaf-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.destination-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c9a054;
  margin-bottom: 0.75rem;
  display: block;
}

.destination-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.destination-desc {
  font-family: var(--font-sans);
  color: #555555;
  max-width: 600px;
  margin: 0.5rem auto 3.5rem auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Elegant gold separator divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 1.2rem auto;
}

.section-divider-line {
  height: 1px;
  width: 80px;
  background-color: #c9a054;
  opacity: 0.6;
}

.section-divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border: 1px solid #c9a054;
  border-radius: 50%;
  position: relative;
}

.section-divider-ornament::after {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #c9a054;
  border-radius: 50%;
}

/* Destination Cards Grid */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.destination-card {
  background-color: #ffffff;
  border: 1px solid rgba(201, 160, 84, 0.15);
  border-radius: 12px;
  padding: 2.5rem 1.25rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.destination-card:hover {
  transform: translateY(-6px);
  border-color: #c9a054;
  box-shadow: 0 12px 30px rgba(201, 160, 84, 0.08);
}

.destination-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.destination-icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

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

.destination-card-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.destination-card-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Breakpoints for Destination Grid */
@media (max-width: 1200px) {
  .destination-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .destination-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .destination-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .destination-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .destination-section {
    padding: 4rem 0;
  }
}

/* ==========================================
   GALLERY SECTION (ASYMMETRICAL MOSAIC)
   ========================================== */
.gallery-section {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

.gallery-section .section-title {
  color: var(--color-white);
}

.gallery-section .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.gallery-container {
  display: flex;
  gap: 3rem;
  align-items: stretch;
}

.gallery-info-col {
  width: 32%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.gallery-grid-col {
  width: 68%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 11;
  cursor: pointer;
}

.gallery-item.large {
  grid-row: span 2;
  aspect-ratio: 10 / 14;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(1, 23, 48, 0.85) 0%, rgba(1, 23, 48, 0.2) 60%, transparent 100%);
  opacity: 1;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  z-index: 2;
}

.gallery-title {
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 600;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.gallery-category {
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

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

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

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-category {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 26, 23, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(201, 160, 84, 0.25);
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-accent);
}

.lightbox-caption {
  text-align: center;
  color: var(--color-white);
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

/* ==========================================
   WHY CHOOSE US & STATS
   ========================================== */
.why-us-section {
  background-color: var(--color-bg-cream);
  padding: 6rem 20px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

/* Tabs UI / Left-Column Feature Selector */
.why-us-features-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.feature-pill:hover {
  transform: translateX(5px);
  border-color: rgba(201, 160, 84, 0.25);
}

.feature-pill.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.pill-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(5, 50, 105, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.feature-pill.active .pill-icon {
  background-color: rgba(255, 255, 255, 0.1);
}

.pill-content {
  text-align: left;
}

.pill-title {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-sans);
}

.feature-pill.active .pill-title {
  color: var(--color-white);
}

.pill-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 0.15rem;
}

.feature-pill.active .pill-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Middle Column Content */
.why-us-details {
  display: flex;
  flex-direction: column;
}

.checklist-container {
  margin: 2rem 0 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.check-icon {
  color: #000;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.check-text {
  font-size: 1rem;
  color: var(--color-text-dark);
  font-weight: 500;
}

/* Stats Counter Layout */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(4, 42, 37, 0.08);
  padding-top: 2rem;
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
  line-height: 1.3;
}

/* Right Column Quote Card */
.quote-card {
  background-color: var(--color-white);
  border: 1px solid rgba(150, 205, 246, 0.25);
  border-radius: 8px;
  padding: 4rem 3rem;
  position: relative;
  box-shadow: var(--shadow-md);
  background-image: radial-gradient(rgba(150, 205, 246, 0.1) 1px, transparent 0);
  background-size: 24px 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.quote-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2396cdf6' fill-opacity='0.08'%3E%3Cpath d='M17 8C19.2 8 21 9.8 21 12C21 14.2 19.2 16 17 16C14.8 16 13 14.2 13 12C13 9.8 14.8 8 17 8M17 6C13.7 6 11 8.7 11 12C11 15.3 13.7 18 17 18C20.3 18 23 15.3 23 12C23 8.7 20.3 6 17 6M7 8C9.2 8 11 9.8 11 12C11 14.2 9.2 16 7 16C4.8 16 3 14.2 3 12C3 9.8 4.8 8 7 8M7 6C3.7 6 1 8.7 1 12C1 15.3 3.7 18 7 18C10.3 18 13 15.3 13 12C13 8.7 10.3 6 7 6Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.quote-icon {
  color: var(--color-accent);
  margin-bottom: 2rem;
  z-index: 2;
}

.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.65rem;
  color: var(--color-primary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  z-index: 2;
  font-weight: 500;
}

.quote-author {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #363636;
  letter-spacing: 0.2em;
  z-index: 2;
}

/* ==========================================
   CALL-TO-ACTION (CTA) BANNER
   ========================================== */
.cta-section {
  padding: 3rem 0;
  background-color: var(--color-bg-cream);
}

.cta-banner {
  background-color: var(--color-primary);
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  padding: 2.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(rgba(201, 160, 84, 0.08) 1.5px, transparent 0);
  background-size: 16px 16px;
  pointer-events: none;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(201, 160, 84, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.5rem;
}

.cta-text {
  text-align: left;
}

.cta-title {
  color: var(--color-white);
  font-size: 1.65rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-white);
}

.phone-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.cta-phone:hover .phone-icon-box {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.phone-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.phone-number {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.phone-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background-color: #011730;  /* Extra Dark Green */
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(201, 160, 84, 0.15);
  padding: 5rem 0 2rem 0;
  font-size: 0.92rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1.4fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.footer-col-title {
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-about-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-about-logo .logo-title {
  font-size: 1.25rem;
}

.footer-about-desc {
  line-height: 1.6;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-list a {
  transition: var(--transition-fast);
}

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

.social-icons-row {
  display: flex;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.social-icon-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  line-height: 1.5;
}

.address-item {
  display: flex;
  gap: 0.75rem;
}

.address-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.heart-icon {
  color: #e25555;
  display: inline-block;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ==========================================
   LIFE AT RESORT SECTION
   ========================================== */
.life-resort-section {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 6rem 0;
  border-top: 1px solid rgba(150, 205, 246, 0.1);
}

.life-resort-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 4rem;
}

.life-resort-header-left {
  width: 45%;
}

.life-resort-header-right {
  width: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  padding-top: 1rem;
}

.life-resort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.life-resort-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.life-resort-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(150, 205, 246, 0.25);
  box-shadow: var(--shadow-lg);
}

.life-resort-img-wrapper {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  width: 100%;
}

.life-resort-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.life-resort-body {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.life-resort-card-icon {
  color: var(--color-accent);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.life-resort-card-title {
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.life-resort-card-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.life-resort-body .btn-outline {
  align-self: flex-start;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  border-color: rgba(255, 255, 255, 0.2);
}

.life-resort-body .btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-primary-dark);
  background-color: var(--color-accent);
}
/* ==========================================
   EVENT SECTORS SECTION
   ========================================== */
.sectors-section {
  background-color: var(--color-bg-cream);
  padding: 6rem 0;
  border-top: 1px solid rgba(5, 50, 105, 0.05);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.sector-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(5, 50, 105, 0.08);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(150, 205, 246, 0.35);
}

.sector-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(5, 50, 105, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.sector-card:hover .sector-icon-box {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.sector-card-title {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-family: var(--font-sans);
}

.sector-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
/* ==========================================
   BOOKING MODAL POPUP
   ========================================== */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 23, 48, 0.85);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.booking-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-container {
  background-color: var(--color-bg-cream);
  border: 1px solid rgba(150, 205, 246, 0.25);
  border-radius: 8px;
  width: 92%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.active .booking-modal-container {
  transform: scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.25rem;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.booking-modal-close:hover {
  color: var(--color-accent-hover);
  transform: scale(1.1);
}

/* Disable body scroll when modal active */
body.modal-open {
  overflow: hidden;
}

@media (max-width: 576px) {
  .booking-modal-container form > div {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .booking-modal-container {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  }
}

/* ==========================================
   HERO SLIDER ARROWS & DOTS
   ========================================== */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.prev-arrow {
  left: 2.5rem;
}

.next-arrow {
  right: 2.5rem;
}

/* Slider Dot line indicators */
.slider-dots {
  display: flex;
  gap: 0.75rem;
  margin-top: 3rem;
  align-items: center;
}

.slider-dot {
  width: 28px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
  background-color: var(--color-accent);
  width: 42px;
}


/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

/* Under 1200px (Laptops) */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.75rem;
  }
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
  .footer-col:last-child {
    grid-column: span 4;
  }
}

/* Under 992px (Tablets) */
@media (max-width: 992px) {
  section {
    padding: 4.5rem 0;
  }
  .section-title {
    font-size: 2.15rem;
  }
  
  .nav-menu, .header-cta {
    display: none; /* Hide on tablet/mobile default, handled by mobile menu drawer */
  }
  
  .mobile-toggle {
    display: block;
  }
  
  /* Mobile Menu Drawer Active State styling */
  .nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--color-primary-dark);
    z-index: 1005;
    padding: 6rem 2rem 2rem 2rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    align-items: flex-start;
    gap: 1.5rem;
    animation: slideIn 0.3s ease forwards;
  }
  
  @keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }
  
  .nav-menu.mobile-active .nav-link {
    font-size: 1.15rem;
  }
  
  .hero-title {
    font-size: 3.25rem;
  }
  
  .hero-features-container {
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .gallery-info-col {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  
  .gallery-grid-col {
    width: 100%;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .cta-banner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 2.5rem 2rem;
  }
  
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-text {
    text-align: center;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
  }
  
  .cta-phone {
    justify-content: center;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-col:last-child {
    grid-column: span 2;
  }
  
  .life-resort-header {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .life-resort-header-left, .life-resort-header-right {
    width: 100%;
  }
  .life-resort-header-right {
    padding-top: 0;
  }
  .life-resort-grid {
    grid-template-columns: 1fr;
  }
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slider-arrow {
    display: none;
  }
}

/* Under 768px (Small Tablets / Landscape Mobiles) */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.65rem;
  }
  .hero-section {
        border-radius: 0 0 0 60px;
  }
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .hero-features {
    display: none; /* Hide bottom features on small screen hero to save height space */
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid-col {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.large {
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-col:last-child {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
}

/* Under 480px (Mobiles) */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
        gap: 10px;
  }
  .hero-title {
    font-size: 2.15rem;
  }
  .btn {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .quote-card {
    padding: 2.5rem 1.5rem;
  }
  .quote-text {
    font-size: 1.35rem;
  }
}

/************ New Gallery Slide ********/
      .gallery-slider-wrapper {
        position: relative;
        overflow: hidden;
        width: 100%;
        border-radius: 12px;
      }
      .gallery-slider-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        gap: 1.5rem;
      }
      .gallery-slide-item {
        flex: 0 0 calc((100% - 4.5rem) / 4);
        aspect-ratio: 4 / 3;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
      .gallery-slide-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .gallery-slide-item:hover img {
        transform: scale(1.08);
      }
      .gallery-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(4, 42, 37, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
      }
      .gallery-nav-btn:hover {
        background: #c9a054;
        border-color: #c9a054;
        color: #111;
        transform: translateY(-50%) scale(1.05);
      }
      .gallery-nav-btn.prev-btn {
        left: 10px;
      }
      .gallery-nav-btn.next-btn {
        right: 10px;
      }
      .gallery-slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.75rem;
      }
      .gallery-slider-dot {
        width: 24px;
        height: 3px;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.25);
        cursor: pointer;
        transition: all 0.3s ease;
      }
      .gallery-slider-dot.active {
        background: #c9a054;
        width: 38px;
      }

      .grdclm {
        display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 6rem;
       }
       .gusetgrdclm {
          display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
       }
       .container-new {
        display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
        padding:0 25px;
       }
      @media (max-width: 1200px) {
        .gallery-slide-item {
          flex: 0 0 calc((100% - 3rem) / 3);
        }
      }
      @media (max-width: 768px) {
        .gallery-slide-item {
          flex: 0 0 calc((100% - 1.5rem) / 2);
        }
        .grdclm, .gusetgrdclm {
          grid-template-columns: 1fr;
          margin: 8px 0px;
        }
        .container-new {
           grid; grid-template-columns: 1fr;
        }
        .quote-card {
          margin-top: 25px;
        }
      }
      @media (max-width: 480px) {
        .gallery-slide-item {
          flex: 0 0 100%;
        }
      }

       

       /* ==========================================
   CONTNEW - Contact Form & Info Section
   Fully Mobile Responsive
   ========================================== */

.contnew-amenities-section {
  background-color: var(--color-white);
  padding: 6rem 0;

}
.amenities-section {
    margin-top: 50px;
}

.contnew-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}

/* Form Box */
.contnew-form-box {
  background-color: var(--color-bg-cream);
  padding: 3.5rem 3rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 160, 84, 0.15);
  box-shadow: var(--shadow-sm);
}

.contnew-section-tag {
  margin-bottom: 0.5rem;
}

.contnew-section-title {
  font-size: 1.85rem;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

/* Success / Error Messages */
.contnew-success-msg {
  background-color: rgba(4, 42, 37, 0.08);
  border-left: 4px solid var(--color-accent);
  color: var(--color-primary-light);
  padding: 1.25rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.contnew-success-icon {
  color: var(--color-accent);
  margin-right: 0.5rem;
}

.contnew-error-msg {
  background-color: rgba(226, 85, 85, 0.08);
  border-left: 4px solid #e25555;
  color: #b53838;
  padding: 1.25rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.contnew-error-icon {
  margin-right: 0.5rem;
}

/* Form Layout */
.contnew-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contnew-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contnew-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contnew-label {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
}

.contnew-input {
  padding: 0.85rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(4, 42, 37, 0.15);
  font-size: 0.95rem;
  background-color: var(--color-white);
  outline-color: var(--color-accent);
  width: 100%;
  box-sizing: border-box;
}

.contnew-select,
.contnew-date {
  height: 47px;
}

.contnew-textarea {
  resize: vertical;
}

.contnew-submit-btn {
  margin-top: 1rem;
  width: 100%;
}

/* Right Column */
.contnew-right-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contnew-cards-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Info Cards */
.contnew-info-card {
  display: flex;
  gap: 1.5rem;
  background-color: var(--color-bg-cream);
  border: 1px solid rgba(4, 42, 37, 0.06);
  padding: 1.75rem 2rem;
  border-radius: 8px;
  align-items: center;
}

.contnew-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(201, 160, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #011f42;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contnew-card-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.contnew-card-title-alt {
  color: #011f42;
}

.contnew-card-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #011f42;
  margin-top: 0.15rem;
  display: block;
  word-break: break-word;
}

.contnew-card-email {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 0.15rem;
  display: block;
  word-break: break-all;
}

.contnew-card-address {
  font-size: 0.92rem;
  color: var(--color-text-light);
  margin-top: 0.15rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Map Placeholder */
.contnew-map-placeholder {
  background-color: var(--color-primary);
  border-radius: 8px;
  border: 1px solid var(--color-accent);
  height: 280px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--color-white);
}

.contnew-map-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-image: radial-gradient(var(--color-accent) 1.5px, transparent 0);
  background-size: 16px 16px;
}

.contnew-map-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  z-index: 2;
}

.contnew-map-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  z-index: 2;
}

.contnew-map-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 250px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  z-index: 2;
}

.contnew-map-btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  z-index: 2;
}

/* Bottom Map Section */
.contnew-map-section {
  margin: 0;
  padding: 0;
}

.contnew-map-section iframe {
  width: 100%;
  height: 600px;
  border: 0;
  display: block;
}

/* ==========================================
   RESPONSIVE - Tablet (max-width: 992px)
   ========================================== */
@media (max-width: 992px) {
  .contnew-amenities-section {
    padding: 4.5rem 0;
  }

  .contnew-contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .contnew-form-box {
    padding: 2.75rem 2.25rem;
  }

  .contnew-section-title {
    font-size: 1.7rem;
  }

  .contnew-map-placeholder {
    height: 260px;
  }
}

/* ==========================================
   RESPONSIVE - Mobile (max-width: 768px)
   ========================================== */
@media (max-width: 768px) {
  .contnew-amenities-section {
    padding: 3.5rem 0;
  }

  .contnew-contact-grid {
    gap: 2.75rem;
  }

  .contnew-form-box {
    padding: 2.25rem 1.5rem;
  }

  .contnew-section-title {
    font-size: 1.55rem;
    margin-bottom: 1.5rem;
  }

  .contnew-form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contnew-contact-form {
    gap: 1.25rem;
  }

  .contnew-info-card {
    padding: 1.4rem 1.35rem;
    gap: 1.15rem;
  }

  .contnew-icon-circle {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .contnew-card-title {
    font-size: 0.88rem;
  }

  .contnew-card-value {
    font-size: 1.05rem;
  }

  .contnew-card-email {
    font-size: 1rem;
  }

  .contnew-card-address {
    font-size: 0.88rem;
  }

  .contnew-map-placeholder {
    height: 240px;
    padding: 1.5rem;
  }

  .contnew-map-icon-wrap {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .contnew-map-title {
    font-size: 1.2rem;
  }

  .contnew-map-desc {
    font-size: 0.8rem;
    max-width: 220px;
    margin-bottom: 1.25rem;
  }

  .contnew-map-section iframe {
    height: 400px;
  }
}

/* ==========================================
   RESPONSIVE - Small Mobile (max-width: 480px)
   ========================================== */
@media (max-width: 480px) {
  .contnew-amenities-section {
    padding: 2.75rem 0;
  }

  .contnew-form-box {
    padding: 1.75rem 1.15rem;
    border-radius: 6px;
  }

  .contnew-section-title {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }

  .contnew-success-msg,
  .contnew-error-msg {
    padding: 1rem;
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
  }

  .contnew-label {
    font-size: 0.8rem;
  }

  .contnew-input {
    padding: 0.75rem 0.9rem;
    font-size: 0.9rem;
  }

  .contnew-select,
  .contnew-date {
    height: 44px;
  }

  .contnew-info-card {
    padding: 1.2rem 1.1rem;
    gap: 1rem;
    flex-direction: row;
  }

  .contnew-icon-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contnew-card-value {
    font-size: 0.98rem;
  }

  .contnew-card-email {
    font-size: 0.92rem;
  }

  .contnew-map-placeholder {
    height: 220px;
    padding: 1.25rem 1rem;
  }

  .contnew-map-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }

  .contnew-map-title {
    font-size: 1.1rem;
  }

  .contnew-map-desc {
    font-size: 0.78rem;
    max-width: 200px;
  }

  .contnew-map-btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.8rem;
  }

  .contnew-map-section iframe {
    height: 320px;
  }
}

/************* video popup*******/
/* ========== VIDEO MODAL ========== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.video-modal-content {
  position: relative;
  width: 92%;
  max-width: 1000px;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.88);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

/* ===== CLOSE BUTTON (Video ke upar) ===== */
.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.65);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  border-color: transparent;
  transform: scale(1.1);
}

.video-wrapper {
  position: relative;
  width: 100%;
  background: #000;
}

.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  background: #000;
}


/* ===== Gallery Video Preview (Left Side) ===== */
.gallery-video-box {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin-top: 1.8rem;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-video-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.gallery-video-thumb {
  display: block;
  width: 100%;
  height: 413px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-video-box:hover .gallery-video-thumb {
  transform: scale(1.06);
}

.gallery-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.gallery-video-box:hover .gallery-video-play {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.callicon {
transform: rotate(267deg);}