/* ==========================================================================
   1. CORE VARIABLES & THEME SETUP
   ========================================================================== */
:root { 
  /* Color Palette */
  --primary: #06402B; 
  --primary-dark: #03271A;
  --primary-light: #0B5C3F;
  --gold: #EFBF04;      
  --gold-light: #FFF4C2;
  --gold-dark: #C69D00;
  --orange: #F9B233;  
  --saffron: #E65100;
  --ivory: #FFFDF6;  
  --sand: #F6F1E5;
  --sand-dark: #E8DFCE;
  --text-dark: #1E2D24;  
  --text-muted: #5A6E63;
  
  /* Layout & Shadows */
  --shadow: 0 15px 40px rgba(6, 64, 43, 0.12);  
  --shadow-hover: 0 22px 50px rgba(6, 64, 43, 0.22);
  --glass-bg: rgba(255, 253, 246, 0.88);
  --glass-border: rgba(239, 191, 4, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
} 

/* Global Box Sizing */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
} 

body {
  margin: 0;
  padding: 0;
  background: url("../img/bg.png") center center/cover no-repeat fixed;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Custom Scrollbar Elements */
.main-content-wrapper::-webkit-scrollbar {
  width: 8px;
}

.main-content-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.main-content-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--orange));
  border-radius: 10px;
} 

/* ==========================================================================
   2. SITE CORE STRUCTURE (NATURAL VIEWPORT SCROLL & FLOATING BACKDROP)
   ========================================================================== */

/* Configure the global body context to support full-page scrolling */
html, body {
  overflow-x: hidden;
  overflow-y: auto; /* Force scrollbar to use the absolute screen edge */
  height: auto;
  min-height: 100vh;
}

/* Custom Webkit Scrollbar applied globally to the browser screen edge */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(6, 64, 43, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--orange));
  border-radius: 10px;
}

/* Background Fixed Glass Border Overlay (Acts as a window frame over the content) */
.fixed-glass-frame {
  position: fixed;
  top: 25px; 
  left: 25px;
  right: 25px;
  bottom: 25px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px); /* Fixed typo from 1px to 15px to match webkit */
  -webkit-backdrop-filter: blur(15px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  
  /* Elevate the glass box above the scrolling content */
  z-index: -1; 
  
  /* CRITICAL: Allows users to scroll or click links *through* the glass layer */
  pointer-events: none; 
  
  /* Keeps the scrolling content contained neatly behind the rounded corners */
  overflow: hidden; 
}

/* Primary Scrollable Core Container (Fits exactly to the glass frame and handles scrolling) */
.main-content-wrapper {
  position: fixed; /* Fixed to match the frame coordinates */
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  
  /* Lower z-index so it stays behind the glass but above your body background */
  z-index: 5; 
  
  /* Enables internal scrolling inside the box limits */
  overflow-y: auto; 
  overflow-x: hidden;
  
  /* Adds breathing room for the text inside the box */
  padding: 0px; 
  border-radius: 25px; /* Matches frame to prevent content from bleeding past corners */
  
  /* Optional: Smooth scrolling behavior */
  scroll-behavior: smooth; 
}

.overlay-box-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

/* ==========================================================================
   3. DESKTOP NAVIGATION SYSTEM (SEAMLESS EDGE-TO-EDGE VIEWPORT)
   ========================================================================== */
