/* 
 * main.css - Centralized styles for Art Jewel Nature Trails
 * All colors, fonts, themes, and common styles are defined here
 */

/* =============================================
 * GLOBAL COLOR VARIABLES & THEME COLORS
 * ============================================= */

:root {
  /* Primary Brand Colors */
  --primary-color: #2193b0;
  --primary-color-rgb: 33, 147, 176;
  --secondary-color: #6dd5ed;
  --secondary-color-rgb: 109, 213, 237;
  
  /* Accent Colors */
  --accent-gold: #f8b400;
  --accent-gold-rgb: 248, 180, 0;
  --accent-coral: #ff6b6b;
  --accent-coral-rgb: 255, 107, 107;
  --accent-teal: #38b2ac;
  --accent-teal-rgb: 56, 178, 172;
  
  /* Dark Theme (Default) Colors */
  --dark-color: #121212;
  --dark-secondary: #1a1a1a;
  --dark-tertiary: #262626;
  --dark-quaternary: #222222;
  --dark-border: #333333;
  --dark-text-primary: #ffffff;
  --dark-text-secondary: #cccccc;
  --dark-text-muted: #aaaaaa;
  
  /* Light Theme Colors */
  --light-color: #f8f9fa;
  --light-secondary: #ffffff;
  --light-tertiary: #e9ecef;
  --light-border: #dee2e6;
  --light-text-primary: #212529;
  --light-text-secondary: #495057;
  --light-text-muted: #6c757d;
  
  /* Functional Colors */
  --success-color: #28a745;
  --success-color-rgb: 40, 167, 69;
  --danger-color: #dc3545;
  --danger-color-rgb: 220, 53, 69;
  --warning-color: #ffc107;
  --warning-color-rgb: 255, 193, 7;
  --info-color: #17a2b8;
  --info-color-rgb: 23, 162, 184;
  
  /* Common Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gold-gradient: linear-gradient(135deg, var(--accent-gold), #FFA500);
  --premium-gradient: linear-gradient(145deg, var(--dark-secondary), var(--dark-quaternary));
  --glass-gradient: linear-gradient(145deg, rgba(30, 30, 40, 0.7) 0%, rgba(20, 20, 30, 0.9) 100%);
  
  /* Typography Variables */
  --font-primary: 'Open Sans', sans-serif;
  --font-heading: 'Raleway', sans-serif;
  
  /* Spacing Variables */
  --section-padding: 70px;
  --card-padding: 40px;
  --border-radius: 16px;
  --border-radius-small: 8px;
  --border-radius-large: 20px;
  
  /* Shadow Variables */
  --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
  --shadow-intense: 0 20px 40px rgba(0, 0, 0, 0.3);
  
  /* Animation Variables */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-slow: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* =============================================
 * GLOBAL STYLES 
 * ============================================= */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  color-scheme: dark;
}

body {
  font-family: var(--font-primary);
  color: var(--dark-text-primary);
  background-color: var(--dark-color);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--dark-text-primary);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
}

a:hover {
  color: var(--accent-gold);
  text-decoration: none;
}

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

/* Animated link effect */
a.animated-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: var(--accent-gold);
  transition: width var(--transition-fast);
}

a.animated-link:hover:after {
  width: 100%;
}

/* =============================================
 * BUTTON STYLES
 * ============================================= */

.btn {
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  transition: all var(--transition-fast);
  font-weight: 600;
  box-shadow: var(--shadow-light);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.3);
}

.btn-warning {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--dark-color);
}

.btn-warning:hover {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--accent-gold-rgb), 0.3);
}

.btn-success {
  background-color: var(--success-color);
  border-color: var(--success-color);
}

.btn-success:hover {
  background-color: transparent;
  border-color: var(--success-color);
  color: var(--success-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--success-color-rgb), 0.3);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--dark-text-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.3);
}

/* Book Now Button - Special Animated Style */
.btn-book-now {
  display: inline-block;
  background: linear-gradient(-45deg, var(--accent-gold), #FFA500, #FF4500, #FF8C00);
  background-size: 300% 300%;
  border: none;
  color: var(--dark-text-primary) !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.5);
  animation: gradientShift 4s ease infinite, pulse 2s infinite alternate;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  isolation: isolate;
}

.btn-book-now:hover {
  transform: translateY(-3px) scale(1.05);
  animation: gradientShift 3s ease infinite, pulseHover 1s infinite alternate;
  color: var(--dark-text-primary) !important;
  text-decoration: none;
}

/* Premium Button Style */
.btn-premium {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-gold));
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all var(--transition-medium);
}

.btn-premium:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--accent-gold), var(--primary-color));
  opacity: 0;
  transition: all var(--transition-medium);
  z-index: -1;
}

