
:root {
  /* Modern Color Palette */
  --primary: #3b82f6;
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;
  --mute:#6b7280;
  --secondary: #64748b;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #06b6d4;
  --light: #f8fafc;
  --dark: #0f172a;
  
  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: 16px;
  
  /* Shadow Variables */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
}

/* ===============================================
   BOOTSTRAP COMPONENT OVERRIDES
   =============================================== */

/* Update Bootstrap Primary Colors */
.btn-primary,
.bg-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-primary:hover {
  background-color: var(--primary-600) !important;
  border-color: var(--primary-600) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

/* Cards with Modern Styling */
.card {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  backdrop-filter: blur(var(--glass-blur));
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-glass {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
  backdrop-filter: blur(var(--glass-blur));
}

/* Buttons */
.btn {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-glass {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
  backdrop-filter: blur(var(--glass-blur));
  color: white !important;
}

/* Navigation */
.navbar {
  backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.navbar-glass {
  background: var(--glass-bg) !important;
}

/* Modals */
.modal-content {
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-2xl);
  backdrop-filter: blur(var(--glass-blur));
}

.modal-glass {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
}

/* Forms */
.form-control,
.form-select {
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-glass {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
  backdrop-filter: blur(var(--glass-blur));
  color: white !important;
}

.form-glass::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ===============================================
   TAILWIND-LIKE UTILITY CLASSES
   =============================================== */

/* Shadows */
.shadow-none { box-shadow: none !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow { box-shadow: var(--shadow) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.shadow-xl { box-shadow: var(--shadow-xl) !important; }
.shadow-2xl { box-shadow: var(--shadow-2xl) !important; }
.shadow-inner { box-shadow: var(--shadow-inner) !important; }

/* Glass Effect Utilities */
.glass {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border) !important;
}

.glass-white {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.glass-dark {
  background: rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Border Radius */
.rounded-none { border-radius: 0 !important; }
.rounded-sm { border-radius: 0.125rem !important; }
.rounded { border-radius: 0.25rem !important; }
.rounded-md { border-radius: 0.375rem !important; }
.rounded-lg { border-radius: 0.5rem !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }
.rounded-3xl { border-radius: 1.5rem !important; }
.rounded-full { border-radius: 9999px !important; }

/* Spacing - Margins */
.m-0 { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 0.75rem !important; }
.m-4 { margin: 1rem !important; }
.m-5 { margin: 1.25rem !important; }
.m-6 { margin: 1.5rem !important; }
.m-8 { margin: 2rem !important; }
.m-10 { margin: 2.5rem !important; }
.m-12 { margin: 3rem !important; }

/* Margin X-axis */
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
.mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.mx-3 { margin-left: 0.75rem !important; margin-right: 0.75rem !important; }
.mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* Margin Y-axis */
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 0.75rem !important; margin-bottom: 0.75rem !important; }
.my-4 { margin-top: 1rem !important; margin-bottom: 1rem !important; }

/* Spacing - Padding */
.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-4 { padding: 1rem !important; }
.p-5 { padding: 1.25rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }

/* Padding X-axis */
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }

/* Padding Y-axis */
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }

/* Width */
.w-full { width: 100% !important; }
.w-auto { width: auto !important; }
.w-1\/2 { width: 50% !important; }
.w-1\/3 { width: 33.333333% !important; }
.w-2\/3 { width: 66.666667% !important; }
.w-1\/4 { width: 25% !important; }
.w-3\/4 { width: 75% !important; }

/* Height */
.h-auto { height: auto !important; }
.h-full { height: 100% !important; }
.h-screen { height: 100vh !important; }

/* Flexbox */
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }

.items-start { align-items: flex-start !important; }
.items-end { align-items: flex-end !important; }
.items-center { align-items: center !important; }
.items-stretch { align-items: stretch !important; }

.justify-start { justify-content: flex-start !important; }
.justify-end { justify-content: flex-end !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-around { justify-content: space-around !important; }

/* Display */
.hidden { display: none !important; }
.block { display: block !important; }
.inline-block { display: inline-block !important; }
.inline { display: inline !important; }

/* Position */
.relative { position: relative !important; }
.absolute { position: absolute !important; }
.fixed { position: fixed !important; }
.sticky { position: sticky !important; }

/* Colors - Text */
.text-white { color: #ffffff !important; }
.text-black { color: #000000 !important; }
.text-gray-100 { color: #f7fafc !important; }
.text-gray-200 { color: #edf2f7 !important; }
.text-gray-300 { color: #e2e8f0 !important; }
.text-gray-400 { color: #cbd5e0 !important; }
.text-gray-500 { color: #a0aec0 !important; }
.text-gray-600 { color: #718096 !important; }
.text-gray-700 { color: #4a5568 !important; }
.text-gray-800 { color: #2d3748 !important; }
.text-gray-900 { color: #1a202c !important; }

/* Background Colors */
.bg-white { background-color: #ffffff !important; }
.bg-black { background-color: #000000 !important; }
.bg-gray-50 { background-color: #f9fafb !important; }
.bg-gray-100 { background-color: #f3f4f6 !important; }
.bg-gray-200 { background-color: #e5e7eb !important; }
.bg-gray-300 { background-color: #d1d5db !important; }
.bg-gray-800 { background-color: #1f2937 !important; }
.bg-gray-900 { background-color: #111827 !important; }

/* Primary Color Variants */
.bg-primary-50 { background-color: var(--primary-50) !important; }
.bg-primary-100 { background-color: var(--primary-100) !important; }
.bg-primary-200 { background-color: var(--primary-200) !important; }
.bg-primary-500 { background-color: var(--primary-500) !important; }
.bg-primary-600 { background-color: var(--primary-600) !important; }

.text-primary-500 { color: var(--primary-500) !important; }
.text-primary-600 { color: var(--primary-600) !important; }
.text-primary-700 { color: var(--primary-700) !important; }

/* Transitions */
.transition { transition: all 0.15s ease-in-out !important; }
.transition-colors { transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out !important; }
.transition-transform { transition: transform 0.15s ease-in-out !important; }
.transition-shadow { transition: box-shadow 0.15s ease-in-out !important; }

.duration-75 { transition-duration: 75ms !important; }
.duration-100 { transition-duration: 100ms !important; }
.duration-150 { transition-duration: 150ms !important; }
.duration-200 { transition-duration: 200ms !important; }
.duration-300 { transition-duration: 300ms !important; }

/* Transform */
.transform { transform: translateZ(0) !important; }
.translate-x-0 { transform: translateX(0) !important; }
.translate-y-0 { transform: translateY(0) !important; }
.-translate-y-1 { transform: translateY(-0.25rem) !important; }
.-translate-y-2 { transform: translateY(-0.5rem) !important; }

.scale-95 { transform: scale(0.95) !important; }
.scale-100 { transform: scale(1) !important; }
.scale-105 { transform: scale(1.05) !important; }

/* Hover Effects */
.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg) !important; }
.hover\:shadow-xl:hover { box-shadow: var(--shadow-xl) !important; }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem) !important; }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem) !important; }
.hover\:scale-105:hover { transform: scale(1.05) !important; }

/* Opacity */
.opacity-0 { opacity: 0 !important; }
.opacity-25 { opacity: 0.25 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-75 { opacity: 0.75 !important; }
.opacity-100 { opacity: 1 !important; }

/* Z-index */
.z-0 { z-index: 0 !important; }
.z-10 { z-index: 10 !important; }
.z-20 { z-index: 20 !important; }
.z-30 { z-index: 30 !important; }
.z-40 { z-index: 40 !important; }
.z-50 { z-index: 50 !important; }

/* ===============================================
   COMPONENT EXAMPLES WITH GLASS EFFECTS
   =============================================== */

/* Glass Navigation */
.navbar-glass-modern {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Glass Cards */
.card-glass-modern {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Glass Buttons */
.btn-glass-modern {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  transition: all 0.3s ease;
}

.btn-glass-modern:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Glass Forms */
.form-control-glass {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: white !important;
}

.form-control-glass:focus {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2) !important;
}

/* Modern Alert Styles */
.alert-glass {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .glass,
  .card-glass,
  .btn-glass,
  .navbar-glass {
    backdrop-filter: blur(8px);
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .glass {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  
  .card-glass-modern {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
}

/* page */
.hero{
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    position: relative;
}
.hero_overlay{
    background-color: rgba(0, 0, 0, 0.1);
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}
.hero_form{
    width: 600px;
    display: flex;
    margin: auto;
    
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.384);
    border-radius: 10px;
    overflow: hidden;
}
.hero_form *{
    border-radius: 0;
    height: 55px;
    border: none;
    outline: none;
}
.hero_form input{
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
}
.hero_form button{
    width: 140px;
}
.section{
    padding: 60px 0;
    background-color: white;
}
.section_title{
text-align: center;
margin-bottom: 50px;
}
.section_title .heading{
    font-weight: bold;
    font-size: 2.5rem;
}   
.section_title .sub_heading{
    font-size: 18px;
}

.logo img{
  max-height: 40px;
}


.whatsapp-fab {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366; /* WhatsApp green */
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;           /* icon size */
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  z-index: 9999;
  transition: transform .14s ease, box-shadow .14s ease, opacity .14s ease;
  -webkit-tap-highlight-color: transparent;
}

/* Hover / focus / active states */
.whatsapp-fab:hover,
.whatsapp-fab:focus {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  outline: none;
}

.whatsapp-fab:active {
  transform: translateY(-1px) scale(.98);
}
.homepage-package{
  flex-direction: column;
}
.homepage-package .package-title{
  margin-bottom: 5px;
}

.homepage-package .package-route{
  margin-bottom: 12px;
}
.homepage-package .package-destinations{
  margin-bottom: 6px;
}

/* new homepage section updated css */

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 600px;
    min-height: 600px;
    overflow: hidden;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Search Form - Left Side (Static) */
.hero-search-form {
    position: relative;
    z-index: 100;
    width: 580px;
    padding: 0 60px;
    flex-shrink: 0;
}

.hero-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-form-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.hero-form-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.hero-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-form-group {
    position: relative;
}

.hero-form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.hero-form-input {
    width: 100%;
    padding: 14px 16px;
    padding-right: 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background: #fff;
}

.hero-form-input:focus {
    outline: none;
    border-color: #333;
}

.hero-input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
}

.hero-date-group .hero-input-icon {
    top: auto;
    bottom: 14px;
    transform: none;
}

.hero-date-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-form-select {
    appearance: none;
    cursor: pointer;
}

.hero-select-icon {
    position: absolute;
    right: 16px;
    bottom: 14px;
    color: #999;
    font-size: 12px;
    pointer-events: none;
}

.hero-search-btn {
    width: 100%;
    padding: 16px;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.hero-search-btn:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Slider - Right Side */
.hero-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 80px;
    padding-left: 720px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-content {
    flex: 0 0 auto;
    max-width: 500px;
    color: #fff;
    animation: fadeInUp 0.8s ease;
}

.hero-slide.active .hero-slide-content {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide-tag {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    opacity: 0.95;
}

.hero-slide-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-slide-code {
    font-size: 20px;
    margin-bottom: 24px;
}

.hero-slide-code strong {
    font-weight: 700;
    font-size: 24px;
}

.hero-slide-btn {
    padding: 14px 40px;
    background: #fff;
    color: #333;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-slide-terms {
    font-size: 12px;
    margin-top: 12px;
    opacity: 0.8;
}

.hero-slide-image {

    position: absolute;
    right: 80px;
    bottom: 0;
    width: 450px;
    height: auto;
    animation: slideInRight 0.8s ease;
}

.hero-slide.active .hero-slide-image {
    animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Slider Navigation */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-slider-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-slider-prev {
    left: 620px;
}

.hero-slider-next {
    right: 40px;
}

.hero-slider-arrow i {
    font-size: 18px;
    color: #333;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 12px;
    z-index: 50;
}

.hero-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    width: 30px;
    border-radius: 5px;
    background: #fff;
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .hero-slide {
        padding-left: 580px;
    }
    
    .hero-slider-prev {
        left: 580px;
    }
    
    .hero-slide-image {
        width: 500px;
        height: 375px;
    }
}

@media (max-width: 1200px) {
    .hero-search-form {
        width: 480px;
        padding: 0 40px;
    }
    
    .hero-slide {
        padding-left: 500px;
        padding-right: 40px;
    }
    
    .hero-slider-prev {
        left: 500px;
    }
    
    .hero-slide-title {
        font-size: 38px;
    }
    
    .hero-slide-image {
        width: 400px;
        height: 300px;
        right: 40px;
    }
}

@media (max-width: 992px) {
    .hero-slider-section {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    .hero-search-form {
        width: 100%;
        padding: 40px 20px;
        position: relative;
        z-index: 100;
    }
    
    .hero-slider-wrapper {
        position: relative;
        height: 500px;
    }
    
    .hero-slide {
        padding: 40px 20px;
        justify-content: center;
        text-align: center;
    }
    
    .hero-slide-content {
        max-width: 100%;
    }
    
    .hero-slide-image {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 0 auto;
        margin-top: 30px;
        width: 350px;
        height: 260px;
    }
    
    .hero-slider-prev {
        left: 20px;
    }
    
    .hero-slider-next {
        right: 20px;
    }
    
    .hero-slider-dots {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-form-card {
        padding: 30px 24px;
    }
    
    .hero-form-title {
        font-size: 26px;
    }
    
    .hero-date-row {
        grid-template-columns: 1fr;
    }
    
    .hero-slide-title {
        font-size: 32px;
    }
    
    .hero-slide-image {
        width: 280px;
        height: 210px;
    }
    
    .hero-slider-arrow {
        width: 40px;
        height: 40px;
    }
}
/* Slightly smaller on very small screens */
@media (max-width: 420px) {
  .whatsapp-fab {
    left: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}