.navbar { 
  position: fixed; 
  top: 0; 
  left: 0;
  width: 100%;
  height: 84px;
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 0 36px; 
  background: rgba(6, 64, 43, 0.96); 
  backdrop-filter: blur(15px); 
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 2px solid var(--gold);
  z-index: 100000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Branding Structure */
.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-symbol {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary-dark);
  box-shadow: 0 0 15px rgba(239, 191, 4, 0.5);
  border: 2px solid var(--ivory);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-title { 
  color: var(--ivory); 
  font-size: 26px; 
  font-weight: 700; 
  letter-spacing: 0.5px;
  line-height: 1.1;
  font-family: 'Marcellus', Georgia, serif;
} 

.logo-title span { 
  color: var(--gold); 
} 

.logo-subtitle {
  color: rgba(255, 253, 246, 0.82);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

/* Navigation Links Styling */
.nav-menu { 
  display: flex; 
  align-items: center;
  gap: 8px; 
} 

.nav-menu a { 
  text-decoration: none; 
  color: var(--ivory); 
  padding: 10px 18px; 
  border-radius: var(--radius-sm); 
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease; 
  display: flex;
  align-items: center;
  gap: 6px;
} 

/* Hover & Active States for Links */
.nav-menu a:hover, 
.nav-menu a.active { 
  background: var(--gold); 
  color: #000000; /* Text color changes to Black on hover */
  /* color: #0b3d1f; <--- Use this if you prefer Dark Green text */
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(239, 191, 4, 0.3);
} 

/* Icon hover transition: targets icon inside hovered link */
.nav-menu a:hover i,
.nav-menu a.active i {
  color: #000000; /* Icon color changes to Black on hover */
  /* color: #0b3d1f; <--- Change to this if you prefer Dark Green icons */
}

/* Special Nav Action Button */
.nav-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%) !important;
  color: var(--primary-dark) !important;
  font-weight: 600 !important;
  border: 1px solid var(--ivory);
  padding: 10px 22px !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 178, 51, 0.5) !important;
}

/* Global Font Icon Utilities */
.nav-menu i,
.mobile-menu i {
  font-size: 20px;
  color: var(--gold);
  min-width: 24px;
  margin-right: 10px;
  transition: color 0.3s ease; /* Ensured smooth color transition */
}

.hero-tag i {
  font-size: 18px;
  color: var(--gold);
}

.mobile-book-btn i,
.search-bar-wrapper button i {
  margin-right: 8px;
}

@media (max-width: 992px) {
  .fixed-glass-frame {
    top: 15px; /* Shrinks proportionally with smaller devices */
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
  .main-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .fixed-glass-frame {
    top: 8px; /* Adjusts perfectly below the mobile header strip height */
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .main-content-wrapper {
    padding-top: 0px;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 0px;
  }
}

/* ==========================================================================
   3. DESKTOP NAVIGATION SYSTEM
   ========================================================================== */
.navbar { 
  position: sticky; 
  top: 0; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 16px 36px; 
  background: rgba(6, 64, 43, 0.96); 
  backdrop-filter: blur(15px); 
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 2px solid var(--gold);
  z-index: 1000; 
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

/* Branding Structure */
.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-symbol {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary-dark);
  box-shadow: 0 0 15px rgba(239, 191, 4, 0.5);
  border: 2px solid var(--ivory);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-title { 
  color: var(--ivory); 
  font-size: 26px; 
  font-weight: 700; 
  letter-spacing: 0.5px;
  line-height: 1.1;
  font-family: 'Marcellus', Georgia, serif;
} 

.logo-title span { 
  color: var(--gold); 
} 

.logo-subtitle {
  color: rgba(255, 253, 246, 0.82);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

/* Navigation Links Styling */
.nav-menu { 
  display: flex; 
  align-items: center;
  gap: 8px; 
} 

.nav-menu a { 
  text-decoration: none; 
  color: var(--ivory); 
  padding: 10px 18px; 
  border-radius: var(--radius-sm); 
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease; 
  display: flex;
  align-items: center;
  gap: 6px;
} 

.nav-menu a:hover, 
.nav-menu a.active { 
  background: var(--gold); 
  color: var(--primary-dark); 
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(239, 191, 4, 0.3);
} 

/* Special Nav Action Button */
.nav-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%) !important;
  color: var(--primary-dark) !important;
  font-weight: 600 !important;
  border: 1px solid var(--ivory);
  padding: 10px 22px !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 178, 51, 0.5) !important;
}

/* Global Font Icon Utilities */
.nav-menu i,
.mobile-menu i {
  font-size: 20px;
  color: var(--gold);
  min-width: 24px;
  margin-right: 10px;
  transition: .3s;
}

.hero-tag i {
  font-size: 18px;
  color: var(--gold);
}

.mobile-book-btn i,
.search-bar-wrapper button i {
  margin-right: 8px;
}

/* ==========================================================================
   4. HERO CAROUSEL / SLIDER SECTION (DESKTOP)
   ========================================================================== */
.hero-slider { 
  margin: 25px 30px; 
  height: 500px; 
  border-radius: var(--radius-lg); 
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(6, 64, 43, 0.2);
  border: 1px solid rgba(239, 191, 4, 0.4);
} 

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ivory);
  padding: 40px 25px;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1);
  transition: transform 0.8s ease;
}