.btn-premium:hover {
  color: #fff;
  box-shadow: 0 10px 30px rgba(var(--accent-gold-rgb), 0.4);
  transform: translateY(-5px);
}

.btn-premium:hover:before {
  opacity: 1;
}

/* CTA Button Styles */
.btn-cta-light {
  background: #fff;
  color: var(--primary-color);
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-fast);
}

.btn-cta-light:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-intense);
  color: var(--accent-gold);
}

.btn-cta-outline {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  background: transparent;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
}

.btn-cta-outline:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: #fff;
}

/* Button Animations */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse {
  0% { box-shadow: 0 5px 15px rgba(255, 69, 0, 0.5); }
  100% { box-shadow: 0 5px 30px rgba(255, 69, 0, 0.8), 0 0 20px rgba(255, 165, 0, 0.6); }
}

@keyframes pulseHover {
  0% { box-shadow: 0 7px 20px rgba(255, 69, 0, 0.6); }
  100% { box-shadow: 0 7px 30px rgba(255, 69, 0, 0.9), 0 0 25px rgba(255, 140, 0, 0.7); }
}

/* Ripple effect for buttons */
.ripple-button {
  position: relative;
  overflow: hidden;
}

.ripple-button .ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.8s linear;
}

@keyframes ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* =============================================
 * LAYOUT & SECTIONS
 * ============================================= */

.section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.section:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom section padding */
.py-custom {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  color: var(--dark-text-primary);
}

.section-title:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -12px;
  left: 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--dark-text-muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Premium section headers */
.premium-section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.premium-section-header h2 {
  color: var(--dark-text-primary);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.premium-section-header h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.premium-section-header p {
  color: var(--dark-text-secondary);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 25px;
}

/* =============================================
 * CARD STYLES
 * ============================================= */

.card {
  background-color: var(--dark-secondary);
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-medium);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Premium Cards */
.premium-card {
  background: var(--premium-gradient);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  padding: 2.5rem;
  height: 100%;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(var(--primary-color-rgb), 0.05), rgba(var(--accent-gold-rgb), 0.05));
  z-index: -1;
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

/* Glass Effect Cards */
.glass-effect {
  background: var(--glass-gradient);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-heavy);
}

/* =============================================
 * HERO SECTIONS
 * ============================================= */

.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 180px 0 120px;
  overflow: hidden;
}

/* Hero overlay */
.hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

/* Hero text */
.hero-section h1,
.hero-section p {
  color: #fff;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-section p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Floating decorative elements */
.hero-floating-element {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.hero-floating-element-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--accent-gold);
  filter: blur(80px);
  top: -150px;
  right: -100px;
  animation: float 15s ease-in-out infinite;
}

.hero-floating-element-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-color);
  filter: blur(60px);
  bottom: -120px;
  left: -80px;
  animation: float 18s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 15px) rotate(5deg); }
  50% { transform: translate(5px, -10px) rotate(0deg); }
  75% { transform: translate(-10px, 5px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* =============================================
 * HEADER & NAVBAR
 * ============================================= */

/* Top Bar */
.top-bar {
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-contact span {
  display: inline-block;
  margin-right: 15px;
}

.top-bar-contact i {
  margin-right: 5px;
  color: var(--accent-gold);
}

/* Navbar */
.navbar {
  padding: 0.5rem 1rem;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
}

.bg-primary-gradient {
  background: var(--primary-gradient);
}

.navbar-brand img {
  height: 50px;
  transition: all var(--transition-fast);
}

.navbar-nav {
  margin-left: auto;
}

.nav-item {
  position: relative;
  margin: 0 5px;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.8rem 1rem !important;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--accent-gold);
}

/* Dropdown Menu */
.dropdown-menu {
  background-color: var(--dark-color);
  border: none;
  border-radius: var(--border-radius-small);
  box-shadow: var(--shadow-medium);
  padding: 0.5rem 0;
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
}

.dropdown-menu:before {
  content: '';
  position: absolute;
  top: -10px;
  left: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--dark-color);
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.7rem 1.5rem;
  font-weight: 400;
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--accent-gold);
}

.dropdown-divider {
  margin: 0.5rem 0;
  opacity: 0.2;
  border-top-color: var(--dark-border);
}

/* Navbar Toggler */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

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

/* =============================================
 * FOOTER
 * ============================================= */

.footer {
  background-color: #0d0d0d;
  padding: 60px 0 0;
  color: var(--dark-text-secondary);
}