/* Ken Burns Zoom Effect */
.slide.active .slide-bg {
  transform: scale(1.15);
  transition: transform 10s linear;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(6, 64, 43, 0.45) 0%, rgba(3, 39, 26, 0.85) 100%);
  z-index: -1;
}

.slide-content {
  z-index: 2;
  max-width: 850px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 191, 4, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.slide h1 { 
  font-size: 52px; 
  font-family: 'Marcellus', Georgia, serif;
  margin-bottom: 15px; 
  color: var(--ivory);
  letter-spacing: 0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  line-height: 1.2;
} 

.slide h1 span {
  color: var(--gold);
} 

.slide p { 
  font-size: 20px; 
  color: #E2EFE9;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 300;
} 

/* Text Transition Animations */
.animate-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .animate-text {
  opacity: 1;
  transform: translateY(0);
}

.slide.active h1.animate-text {
  transition-delay: 0.3s;
}

.slide.active p.animate-text {
  transition-delay: 0.5s;
}

/* ==========================================================================
   5. FLOATING SLIDER SEARCH BAR ENGINE
   ========================================================================== */
.slider-search-container {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 720px;
  z-index: 10;
  padding: 0 20px;
}

.search-bar-wrapper {
  width: 100%;
  display: flex;
  gap: 10px;
  background: rgba(255, 253, 246, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 10px 10px 25px;
  border-radius: 50px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}

.search-bar-wrapper:focus-within {
  transform: translate(0, -2px) scale(1.02);
  border-color: var(--orange);
  background: rgba(255, 255, 255, 1);
}

.search-bar-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
}

.search-bar-wrapper button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--gold);
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-bar-wrapper button:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

/* Pagination Control Dot Layout */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--gold);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--gold);
  width: 35px;
  border-radius: 10px;
}

/* ==========================================================================
   6. UNIVERSAL MOBILE UI SYSTEM (SIDE DRAWER & OVERLAY)
   ========================================================================== */
.mobile-icons {
  display: none;
  align-items: center;
  gap: 16px;
}

.mobile-icons i {
  font-size: 26px;
  color: var(--gold);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.mobile-icons i:active {
  transform: scale(0.9);
}

.cart-btn {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -7px;
  background: var(--saffron);
  color: var(--ivory);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid var(--primary-dark);
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Hidden Side Overlay Drawer Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: var(--primary-dark);
  border-right: 2px solid var(--gold);
  z-index: 99999;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
  transform: translateX(0);
}

.mobile-menu.active {
  transform: translateX(300px);
}

/* Menu Header Area & Close Mechanism */
.menu-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}

.close-menu {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(239, 191, 4, 0.3);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.close-menu i {
  font-size: 22px;
  color: var(--gold) !important;
  margin: 0 !important;
  min-width: auto !important;
}

.close-menu:active {
  background: var(--gold);
}

.close-menu:active i {
  color: var(--primary-dark) !important;
}

/* Navigation Links Container */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  color: var(--ivory);
  padding: 12px 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 253, 246, 0.06);
  transition: all 0.2s ease;
  border-radius: var(--radius-sm);
}

.mobile-nav-links a i {
  font-size: 20px;
  color: var(--gold);
  min-width: 28px;
  margin-right: 12px;
}

.mobile-nav-links a:active {
  background: rgba(239, 191, 4, 0.1);
  color: var(--gold);
  padding-left: 14px;
}

/* Drawer Call-to-Action Booking Button */
.mobile-book-btn {
  margin-top: 10px;
  padding: 14px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  color: var(--primary-dark);
  border: 1px solid var(--ivory);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(249, 178, 51, 0.3);
  transition: transform 0.2s ease;
}