.footer h5 {
  color: var(--dark-text-primary);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer p, .footer a {
  color: var(--dark-text-muted);
  transition: all var(--transition-fast);
}

.footer a:hover {
  color: var(--accent-gold);
  text-decoration: none;
}

.footer-bar {
  background-color: #070707;
  margin-top: 2rem;
}

.footer-link {
  color: var(--dark-text-muted);
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-gold) !important;
  text-decoration: none;
}

/* =============================================
 * FORM ELEMENTS
 * ============================================= */

.form-control, .form-select {
  background-color: var(--dark-tertiary);
  border-color: var(--dark-border);
  color: var(--dark-text-primary);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-small);
  transition: all var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  background-color: var(--dark-tertiary);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--primary-color-rgb), 0.25);
  color: var(--dark-text-primary);
}

.form-control::placeholder {
  color: #777;
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-size: 16px 12px;
}

.form-select option {
  background-color: var(--dark-tertiary);
  color: var(--dark-text-primary);
}

.invalid-feedback {
  font-size: 0.85rem;
}

/* =============================================
 * LOADING & ANIMATION STYLES
 * ============================================= */

/* Loading Overlay */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity var(--transition-medium);
}

.spinner {
  width: 4rem;
  height: 4rem;
  border: 0.3rem solid rgba(255, 255, 255, 0.1);
  border-top: 0.3rem solid var(--accent-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 20px rgba(var(--accent-gold-rgb), 0.3);
}

.loading-text {
  display: none; /* Simple spinner only */
}

/* Content loading indicators */
.content-loading {
  text-align: center;
  padding: 40px;
  background: var(--glass-gradient);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.content-loading .spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-gold);
  margin: 0 auto 15px;
}

.content-loading p {
  color: var(--dark-text-primary);
  font-weight: 500;
  letter-spacing: 1px;
}

/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(30px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from { 
    opacity: 0;
    transform: scale(0.9);
  }
  to { 
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Classes */
.animate-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  animation: slideUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.zoom-in {
  animation: zoomIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Staggered animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Floating elements animation */
.float-element {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* =============================================
 * WHATSAPP BUTTON
 * ============================================= */

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  box-shadow: var(--shadow-medium);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn img {
  height: 60px;
  width: auto;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 0 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:active {
  transform: scale(0.95);
}

/* =============================================
 * UTILITY CLASSES
 * ============================================= */

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: var(--accent-gold);
  color: var(--dark-color);
  padding: 10px 15px;
  border-radius: 5px;
  z-index: 10000;
  transition: top var(--transition-fast);
  font-weight: 600;
}

.skip-link:focus {
  top: 10px;
  box-shadow: 0 0 0 3px rgba(var(--accent-gold-rgb), 0.5);
}

/* Error Message Styling */
#error-message {
  z-index: 9999;
  background-color: rgba(var(--danger-color-rgb), 0.95);
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow-heavy);
  transition: all var(--transition-fast);
}

#error-message button {
  transition: all var(--transition-fast);
}

#error-message button:hover {
  background-color: white;
  color: var(--danger-color);
  transform: translateY(-2px);
}

/* Background textures */
.bg-texture {
  position: relative;
}

.bg-texture:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
  opacity: 0.5;
}

/* Stylish background shapes */
.bg-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.shape-1 {
  background: var(--primary-color);
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  opacity: 0.1;
}

.shape-2 {
  background: var(--accent-gold);
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
  opacity: 0.1;
}

.shape-3 {
  background: var(--accent-teal);
  width: 200px;
  height: 200px;
  bottom: 100px;
  right: 100px;
  opacity: 0.1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary-color), var(--accent-gold));
  border-radius: 6px;
  border: 3px solid var(--dark-color);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--accent-gold), var(--primary-color));
}

/* Selection color */
::selection {
  background: rgba(var(--accent-gold-rgb), 0.3);
  color: var(--dark-text-primary);
}

/* =============================================
 * LIGHT THEME STYLES
 * ============================================= */

body.light-theme {
  background-color: var(--light-color);
  color: var(--light-text-primary);
}