.mobile-book-btn i {
  font-size: 16px;
  color: var(--primary-dark) !important;
  margin: 0 !important;
  min-width: auto !important;
}

.mobile-book-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(249, 178, 51, 0.2);
}

/* Footer Element Placement */
.menu-footer {
  margin-top: auto;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  padding-top: 15px;
  border-top: 1px solid rgba(255, 253, 246, 0.08);
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.menu-footer strong {
  color: var(--gold);
  font-weight: 600;
}

/* Dim View Overlay Background Layer */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 39, 26, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   7. DYNAMIC RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   ========================================================================== */

/* Large Tablets / Small Laptops */
@media (max-width: 1200px) {
  body {
    background-attachment: scroll;
  }
  .fixed-glass-frame,
  .main-content-wrapper {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 22px;
  }
  
  /* Responsive Navigation Flex Override */
  .desktop-menu {
    display: none;
  }
  .mobile-icons {
    display: flex;
  }
  .navbar {
    padding: 14px;
    border-radius: 22px 22px 0 0;
    justify-content: space-between;
  }
  
  .logo-container {
    width: auto;
  }
  .logo-symbol {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
  .logo-title {
    font-size: 22px;
  }
  .logo-subtitle {
    font-size: 10px;
  }
  
  /* Hide search option entirely in mobile view */
  .slider-search-container {
    display: none !important;
  }

  /* NATIVE MOBILE APP SLIDER ENGINE CONFIGURATION */
  .hero-slider {
    margin: 12px;
    height: auto;
    aspect-ratio: 4 / 5; /* Dynamic app card standard sizing */
    max-height: 560px;
    border-radius: 20px;
    overflow: hidden;
  }

  /* Convert container into a horizontal hardware accelerated touch track */
  .slider-wrapper {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-flow: row nowrap;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Remove scrollbars from the active slider track */
  .slider-wrapper::-webkit-scrollbar {
    display: none;
    width: 0 !important;
    height: 0 !important;
  }

  /* Structural transformation from hidden stacks into adjacent application cards */
  .slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    top: auto;
    left: auto;
    opacity: 1 !important; /* Managed by scroll-snap rather than opacity transitions */
    transform: none !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Weights content cleanly to bottom like premium mobile UIs */
    text-align: left; /* Changes text handling to clean left-aligned mobile styles */
  }

  /* Fix background positioning inside the snap cards */
  .slide-bg {
    transform: scale(1) !important;
    transition: none !important;
  }
  
  .slide-overlay {
    background: linear-gradient(to top, rgba(3, 39, 26, 0.95) 0%, rgba(6, 64, 43, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  }

  .slide-content {
    max-width: 100%;
    width: 100%;
  }

  .hero-tag {
    font-size: 10px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .slide h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  }

  .slide p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: rgba(226, 239, 233, 0.9);
  }

  /* Animate content entry text directly within viewport card focus */
  .animate-text {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Fixed sticky dot position layer over swiping list cards */
  .slider-dots {
    bottom: 15px;
    position: absolute;
    pointer-events: none;
  }
}

/* ==========================================================================
   RESPONSIVE HERO SLIDER
   ========================================================================== */

@media (max-width:1200px){

    body{
        background-attachment:scroll;
    }

    .fixed-glass-frame,
    .main-content-wrapper{
        top:8px;
        left:8px;
        right:8px;
        bottom:8px;
        border-radius:22px;
    }

    /* Navigation */

    .desktop-menu{
        display:none;
    }

    .mobile-icons{
        display:flex;
    }

    .navbar{
        padding:14px;
        justify-content:space-between;
        border-radius:22px 22px 0 0;
    }

    .logo-container{
        width:auto;
    }

    .logo-symbol{
        width:42px;
        height:42px;
        font-size:22px;
    }

    .logo-title{
        font-size:22px;
    }

    .logo-subtitle{
        font-size:10px;
    }

    /* Hide Search */

    .slider-search-container{
        display:none;
    }

    /* Hero Slider */

    .hero-slider{

        position:relative;
        width:calc(100% - 24px);

        margin:12px auto;

        height:500px;
        min-height:420px;
        max-height:560px;

        overflow:hidden;

        border-radius:20px;

    }

    /* Slider Track */

    .slider-wrapper{

        display:flex;

        width:100%;
        height:100%;

        overflow-x:auto;
        overflow-y:hidden;

        scroll-snap-type:x mandatory;
        scroll-behavior:smooth;

        -webkit-overflow-scrolling:touch;

        scrollbar-width:none;

    }

    .slider-wrapper::-webkit-scrollbar{
        display:none;
    }

    /* Slide */

    .slide{

        position:relative;

        flex:0 0 100%;

        width:100%;
        height:100%;

        scroll-snap-align:start;

        display:flex;
        align-items:flex-end;

        padding:28px 20px 60px;

        overflow:hidden;

        opacity:1 !important;
        transform:none !important;

    }

    /* Background */

    .slide-bg{

        position:absolute;

        top:0;
        left:0;

        width:100%;
        height:100%;

        background-size:cover;
        background-position:center;

        transform:none !important;

        z-index:1;

    }

    /* Overlay */

    .slide-overlay{

        position:absolute;

        inset:0;

        z-index:2;

        background:
        linear-gradient(
        to top,
        rgba(3,39,26,.95) 0%,
        rgba(3,39,26,.45) 60%,
        rgba(0,0,0,0) 100%);

    }

    /* Content */

    .slide-content{

        position:relative;

        z-index:3;

        width:100%;
        max-width:100%;

    }

    .hero-tag{

        font-size:11px;

        padding:5px 12px;

        margin-bottom:14px;

    }

    .slide h1{

        font-size:30px;
        line-height:1.2;

        margin-bottom:12px;

    }

    .slide p{

        font-size:15px;

        line-height:1.6;

        margin-bottom:0;

    }

    .animate-text{

        opacity:1 !important;

        transform:none !important;

    }

    /* Dots */

    .slider-dots{

        position:absolute;

        left:50%;
        bottom:18px;

        transform:translateX(-50%);

        display:flex;

        gap:10px;

        z-index:20;

        pointer-events:auto;

    }

}

/* Mobile */

@media (max-width:768px){

    .hero-slider{

        height:420px;

        min-height:420px;

    }

    .slide{

        padding:22px 18px 55px;

    }

    .slide h1{

        font-size:26px;

    }

    .slide p{

        font-size:14px;

    }

}

/* Small Phones */

@media (max-width:480px){

    .hero-slider{

        height:360px;

        min-height:360px;

    }

    .slide{

        padding:20px 16px 50px;

    }

    .slide h1{

        font-size:22px;

    }

    .slide p{

        font-size:13px;

    }

}

/* Medium Tablets (Landscape & Portrait Viewports) */
@media (max-width: 992px) {
  body {
    background-attachment: scroll;
  }
  .fixed-glass-frame,
  .main-content-wrapper {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 22px;
  }
  
  /* Responsive Navigation Flex Override */
  .desktop-menu {
    display: none;
  }
  .mobile-icons {
    display: flex;
  }
  .navbar {
    padding: 14px;
    border-radius: 22px 22px 0 0;
    justify-content: space-between;
  }
  
  .logo-container {
    width: auto;
  }
  .logo-symbol {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
  .logo-title {
    font-size: 22px;
  }
  .logo-subtitle {
    font-size: 10px;
  }
  
  /* Hide search option entirely in mobile view */
  .slider-search-container {
    display: none !important;
  }

  /* NATIVE MOBILE APP SLIDER ENGINE CONFIGURATION */
  .hero-slider {
    margin: 12px;
    height: auto;
    aspect-ratio: 4 / 5; /* Dynamic app card standard sizing */
    max-height: 560px;
    border-radius: 20px;
    overflow: hidden;
  }

  /* Convert container into a horizontal hardware accelerated touch track */
  .slider-wrapper {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-flow: row nowrap;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Remove scrollbars from the active slider track */
  .slider-wrapper::-webkit-scrollbar {
    display: none;
    width: 0 !important;
    height: 0 !important;
  }

  /* Structural transformation from hidden stacks into adjacent application cards */
  .slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    top: auto;
    left: auto;
    opacity: 1 !important; /* Managed by scroll-snap rather than opacity transitions */
    transform: none !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Weights content cleanly to bottom like premium mobile UIs */
    text-align: left; /* Changes text handling to clean left-aligned mobile styles */
  }

  /* Fix background positioning inside the snap cards */
  .slide-bg {
    transform: scale(1) !important;
    transition: none !important;
  }
  
  .slide-overlay {
    background: linear-gradient(to top, rgba(3, 39, 26, 0.95) 0%, rgba(6, 64, 43, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  }

  .slide-content {
    max-width: 100%;
    width: 100%;
  }

  .hero-tag {
    font-size: 10px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .slide h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  }

  .slide p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: rgba(226, 239, 233, 0.9);
  }

  /* Animate content entry text directly within viewport card focus */
  .animate-text {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Fixed sticky dot position layer over swiping list cards */
  .slider-dots {
    bottom: 15px;
    position: absolute;
    pointer-events: none;
  }
}

/* Mobile Smart Screens (768px Viewports and Down) */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
  .fixed-glass-frame,
  .main-content-wrapper {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 22px;
  }
  
  /* Responsive Navigation Flex Override */
  .desktop-menu {
    display: none;
  }
  .mobile-icons {
    display: flex;
  }
  .navbar {
    padding: 14px;
    border-radius: 22px 22px 0 0;
    justify-content: space-between;
  }
  
  .logo-container {
    width: auto;
  }
  .logo-symbol {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
  .logo-title {
    font-size: 22px;
  }
  .logo-subtitle {
    font-size: 10px;
  }
  
  /* Hide search option entirely in mobile view */
  .slider-search-container {
    display: none !important;
  }

  /* NATIVE MOBILE APP SLIDER ENGINE CONFIGURATION */
  .hero-slider {
    margin: 12px;
    height: auto;
    aspect-ratio: 4 / 5; /* Dynamic app card standard sizing */
    max-height: 560px;
    border-radius: 20px;
    overflow: hidden;
  }

  /* Convert container into a horizontal hardware accelerated touch track */
  .slider-wrapper {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-flow: row nowrap;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Remove scrollbars from the active slider track */
  .slider-wrapper::-webkit-scrollbar {
    display: none;
    width: 0 !important;
    height: 0 !important;
  }

  /* Structural transformation from hidden stacks into adjacent application cards */
  .slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    top: auto;
    left: auto;
    opacity: 1 !important; /* Managed by scroll-snap rather than opacity transitions */
    transform: none !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Weights content cleanly to bottom like premium mobile UIs */
    text-align: left; /* Changes text handling to clean left-aligned mobile styles */
  }

  /* Fix background positioning inside the snap cards */
  .slide-bg {
    transform: scale(1) !important;
    transition: none !important;
  }
  
  .slide-overlay {
    background: linear-gradient(to top, rgba(3, 39, 26, 0.95) 0%, rgba(6, 64, 43, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  }

  .slide-content {
    max-width: 100%;
    width: 100%;
  }

  .hero-tag {
    font-size: 10px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .slide h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  }

  .slide p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: rgba(226, 239, 233, 0.9);
  }

  /* Animate content entry text directly within viewport card focus */
  .animate-text {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Fixed sticky dot position layer over swiping list cards */
  .slider-dots {
    bottom: 15px;
    position: absolute;
    pointer-events: none;
  }
}

/* Micro-Display / Compact Mobile Viewports */
@media (max-width: 480px) {
  .fixed-glass-frame,
  .main-content-wrapper {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
  }
  .hero-slider {
    margin: 8px;
    aspect-ratio: 4 / 5.2;
  }
  .slide {
    padding: 24px 16px;
  }
  .slide h1 {
    font-size: 24px;
  }
  .slide p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .logo-title {
    font-size: 20px;
  }
  .logo-symbol {
    width: 40px;
    height: 40px;
  }
  .slider-dots {
    gap: 6px;
  }
  .dot {
    width: 8px;
    height: 8px;
  }
  .dot.active {
    width: 24px;
  }
}