body.light-theme .section:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .card {
  background-color: var(--light-secondary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body.light-theme .premium-card {
  background: linear-gradient(145deg, var(--light-secondary), var(--light-tertiary));
  border: 1px solid var(--light-border);
}

body.light-theme .glass-effect {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .footer {
  background-color: #f0f0f0;
  color: var(--light-text-secondary);
}

body.light-theme .footer h5 {
  color: var(--light-text-primary);
}

body.light-theme .footer p, 
body.light-theme .footer a,
body.light-theme .footer-link {
  color: var(--light-text-muted);
}

body.light-theme .footer-bar {
  background-color: #e0e0e0;
  color: var(--light-text-secondary);
}

body.light-theme .form-control,
body.light-theme .form-select {
  background-color: var(--light-secondary);
  border-color: var(--light-border);
  color: var(--light-text-primary);
}

body.light-theme .form-control:focus,
body.light-theme .form-select:focus {
  background-color: var(--light-secondary);
  color: var(--light-text-primary);
}

body.light-theme .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

body.light-theme .form-select option {
  background-color: var(--light-secondary);
  color: var(--light-text-primary);
}

body.light-theme .navbar-dark .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.7);
}

body.light-theme .navbar-dark .navbar-nav .nav-link:hover,
body.light-theme .navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

body.light-theme .dropdown-menu {
  background-color: var(--light-secondary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body.light-theme .dropdown-menu:before {
  border-bottom-color: var(--light-secondary);
}

body.light-theme .dropdown-item {
  color: var(--light-text-primary);
}

body.light-theme .dropdown-divider {
  border-top-color: var(--light-border);
}

body.light-theme #loading-overlay {
  background: linear-gradient(180deg, var(--light-color) 0%, var(--light-tertiary) 50%, var(--light-color) 100%);
}

body.light-theme .spinner {
  border-color: rgba(0, 0, 0, 0.1);
  border-top-color: var(--accent-gold);
}

body.light-theme .loading-text {
  color: var(--light-text-secondary);
}

body.light-theme h1, 
body.light-theme h2, 
body.light-theme h3, 
body.light-theme h4,
body.light-theme h5,
body.light-theme h6 {
  color: var(--light-text-primary);
  text-shadow: none;
}

body.light-theme .section-title {
  color: var(--light-text-primary);
}

body.light-theme .premium-section-header h2 {
  color: var(--light-text-primary);
}

body.light-theme .premium-section-header p {
  color: var(--light-text-secondary);
}

/* =============================================
 * ADDITIONAL STYLES FROM PREMIUM DARK THEME
 * ============================================= */

/* Section alternating backgrounds */
section:nth-of-type(odd) {
  background-color: var(--dark-secondary);
}

section:nth-of-type(even) {
  background-color: var(--dark-color);
}

/* Partnership Cards */
.partnership-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.partnership-card h4 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  padding-bottom: 10px;
}

.partnership-card h4::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-gold));
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

/* Future Plan Cards */
.future-plan-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.future-plan-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--premium-gradient);
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-light);
}

.future-plan-icon i {
  font-size: 2rem;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.future-plan-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark-text-primary);
}

.future-plan-card p {
  color: var(--dark-text-secondary);
  line-height: 1.6;
}

/* Testimonial Content Specific Styling */
.testimonial-content {
  position: relative;
  padding: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--dark-text-secondary);
}

.testimonial-content i.fa-quote-left,
.testimonial-content i.fa-quote-right {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.testimonial-author h5 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: var(--dark-text-primary);
}

.testimonial-author p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--dark-text-muted);
}

/* Enhanced CTA Section */
.btn-cta {
  background: #ffffff;
  color: #333;
  border: none;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-light);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  background: #f8f9fa;
}

/* Light theme overrides for sections */
body.light-theme section:nth-of-type(odd) {
  background-color: var(--light-tertiary);
}

body.light-theme section:nth-of-type(even) {
  background-color: var(--light-color);
}

body.light-theme .future-plan-card h4,
body.light-theme .partnership-card h4 {
  color: var(--light-text-primary);
}

body.light-theme .future-plan-card p {
  color: var(--light-text-secondary);
}

body.light-theme .testimonial-content p {
  color: var(--light-text-secondary);
}

body.light-theme .testimonial-author h5 {
  color: var(--light-text-primary);
}

body.light-theme .testimonial-author p {
  color: var(--light-text-muted);
}

/* =============================================
 * RESPONSIVE DESIGN
 * ============================================= */

@media (max-width: 1199.98px) {
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .py-custom {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .premium-section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 140px 0 100px;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .py-custom {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  
  .premium-section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 120px 0 80px;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .py-custom {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .premium-card,
  .content-loading {
    padding: 25px;
  }
  
  .premium-section-header h2 {
    font-size: 1.8rem;
  }
  
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-btn img {
    height: 50px;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 100px 0 70px;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .premium-section-header h2 {
    font-size: 1.6rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .btn-book-now {
    padding: 0.7rem 1.6rem;
  }
}

/* =============================================
 * PRINT STYLES
 * ============================================= */

@media print {
  .whatsapp-btn,
  #loading-overlay,
  .navbar,
  .footer {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .hero-section {
    background: none !important;
    color: black !important;
  }
  
  .premium-card,
  .glass-effect {
    background: white !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
  }
}