/* Policies section adjustments */
.policies-grid .policy-content table {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.policies-grid .policy-content table {
  border-collapse: collapse;
}

.policies-grid .policy-content table td,
.policies-grid .policy-content table th {
  padding: 10px;
  vertical-align: top;
}

/* Ensure wide tables are scrollable on mobile */
.policies-grid .policy-content {
  overflow-x: auto;
}

/* Clamp for 2–3 lines after table in Payment Policy */
.policy-notes.clamp-3-lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Collapsible behavior only for elements that still use it */
.policy-content.collapsed {
  max-height: var(--collapsed-height, 260px);
  /* Keep horizontal scrolling available while collapsed */
  overflow-y: hidden;
  overflow-x: auto;
  position: relative;
  padding-bottom: 8px; /* space for the horizontal scrollbar */
}
.policy-content.collapsed::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events: none; /* don't block scrollbar or text selection */
}

/* Themed horizontal scrollbar for policies content */
#policies .policy-content {
  scrollbar-width: thin;               /* Firefox */
  scrollbar-color: #7cc3b6 #eef2f6;    /* thumb color | track color */
}

#policies .policy-content::-webkit-scrollbar {
  height: 8px;                         /* horizontal scrollbar height */
}
#policies .policy-content::-webkit-scrollbar-track {
  background: #eef2f6;
  border-radius: 8px;
}
#policies .policy-content::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #00bcd4, #4caf50);
  border-radius: 8px;
}
#policies .policy-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #00acc1, #43a047);
}

@media (max-width: 768px) {
  .policies-grid .policy-content table { font-size: 14px; }
  .policies-grid .policy-content table th, .policies-grid .policy-content table td { padding: 8px; }
}
/*
 * Holiday CSS - Kingsland Holiday Theme
 * Comprehensive responsive CSS for single tour package template
 * Author: Kingsland Holiday Team
 * Version: 1.0
 */

/* ===========================
   CSS RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding-top: 80px;
    /* Default header height */
}

/* Mobile responsive adjustments - Body spacing only */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}

/* ===========================
   HERO SECTION - PACKAGE LAYOUT
   =========================== */
.kingscss-package-hero-section {
    height: 67vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 11px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.kingscss-package-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.kingscss-package-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: shimmer 8s infinite;
}

.kingscss-package-hero-section>* {
    position: relative;
    z-index: 2;
}

.kingscss-hero-container {
    height: 57vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
    overflow: visible;
    min-height: auto;
}

/* LEFT SIDE - IMAGE SECTION */
.kingscss-hero-left {
    width: 100%;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.kingscss-hero-breadcrumb {
    margin-bottom: 20px;
}

.kingscss-hero-breadcrumb a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.kingscss-hero-breadcrumb a:hover {
    color: #007bff;
}

.kingscss-hero-image-container {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.kingscss-hero-image-container:hover {
    transform: translateY(-2px);
}

.kingscss-hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.kingscss-hero-main-image:hover {
    transform: scale(1.02);
}

/* Best Selling Badge */
.kingscss-best-selling-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    animation: pulse-badge 2s infinite;
}

.kingscss-best-selling-badge span {
    position: relative;
    z-index: 2;
}

.kingscss-best-selling-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff8c42 0%, #ffb347 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.kingscss-best-selling-badge:hover::before {
    opacity: 1;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
    }
}

.kingscss-hero-image-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.kingscss-image-control-btn {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kingscss-image-control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.kingscss-video-btn {
    background: rgba(220, 53, 69, 0.8) !important;
}

.kingscss-video-btn:hover {
    background: rgba(220, 53, 69, 1) !important;
}

.kingscss-hero-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
    position: relative;
    overflow: hidden;
}

.kingscss-hero-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    flex-shrink: 0;
}

.kingscss-hero-thumb:hover,
.kingscss-hero-thumb.active {
    border-color: #007bff;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

.kingscss-hero-thumb:first-child {
    border-color: #28a745;
    position: relative;
}

.kingscss-hero-thumb:first-child::after {
    content: 'Featured';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kingscss-hero-thumb:first-child:hover::after {
    opacity: 1;
}

.kingscss-hero-thumb:first-child.active {
    border-color: #28a745;
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.kingscss-hero-thumb:first-child.active::after {
    opacity: 1;
}

/* Image loading animation */
.kingscss-hero-main-image {
    transition: opacity 0.3s ease;
}

.kingscss-hero-main-image.loading {
    opacity: 0.5;
}

/* RIGHT SIDE - BOOKING CARD */
.kingscss-hero-right {
    position: sticky;
    top: 20px;
    align-self: start;
    z-index: 5;
    max-height: 100vh;
    overflow: visible;
    width: 100%;
    max-width: 400px;
    /* Mobile touch optimization */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* Prevent horizontal overflow */
    box-sizing: border-box;
    /* Responsive flexbox for mobile */
    display: flex;
    flex-direction: column;
}

.kingscss-hero-booking-card {
    min-height: 469px;
    height: auto;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    /* Mobile enhancements */
    overflow: hidden;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Responsive box sizing */
    box-sizing: border-box;
    /* Flexible height for mobile */
    min-height: auto;
    /* Prevent content overflow */
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Availability Badge */
.kingscss-availability-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #007cba, #0099d4);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

.kingscss-days {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.kingscss-status {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Package Title */
.kingscss-package-title {
    font-size: 24px;
    font-weight: 700;
    color: #007cba;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.kingscss-package-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Rating Section */
.kingscss-rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.kingscss-stars {
    display: flex;
    gap: 2px;
}

.kingscss-stars i {
    color: #ffc107;
    font-size: 14px;
}

.kingscss-rating-text {
    font-size: 14px;
    color: #666;
}

/* Price Section */
.kingscss-price-section {
    /* margin-bottom: 25px; */
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.kingscss-price-main {
    font-size: 32px;
    font-weight: 700;
    color: #007cba;
    line-height: 1;
    margin-bottom: 8px;
}

.kingscss-price-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 0;
}

.kingscss-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
}

.kingscss-price-off {
    background: #dc3545;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.kingscss-price-note {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    line-height: 1.4;
}

/* Package Icons Section */
.kingscss-package-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    /* margin: 20px 0;
    padding: 15px 0; */
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    /* Mobile responsive improvements */
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    /* Prevent icons from being too small on mobile */
    min-height: 60px;
    align-items: center;
}

.kingscss-icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #007cba;
    font-size: 16px;
    /* Mobile touch enhancements */
    -webkit-tap-highlight-color: rgba(0, 123, 255, 0.1);
    touch-action: manipulation;
    min-width: 40px;
    min-height: 40px;
    border: 2px solid transparent;
}

.kingscss-icon-item:hover {
    background: #007cba;
    color: white;
    transform: scale(1.1);
    border-color: #007cba;
    box-shadow: 0 4px 8px rgba(0, 123, 186, 0.3);
}

.kingscss-icon-item:active {
    transform: scale(1.05);
    transition: all 0.1s ease;
}

.kingscss-icon-item a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.kingscss-icon-item a:hover {
    color: inherit;
}

.kingscss-icon-item i {
    font-size: 16px;
}


/* ===========================
   INCLUSIONS/EXCLUSIONS SECTION - HIGH SPECIFICITY
   =========================== */

/* General section styling */
#inclusions {
    background-color: #fff8e7 !important;
    /* light cream background */
    padding: 40px 20px !important;
    text-align: center !important;
    /* margin: 40px 0 !important; */
}

/* ===========================
   POLICIES SECTION - MIRROR INCLUSIONS/EXCLUSIONS STYLES
   =========================== */

#policies {
    background-color: #f8f9fa !important;
    padding: 40px 20px !important;
    text-align: center !important;
}

/* ===========================
   AGE LIMIT (TRIP WISE) SECTION
   =========================== */

#age-limits.section-container,
.section-container#age-limits {
    /* Soft tinted background to separate the block from the page */
    background: linear-gradient(180deg, #f8fbff 0%, #f9fafb 100%) !important;
    padding: 21px 20px !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

#age-limits h2,
.section-container#age-limits h2 {
    font-size: 2rem !important;
    margin-bottom: 28px !important;
    color: #007cba !important; /* match page brand blue */
    letter-spacing: .2px !important;
}

#age-limits .age-limit-wrap,
.section-container#age-limits .age-limit-wrap {
    display: grid !important;
    /* Desktop: 5 per row (like your screenshot) */
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 18px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

#age-limits .age-tile,
.section-container#age-limits .age-tile {
    /* Elevated modern cards with a brand-accent border */
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(135deg, #e6f3ff, #f2f8ff) border-box !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    text-align: center !important;
    display: flex !important;            /* equal height cards */
    flex-direction: column !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    height: 100% !important;
    box-shadow: 0 6px 18px rgba(2, 24, 43, 0.06) !important;
    transition: transform .25s ease, box-shadow .25s ease !important;
}

#age-limits .age-tile:hover { transform: translateY(-3px) !important; box-shadow: 0 10px 22px rgba(2, 24, 43, 0.10) !important; }

#age-limits .age-head {
    padding: 18px 14px !important;
    color:#0d2233 !important;
    flex:1 1 auto !important;           /* push range to bottom */
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
    align-items:center !important;
    min-height:78px !important;         /* consistent height for titles */
    box-sizing: border-box !important;
    background: linear-gradient(180deg, rgba(0,124,186,0.06) 0%, rgba(0,124,186,0.0) 100%) !important;
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important;
}
#age-limits .age-title { font-weight:700 !important; line-height:1.25 !important; font-size: 16.5px !important; }
#age-limits .age-sub { font-size:13px !important; color:#6b7280 !important; margin-top: 4px !important; }
#age-limits .age-range {
    padding:18px 14px !important;
    font-size:22px !important;
    font-weight:800 !important;
    color:#0d2233 !important;
    border-top:1px solid #e9eef5 !important;
    box-sizing: border-box !important;
    word-break: break-word !important;
    background: radial-gradient(100% 100% at 50% 0%, rgba(0,124,186,0.05) 0%, rgba(0,124,186,0) 60%) !important;
}

@media (max-width: 1200px) {
  #age-limits .age-limit-wrap { grid-template-columns: repeat(5, 1fr) !important; gap: 16px !important; }
}
@media (max-width: 1024px) {
  #age-limits .age-limit-wrap { grid-template-columns: repeat(3, 1fr) !important; gap: 16px !important; }
}
@media (max-width: 768px) {
  /* Mobile: 2 per row */
  #age-limits .age-limit-wrap { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  #age-limits .age-title { font-size: 15px !important; }
  #age-limits .age-range { font-size: 20px !important; }
  #age-limits.section-container,
  .section-container#age-limits { padding: 30px 15px !important; }
}
@media (max-width: 480px) {
  #age-limits .age-limit-wrap { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  #age-limits .age-head { padding: 14px 10px !important; min-height:64px !important; }
  #age-limits .age-range { padding: 12px 10px !important; }
  #age-limits.section-container,
  .section-container#age-limits { padding-left: 12px !important; padding-right: 12px !important; padding-bottom: 26px !important; }
}

/* Final mobile override: always 2 cards per row on mobile */
@media (max-width: 480px) {
  #age-limits .age-limit-wrap,
  .section-container#age-limits .age-limit-wrap {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-auto-flow: row dense !important;
    align-items: stretch !important;
  }
  #age-limits .age-tile,
  .section-container#age-limits .age-tile {
    width: 100% !important;
    margin: 0 !important;
  }
}

/* Ensure ultra-small devices also keep 2 columns */
@media (max-width: 360px) {
  #age-limits .age-limit-wrap,
  .section-container#age-limits .age-limit-wrap {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 360px) {
  #age-limits .age-limit-wrap { grid-template-columns: 1fr 1fr !important; }
}

#policies h2 {
    font-family: 'Georgia', serif !important;
    font-size: 2.4rem !important;
    color: #007cba !important;
    margin-bottom: 30px !important;
    text-align: center !important;
}

/* Desktop-specific wrapper for horizontal layout */
@media (min-width: 1025px) {
    #policies .content-wrapper {
        display: flex !important;
        flex-direction: row !important; /* Three column layout */
        align-items: stretch !important;
        gap: 20px !important;
        max-width: 100% !important; /* Full width on desktop */
        margin: 0 auto !important;
        flex-wrap: nowrap !important; /* No wrapping on desktop */
        padding: 0 20px !important; /* Add some padding for better spacing */
    }
}

/* Default wrapper for mobile/tablet */
#policies .content-wrapper {
    display: flex !important;
    flex-direction: column !important; /* Column layout by default */
    align-items: stretch !important;
    gap: 20px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Desktop-specific column styles */
@media (min-width: 1025px) {
    #policies .column {
        background-color: #ffffff !important;
        border-radius: 12px !important;
        padding: 25px 30px !important;
        flex: 1 !important; /* Equal width columns */
        min-width: 0 !important; /* Allow shrinking for equal width */
        max-width: none !important; /* Remove max-width restriction */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        text-align: left !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }
}

/* Default column styles for mobile/tablet */
#policies .column {
    background-color: #ffffff !important;
    border-radius: 12px !important;
    padding: 25px 30px !important;
    width: 100% !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    text-align: left !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

#policies .policy-content.is-collapsible {
  max-height: var(--collapsed-height, 260px) !important;
  /* Match Payment Policy horizontal slider behavior */
  overflow-y: hidden !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  position: relative !important;
  transition: max-height 0.35s ease !important;
  padding-bottom: 8px !important; /* space for horizontal scrollbar */
}

#policies .policy-content.is-collapsible.expanded {
  max-height: 10000px !important;
}

/* gradient fade at the bottom while collapsed */
#policies .policy-content.is-collapsible.collapsed::after {
  content: "";
  position: absolute !important;
  left: 0; right: 0; bottom: 0;
  height: 48px !important;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff) !important;
  pointer-events: none !important;
}

#policies .policy-readmore {
  margin-top: 12px !important;
  display: inline-block !important;
  padding: 10px 16px !important;
  background: #007cba !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
}

#policies .policy-readmore:focus { outline: 2px solid #004e7a !important; outline-offset: 2px !important; }

@media (max-width: 480px) {
  #policies .policy-content.is-collapsible { max-height: var(--collapsed-height, 220px) !important; }
}

#policies .column:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

#policies .header {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 15px !important;
}

#policies .header .icon {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    margin-right: 8px !important;
}

/* Neutral styling, no right/wrong semantics */
#policies .column.neutral-left { border-left: 4px solid #3f51b5 !important; }
#policies .column.neutral-right { border-left: 4px solid #009688 !important; }
#policies .header.neutral h3 { font-size: 1.3rem !important; margin: 0 !important; color: #007cba !important; }

#policies .column ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }

#policies .column ul li {
    margin-bottom: 8px !important;
    position: relative !important;
    padding-left: 25px !important;
    line-height: 1.4 !important;
}

/* Neutral bullets */
#policies .column ul li::before { content: "•" !important; color: #8a8a8a !important; position: absolute !important; left: 0 !important; font-size: 1rem !important; }

/* Center column styling for payment policy */
#policies .column.neutral-center {
    border-left: 4px solid #ffc107 !important;
}

#policies .column.neutral-center .header.neutral {
    background: none !important;
}

#policies .column.neutral-center .header.neutral h3 {
    color: #333 !important;
}

/* Read more button styles */
#policies .policy-readmore {
    background: linear-gradient(135deg, #007cba, #0066cc) !important;
    color: white !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

#policies .policy-readmore:hover {
    background: linear-gradient(135deg, #005a87, #004499) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3) !important;
}

#policies .policy-readmore:focus {
    outline: 2px solid #007cba !important;
    outline-offset: 2px !important;
}

/* Enhanced column hover effects */
#policies .column:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Smooth transitions for collapsible content */
#policies .policy-content.is-collapsible {
    transition: max-height 0.4s ease-in-out !important;
}

/* Loading state for content that might be slow to render */
#policies .policy-content:empty::before {
    content: "Loading policy information..." !important;
    color: #666 !important;
    font-style: italic !important;
    padding: 20px !important;
    display: block !important;
}

#policies .policies-grid .policy-content {
    overflow-x: auto;
    /* Themed horizontal scrollbar to match Payment Policy */
    scrollbar-width: thin;
    scrollbar-color: #7cc3b6 #eef2f6;
}

#policies .policy-content table {
    /* Allow horizontal overflow to create the slider just like Payment Policy */
    width: max-content;
    min-width: 720px;
    border-collapse: collapse;
    background: #fff;
}

#policies .policy-content table th,
#policies .policy-content table td {
    border: 1px solid #e5e5e5;
    padding: 12px 10px;
    text-align: left;
}

#policies .policy-content table thead th {
    background: #f7f7f7;
    font-weight: 600;
}

#policies .policy-content table tr:nth-child(even) {
    background: #fafafa;
}

/* WebKit scrollbar styling (Chrome, Edge, Safari) */
#policies .policy-content::-webkit-scrollbar { height: 8px; }
#policies .policy-content::-webkit-scrollbar-track {
  background: #eef2f6;
  border-radius: 8px;
}
#policies .policy-content::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #00bcd4, #4caf50);
  border-radius: 8px;
}
#policies .policy-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #00acc1, #43a047);
}

/* Tablet view - stack vertically like mobile */
@media (max-width: 1024px) and (min-width: 769px) {
    #policies .content-wrapper { 
        flex-direction: column !important;
        gap: 20px !important; 
        padding: 0 15px !important;
    }
    #policies .column { 
        width: 100% !important;
        max-width: 100% !important; 
        min-width: auto !important; 
    }
}

@media (max-width: 768px) {
    #policies .content-wrapper { flex-direction: column !important; gap: 20px !important; align-items: stretch !important; padding: 0 15px !important; }
    #policies .column { max-width: 100% !important; width: 100% !important; min-width: auto !important; flex: none !important; }
    #policies { padding: 30px 15px !important; margin: 30px 0 !important; }
    #policies h2 { font-size: 1.5rem !important; margin-bottom: 25px !important; }
}

@media (max-width: 480px) {
    #policies .column { padding: 20px 15px !important; margin: 0 5px !important; }
    #policies { padding: 20px 10px !important; margin: 20px 0 !important; }
    #policies h2 { font-size: 1.8rem !important; margin-bottom: 20px !important; }
    #policies .header .icon { font-size: 1rem !important; }
    #policies .header h3 { font-size: 1.1rem !important; }
    #policies .column ul li { font-size: 14px !important; margin-bottom: 6px !important; }
    #policies .policy-readmore { 
        padding: 10px 20px !important; 
        font-size: 12px !important; 
        width: 100% !important;
        margin-top: 20px !important;
    }
}

#inclusions h2 {
    font-family: 'Georgia', serif !important;
    font-size: 1.8rem !important;
    color: #007cba !important;
    margin-bottom: 30px !important;
    text-align: center !important;
}

/* Content wrapper */
#inclusions .content-wrapper {
    display: flex !important;
    justify-content: center !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* Column styling */
#inclusions .column {
    background-color: #ffffff !important;
    border-radius: 12px !important;
    padding: 25px 30px !important;
    flex: 1 !important;
    min-width: 300px !important;
    max-width: 400px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    text-align: left !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

#inclusions .column:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Header for inclusions/exclusions */
#inclusions .header {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 15px !important;
}

#inclusions .header .icon {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    margin-right: 8px !important;
}

/* Specific to inclusions */
#inclusions .column.inclusions {
    border-left: 4px solid #28a745 !important;
    /* green */
}

#inclusions .header.inclusions .icon {
    color: #ffffff !important;
}

#inclusions .header.inclusions h3 {
    color: #28a745 !important;
    font-size: 1.3rem !important;
    margin: 0 !important;
}

/* Specific to exclusions */
#inclusions .column.exclusions {
    border-left: 4px solid #dc3545 !important;
    /* red */
}

#inclusions .header.exclusions .icon {
    color: #ffffff !important;
}

#inclusions .header.exclusions h3 {
    color: #dc3545 !important;
    font-size: 1.3rem !important;
    margin: 0 !important;
}

/* List styling */
#inclusions .column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#inclusions .column ul li {
    margin-bottom: 8px !important;
    position: relative !important;
    padding-left: 25px !important;
    line-height: 1.4 !important;
}

/* Bullet icons */
#inclusions .column.inclusions ul li::before {
    content: "✔" !important;
    color: #28a745 !important;
    position: absolute !important;
    left: 0 !important;
    font-size: 0.9rem !important;
}

#inclusions .column.exclusions ul li::before {
    content: "✖" !important;
    color: #dc3545 !important;
    position: absolute !important;
    left: 0 !important;
    font-size: 0.9rem !important;
}

/* Responsive Design for Inclusions/Exclusions */
@media (max-width: 768px) {

    #inclusions .content-wrapper {
        flex-direction: column !important;
        gap: 25px !important;
        align-items: center !important;
        padding: 0 15px !important;
    }

    #inclusions .column {
        max-width: 100% !important;
        width: 100% !important;
        min-width: auto !important;
        flex: none !important;
    }

    #inclusions {
        padding: 30px 15px !important;
        margin: 30px 0 !important;
    }

    #inclusions h2 {
        font-size: 1.5rem !important;
        margin-bottom: 25px !important;
    }
}

@media (max-width: 480px) {

    #inclusions .column {
        padding: 20px 25px !important;
        margin: 0 10px !important;
    }

    #inclusions {
        padding: 25px 10px !important;
        margin: 20px 0 !important;
    }

    #inclusions h2 {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }

    #inclusions .header .icon {
        font-size: 1rem !important;
    }

    #inclusions .header.inclusions h3,
    #inclusions .header.exclusions h3 {
        font-size: 1.1rem !important;
    }

    #inclusions .column ul li {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }
}

.kingscss-price-main {
    text-align: center;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 5px;
}

.kingscss-price-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.kingscss-price-old {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.kingscss-price-off {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.kingscss-price-note {
    color: #666;
    font-size: 12px;
}

.kingscss-form-row {
    margin-bottom: 15px;
}

.kingscss-adults-selector select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.kingscss-adults-selector select:focus {
    outline: none;
    border-color: #007bff;
}

.kingscss-book-btn,
.kingscss-callback-btn,
.whatsapp-btn {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.kingscss-book-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.kingscss-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.kingscss-callback-btn {
    background: #007bff;
    color: white;
}

.kingscss-callback-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* WhatsApp Button Styling */
.whatsapp-btn {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
}

/* Mobile Only Callback Button */
.kingscss-callback-btn-mobile {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    display: none; /* Hidden by default, shown only on mobile */
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    /* Mobile touch enhancements */
    -webkit-tap-highlight-color: rgba(102, 126, 234, 0.3);
    touch-action: manipulation;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

/* NEW SIMPLE MOBILE CALLBACK BUTTON - ALWAYS VISIBLE ON MOBILE */
#mobile-callback-btn {
    display: block !important;
    width: 100% !important;
    padding: 15px 20px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    -webkit-tap-highlight-color: rgba(102, 126, 234, 0.3) !important;
    touch-action: manipulation !important;
    min-height: 48px !important;
    position: relative !important;
    z-index: 9999 !important;
    /* Force visibility */
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Desktop - Hide mobile callback button */
@media (min-width: 769px) {
    .kingscss-callback-btn-mobile {
        display: none !important;
    }
}

.kingscss-callback-btn-mobile:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.kingscss-callback-btn-mobile i {
    font-size: 18px;
    color: white;
}

.whatsapp-btn i {
    font-size: 18px;
}

.kingscss-whatsapp-btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    border: none;
    box-sizing: border-box;
    /* Mobile touch enhancements */
    -webkit-tap-highlight-color: rgba(37, 211, 102, 0.3);
    touch-action: manipulation;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.kingscss-whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    color: white !important;
}

.kingscss-whatsapp-btn:active {
    transform: translateY(0);
    transition: all 0.1s ease;
}

.kingscss-whatsapp-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.kingscss-booking-features {
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.kingscss-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.kingscss-feature-item i {
    color: #28a745;
    font-size: 16px;
}

/* LEGACY HERO SECTION (keeping for backwards compatibility) */
.kingscss-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

.kingscss-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.kingscss-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.kingscss-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.kingscss-hero-breadcrumb {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kingscss-hero-breadcrumb a {
    color: #2d2121;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kingscss-hero-breadcrumb a:hover {
    color: #3498db;
}

.kingscss-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.kingscss-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.kingscss-hero-highlights {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.kingscss-hero-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kingscss-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.kingscss-hero-btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.kingscss-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.kingscss-hero-btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.kingscss-hero-btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.kingscss-hero-right {
    position: absolute;
    right: 30px;
    top: 56%;
    transform: translateY(-50%);
    z-index: 3;
}

.kingscss-price-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: 15px;
    color: #333;
    min-width: 300px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.kingscss-price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.kingscss-price-old {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 20px;
}

/* ===========================
   OVERVIEW SECTION - ENHANCED MOBILE RESPONSIVE
   =========================== */
.kingscss-overview-section {
    background: #fff8ec;
    padding: 60px 0;
    position: relative;
    z-index: 1;
    margin-top: 0;
    clear: both;
    isolation: isolate;
    --overview-gap: 60px;
    --overview-padding: 50px;
    /* Desktop enhancements */
    background: linear-gradient(135deg, #fff8ec 0%, #f8f4e8 100%);
    overflow: hidden;
}

.kingscss-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.kingscss-overview-section::after {
    content: '';
    display: table;
    clear: both;
}

.kingscss-overview-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: var(--overview-gap);
    position: relative;
    z-index: 2;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
    /* Desktop enhancements */
    min-height: 455px;
}

/* Desktop Large Screens (1440px+) - Enhanced Layout */
@media (min-width: 1440px) {
    .kingscss-overview-section {
        padding: 100px 0;
        --overview-gap: 80px;
        --overview-padding: 60px;
    }

    .kingscss-overview-container {
        max-width: 1600px;
        padding: 0 50px;
        grid-template-columns: 2.5fr 1fr;
    }

    .kingscss-overview-left {
        border-radius: 24px;
    }
}

/* Desktop Standard (1200px-1439px) - Optimized Layout */
@media (min-width: 1200px) and (max-width: 1439px) {
    .kingscss-overview-section {
        padding: 90px 0;
        --overview-gap: 70px;
        --overview-padding: 55px;
    }

    .kingscss-overview-container {
        max-width: 1400px;
        padding: 0 45px;
        grid-template-columns: 2.3fr 1fr;
    }
}

/* Responsive Grid Layout */
@media (max-width: 1200px) {
    .kingscss-overview-container {
        max-width: 100%;
        padding: 0 30px;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .kingscss-overview-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 25px;
    }

    .kingscss-overview-right {
        order: -1;
        /* Put callback form at top on tablet */
    }
}

@media (max-width: 768px) {
    .kingscss-overview-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
        margin: 0 auto;
        max-width: 100%;
    }

    .kingscss-overview-left {
        order: 1;
    }

    .kingscss-overview-right {
        /* order: 2; */
        display: none !important;
        /* Put callback form back to bottom on mobile */
    }
}

@media (max-width: 480px) {
    .kingscss-overview-container {
        padding: 0 10px;
        gap: 25px;
    }
}

@media (max-width: 375px) {
    .kingscss-overview-container {
        padding: 0 8px;
        gap: 20px;
    }
}

.kingscss-overview-left {
    background: #ffffff;
    padding: var(--overview-padding);
    border-radius: 20px;
    border: 1px solid #e9ecef;
    width: 100% !important;
    max-width: none;
    position: relative;
    z-index: 2;
    align-self: start;
    min-width: 0;
    /* Prevents overflow */
    overflow-wrap: break-word;
    box-sizing: border-box;
    /* Desktop enhancements */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.kingscss-overview-left:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.kingscss-overview-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
    align-self: start;
    min-width: 0;
    /* Prevents overflow */
    width: 100% !important;
    box-sizing: border-box;
    /* Desktop enhancements */
    position: sticky;
    top: 30px;
    max-height: calc(100vh - 60px);
}

/* Mobile Responsive Enhancements for Overview Child Elements */
@media (max-width: 992px) {
    .kingscss-overview-left {
        max-width: none;
        padding: 35px;
    }

    .kingscss-overview-title {
        font-size: 2.2rem;
        margin-bottom: 18px;
    }

    .kingscss-overview-features {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
    }

    .kingscss-callback-form {
        max-width: 600px;
        margin: 0 auto;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .kingscss-overview-section {
        padding: 40px 0;
        --overview-gap: 30px;
        --overview-padding: 25px;
    }

    .kingscss-overview-left {
        padding: var(--overview-padding);
        border-radius: 14px;
        max-width: none;
        width: 100%;
        margin: 0;
    }

    .kingscss-overview-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
        line-height: 1.3;
        text-align: left;
    }

    .kingscss-overview-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-bottom: 25px;
    }

    .kingscss-overview-feature {
        padding: 14px;
        gap: 10px;
        border-radius: 10px;
        text-align: left;
        flex-direction: row;
        align-items: center;
    }

    .kingscss-overview-feature span {
        font-size: 13px;
        line-height: 1.4;
    }

    .kingscss-callback-form {
        position: static;
        top: auto;
        max-height: none;
        margin: 0 auto 30px;
        padding: 25px;
        border-radius: 14px;
        max-width: none;
        width: 100%;
    }

    .kingscss-callback-form h4 {
        font-size: 1.2rem;
        margin-bottom: 18px;
        text-align: center;
    }

    .kingscss-form-group {
        margin-bottom: 18px;
    }

    .kingscss-form-control {
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 8px;
    }

    .kingscss-callback-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 8px;
    }

    /* Show mobile callback button on mobile */
    .kingscss-callback-btn-mobile {
        display: flex !important;
        margin-top: 10px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        position: relative !important;
        z-index: 10 !important;
        visibility: visible !important;
        opacity: 1 !important;
        /* Force visibility on mobile */
        width: 100% !important;
        height: auto !important;
        min-height: 48px !important;
        /* Ensure button is clickable */
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    /* NEW SIMPLE MOBILE CALLBACK BUTTON - ALWAYS VISIBLE ON MOBILE */
    #mobile-callback-btn {
        display: block !important;
        width: 100% !important;
        padding: 15px 20px !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 8px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        margin-top: 10px !important;
        cursor: pointer !important;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.3) !important;
        touch-action: manipulation !important;
        min-height: 48px !important;
        position: relative !important;
        z-index: 9999 !important;
        /* Force visibility */
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .kingscss-callback-btn-mobile:active {
        transform: translateY(1px);
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }

    /* Content responsive styling */
    .kingscss-content-wrapper {
        width: 100%;
        margin-bottom: 20px;
    }

    .kingscss-content-text {
        width: 100%;
        overflow-wrap: break-word;
    }

    .short-content,
    .full-content {
        width: 100%;
    }

    .short-content p,
    .full-content p,
    .kingscss-overview-desc p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 14px;
        width: 100%;
        max-width: none;
        word-wrap: break-word;
    }

    .kingscss-read-more-btn {
        padding: 10px 18px;
        font-size: 14px;
        gap: 6px;
        width: auto;
        max-width: 200px;
        margin: 15px 0;
    }

    /* Highlights section mobile styling */
    .kingscss-highlights-section {
        margin-top: 25px;
        padding: 22px;
        border-radius: 12px;
        width: 100%;
    }

    .kingscss-highlights-section h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
        text-align: left;
    }

    .kingscss-highlight-item {
        padding: 10px 0;
        gap: 10px;
        align-items: flex-start;
    }

    .kingscss-highlight-item span {
        font-size: 14px;
        line-height: 1.4;
        flex: 1;
    }

    .kingscss-highlight-item i {
        margin-top: 2px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .kingscss-overview-section {
        padding: 30px 0;
        --overview-gap: 25px;
        --overview-padding: 20px;
    }

    .kingscss-overview-left {
        padding: var(--overview-padding);
        border-radius: 12px;
    }

    .kingscss-overview-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .kingscss-overview-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .kingscss-overview-feature {
        padding: 12px;
        gap: 8px;
        border-radius: 8px;
    }

    .kingscss-overview-feature span {
        font-size: 13px;
    }

    .kingscss-callback-form {
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 25px;
    }

    .kingscss-callback-form h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .kingscss-form-group {
        margin-bottom: 15px;
    }

    .kingscss-form-control {
        padding: 10px 12px;
        font-size: 14px;
    }

    .kingscss-callback-btn {
        padding: 12px 18px;
        font-size: 14px;
    }

    /* Content responsive styling for small screens */
    .short-content p,
    .full-content p,
    .kingscss-overview-desc p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .kingscss-read-more-btn {
        padding: 8px 16px;
        font-size: 13px;
        gap: 6px;
        max-width: 180px;
    }

    /* Highlights section small screen styling */
    .kingscss-highlights-section {
        margin-top: 20px;
        padding: 18px;
        border-radius: 10px;
    }

    .kingscss-highlights-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .kingscss-highlight-item {
        padding: 8px 0;
        gap: 8px;
    }

    .kingscss-highlight-item span {
        font-size: 13px;
        line-height: 1.4;
    }

    .kingscss-highlight-item i {
        font-size: 13px;
    }
}

@media (max-width: 375px) {
    .kingscss-overview-section {
        padding: 25px 0;
        --overview-gap: 20px;
        --overview-padding: 15px;
    }

    .kingscss-overview-left {
        padding: var(--overview-padding);
        border-radius: 10px;
    }

    .kingscss-overview-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .kingscss-overview-features {
        gap: 10px;
        margin-bottom: 18px;
    }

    .kingscss-overview-feature {
        padding: 10px;
        gap: 6px;
        border-radius: 6px;
        flex-direction: column;
        text-align: center;
    }

    .kingscss-overview-feature span {
        font-size: 12px;
        text-align: center;
    }

    .kingscss-callback-form {
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .kingscss-callback-form h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .kingscss-form-control {
        padding: 8px 10px;
        font-size: 13px;
    }

    .kingscss-callback-btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    /* Content responsive styling for extra small screens */
    .short-content p,
    .full-content p,
    .kingscss-overview-desc p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .kingscss-read-more-btn {
        padding: 6px 12px;
        font-size: 12px;
        gap: 4px;
        max-width: 150px;
    }

    /* Highlights section extra small screen styling */
    .kingscss-highlights-section {
        margin-top: 18px;
        padding: 15px;
        border-radius: 8px;
    }

    .kingscss-highlights-section h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .kingscss-highlight-item {
        padding: 6px 0;
        gap: 6px;
    }

    .kingscss-highlight-item span {
        font-size: 12px;
        line-height: 1.3;
    }

    .kingscss-highlight-item i {
        font-size: 12px;
    }
}

.kingscss-highlights-section {
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.kingscss-highlights-section h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.kingscss-highlights-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #007cba, #005a87);
    border-radius: 2px;
}

.kingscss-highlights-list {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    flex-direction: row;
}

.kingscss-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.kingscss-highlight-item:last-child {
    border-bottom: none;
}

.kingscss-highlight-item:hover {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 8px;
}

.kingscss-highlight-item i {
    color: #28a745;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.kingscss-highlight-item span {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.kingscss-overview-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    /* Desktop enhancements */
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.kingscss-overview-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #007cba, #005a87);
    border-radius: 2px;
}

.kingscss-overview-desc {
    margin-bottom: 30px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.kingscss-overview-content {
    width: 100%;
    position: relative;
    z-index: 1;
}

.kingscss-content-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.kingscss-content-text {
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
}

.short-content,
.full-content {
    width: 100%;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.short-content p,
.full-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    width: 100%;
    max-width: 700px;
    word-wrap: break-word;
}

.kingscss-read-more-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.kingscss-read-more-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1c5985);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.kingscss-read-more-btn i {
    transition: transform 0.3s ease;
}

.kingscss-read-more-btn.expanded i {
    transform: rotate(180deg);
}

.kingscss-overview-desc p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    width: 100%;
    max-width: 700px;
}

.kingscss-overview-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
    /* Desktop enhancements */
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.kingscss-overview-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 186, 0.1);
    /* Desktop enhancements */
    position: relative;
    overflow: hidden;
}

.kingscss-overview-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #007cba, #005a87);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.kingscss-overview-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 123, 186, 0.3);
}

.kingscss-overview-feature:hover::before {
    transform: scaleY(1);
}

.kingscss-overview-feature i {
    color: #3498db;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.kingscss-overview-feature span {
    color: #555;
    font-size: 14px;
}

/* Info Item Styles */
.kingscss-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.kingscss-info-item:last-child {
    border-bottom: none;
}

.kingscss-info-item:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding-left: 8px;
    padding-right: 8px;
}

.kingscss-info-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #3498db;
    transition: color 0.3s ease;
}

.kingscss-info-item:hover .kingscss-info-icon {
    color: #2980b9;
}

.kingscss-info-item span {
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

.kingscss-info-item strong {
    color: #333;
    font-weight: 600;
}

.kingscss-overview-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.kingscss-callback-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #e9ecef;
    position: sticky;
    top: 30px;
    align-self: start;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    /* Desktop enhancements */
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.3s ease;
    overflow: hidden;
}

.kingscss-callback-form::before {
    content: '';
    position: absolute;
    top: -52px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007cba, #005a87);
    border-radius: 20px 20px 0 0;
}

.kingscss-callback-form:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.kingscss-callback-form h4 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 600;
    /* Desktop enhancements */
    text-align: center;
    position: relative;
    padding-bottom: 41px;
}

.kingscss-callback-form h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #007cba, #005a87);
    border-radius: 2px;
}

.kingscss-form-group {
    margin-bottom: 20px;
}

.kingscss-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.kingscss-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.kingscss-form-control:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.kingscss-callback-form .kingscss-form-group {
    margin-bottom: 15px;
}

.kingscss-callback-form .kingscss-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.kingscss-callback-btn {
    width: 100%;
    padding: 15px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kingscss-callback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.kingscss-rating-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.kingscss-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.kingscss-stars i {
    color: #ffd700;
    font-size: 18px;
}

.kingscss-rating-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.kingscss-cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.kingscss-whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 10px 2;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.kingscss-whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ===========================
   MOBILE TABS - STICKY NAVIGATION
   =========================== */
.kingscss-mob-tab-sticky {
    position: sticky;
    position: -webkit-sticky;
    /* Safari support */
    top: 80px;
    /* Position after header (80px desktop) */
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    transition: all 0.3s ease;
    transform: translateZ(0);
    /* Force hardware acceleration */
    will-change: transform, background-color;
}

.kingscss-mob-tab-sticky.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid #ddd;
}

.kingscss-mobile-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 15px 20px;
    gap: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    cursor: grab;
    user-select: none;
}

.kingscss-mobile-tabs:active {
    cursor: grabbing;
}

.kingscss-mobile-tabs::-webkit-scrollbar {
    display: none;
}

.kingscss-tab-item {
    flex: 0 0 auto;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #666;
    padding: 12px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateZ(0);
    /* Hardware acceleration */
    will-change: transform, background-color;
}

.kingscss-tab-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.kingscss-tab-item:hover::before {
    left: 100%;
}

.kingscss-tab-item:hover {
    background: #e9ecef;
    border-color: #007cba;
    color: #007cba;
    transform: translateY(-1px) translateZ(0);
    box-shadow: 0 2px 8px rgba(0, 124, 186, 0.2);
}

.kingscss-tab-item.active {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    border-color: #007cba;
    color: white;
    box-shadow: 0 3px 12px rgba(0, 124, 186, 0.4);
    transform: translateY(-1px) translateZ(0);
    font-weight: 600;
}

.kingscss-tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

/* Debug and visibility enhancements */
.kingscss-mob-tab-sticky {
    /* Force visibility for debugging - remove if needed */
    min-height: 60px;
    border: 1px solid #e0e0e0;
}

/* Ensure sticky behavior works correctly */
@supports (position: sticky) {
    .kingscss-mob-tab-sticky {
        position: sticky;
        top: 80px;
    }
}

/* Fallback for browsers without sticky support */
@supports not (position: sticky) {
    .kingscss-mob-tab-sticky {
        position: fixed;
        top: 80px;
        width: 100%;
        left: 0;
    }
}

/* Mobile Tab Navigation Additional Styles */
.kingscss-mobile-tab-nav {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 15px 0;
    gap: 5px;
}

.kingscss-mobile-tab-nav::-webkit-scrollbar {
    display: none;
}

.kingscss-mobile-tab-btn {
    flex: 0 0 auto;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #666;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.kingscss-mobile-tab-btn.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.kingscss-mobile-tab-content {
    padding: 20px;
    background: white;
}

.kingscss-mobile-tab-content.active {
    display: block;
}

.kingscss-mobile-tab-content:not(.active) {
    display: none;
}

/* ===========================
   ITINERARY SECTION
   =========================== */
.kingscss-itinerary-section {
    padding: 0px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.kingscss-itinerary-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.kingscss-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.kingscss-section-title {
    text-align: center;
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.kingscss-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #007cba, #005a87);
    border-radius: 2px;
}

.kingscss-itinerary-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Legacy Itinerary Day */
.kingscss-itinerary-day {
    display: flex;
    margin-bottom: 30px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    align-items: flex-start;
    border: 1px solid rgba(0, 124, 186, 0.1);
    transition: all 0.3s ease;
}

.kingscss-itinerary-day:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.kingscss-itinerary-day .kingscss-day-number {
    background: linear-gradient(135deg, #007cba, #005a87);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1em;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
}

.kingscss-itinerary-day .kingscss-day-content {
    flex: 1;
}

/* Modern Itinerary Day */
.kingscss-itinerary-day-modern {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 124, 186, 0.1);
}

.kingscss-itinerary-day-modern:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.kingscss-day-header {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.kingscss-day-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.kingscss-day-header:hover::before {
    left: 100%;
}

.kingscss-day-header:hover {
    background: linear-gradient(135deg, #005a87 0%, #007cba 100%);
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
}

.kingscss-day-header .kingscss-day-number {
    position: relative;
    z-index: 2;
}

.kingscss-day-header .kingscss-day-number span {
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1em;
    backdrop-filter: blur(10px);
    min-width: 70px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.kingscss-day-header:hover .kingscss-day-number span {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.kingscss-day-title {
    flex: 1;
    position: relative;
    z-index: 2;
}

.kingscss-day-title h3 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.kingscss-day-header:hover .kingscss-day-title h3 {
    transform: translateX(5px);
}

.kingscss-day-toggle {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.kingscss-day-toggle i {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.kingscss-day-toggle.active,
.kingscss-day-header.active .kingscss-day-toggle {
    transform: rotate(180deg);
    background: rgba(255, 255, 255, 0.2);
}

.kingscss-day-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.kingscss-day-content.active,
.kingscss-day-content[style*="block"] {
    max-height: 2000px;
    padding: 35px 30px;
}

.kingscss-highlights-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

/* .kingscss-day-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.kingscss-day-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 12px;
}

.kingscss-day-image:hover img {
    transform: scale(1.08);
}

.kingscss-day-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 124, 186, 0.1), rgba(0, 90, 135, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    pointer-events: none;
}

.kingscss-day-image:hover::after {
    opacity: 1;
} */

.kingscss-day-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.kingscss-day-overview,
.kingscss-day-highlights {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #007cba;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.kingscss-day-highlights ul {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.kingscss-day-overview:hover,
.kingscss-day-highlights:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.kingscss-day-overview h4,
.kingscss-day-highlights h4 {
    color: #2c3e50;
    font-size: 1.3em;
    font-weight: 700;
    margin: 0 0 15px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kingscss-day-overview h4::before {
    content: '📋';
    font-size: 1.2em;
}

.kingscss-day-highlights h4::before {
    content: '⭐';
    font-size: 1.2em;
}

.kingscss-day-overview h4::after,
.kingscss-day-highlights h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #007cba, #005a87);
    border-radius: 2px;
}

.kingscss-day-overview p {
    color: #555;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05em;
    text-align: justify;
}

.kingscss-day-highlights ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.kingscss-day-highlights li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 1em;
}

.kingscss-day-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007cba;
    font-weight: bold;
    font-size: 1.1em;
}

/* ===========================
   HOTEL KINGS SECTION - NEW DESIGN
   =========================== */
.hotelKings {
    text-align: center;
    padding: 0px 0px;
    font-family: Arial, sans-serif;
    background: #fff;
    margin: 40px 0;
}

.hotelKings h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hotelKings .hotel-cards {

    display: flex !important;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: nowrap !important;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 15px 20px 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Ensure scrolling on touch devices */
    touch-action: pan-x;
    /* Better scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

/* Show scrollbar only when needed and style it */
.hotelKings .hotel-cards::-webkit-scrollbar {
    height: 8px;
}

.hotelKings .hotel-cards::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.hotelKings .hotel-cards::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.hotelKings .hotel-cards::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Center hotels when 4 or fewer */
.hotelKings .hotel-cards.centered {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
}

.hotelKings .hotel-cards.centered::-webkit-scrollbar {
    display: none;
}

.hotelKings .hotel-card {
    border: 1px solid #eee !important;
    border-radius: 12px !important;
    overflow: hidden;
    width: 300px !important;
    height: auto !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    text-align: left;
    background: #fff !important;
    transition: all 0.3s ease !important;
    position: relative;
    display: block !important;
    flex: none !important;
    padding: 0 !important;
}

.hotelKings .hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hotelKings .hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotelKings .hotel-card:hover img {
    transform: scale(1.05);
}

.hotelKings .hotel-card h3 {
    font-size: 20px;
    margin: 15px 15px 10px;
    color: #34495e;
    font-weight: 600;
    line-height: 1.3;
}

.hotelKings .hotel-card p {
    margin: 0 15px 15px;
    color: #7f8c8d;
    font-size: 14px;
    font-weight: 500;
}

.hotelKings .amenities {
    margin: 0 15px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hotelKings .amenities span {
    background: #f1f1f1;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 6px;
    color: #555;
    font-weight: 500;
    transition: background 0.3s ease;
}

.hotelKings .amenities span:hover {
    background: #e8e8e8;
}

.hotel-rating {
    margin: 0 15px 15px;
}

.hotelKings .price-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 15px 15px;
    font-weight: bold;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
}

.hotelKings .price {
    color: #e74c3c;
    font-size: 16px;
    font-weight: 700;
}

.hotelKings .rating {
    color: #f39c12;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotelKings .btn-selected,
.hotelKings .btn-choose {
    display: block;
    margin: 0 auto 15px;
    padding: 12px 24px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.hotelKings .btn-selected {
    background: #e67e22;
}

.hotelKings .btn-choose:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.hotelKings .btn-selected:hover {
    background: #d35400;
    transform: translateY(-2px);
}

/* Legacy hotels styling within hotelKings */
.hotelKings .legacy-hotels-content {
    margin-top: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hotelKings .legacy-hotels-content h3 {
    color: #666;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive Design for Hotel Kings */
@media (max-width: 1024px) {
    .hotelKings .hotel-cards {
        gap: 20px;
        padding: 0 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .hotelKings .hotel-card {
        scroll-snap-align: start;
        flex: 0 0 320px;
        width: 320px;
    }
}

@media (max-width: 768px) {
    .hotelKings {
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .hotelKings h2 {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .hotelKings .hotel-cards {
        /* Enhanced horizontal scroll on mobile */
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 15px;
        padding: 10px 15px 20px 15px;
        margin: 0;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #c1c1c1 #f1f1f1;
        position: relative;
        /* Ensure proper spacing for first and last cards */
        scroll-padding-left: 15px;
    }

    .hotelKings .hotel-card {
        flex: 0 0 280px !important;
        width: 280px !important;
        min-width: 280px !important;
        max-width: none !important;
        scroll-snap-align: start;
        margin: 0 !important;
    }

    /* Ensure first card is not cut off */
    .hotelKings .hotel-card:first-child {
        scroll-snap-align: start;
    }

    /* Add spacing for the last card */
    .hotelKings .hotel-card:last-child {
        margin-right: 15px !important;
    }
}

@media (max-width: 480px) {
    .hotelKings {
        padding: 30px 0;
    }

    .hotelKings h2 {
        font-size: 23px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .hotelKings .hotel-cards {
        gap: 12px;
        padding: 8px 10px 16px 10px;
        margin: 0;
    }

    .hotelKings .hotel-card {
        flex: 0 0 260px !important;
        width: 260px !important;
        min-width: 260px !important;
    }

    .hotelKings .hotel-card img {
        height: 160px;
    }

    .hotelKings .hotel-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .hotelKings .hotel-card p {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .hotelKings .amenities span {
        font-size: 11px;
        padding: 2px 6px;
    }
}

/* Extra small mobile devices */
@media (max-width: 375px) {
    .hotelKings {
        padding: 20px 0;
    }

    .hotelKings h2 {
        font-size: 18px;
        margin-bottom: 20px;
        padding: 0 5px;
    }

    .hotelKings .hotel-cards {
        gap: 10px;
        padding: 5px 5px 15px 5px;
        margin: 0;
    }

    .hotelKings .hotel-card {
        flex: 0 0 240px !important;
        width: 240px !important;
        min-width: 240px !important;
    }

    .hotelKings .hotel-card img {
        height: 140px;
    }

    .hotelKings .hotel-card h3 {
        font-size: 15px;
        margin: 10px 10px 5px;
    }

    .hotelKings .hotel-card p {
        font-size: 12px;
        margin: 0 10px 8px;
    }

    .hotelKings .amenities {
        margin: 0 10px 10px;
        gap: 5px;
    }

    .hotelKings .amenities span {
        font-size: 10px;
        padding: 2px 5px;
    }

    .hotel-rating {
        margin: 0 10px 10px;
    }

    .hotelKings .btn-selected,
    .hotelKings .btn-choose {
        margin: 0 auto 10px;
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Mobile scroll indicator */
@media (max-width: 768px) {
    .hotelKings .hotel-cards::after {
        content: '';
        flex: 0 0 15px;
        height: 1px;
    }

    /* Ensure first card is fully visible on mobile */
    .hotelKings .hotel-card:first-child {
        margin-left: 54% !important;
    }

    .hotelKings .hotel-card:last-child {
        margin-right: 15px !important;
    }

    /* Add subtle shadow to indicate scrollability */
    .hotelKings .hotel-cards {
        box-shadow: inset -10px 0 10px -10px rgba(0, 0, 0, 0.1);
    }

    /* Mobile scroll hint - only show when there are multiple cards */
    .hotelKings .hotel-cards:not(.centered)::before {
        content: "← Swipe to see more hotels →";
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 12px;
        color: #999;
        background: rgba(255, 255, 255, 0.9);
        padding: 2px 8px;
        border-radius: 10px;
        white-space: nowrap;
        z-index: 1;
        animation: fadeInOut 3s ease-in-out infinite;
    }

    @keyframes fadeInOut {

        0%,
        100% {
            opacity: 0;
        }

        50% {
            opacity: 1;
        }
    }

    /* Hide hint after first scroll */
    .hotelKings .hotel-cards.scrolled::before {
        display: none;
    }
}


.kingscss-day-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.kingscss-day-header {
    padding: 5px 8px;
    gap: 3px;
}

.kingscss-itinerary-content {
    padding: 0 !important;
}

.kingscss-day-content.active,
.kingscss-day-content[style*="block"] {
    padding: 27px 7px !important;
}

/* WhatsApp button responsive */
.whatsapp-hotel-section {
    margin: 20px 0 !important;
    padding: 0 10px;
}

.whatsapp-hotel-btn {
    font-size: 14px !important;
    padding: 10px 20px !important;
}

.whatsapp-hotel-btn i {
    font-size: 18px !important;
}

/* ===========================
   ADDITIONAL OVERRIDES FOR INCLUSIONS/EXCLUSIONS
   =========================== */

/* Override any global ul/li styles that might conflict */
#inclusions ul,
#inclusions li {
    all: unset !important;
}

/* Reapply our specific styles */
#inclusions .column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

#inclusions .column ul li {
    margin-bottom: 8px !important;
    position: relative !important;
    padding-left: 25px !important;
    line-height: 1.4 !important;
    display: block !important;
    color: #333 !important;
    font-size: 16px !important;
}

/* Ensure our icons display correctly */
#inclusions .column.inclusions ul li::before {
    content: "✔" !important;
    color: #28a745 !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    font-size: 0.9rem !important;
    font-weight: bold !important;
    display: inline-block !important;
}

#inclusions .column.exclusions ul li::before {
    content: "✖" !important;
    color: #dc3545 !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    font-size: 0.9rem !important;
    font-weight: bold !important;
    display: inline-block !important;
}

/* WhatsApp Hotel Button Styling */
.whatsapp-hotel-section {
    animation: fadeInUp 0.8s ease-out;
}

.whatsapp-hotel-btn {
    position: relative;
    overflow: hidden;
}

.whatsapp-hotel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.whatsapp-hotel-btn:hover::before {
    left: 100%;
}

/* Hotel Scroll Navigation Styling */
.hotel-scroll-nav {
    user-select: none;
}

.hotel-scroll-nav button:active {
    transform: scale(0.9) !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

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

/* ===========================
   ENHANCED MOBILE RESPONSIVENESS FOR HERO RIGHT
   =========================== */

/* Extra Large Tablets */
@media (max-width: 1200px) and (min-width: 993px) {
    .kingscss-hero-right {
        max-width: 380px;
    }

    .kingscss-hero-booking-card {
        padding: 25px;
        max-width: 380px;
    }

    .kingscss-package-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .kingscss-package-icons {
        gap: 12px;
    }

    .kingscss-icon-item {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

/* Tablet Styles */
@media (max-width: 992px) {
    .kingscss-hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kingscss-hero-right {
        position: static;
        order: -1;
        z-index: 1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .kingscss-hero-booking-card {
        max-width: 500px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        padding: 25px;
    }

    .kingscss-package-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .kingscss-package-subtitle {
        text-align: center;
        font-size: 1rem;
    }

    .kingscss-package-icons {
        justify-content: space-around;
        gap: 15px;
        padding: 20px 0;
    }

    .kingscss-icon-item {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

.kingscss-overview-section {
    padding: 50px 0;
    margin-top: 30px;
}

.kingscss-overview-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
}

.kingscss-overview-right {
    order: -1;
}

.kingscss-callback-form {
    position: static;
    top: auto;
    max-width: 600px;
    margin: 0 auto;
}

.kingscss-itinerary-timeline::before {
    left: 20px;
}

.kingscss-itinerary-day {
    flex-direction: row;
    padding-left: 60px;
}

.kingscss-itinerary-day:nth-child(even) {
    flex-direction: row;
}

.kingscss-itinerary-day:nth-child(even) .kingscss-itinerary-content {
    text-align: left;
}

.kingscss-itinerary-number {
    left: 20px;
    transform: none;
}

.kingscss-hotels-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.kingscss-tabs {
    flex-wrap: wrap;
    gap: 5px;
}

.kingscss-tab {
    padding: 10px 20px;
    font-size: 14px;
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .kingscss-hero-container {
        grid-template-columns: 1fr 350px;
        gap: 30px;
    }

    .kingscss-hero-booking-card {
        padding: 25px;
    }

    .kingscss-package-title {
        font-size: 1.4rem;
    }

    .kingscss-price-main {
        font-size: 2.2rem;
    }
}

/* Large Mobile / Small Tablet Styles */
@media (max-width: 900px) and (min-width: 769px) {
    .kingscss-hero-container {
        grid-template-columns: 1fr 320px;
        gap: 25px;
    }

    .kingscss-hero-main-image {
        height: 350px;
    }

    /* Overview Section for Large Mobile/Small Tablet */
    .kingscss-overview-section {
        padding: 50px 0;
        --overview-gap: 35px;
        --overview-padding: 30px;
    }

    .kingscss-overview-container {
        padding: 0 25px;
        gap: var(--overview-gap);
    }

    .kingscss-overview-left {
        padding: var(--overview-padding);
    }

    .kingscss-overview-title {
        font-size: 2.2rem;
        margin-bottom: 18px;
    }

    .kingscss-overview-features {
        gap: 12px;
    }

    .kingscss-callback-form {
        padding: 25px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .kingscss-mob-tab-sticky {
        display: block !important;
        position: sticky;
        position: -webkit-sticky;
        top: 70px;
        /* Position after mobile header (70px) */
        z-index: 1001;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .kingscss-mobile-tabs {
        padding: 10px 15px;
        gap: 8px;
        justify-content: flex-start;
        min-height: 60px;
        align-items: center;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }

    .kingscss-tab-item {
        padding: 10px 16px;
        font-size: 13px;
        min-width: auto;
        border-radius: 20px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .kingscss-tab-item.active {
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(0, 124, 186, 0.3);
        transform: translateY(-1px) scale(1.02);
    }

    /* Hide desktop tabs on mobile */
    .Dsktop-only .kingscss-section-tabs {
        display: none;
    }

    /* Ensure proper section spacing with sticky tabs */
    .kingscss-package-hero-section {
        margin-top: 0;
        padding-top: 20px;
    }

    /* Adjust first section spacing to account for sticky tabs */
    .kingscss-overview-section {
        scroll-margin-top: 140px;
        /* Header + tabs + padding */
    }

    .kingscss-itinerary-section,
    .hotelKings,
    .section-container,
    .kingscss-faq-container {
        scroll-margin-top: 140px;
        /* Header + tabs + padding */
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .kingscss-mob-tab-sticky {
        top: 70px;
        /* Ensure consistent positioning on small mobile */
    }

    .kingscss-mobile-tabs {
        padding: 8px 12px;
        gap: 6px;
    }

    .kingscss-tab-item {
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 18px;
    }

    .kingscss-tab-item.active {
        transform: translateY(-1px) scale(1.05);
    }

    .kingscss-package-hero-section {
        padding: 20px 0;
    }

    .kingscss-hero-container {
        padding: 0 15px;
        gap: 20px;
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .kingscss-hero-right {
        position: static;
        width: 100%;
        order: 2;
        z-index: 1;
        max-width: 100%;
        margin: 0;
        /* Ensure proper mobile layout */
        display: block;
    }

    .kingscss-hero-left {
        order: 1;
        width: 100%;
    }
}

.kingscss-hero-main-image {
    height: 300px;
}

.kingscss-hero-booking-card {
    padding: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    /* max-width: 100%; */
    width: 95%;
    height: auto;
    min-height: auto;
    /* Mobile specific improvements */
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.kingscss-package-title {
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 15px 0 10px 0;
    text-align: left;
    /* Prevent text overflow */
    word-break: break-word;
    hyphens: auto;
}

.kingscss-package-subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 9px;
    color: #666;
}

.kingscss-price-main {
    font-size: 2rem;
}

.kingscss-price-section {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #f8f9fa;
}

.kingscss-package-icons {
    gap: 10px;
    margin: 15px 0;
    padding: 15px 0;
    justify-content: space-around;
    /* Improve mobile layout */
    flex-wrap: wrap;
    max-width: 100%;
}

.kingscss-icon-item {
    width: 35px;
    height: 35px;
    font-size: 14px;
    /* Ensure minimum touch target */
    min-width: 35px;
    min-height: 35px;
}

.kingscss-whatsapp-btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 10px;
    text-align: center;
    /* Mobile button improvements */
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


.kingscss-icon-item {
    width: 35px;
    height: 35px;
    font-size: 14px;
}

/* Overview Section - Mobile Responsive Inherited from main responsive rules */
.kingscss-overview-section {
    padding: var(--overview-section-padding, 57px 0);
    margin-top: var(--overview-section-margin-top, 0px);
}

.kingscss-overview-container {
    display: block;
    flex-direction: row;
    padding: 0 12%;
    gap: var(--overview-gap, 25px);
    grid-template-columns: 1fr;
    max-width: 100%;
}


.kingscss-overview-left {
    padding: var(--overview-padding, 20px);
    order: 1;
    width: 60%;
    max-width: none;
    margin: 0;
    margin-top: -28px;
    margin-bottom: -28px;
    border-radius: var(--overview-border-radius, 12px);
}

.kingscss-overview-right {
    order: 2;
    width: 30%;
    max-width: none;
}

@media (min-width: 769px) {
    .kingscss-overview-container {

        display: flex;

        padding: 0 12%;
        gap: var(--overview-gap, 25px);
        max-width: 100%;
    }

    .kingscss-overview-left {
        width: 100% !important;
    }

    .kingscss-overview-right {
        width: 100% !important;
    }
}

.kingscss-overview-title {
    font-size: var(--overview-title-size, 1.6rem);
    margin-bottom: var(--overview-title-margin, 16px);
    line-height: 1.3;
}

.kingscss-overview-features {
    grid-template-columns: 1fr;
    gap: var(--overview-features-gap, 15px);
    margin-bottom: var(--overview-features-margin, 20px);
}

.kingscss-overview-feature {
    padding: var(--overview-feature-padding, 12px);
    gap: var(--overview-feature-gap, 8px);
    border-radius: var(--overview-feature-radius, 8px);
}

.kingscss-overview-feature span {
    font-size: var(--overview-feature-text-size, 13px);
    line-height: 1.4;
}

.kingscss-callback-form {
    margin-top: -50px;
    position: static;
    top: auto;
    max-height: none;
    margin-bottom: var(--callback-margin, 25px);
    padding: var(--callback-padding, 20px);
    border-radius: var(--callback-border-radius, 12px);
    width: 100%;
    max-width: none;
}

.kingscss-highlights-section {
    margin-top: var(--highlights-margin, 20px);
    padding: var(--highlights-padding, 18px);
    border-radius: var(--highlights-border-radius, 10px);
}

.kingscss-highlights-section h3 {
    font-size: var(--highlights-title-size, 1.2rem);
    margin-bottom: var(--highlights-title-margin, 15px);
}

.kingscss-highlight-item {
    padding: var(--highlight-item-padding, 8px 0);
    gap: var(--highlight-item-gap, 8px);
}

.kingscss-highlight-item span {
    font-size: var(--highlight-item-text-size, 13px);
    line-height: 1.4;
}

.kingscss-overview-desc,
.kingscss-content-wrapper,
.kingscss-content-text,
.short-content,
.full-content {
    width: 100%;
    max-width: none;
}

.kingscss-overview-desc p,
.short-content p,
.full-content p {
    font-size: var(--overview-desc-text-size, 14px);
    line-height: 1.5;
    margin-bottom: var(--overview-desc-margin, 12px);
    width: 100%;
    max-width: none;
}

.kingscss-read-more-btn {
    padding: var(--read-more-padding, 10px 16px);
    font-size: var(--read-more-text-size, 13px);
    gap: var(--read-more-gap, 6px);
    width: auto;
    max-width: 180px;
    border-radius: var(--read-more-border-radius, 6px);
}

.kingscss-section-header h2 {
    font-size: 2rem;
}

.kingscss-itinerary-timeline {
    padding: 0 15px;
}

.kingscss-itinerary-content {
    padding: 20px;
}

.kingscss-itinerary-title {
    font-size: 1.2rem;
}

.kingscss-hotels-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
}

.kingscss-container-inc {
    padding: 40px 15px;
}

.kingscss-container-inc h2 {
    font-size: 2rem;
}

.kingscss-tabs {
    flex-direction: column;
    gap: 10px;
}

.kingscss-tab {
    width: 100%;
    text-align: center;
}

.kingscss-tab-content {
    padding: 25px;
}

.kingscss-tab-content ul {
    grid-template-columns: 1fr;
}

.kingscss-faq-container {
    padding: 40px 15px;
}

.kingscss-faq-div {
    flex-direction: column;
    gap: 30px;
}

.kingscss-faq-img {
    order: -1;
}

.kingscss-package-container-wrapper {
    padding: 0 15px;
}

/* Hero Image Mobile Responsive Styles */
.kingscss-hero-image-container {
    height: 400px;
    margin: 10px 0;
}

/* Best Selling Badge Mobile Styles */
.kingscss-best-selling-badge {
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 10px;
    border-radius: 15px;
    letter-spacing: 0.3px;
}

.kingscss-hero-image-controls {
    padding: 8px;
    gap: 8px;
}

.kingscss-image-control-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
    border-radius: 6px;
}

.kingscss-image-control-btn i {
    font-size: 12px;
}

.kingscss-hero-thumbnails {
    height: 60px;
    padding: 5px;
    gap: 5px;
}

.kingscss-hero-thumbnail {
    min-width: 50px;
    height: 50px;
    border-radius: 6px;
}

.kingscss-hero-thumbnail.featured .kingscss-featured-badge {
    font-size: 8px;
    padding: 2px 6px;
    top: 2px;
    right: 2px;
}

/* Slideshow Modal Mobile Styles */
.kingscss-slideshow-container {
    max-width: 98%;
    max-height: 98%;
    width: 100%;
    height: 90vh;
    margin: 0;
    border-radius: 8px;
}

.kingscss-slideshow-close {
    font-size: 28px;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 15px;
}

.kingscss-slideshow-wrapper {
    height: calc(100% - 80px);
}

.kingscss-slideshow-thumbs {
    height: 70px;
    padding: 5px;
    gap: 8px;
}

.kingscss-slideshow-thumb {
    width: 50px;
    height: 50px;
    border-radius: 5px;
}

.kingscss-slideshow-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    padding: 12px 15px;
}

.kingscss-slideshow-nav {
    left: 15px;
    right: 15px;
}

.kingscss-package-card,
.kingslcsss-package-card {
    flex: 0 0 280px;
}

.kingslcsss-destination-card {
    flex: 0 0 200px;
}

.kingslcsss-published-package {
    padding: 40px 0;
}

.kingslcsss-published-package h2 {
    font-size: 2rem;
}

.fixed-buttons {
    flex-direction: column;
    bottom: 15px;
    right: 15px;
}

.modal-content {
    width: 95%;
    padding: 20px;
}

.show-only-mob {
    display: block;
}

.desktop-only {
    display: none;
}

.mob-only {
    display: block;
}

/* Small Mobile Styles */
@media (max-width: 576px) {

    /* Enhanced mobile tab styles for small screens */
    .kingscss-mob-tab-sticky {
        position: -webkit-sticky;
        /* Safari support */
        position: sticky;
        top: 70px;
        /* Account for mobile header height */
        z-index: 1002;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .kingscss-mobile-tabs {
        padding: 0px 12px;
        gap: 6px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
    }

    .kingscss-tab-item {
        padding: 8px 14px;
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
        scroll-snap-align: center;
        border-radius: 18px;
        font-weight: 500;
    }

    .kingscss-tab-item.active {
        font-weight: 600;
        transform: scale(1.02);
    }

    /* Hide scroll indicators on very small screens */
    .kingscss-mobile-tabs::after {
        display: none;
    }

    /* Ensure sections have proper spacing from sticky header */
    section[id] {
        scroll-margin-top: 80px;
    }

    .kingscss-hero-container {
        padding: 0 5px;
        gap: 15px;
    }

    .kingscss-hero-main-image {
        height: 200px;
    }

    /* Hero Image Controls for Extra Small Screens */
    .kingscss-hero-image-container {
        height: 250px;
        margin: 5px 0;
    }

    /* Best Selling Badge Extra Small Mobile Styles */
    .kingscss-best-selling-badge {
        top: 5px;
        left: 5px;
        padding: 4px 8px;
        font-size: 8px;
        border-radius: 10px;
        letter-spacing: 0.1px;
    }

    /* Overview Section Small Mobile Styles */
    .kingscss-overview-section {
        --overview-section-padding: 30px 0;
        --overview-section-margin-top: 20px;
        --overview-gap: 20px;
        --overview-padding: 15px;
        --overview-title-size: 1.5rem;
        --overview-title-margin: 12px;
        --overview-features-gap: 10px;
        --overview-features-margin: 18px;
        --overview-feature-padding: 10px;
        --overview-feature-gap: 6px;
        --overview-feature-text-size: 12px;
        --overview-border-radius: 10px;
        --callback-margin: 20px;
        --callback-padding: 15px;
        --callback-border-radius: 10px;
        --highlights-margin: 18px;
        --highlights-padding: 15px;
        --highlights-border-radius: 8px;
        --highlights-title-size: 1.1rem;
        --highlights-title-margin: 12px;
        --highlight-item-padding: 6px 0;
        --highlight-item-gap: 6px;
        --highlight-item-text-size: 12px;
        --overview-desc-text-size: 13px;
        --overview-desc-margin: 10px;
        --read-more-padding: 8px 14px;
        --read-more-text-size: 12px;
        --read-more-gap: 4px;
        --read-more-border-radius: 5px;
    }

    .kingscss-overview-container {
        padding: 0 10px;
    }

    .kingscss-image-control-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
        border-radius: 4px;
    }

    .kingscss-image-control-btn i {
        font-size: 9px;
    }

    .kingscss-hero-thumbnails {
        height: 45px;
        padding: 2px;
        gap: 2px;
    }

    .kingscss-hero-thumbnail {
        min-width: 35px;
        height: 35px;
        border-radius: 4px;
    }

    .kingscss-hero-thumbnail.featured .kingscss-featured-badge {
        font-size: 6px;
        padding: 1px 3px;
        top: 1px;
        right: 1px;
    }

    /* Slideshow Modal Extra Small Mobile Styles */
    .kingscss-slideshow-container {
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 80vh;
        border-radius: 0;
    }

    .kingscss-slideshow-close {
        font-size: 22px;
        width: 32px;
        height: 32px;
        top: 5px;
        right: 8px;
    }

    .kingscss-slideshow-wrapper {
        height: calc(100% - 50px);
    }

    .kingscss-slideshow-thumbs {
        height: 50px;
        padding: 2px;
        gap: 3px;
    }

    .kingscss-slideshow-thumb {
        width: 40px;
        height: 40px;
        border-radius: 3px;
    }

    .kingscss-slideshow-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
        padding: 8px 10px;
    }

    .kingscss-slideshow-nav {
        left: 8px;
        right: 8px;
    }

    .kingscss-package-title {
        font-size: 1.1rem;
    }

    .kingscss-price-main {
        font-size: 1.6rem;
    }
}

/* Fix for very small screens */
@media (max-width: 375px) {
    .kingscss-hero-container {
        padding: 0 5px;
    }

    .kingscss-hero-booking-card {
        padding: 15px;
        margin-top: 15px;
        max-width: 100%;
        height: auto;
        min-height: auto;
    }

    .kingscss-package-title {
        font-size: 1.1rem;
    }

    .kingscss-price-main {
        font-size: 1.6rem;
    }

    .kingscss-price-section {
        padding: 12px;
        margin-bottom: 15px;
    }

    /* Extra Small Overview Container Styles */
    .kingscss-overview-section {
        padding: 25px 0;
        margin-top: 15px;
        --overview-gap: 15px;
        --overview-padding: 15px;
    }

    .kingscss-overview-container {
        padding: 0 8px;
        gap: var(--overview-gap);
        max-width: 100%;
    }

    .kingscss-overview-left {
        padding: var(--overview-padding);
        border-radius: 10px;
    }

    .kingscss-overview-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .kingscss-overview-features {
        gap: 8px;
        margin-bottom: 15px;
    }

    .kingscss-overview-feature {
        padding: 10px;
        gap: 6px;
        border-radius: 6px;
        flex-direction: column;
        text-align: center;
    }

    .kingscss-overview-feature span {
        font-size: 12px;
        text-align: center;
    }

    .kingscss-callback-form {
        padding: 15px;
        border-radius: 10px;
    }

    .kingscss-callback-form h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .kingscss-form-group {
        margin-bottom: 15px;
    }

    .kingscss-form-control {
        padding: 10px 12px;
        font-size: 14px;
    }

    .kingscss-callback-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .kingscss-highlights-section {
        margin-top: 15px;
        padding: 15px;
        border-radius: 8px;
    }

    .kingscss-highlights-section h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .kingscss-highlight-item {
        padding: 6px 0;
        gap: 8px;
    }

    .kingscss-highlight-item span {
        font-size: 12px;
        line-height: 1.3;
    }

    .short-content p,
    .full-content p,
    .kingscss-overview-desc p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .kingscss-read-more-btn {
        padding: 6px 12px;
        font-size: 12px;
        gap: 4px;
    }

    .kingscss-package-icons {
        gap: 8px;
        margin: 12px 0;
        padding: 8px 0;
    }

    .kingscss-icon-item {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .kingscss-whatsapp-btn {
        padding: 12px 15px;
        font-size: 14px;
    }

    .kingscss-hero-main-image {
        height: 200px;
    }

    /* Hero Image Controls for Extra Small Screens */
    .kingscss-hero-image-container {
        height: 200px;
        margin: 5px 0;
    }

    /* Best Selling Badge Extra Small Mobile Styles */
    .kingscss-best-selling-badge {
        top: 5px;
        left: 5px;
        padding: 4px 8px;
        font-size: 8px;
        border-radius: 10px;
        letter-spacing: 0.1px;
    }

    .kingscss-image-control-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
        border-radius: 4px;
    }

    .kingscss-image-control-btn i {
        font-size: 9px;
    }

    .kingscss-hero-thumbnails {
        height: 45px;
        padding: 2px;
        gap: 2px;
    }

    .kingscss-hero-thumbnail {
        min-width: 35px;
        height: 35px;
        border-radius: 4px;
    }

    .kingscss-hero-thumbnail.featured .kingscss-featured-badge {
        font-size: 6px;
        padding: 1px 3px;
        top: 1px;
        right: 1px;
    }

    /* Slideshow Modal Extra Small Mobile Styles */
    .kingscss-slideshow-container {
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 80vh;
        border-radius: 0;
    }

    .kingscss-slideshow-close {
        font-size: 22px;
        width: 32px;
        height: 32px;
        top: 5px;
        right: 8px;
    }

    .kingscss-slideshow-wrapper {
        height: calc(100% - 50px);
    }

    .kingscss-slideshow-thumbs {
        height: 50px;
        padding: 2px;
        gap: 3px;
    }

    .kingscss-slideshow-thumb {
        width: 40px;
        height: 40px;
        border-radius: 3px;
    }

    .kingscss-slideshow-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
        padding: 8px 10px;
    }

    .kingscss-slideshow-nav {
        left: 8px;
        right: 8px;
    }

    .kingscss-package-title {
        font-size: 1.1rem;
    }

    .kingscss-price-main {
        font-size: 1.6rem;
    }
}

/* JavaScript functionality styles */
.changeHeroImage {
    cursor: pointer;
}

/* Mobile Touch Improvements */
@media (max-width: 768px) {

    .kingscss-image-control-btn,
    .kingscss-hero-thumbnail,
    .kingscss-slideshow-thumb,
    .kingscss-slideshow-btn,
    .kingscss-slideshow-close {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .kingscss-image-control-btn:active,
    .kingscss-hero-thumbnail:active,
    .kingscss-slideshow-thumb:active,
    .kingscss-slideshow-btn:active {
        transform: scale(0.95);
    }

    .kingscss-slideshow-thumbs {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .kingscss-slideshow-thumbs::-webkit-scrollbar {
        display: none;
    }
}

.showContactForm {
    display: block !important;
}

.toggleFaq {
    cursor: pointer;
}

.kingscss-faq-answer.active {
    display: block !important;
    max-height: 500px !important;
    opacity: 1 !important;
    padding: 25px !important;
}

/* ===========================
   FAQ SECTION STYLES
   =========================== */

/* Responsive visibility classes */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

@media (min-width: 769px) {
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}

.kingscss-faq-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
    clear: both;
}

.kingscss-faq-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: 
        radial-gradient(circle at 15% 85%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(46, 204, 113, 0.05) 0%, transparent 50%); */
    pointer-events: none;
    z-index: 1;
}

.kingscss-faq-container>* {
    position: relative;
    z-index: 2;
}

.kingscss-faq-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    margin-top: 2px !important;
    position: relative;
}

.kingscss-faq-container h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

/* Desktop FAQ Layout */
.kingscss-faq-div {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.kingscss-faq-ques {
    flex: 1;
    width: 100%;
}

.kingscss-faq-img {
    flex: 0 0 400px;
    text-align: center;
    max-width: 400px;
}

.kingscss-faq-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.kingscss-faq-img img:hover {
    transform: scale(1.02);
}

/* FAQ Item Styles */
.kingscss-faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.kingscss-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border-color: #007cba;
}

.kingscss-faq-item:last-child {
    margin-bottom: 0;
}

/* FAQ Question Styles */
.kingscss-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f5f5f5;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
}

.kingscss-faq-question:hover {
    background: #f8f9fa;
    color: #007cba;
}

.kingscss-faq-question.active {
    background: #f8f9fa;
    color: #007cba;
    border-bottom-color: transparent;
}

/* FAQ Question Icon */
.kingscss-faq-question .icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #007cba;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 124, 186, 0.2);
}

.kingscss-faq-question:hover .icon,
.kingscss-faq-question.active .icon {
    background: #005a87;
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(0, 124, 186, 0.3);
}

/* FAQ Question Text */
.kingscss-faq-question>span:not(.icon):not(.arrow) {
    flex: 1;
    font-weight: 600;
    line-height: 1.4;
}

/* FAQ Arrow Styles */
.kingscss-faq-question .arrow {
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 16px;
    opacity: 0.7;
}

.kingscss-faq-question .arrow i {
    transition: transform 0.3s ease;
}

.kingscss-faq-question.active .arrow i {
    transform: rotate(180deg);
}

.kingscss-faq-question:hover .arrow,
.kingscss-faq-question.active .arrow {
    opacity: 1;
}

/* FAQ Answer Styles */
.kingscss-faq-answer {
    padding: 0 25px;
    background: #fafafa;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.kingscss-faq-answer.active {
    padding: 20px 25px;
    max-height: 500px;
    opacity: 1;
}

.kingscss-faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
    text-align: left;
    animation: fadeInContent 0.4s ease-in-out;
}

/* Desktop Large Screens - Enhanced Layout */
@media (min-width: 1440px) {
    .kingscss-faq-container {
        width: 85%;
        max-width: 1400px;
        padding: 14px 16px;
        margin-left: 168px; 
        margin-right: 0; 
    
    }

    .kingscss-faq-div {
        gap: 60px;
    }

    .kingscss-faq-img {
        flex: 0 0 450px;
        max-width: 450px;
    }
}

/* Desktop Standard (1200px-1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .kingscss-faq-container {
        width: 88%;
        padding: 70px 20px;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .kingscss-faq-container {
        width: 92%;
        padding: 50px 15px;
    }

    .kingscss-faq-div {
        flex-direction: column;
        gap: 40px;
    }

    .kingscss-faq-img {
        flex: none;
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }

    .kingscss-faq-img img {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .kingscss-faq-container {
        width: 95%;
        padding: 40px 15px;
        text-align: center;
        margin: 0 auto;
    }

    .kingscss-faq-container h2 {
        font-size: 2rem;
        margin-bottom: 36px;
    }

    .kingscss-faq-div {
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .kingscss-faq-img {
        order: -1;
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .kingscss-faq-img img {
        max-width: 100%;
        width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .kingscss-faq-ques {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .kingscss-faq-question {
        padding: 15px 20px;
        font-size: 15px;
        gap: 12px;
    }

    .kingscss-faq-question .icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .kingscss-faq-answer.active {
        padding: 18px 20px;
    }

    .kingscss-faq-answer p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .kingscss-faq-container {
        width: 100%;
        padding: 30px 15px;
        text-align: center;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .kingscss-faq-container h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .kingscss-faq-div {
        gap: 20px;
        justify-content: center;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .kingscss-faq-img {
        display: none;
        /* Hide image on very small screens to save space */
    }

    .kingscss-faq-ques {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .kingscss-faq-item {
        margin-bottom: 12px;
        border-radius: 8px;
    }

    .kingscss-faq-question {
        padding: 14px 16px;
        font-size: 14px;
        gap: 10px;
        line-height: 1.4;
    }

    .kingscss-faq-question .icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .kingscss-faq-answer.active {
        padding: 16px;
    }

    .kingscss-faq-answer p {
        font-size: 13px;
        line-height: 1.6;
        text-align: left;
        /* Better readability on small screens */
    }
}

/* Animation for FAQ content reveal */
@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   DESTINATIONS SECTION - ADMIN MANAGED
   =========================== */

/* Destinations Section Styles with High Specificity to Prevent Conflicts */
.destination-section,
section.destination-section {
    padding: 60px 20px !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    text-align: center !important;
    margin: 40px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.destination-section::before,
section.destination-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.destination-section>*,
section.destination-section>* {
    position: relative;
    z-index: 2;
}

.destination-section h2,
section.destination-section h2 {
    font-size: 2.8rem !important;
    color: #2c3e50 !important;
    margin-bottom: 50px !important;
    font-weight: 700 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
}

.destination-section h2::after,
section.destination-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 2px;
}

.destination-list,
.destination-section .destination-list {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    justify-content: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.destination-item .destination-image,
.destination-section .destination-item .destination-image {
    width: 100% !important;
    height: 200px !important;
    overflow: hidden !important;
    border-radius: 12px 12px 0 0 !important;
    background: #f8f9fa !important;
}

.destination-item .destination-image img,
.destination-section .destination-item .destination-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.destination-item:hover .destination-image img,
.destination-section .destination-item:hover .destination-image img {
    transform: scale(1.05) !important;
}

.destination-highlight,
.destination-section .destination-highlight {
    color: #3498db !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    margin: 8px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.destination-description,
.destination-section .destination-description {
    color: #666 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 10px 0 15px 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.destination-meta,
.destination-section .destination-meta {
    margin: 15px 0 20px 0 !important;
    padding: 10px 0 !important;
    border-top: 1px solid #eee !important;
}

.packages-count,
.destination-section .packages-count {
    display: inline-block !important;
    background: linear-gradient(135deg, #3498db, #2980b9) !important;
    color: white !important;
    padding: 4px 12px !important;
    border-radius: 15px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.no-destinations,
.destination-section .no-destinations {
    text-align: center !important;
    padding: 60px 20px !important;
    color: #666 !important;
    font-style: italic !important;
    background: #f8f9fa !important;
    border-radius: 12px !important;
    border: 2px dashed #ddd !important;
    grid-column: 1 / -1 !important;
}

.destination-item,
.destination-section .destination-item {
    background: white !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    padding: 0 !important;
    text-align: left !important;
    transition: all 0.4s ease !important;
    overflow: hidden !important;
    position: relative !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.destination-item:hover,
.destination-section .destination-item:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.destination-item img,
.destination-section .destination-item img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    transition: transform 0.4s ease !important;
    display: block !important;
}

.destination-item:hover img,
.destination-section .destination-item:hover img {
    transform: scale(1.05) !important;
}

.destination-item .destination-content,
.destination-section .destination-item .destination-content {
    padding: 25px !important;
}

.destination-item h3,
.destination-section .destination-item h3 {
    font-size: 1.6rem !important;
    color: #2c3e50 !important;
    margin-bottom: 12px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

.destination-item p,
.destination-section .destination-item p {
    font-size: 1rem !important;
    color: #666 !important;
    margin-bottom: 20px !important;
    line-height: 1.6 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.destination-link,
.destination-section .destination-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: white !important;
    background: linear-gradient(135deg, #3498db, #2980b9) !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.destination-link:hover,
.destination-section .destination-link:hover {
    background: linear-gradient(135deg, #2980b9, #1e6ba8) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3) !important;
    color: white !important;
    text-decoration: none !important;
}

.destination-link::after,
.destination-section .destination-link::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.destination-link:hover::after,
.destination-section .destination-link:hover::after {
    transform: translateX(3px);
}

/* No destinations message styling */
.destination-section p:not(.destination-item p),
section.destination-section p:not(.destination-item p) {
    font-size: 1.2rem !important;
    color: #666 !important;
    background: white !important;
    padding: 30px !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    max-width: 500px !important;
    margin: 0 auto !important;
    border-left: 4px solid #3498db !important;
}

/* Mobile Responsive Styles for Destinations */
@media (max-width: 768px) {

    .destination-section,
    section.destination-section {
        padding: 40px 15px !important;
        margin: 20px 0 !important;
    }

    .destination-section h2,
    section.destination-section h2 {
        font-size: 2.2rem !important;
        margin-bottom: 35px !important;
    }

    .destination-list,
    .destination-section .destination-list {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        max-width: 100% !important;
    }

    .destination-item,
    .destination-section .destination-item {
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .destination-item img,
    .destination-section .destination-item img {
        height: 180px !important;
    }

    .destination-item .destination-content,
    .destination-section .destination-item .destination-content {
        padding: 20px !important;
    }

    .destination-item h3,
    .destination-section .destination-item h3 {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 480px) {

    .destination-section,
    section.destination-section {
        padding: 30px 10px !important;
    }

    .destination-section h2,
    section.destination-section h2 {
        font-size: 1.8rem !important;
        margin-bottom: 25px !important;
    }

    .destination-list,
    .destination-section .destination-list {
        gap: 20px !important;
    }

    .destination-item img,
    .destination-section .destination-item img {
        height: 160px !important;
    }

    .destination-item .destination-content,
    .destination-section .destination-item .destination-content {
        padding: 15px !important;
    }

    .destination-item h3,
    .destination-section .destination-item h3 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }

    .destination-item p,
    .destination-section .destination-item p {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
    }

    .destination-link,
    .destination-section .destination-link {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
}

/* ===========================
   RECENTLY PUBLISHED PACKAGES SECTION
   =========================== */

/* Main section styling */
.kingslcsss-published-package {
    background: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.kingslcsss-published-package h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.kingslcsss-published-package h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f39c12);
    border-radius: 2px;
}

/* Container wrapper with scroll arrows */
.kingscss-package-container-wrapper {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Package container with horizontal scroll */
.kingscss-package-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 30px 0;
    position: relative;
}

.kingscss-package-container::-webkit-scrollbar {
    display: none;
}

/* Package Card Styling */
.kingslcsss-package-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    height: auto;
    min-height: 450px;
}

.kingslcsss-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Package Link */
.kingslcsss-package-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* Package Image */
.kingslcsss-package-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kingslcsss-package-card:hover .kingslcsss-package-image {
    transform: scale(1.05);
}

/* Package Details */
.kingslcsss-package-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: calc(100% - 220px);
    justify-content: space-between;
}

/* Package Title */
.kingslcsss-package-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

/* Package Meta Information */
.kingslcsss-package-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.kingslcsss-package-meta i {
    color: #ff6b35;
    font-size: 14px;
    width: 16px;
}

/* Package Price */
.kingslcsss-package-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.kingslcsss-package-price i {
    font-size: 1.2rem;
    color: inherit;
}

/* Scroll Arrows */
.kingslcsss-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f39c12);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.9;
}

.kingslcsss-scroll-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.kingslcsss-scroll-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.kingslcsss-scroll-left {
    left: -25px;
}

.kingslcsss-scroll-right {
    right: -25px;
}

/* No packages message */
.no-packages {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    padding: 40px 20px;
    font-style: italic;
}

/* ===========================
   RESPONSIVE DESIGN FOR PACKAGES SECTION
   =========================== */

/* Tablet Styles */
@media (max-width: 1024px) {
    .kingscss-package-container-wrapper {
        padding: 0 15px;
    }

    .kingslcsss-package-card {
        flex: 0 0 320px;
        min-height: 420px;
    }

    .kingslcsss-package-image {
        height: 200px;
    }

    .kingslcsss-package-details {
        padding: 20px;
        height: calc(100% - 200px);
    }

    .kingslcsss-scroll-left {
        left: -20px;
    }

    .kingslcsss-scroll-right {
        right: -20px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .kingslcsss-published-package {
        padding: 40px 0;
    }

    .kingslcsss-published-package h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .kingscss-package-container-wrapper {
        padding: 0 10px;
    }

    .kingscss-package-container {
        gap: 15px;
        padding: 10px 0 20px 0;
    }

    .kingslcsss-package-card {
        flex: 0 0 280px;
        min-height: 380px;
    }

    .kingslcsss-package-image {
        height: 180px;
    }

    .kingslcsss-package-details {
        padding: 18px;
        height: calc(100% - 180px);
        gap: 10px;
    }

    .kingslcsss-package-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .kingslcsss-package-meta {
        font-size: 13px;
        margin: 6px 0;
    }

    .kingslcsss-package-price {
        font-size: 1.3rem;
        padding-top: 12px;
    }

    .kingslcsss-scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .kingslcsss-scroll-left {
        left: -15px;
    }

    .kingslcsss-scroll-right {
        right: -15px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .kingslcsss-published-package {
        padding: 30px 0;
    }

    .kingslcsss-published-package h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .kingscss-package-container-wrapper {
        padding: 0 5px;
    }

    .kingscss-package-container {
        gap: 12px;
    }

    .kingslcsss-package-card {
        flex: 0 0 260px;
        min-height: 360px;
    }

    .kingslcsss-package-image {
        height: 160px;
    }

    .kingslcsss-package-details {
        padding: 15px;
        height: calc(100% - 160px);
    }

    .kingslcsss-package-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .kingslcsss-package-meta {
        font-size: 12px;
    }

    .kingslcsss-package-price {
        font-size: 1.2rem;
        padding-top: 10px;
    }

    .kingslcsss-scroll-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .kingslcsss-scroll-left {
        left: -10px;
    }

    .kingslcsss-scroll-right {
        right: -10px;
    }
}

/* Small Mobile Specific Hero Section Styles */
@media (max-width: 480px) {

    /* Hero Container adjustments for very small screens */
    .kingscss-package-hero-section {
        height: 1%;
        padding: 15px 0;
    }

    .kingscss-hero-container {
        height: 753px;
        /* padding: 0 10px;
        gap: 15px;
        max-width: 100%; */
    }

    /* Hero Right Section - Small Mobile */
    .kingscss-hero-right {
        width: 100%;
        position: static;
        order: 2;
        margin-top: 200px;
        max-width: 100%;
        /* Prevent any horizontal overflow */
        overflow-x: hidden;
    }

    .kingscss-hero-booking-card {
        padding: 15px;
        margin: 0;
        max-width: 100%;
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        /* Ensure content fits */
        box-sizing: border-box;
        overflow: hidden;
    }

    /* Availability Badge - Small Mobile */
    .kingscss-availability-badge {
        padding: 8px 12px;
        margin-bottom: 12px;
        border-radius: 6px;
        font-size: 13px;
        /* Responsive flex layout */
        flex-wrap: wrap;
        gap: 5px;
    }

    .kingscss-days {
        font-size: 12px;
        flex: 1;
        min-width: max-content;
    }

    .kingscss-status {
        font-size: 11px;
        padding: 3px 6px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.2);
    }

    /* Package Title - Small Mobile */
    .kingscss-package-title {
        font-size: 1.2rem;
        margin: 12px 0 8px 0;
        line-height: 1.3;
        /* Improved text handling */
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        /* Prevent title from being too long */
        max-width: 100%;
    }

    .kingscss-package-subtitle {
        font-size: 13px;
        margin: 0 0 12px 0;
        line-height: 1.4;
        color: #666;
    }

    /* Package Icons - Small Mobile */
    .kingscss-package-icons {
        gap: 8px;
        margin: 12px 0;
        padding: 8px 0;
        justify-content: space-around;
        flex-wrap: wrap;
        /* Ensure icons don't overflow */
        max-width: 100%;
        overflow: hidden;
    }

    .kingscss-icon-item {
        width: 32px;
        height: 32px;
        font-size: 13px;
        border-radius: 8px;
        /* Ensure proper touch targets */
        min-width: 32px;
        min-height: 32px;
        /* Improve touch experience */
        -webkit-tap-highlight-color: rgba(0, 123, 255, 0.1);
    }

    /* Price Section - Small Mobile */
    .kingscss-price-section {
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 8px;
        background: #f8f9fa;
        /* Prevent content overflow */
        overflow: hidden;
        word-wrap: break-word;
    }

    .kingscss-price-main {
        font-size: 1.8rem;
        margin-bottom: 6px;
        text-align: center;
        /* Prevent number overflow */
        word-break: break-all;
    }

    .kingscss-price-details {
        gap: 8px;
        margin-bottom: 6px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .kingscss-price-old {
        font-size: 14px;
    }

    .kingscss-price-off {
        padding: 2px 5px;
        font-size: 11px;
        border-radius: 3px;
    }

    .kingscss-price-note {
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
        /* Prevent text overflow */
        word-wrap: break-word;
    }

    .kingscss-price-note small {
        font-size: 11px;
        display: block;
        margin-top: 4px;
    }

    /* Booking Form - Small Mobile */
    .kingscss-booking-form {
        margin-top: 12px;
        width: 100%;
    }

    .kingscss-whatsapp-btn {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 8px;
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        /* Ensure minimum touch target */
        min-height: 44px;
        box-sizing: border-box;
    }

    .kingscss-whatsapp-btn i {
        margin-right: 8px;
        font-size: 16px;
        flex-shrink: 0;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {

    /* Hero Container - Extra Small */
    .kingscss-package-hero-section {
        padding: 10px 0;
    }

    .kingscss-hero-container {
        padding: 0 8px;
        gap: 12px;
    }

    /* Hero Right - Extra Small */
    .kingscss-hero-right {
        margin-top: 50% !important;
        width: 100%;
        margin: 0;
        max-width: 100%;
        overflow-x: hidden;
    }

    .kingscss-hero-booking-card {
        padding: 12px;
        border-radius: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        /* Improve small screen experience */
        min-height: auto;
        overflow: hidden;
    }

    /* Package Title - Extra Small */
    .kingscss-package-title {
        font-size: 1.1rem;
        margin: 10px 0 6px 0;
        line-height: 1.3;
        /* Better text handling for small screens */
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .kingscss-package-subtitle {
        font-size: 12px;
        margin: 0 0 10px 0;
        line-height: 1.3;
    }

    /* Package Icons - Extra Small */
    .kingscss-package-icons {
        gap: 6px;
        margin: 10px 0;
        padding: 6px 0;
        justify-content: space-around;
        /* Ensure icons fit on very small screens */
        flex-wrap: wrap;
        max-width: 100%;
    }

    .kingscss-icon-item {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 6px;
        /* Minimum touch targets for accessibility */
        min-width: 30px;
        min-height: 30px;
    }

    /* Price Section - Extra Small */
    .kingscss-price-section {
        padding: 10px;
        margin-bottom: 12px;
        border-radius: 8px;
        /* Improve readability on small screens */
        background: #f8f9fa;
        overflow: hidden;
    }

    .kingscss-price-main {
        font-size: 1.6rem;
        margin-bottom: 8px;
        /* Prevent large numbers from overflowing */
        word-break: break-all;
        text-align: center;
    }

    .kingscss-price-details {
        gap: 6px;
        margin-bottom: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .kingscss-price-old {
        font-size: 13px;
    }

    .kingscss-price-off {
        padding: 2px 4px;
        font-size: 10px;
        border-radius: 3px;
    }

    .kingscss-price-note {
        font-size: 11px;
        line-height: 1.4;
        text-align: center;
        /* Prevent overflow on very small screens */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .kingscss-price-note small {
        font-size: 10px;
        display: block;
        margin-top: 4px;
    }

    /* Booking Form - Extra Small */
    .kingscss-booking-form {
        margin-top: 10px;
        width: 100%;
    }

    .kingscss-whatsapp-btn {
        padding: 10px 15px;
        font-size: 13px;
        border-radius: 8px;
        width: 100%;
        /* Ensure proper button sizing */
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        box-sizing: border-box;
        /* Improve touch experience */
        -webkit-tap-highlight-color: rgba(37, 211, 102, 0.1);
    }

    .kingscss-whatsapp-btn i {
        font-size: 14px;
        flex-shrink: 0;
        margin-right: 6px;
    }
}

.kingscss-price-main {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.kingscss-price-details {
    gap: 6px;
    margin-bottom: 5px;
}

.kingscss-price-old {
    font-size: 13px;
}

.kingscss-price-off {
    padding: 1px 4px;
    font-size: 10px;
}

.kingscss-price-note {
    font-size: 11px;
    line-height: 1.3;
}

.kingscss-price-note small {
    font-size: 10px;
}

/* Booking Form - Extra Small */
.kingscss-whatsapp-btn {
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 6px;
}

.kingscss-whatsapp-btn i {
    margin-right: 6px;
    font-size: 14px;
}

/* Recently Published Packages Cards */
.kingslcsss-package-card {
    flex: 0 0 240px;
    min-height: 340px;
}

.kingslcsss-package-image {
    height: 150px;
}

.kingslcsss-package-details {
    padding: 12px;
    height: calc(100% - 150px);
}

.kingslcsss-package-title {
    font-size: 1rem;
}

.kingslcsss-package-meta {
    font-size: 11px;
}

.kingslcsss-package-price {
    font-size: 1.1rem;
}

/* ===========================
   MOBILE RESPONSIVE UTILITY CLASSES FOR HERO RIGHT
   =========================== */

/* Prevent horizontal overflow on all hero elements */

.kingscss-hero-booking-card,
.kingscss-package-icons,
.kingscss-price-section {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    margin-bottom: 24px;
}

/* Text overflow prevention */
.kingscss-package-title,
.kingscss-package-subtitle,
.kingscss-price-note {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

/* Flexible image scaling */
/* .kingscss-hero-main-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
} */

/* Touch target improvements for mobile */
@media (max-width: 768px) {

    .kingscss-icon-item,
    .kingscss-whatsapp-btn,
    .kingscss-availability-badge {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
    }

    /* Ensure minimum touch targets */
    .kingscss-icon-item {
        min-width: 44px;
        min-height: 44px;
    }

    .kingscss-whatsapp-btn {
        min-height: 48px;
    }
}

/* ===========================
   FIXED BUTTONS - MOBILE ONLY
   =========================== */

/* Fixed Buttons - Hidden by default on desktop */
.fixed-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: none;
    /* Hidden by default on desktop */
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Show on mobile devices only */
@media (max-width: 768px) {
    .fixed-buttons {
        display: flex;
        opacity: 1;
        transform: translateX(0);
        animation: slideInFromRight 0.6s ease-out 0.5s both;
    }
}

/* Slide-in animation */
@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Button Base Styles */
.call-btn,
.availability-btn {
    background: linear-gradient(135deg, #2C5F2D 0%, #4CAF50 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-width: 150px;
    text-align: center;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Shimmer effect */
.call-btn::before,
.availability-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.call-btn:hover::before,
.availability-btn:hover::before {
    left: 100%;
}

/* Call Button - Orange Gradient */
.call-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A65 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Hover Effects */
.call-btn:hover,
.availability-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(44, 95, 45, 0.4);
    text-decoration: none;
    color: white;
}

.call-btn:hover {
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* Active/Click Effects */
.call-btn:active,
.availability-btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Add icons to buttons using CSS */
.call-btn::after {
    content: '📞';
    margin-left: 8px;
    font-size: 1rem;
}

.availability-btn::after {
    content: '💬';
    margin-left: 8px;
    font-size: 1rem;
}

/* Pulse animation for availability button to draw attention */
@keyframes buttonPulse {
    0% {
        box-shadow: 0 8px 25px rgba(44, 95, 45, 0.3);
    }

    50% {
        box-shadow: 0 8px 25px rgba(44, 95, 45, 0.5);
    }

    100% {
        box-shadow: 0 8px 25px rgba(44, 95, 45, 0.3);
    }
}

.availability-btn {
    animation: buttonPulse 2s infinite;
}

/* Responsive adjustments for different mobile sizes */
@media (max-width: 576px) {
    .fixed-buttons {
        right: 1rem;
        bottom: 1rem;
        gap: 0.8rem;
    }

    .call-btn,
    .availability-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 130px;
    }

    .fixed-buttons {
        flex-direction: column;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 375px) {
    .fixed-buttons {
        right: 0.5rem;
        bottom: 0.5rem;
        gap: 0.6rem;
    }

    .call-btn,
    .availability-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        min-width: 120px;
        border-radius: 25px;
    }
}

/* Accessibility improvements */
.call-btn:focus,
.availability-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

    .call-btn,
    .availability-btn {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
    }
}

/* ===========================
   GOOGLE REVIEWS SECTION - "WHAT OUR GUESTS SAY"
   =========================== */

/* Main Reviews Section */
.google-reviews {
    background: #ffffff;
    margin: 3rem 0;
    padding: 3rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.google-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
    z-index: 1;
}

/* Section Title */
.google-reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.google-reviews h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4285f4, #34a853);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

/* Reviews Wrapper with Navigation */
.reviews-wrapper {
    position: relative;
}

/* Navigation Arrows */
.reviews-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    color: #4285f4;
    opacity: 0.8;
}

.reviews-nav-arrow:hover {
    background: #4285f4;
    color: white;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}

.reviews-nav-arrow.left {
    left: -25px;
}

.reviews-nav-arrow.right {
    right: -25px;
}

.reviews-nav-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Reviews Container */
.reviews-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0 2rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #4285f4 #f1f3f4;
    cursor: grab;
}

.reviews-container:active {
    cursor: grabbing;
}

/* Webkit scrollbar styling */
.reviews-container::-webkit-scrollbar {
    height: 8px;
}

.reviews-container::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #4285f4, #34a853);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.reviews-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #3367d6, #2d7d32);
}

/* Scroll indicators for mobile */
.reviews-container::before,
.reviews-container::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 60px;
    pointer-events: none;
    z-index: 5;
    transition: opacity 0.3s ease;
}

.reviews-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), transparent);
}

.reviews-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.9), transparent);
}

/* Individual Review Card */
.review-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 0 0 350px;
    min-width: 350px;
    max-width: 350px;
    height: auto;
    min-height: 200px;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4285f4, #34a853);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #4285f4;
}

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

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-header:last-child {
    margin-bottom: 0;
    margin-top: 1rem;
    justify-content: flex-end;
}

/* Reviewer Name */
.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Review Rating */
.review-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.review-rating .star {
    color: #ffd700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(255, 215, 0, 0.3);
    transition: all 0.2s ease;
}

.review-rating .star:hover {
    transform: scale(1.1);
}

/* Review Text */
.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-style: italic;
    position: relative;
    padding: 0.5rem 0;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: #e9ecef;
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-text::after {
    content: '"';
    font-size: 3rem;
    color: #e9ecef;
    position: absolute;
    bottom: -1.5rem;
    right: 0.5rem;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Google Logo in Reviews */
.review-header img {
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.review-header img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .google-reviews {
        margin: 2rem 0;
        padding: 2.5rem 1rem;
    }

    .google-reviews h2 {
        font-size: 2.2rem;
    }

    .reviews-container {
        gap: 1.2rem;
        padding: 1rem 0 1.5rem 0;
    }

    .review-card {
        flex: 0 0 320px;
        min-width: 320px;
        max-width: 320px;
        padding: 1.3rem;
    }
}

@media (max-width: 768px) {
    .google-reviews {
        margin: 1.5rem 0;
        padding: 2rem 1rem;
        border-radius: 12px;
    }

    .google-reviews h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .reviews-container {
        gap: 1rem;
        padding: 0.8rem 0 1.2rem 0;
    }

    .review-card {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
        padding: 1.2rem;
    }

    .reviewer-name {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .review-rating .star {
        font-size: 1rem;
    }

    /* Hide navigation arrows on tablet */
    .reviews-nav-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .google-reviews {
        margin: 1rem 0;
        padding: 1.5rem 0.8rem;
        border-radius: 8px;
    }

    .google-reviews h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .google-reviews h2::after {
        width: 60px;
        margin: 0.8rem auto 1.5rem;
    }

    .reviews-container {
        gap: 0.8rem;
        padding: 0.5rem 0 1rem 0;
    }

    .review-card {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
        padding: 1rem;
        border-radius: 8px;
    }

    .reviewer-name {
        font-size: 0.95rem;
    }

    .review-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .review-rating .star {
        font-size: 0.9rem;
    }

    .review-header img {
        width: 25px;
        height: 25px;
    }

    /* Hide navigation arrows on mobile */
    .reviews-nav-arrow {
        display: none;
    }
}

@media (max-width: 375px) {
    .google-reviews {
        padding: 1.2rem 0.5rem;
    }

    .google-reviews h2 {
        font-size: 1.6rem;
    }

    .reviews-container {
        gap: 0.6rem;
        padding: 0.3rem 0 0.8rem 0;
    }

    .review-card {
        flex: 0 0 240px;
        min-width: 240px;
        max-width: 240px;
        padding: 0.8rem;
    }

    .reviewer-name {
        font-size: 0.9rem;
    }

    .review-text {
        font-size: 0.85rem;
    }

    .review-rating .star {
        font-size: 0.85rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .google-reviews {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }

    .review-card {
        box-shadow: none;
        border: 1px solid #eee;
        break-inside: avoid;
        margin-bottom: 1rem;
    }

    .review-card:hover {
        transform: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .google-reviews {
        border: 2px solid #000;
    }

    .review-card {
        border: 2px solid #333;
    }

    .reviewer-name {
        color: #000;
    }

    .review-text {
        color: #000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .review-card {
        transition: none;
    }

    .review-card:hover {
        transform: none;
    }

    .reviews-container {
        animation: none;
    }

    .review-rating .star:hover {
        transform: none;
    }
}

/* ===========================
   BLUE COLOR HEADINGS OVERRIDE
   =========================== */

/* Package Title */
.kingscss-package-title {
    color: #007cba !important;
}

/* Request Callback Form Heading */
.kingscss-callback-form h4 {
    color: #007cba !important;
}

/* Package Highlights Section Heading */
.kingscss-highlights-section h3 {
    color: #007cba !important;
}

/* Package Itinerary Section Heading */
.kingscss-itinerary-section h2 {
    color: #007cba !important;
    padding-top: 26px !important;
}

/* Package Itinerary Section Heading */
.kingscss-itinerary-section h3 {
    color: #eef1f3 !important;
}

/* Hotels & Accommodation Section Heading */
.hotelKings h2 {
    color: #007cba !important;
    margin-top: -22px !important;
}

/* Individual Hotel Names/Titles */
.hotelKings .hotel-card h3,
.hotelKings .legacy-hotels-content h3 {
    color: #007cba !important;
}

/* FAQs Section Heading */
.kingscss-faq-container h2,
.kingscss-faq-container h3 {
    color: #007cba !important;
    margin-top: 9px;
}

/* Recently Published Packages Section Heading */
.kingslcsss-published-package h2 {
    color: #007cba !important;
}

/* What Our Guests Say Section Heading */
.google-reviews h2,
.google-reviews h3 {
    color: #007cba !important;
}

/* Additional section headings that might contain the specified text */
.section-container h2,
.section-container h3 {
    color: #007cba !important;
}

/* Secondary package titles */
.kingslcsss-package-title {
    color: #007cba !important;
}

/* ===========================
   GALLERY FULLSCREEN ENHANCEMENTS
   =========================== */

/* Global gallery fullscreen button improvements */
.gallery-fullscreen {
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: absolute !important;
    top: 15px;
    right: 15px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gallery-fullscreen:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* Ensure fullscreen button is always visible and accessible */
.kingsland-package-gallery:hover .gallery-fullscreen {
    opacity: 1;
    transform: scale(1.05);
}

/* Fullscreen mode enhancements */
.kingsland-package-gallery:-webkit-full-screen {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kingsland-package-gallery:-moz-full-screen {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kingsland-package-gallery:fullscreen {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide controls in fullscreen mode */
.kingsland-package-gallery:fullscreen .gallery-controls,
.kingsland-package-gallery:fullscreen .gallery-thumbnails,
.kingsland-package-gallery:fullscreen .gallery-counter {
    display: none;
}

/* Fullscreen image scaling */
.kingsland-package-gallery:fullscreen .gallery-slide img {
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .gallery-fullscreen {
        opacity: 1 !important;
        background: rgba(0, 0, 0, 0.8) !important;
        width: 48px;
        height: 48px;
        top: 10px;
        right: 10px;
    }
}

/* Mobile responsive gallery fullscreen */
@media (max-width: 768px) {
    .gallery-fullscreen {
        width: 40px !important;
        height: 40px !important;
        top: 10px !important;
        right: 10px !important;
        background: rgba(0, 0, 0, 0.8) !important;
    }

    .gallery-fullscreen i {
        font-size: 16px;
    }
}

/* High DPI display improvements */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
    .gallery-fullscreen i {
        transform: scale(0.9);
    }
}

/* ===========================
   CONTACT FORM MODAL STYLES
   =========================== */

/* Modal overlay and container */
.fromM {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fromM.show-modal {
    display: flex;
    opacity: 1;
    visibility: visible;
    align-items: center;
    justify-content: center;
}

/* Modal content styling */
.fromM .modal-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.fromM.show-modal .modal-content {
    transform: scale(1);
}

/* Close button styling */
.fromM .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    z-index: 1;
}

.fromM .close-btn:hover {
    color: #333;
}

/* Modal overlay */
.fromM .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Contact form styling inside modal */
.fromM .contact-form {
    margin-top: 1rem;
}

.fromM .contact-form h3,
.fromM .contact-form h4 {
    color: #007cba;
    margin-bottom: 1.5rem;
    text-align: center;
}

.fromM .form-group {
    margin-bottom: 1rem;
}

.fromM .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.fromM .form-group input,
.fromM .form-group textarea,
.fromM .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.fromM .form-group input:focus,
.fromM .form-group textarea:focus,
.fromM .form-group select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

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

.fromM .submit-btn {
    width: 100%;
    background: #007cba;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.fromM .submit-btn:hover {
    background: #005a87;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

/* Responsive modal */
@media (max-width: 768px) {
    .fromM .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem;
    }

    .fromM .form-row {
        grid-template-columns: 1fr;
    }

    .fromM .close-btn {
        font-size: 1.3rem;
        top: 10px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .fromM .modal-content {
        padding: 1rem;
    }

    .fromM .contact-form h3,
    .fromM .contact-form h4 {
        font-size: 1.2rem;
    }
}

/* ===========================
   COMPREHENSIVE MOBILE HEADER NAVIGATION FIX
   Added to holiday.css for consolidated mobile navigation support
   =========================== */

/* Additional Mobile Section Spacing Fixes */
@media (max-width: 768px) {

    /* Comprehensive Gap and Spacing Fixes */
    .kingscss-overview-section {
        padding: 40px 0 !important;
        margin-top: 0 !important;
    }

    .kingscss-itinerary-section {
        padding: 9px 0 !important;
        margin-top: -24px !important;
    }

    .kingscss-section-title {
        font-size: 2rem !important;
        margin-bottom: 30px !important;
    }

    /* Remove excessive gaps between sections */
    section+section {
        margin-top: 0 !important;
    }
}

/* ===========================
   MOBILE NAVIGATION COMPATIBILITY
   =========================== */
/* Ensure mobile navigation works properly with holiday.css */
@media (max-width: 768px) {

    /* Fix any potential z-index conflicts */
    .modern-header {
        z-index: 1050 !important;
    }

    /* Ensure mobile toggle is visible */
    .mobile-toggle {
        z-index: 1051 !important;
    }

    /* Ensure mobile menu displays above other content */
    .nav-menu {
        z-index: 1051 !important;
    }

    /* Enhanced mobile responsiveness for destinations */
    .destination-list,
    .destination-section .destination-list {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }

    .destination-list .destination-card,
    .destination-section .destination-card {
        width: 100% !important;
        min-width: unset !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
}

/* Extra small screens */
@media (max-width: 480px) {

    .destination-list,
    .destination-section .destination-list {
        padding: 0 10px !important;
        gap: 15px !important;
    }

    .destination-list .destination-card,
    .destination-section .destination-card {
        font-size: 14px !important;
        padding: 15px !important;
    }
}

/* ===========================
   MOBILE DESTINATIONS SLIDER STYLES
   =========================== */

/* Mobile Instagram Slider */
.mobile-instagram-slider {
    display: none; /* Hidden by default, shown only on mobile */
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.mobile-instagram-slider .slider-container {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.mobile-instagram-slider .slider-slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
    padding: 0 10px;
    box-sizing: border-box;
}

.mobile-instagram-slider .slider-slide:first-child {
    display: block;
}

/* Mobile Destinations Slider */
.mobile-destinations-slider {
    display: none; /* Hidden by default, shown only on mobile */
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

/* Desktop Destinations Grid - Always visible on desktop */
.kingscss-destination-list.desktop-only {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 40px !important;
}

/* Ensure desktop destinations look exactly like the screenshot */
.kingscss-destination-list.desktop-only .kingscss-destination-item {
    background: white !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

/* Ensure desktop Instagram grid displays properly */
.kingscss-instagram-grid.desktop-only {
    display: grid !important;
    gap: 16px !important;
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Debug: Force visibility */
.kingscss-instagram-grid.desktop-only {
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 200px !important;
}

/* Override any JavaScript hiding */
.kingscss-instagram-grid.desktop-only,
.kingscss-instagram-grid.desktop-only * {
    display: revert !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force grid layout */
.kingscss-instagram-grid.desktop-only {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
}

/* Ensure Instagram fallback content is visible */
.kingscss-instagram-grid.desktop-only .kingscss-ig-fallback {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide Instagram embeds on desktop to show fallback */
.kingscss-instagram-grid.desktop-only .instagram-media {
    display: none !important;
}

/* Force desktop grid to show on larger screens */
@media (min-width: 769px) {
    .kingscss-instagram-grid.desktop-only {
        display: grid !important;
        gap: 16px !important;
        grid-template-columns: repeat(3, 1fr) !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        width: 100% !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .mobile-instagram-slider {
        display: none !important;
    }
    
    /* Ensure Instagram items are visible in desktop grid */
    .kingscss-instagram-grid.desktop-only .kingscss-instagram-item {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
}

.kingscss-instagram-grid.desktop-only .kingscss-instagram-item {
    background: #fff !important;
    border: 1px solid #e9ecef !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06) !important;
    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;
}

.kingscss-instagram-grid.desktop-only .kingscss-ig-card {
    position: relative !important;
    display: block !important;
    text-decoration: none !important;
    color: inherit !important;
    border: 1px solid #eee !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.kingscss-instagram-grid.desktop-only .kingscss-ig-media {
    position: relative !important;
    width: 100% !important;
}

.kingscss-instagram-grid.desktop-only .kingscss-ig-media::before {
    content: '' !important;
    display: block !important;
    padding-top: 125% !important;
    background: #fff !important;
}

.kingscss-instagram-grid.desktop-only .kingscss-ig-img,
.kingscss-instagram-grid.desktop-only .kingscss-ig-placeholder {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.kingscss-instagram-grid.desktop-only .kingscss-ig-img {
    object-fit: contain !important;
    background: #fff !important;
}

.kingscss-instagram-grid.desktop-only .kingscss-ig-placeholder {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8f9fa !important;
    color: #adb5bd !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.kingscss-instagram-grid.desktop-only .kingscss-ig-footer {
    display: block !important;
    padding: 10px 12px !important;
    border-top: 1px solid #eee !important;
    font-weight: 600 !important;
    text-align: center !important;
    background: #fff !important;
}

.kingscss-destination-list.desktop-only .kingscss-destination-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.kingscss-destination-list.desktop-only .kingscss-destination-image {
    width: 100% !important;
    height: 200px !important;
    overflow: hidden !important;
    position: relative !important;
}

.kingscss-destination-list.desktop-only .kingscss-destination-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.kingscss-destination-list.desktop-only .kingscss-destination-item:hover .kingscss-destination-image img {
    transform: scale(1.05) !important;
}

.kingscss-destination-list.desktop-only .kingscss-destination-content {
    padding: 25px !important;
    text-align: left !important;
}

.kingscss-destination-list.desktop-only .kingscss-destination-name {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 10px !important;
}

.kingscss-destination-list.desktop-only .kingscss-destination-highlight {
    color: #007cba !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
    font-size: 0.95rem !important;
}

.kingscss-destination-list.desktop-only .kingscss-destination-description {
    color: #6c757d !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
    font-size: 0.9rem !important;
}

.kingscss-destination-list.desktop-only .kingscss-destination-meta {
    margin-bottom: 20px !important;
}

.kingscss-destination-list.desktop-only .kingscss-packages-count {
    background: #e3f2fd !important;
    color: #1976d2 !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
}

.kingscss-destination-list.desktop-only .kingscss-destination-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #007cba !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
}

.kingscss-destination-list.desktop-only .kingscss-destination-link:hover {
    color: #0056b3 !important;
    gap: 12px !important;
}

.kingscss-destination-list.desktop-only .kingscss-destination-link i {
    transition: transform 0.3s ease !important;
}

.kingscss-destination-list.desktop-only .kingscss-destination-link:hover i {
    transform: translateX(3px) !important;
}

.mobile-destinations-slider .slider-container {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.mobile-destinations-slider .slider-slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
    padding: 0 10px;
    box-sizing: border-box;
}

.mobile-destinations-slider .slider-slide:first-child {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Mobile Slider Navigation */
.mobile-slider-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 20px;
}

.slider-nav-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.slider-nav-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.slider-nav-btn:active {
    transform: translateY(1px);
}

.slider-nav-btn i {
    font-size: 16px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #667eea;
    transform: scale(1.2);
}

.dot:hover {
    background: #667eea;
}

/* Mobile Instagram Slider Responsive */
@media (max-width: 768px) {
    .mobile-instagram-slider {
        display: block !important;
    }
    
    .kingscss-instagram-grid.desktop-only {
        display: none !important;
    }
    
    /* Instagram items in mobile slider */
    .mobile-instagram-slider .kingscss-instagram-item {
        margin: 0 auto;
        max-width: 100%;
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    }
    
    .mobile-instagram-slider .kingscss-ig-media {
        position: relative;
        width: 100%;
    }
    
    .mobile-instagram-slider .kingscss-ig-media::before {
        content: '';
        display: block;
        padding-top: 125%;
        background: #fff;
    }
    
    .mobile-instagram-slider .kingscss-ig-img,
    .mobile-instagram-slider .kingscss-ig-placeholder {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    
    .mobile-instagram-slider .kingscss-ig-img {
        object-fit: contain;
        background: #fff;
    }
    
    .mobile-instagram-slider .kingscss-ig-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        color: #adb5bd;
        font-weight: 600;
        font-size: 14px;
    }
    
    .mobile-instagram-slider .kingscss-ig-footer {
        display: block;
        padding: 10px 12px;
        border-top: 1px solid #eee;
        font-weight: 600;
        text-align: center;
        background: #fff;
    }
}

/* Mobile Destinations Slider Responsive */
@media (max-width: 768px) {
    .mobile-destinations-slider {
        display: block !important;
    }
    
    .kingscss-destination-list.desktop-only {
        display: none !important;
    }
    
    /* Fix for tour package destinations in slider */
    .mobile-destinations-slider .kingscss-destination-item {
        margin: 0 auto;
        max-width: 100%;
        height: auto;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .mobile-destinations-slider .kingscss-destination-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
        position: relative;
    }
    
    .mobile-destinations-slider .kingscss-destination-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .mobile-destinations-slider .kingscss-destination-content {
        padding: 20px;
        text-align: left;
    }
    
    .mobile-destinations-slider .kingscss-destination-name {
        font-size: 1.3rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 10px;
    }
    
    .mobile-destinations-slider .kingscss-destination-highlight {
        color: #007cba;
        font-weight: 500;
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
    
    .mobile-destinations-slider .kingscss-destination-description {
        color: #6c757d;
        line-height: 1.5;
        margin-bottom: 15px;
        font-size: 0.85rem;
    }
    
    .mobile-destinations-slider .kingscss-destination-meta {
        margin-bottom: 15px;
    }
    
    .mobile-destinations-slider .kingscss-packages-count {
        background: #e3f2fd;
        color: #1976d2;
        padding: 4px 10px;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .mobile-destinations-slider .kingscss-destination-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #007cba;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    
    .mobile-destinations-slider .kingscss-destination-link:hover {
        color: #0056b3;
        gap: 8px;
    }
    
    .mobile-slider-nav {
        margin-top: 25px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .mobile-destinations-slider .kingscss-destination-image {
        height: 200px;
    }
    
    .mobile-destinations-slider .kingscss-destination-content {
        padding: 15px;
    }
    
    .mobile-destinations-slider .kingscss-destination-name {
        font-size: 1.2rem;
    }
    
    .mobile-destinations-slider .kingscss-destination-highlight {
        font-size: 0.85rem;
    }
    
    .mobile-destinations-slider .kingscss-destination-description {
        font-size: 0.8rem;
    }
    
    .mobile-slider-nav {
        margin-top: 20px;
        padding: 0 10px;
    }
    
    .slider-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-nav-btn i {
        font-size: 14px;
    }
}

/* ===========================
   PROFESSIONAL CALLBACK MODAL STYLES
   =========================== */

/* Modal Overlay */
.callback-modal {
    display: none !important;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    /* Ensure modal is hidden by default */
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Debug: Force modal display when flex is set */
.callback-modal[style*="display: flex"] {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure modal is hidden by default */
.callback-modal:not([style*="display: flex"]) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Force modal to be hidden when modal-hidden class is present */
.callback-modal.modal-hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

/* SIMPLE CLOSE BUTTON - GUARANTEED TO WORK */
#modal-close-btn {
    background: red !important;
    border: 2px solid white !important;
    color: white !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 10001 !important;
    min-height: 44px !important;
    min-width: 44px !important;
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    /* Force visibility */
    visibility: visible !important;
    opacity: 1 !important;
}

/* SIMPLE CLOSE BUTTON ICON - GUARANTEED TO WORK */
#modal-close-btn i {
    color: white !important;
    font-size: 18px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Modal Content */
.callback-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure modal content is visible when modal is open */
.callback-modal[style*="display: flex"] .callback-modal-content {
    transform: scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Force modal visibility when open */
.callback-modal[style*="display: flex"] {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}

/* Ensure modal content is hidden by default */
.callback-modal:not([style*="display: flex"]) .callback-modal-content {
    transform: scale(0.7) !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Modal Header */
.callback-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Ensure header is visible */
    visibility: visible !important;
    opacity: 1 !important;
    color: white !important;
}

/* Center the header title */
.callback-modal-header h3 {
    flex: 1;
    text-align: center;
    margin: 0;
    padding: 0;
}

.callback-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

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

.callback-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
    position: relative;
    color: white !important;
}

.callback-modal-header h3 i {
    font-size: 1.8rem;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.callback-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    /* Ensure close button is visible */
    visibility: visible !important;
    opacity: 1 !important;
    color: white !important;
    width: 40px;
    height: 40px;
    /* Ensure close button is clickable */
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 10001 !important;
    border-radius: 50%;
    /* Mobile touch improvements */
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
    touch-action: manipulation;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.callback-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.callback-modal-close i {
    font-size: 18px;
    /* Ensure close button icon is visible */
    visibility: visible !important;
    opacity: 1 !important;
    color: white !important;
}

/* Banner Section */
.callback-banner-section {
    padding: 0;
    margin: 0;
}

.callback-banner {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.callback-banner img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    display: block;
}

.callback-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Form Styles */
.callback-modal-form {
    padding: 30px;
    /* Ensure form is visible */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure all form elements are visible */
.callback-modal-form * {
    visibility: visible !important;
    opacity: 1 !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    /* Ensure form rows are visible */
    visibility: visible !important;
    opacity: 1 !important;
}

.form-group {
    position: relative;
    /* Ensure form groups are visible */
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    /* Ensure labels are visible */
    visibility: visible !important;
    opacity: 1 !important;
    color: #333 !important;
}

.form-control {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
    position: relative;
    /* Ensure form controls are visible */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #333 !important;
    background-color: white !important;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* Ensure form controls are properly sized */
.form-control {
    min-height: 48px !important;
    line-height: 1.5 !important;
}

/* Ensure textarea is properly sized */
textarea.form-control {
    min-height: 80px !important;
    resize: vertical !important;
}

.form-control:focus + .form-focus-effect {
    transform: scaleX(1) !important;
    /* Ensure focus effects are visible when active */
    visibility: visible !important;
    opacity: 1 !important;
}

/* Focus Effect */
.form-focus-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
    /* Ensure focus effects are visible */
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hidden fields styling - not visible to users */
input[type="hidden"] {
    display: none;
}

/* Form Error Messages */
.form-error {
    display: none;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
    padding: 5px 0;
    border-left: 3px solid #dc3545;
    padding-left: 10px;
    background: rgba(220, 53, 69, 0.05);
    border-radius: 0 4px 4px 0;
    /* Ensure error messages are visible */
    visibility: visible !important;
    opacity: 1 !important;
}

.form-error.show {
    display: block;
}

/* Form validation styling */
.form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-control.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

/* Submit Button */
.callback-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    /* Ensure submit button is visible */
    visibility: visible !important;
    opacity: 1 !important;
    color: white !important;
}

.callback-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.callback-submit-btn:hover::before {
    left: 100%;
}

.callback-submit-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.callback-submit-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.callback-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    z-index: 1;
    position: relative;
    color: white;
}

.btn-icon {
    z-index: 1;
    position: relative;
    color: white;
}

/* Form Status Messages */
.form-status {
    margin-top: 20px;
    /* Ensure status messages are visible */
    visibility: visible !important;
    opacity: 1 !important;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    text-align: center;
    font-weight: 500;
    /* Ensure success messages are visible */
    visibility: visible !important;
    opacity: 1 !important;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    text-align: center;
    font-weight: 500;
    /* Ensure error messages are visible */
    visibility: visible !important;
    opacity: 1 !important;
}

/* Modal Animation Classes */
.modal-open .callback-modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-close .callback-modal-content {
    transform: scale(0.7);
    opacity: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .callback-modal {
        padding: 15px;
        /* Ensure modal is visible on mobile */
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
    }
    
    .callback-modal-content {
        max-height: 95vh;
        border-radius: 15px;
        /* Ensure content is visible on mobile */
        visibility: visible !important;
        opacity: 1 !important;
        transform: scale(1) !important;
    }
    
    .callback-modal-header {
        padding: 20px 25px;
        border-radius: 15px 15px 0 0;
        /* Ensure header is visible on mobile */
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .callback-modal-header h3 {
        font-size: 1.3rem;
        color: white !important;
        /* Ensure header text is visible on mobile */
        visibility: visible !important;
        opacity: 1 !important;
        /* Ensure title is centered on mobile */
        text-align: center !important;
        flex: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        /* Ensure form rows are visible on mobile */
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .callback-modal-form {
        padding: 25px 20px;
        /* Ensure form is visible on mobile */
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .form-control {
        padding: 14px 16px;
        font-size: 16px; /* Prevent zoom on iOS */
        /* Ensure form controls are visible on mobile */
        visibility: visible !important;
        opacity: 1 !important;
        color: #333 !important;
        background-color: white !important;
        min-height: 48px !important;
    }
    
    .callback-submit-btn {
        padding: 16px 25px;
        font-size: 16px;
        /* Ensure submit button is visible on mobile */
        visibility: visible !important;
        opacity: 1 !important;
        color: white !important;
    }
    
    /* Ensure form labels are visible on mobile */
    .form-group label {
        visibility: visible !important;
        opacity: 1 !important;
        color: #333 !important;
    }
    
    /* Ensure form groups are visible on mobile */
    .form-group {
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    /* Reverse phone icon on mobile devices (768px breakpoint) */
    .callback-modal-header h3 i.fa-phone-alt {
        transform: scaleX(-1) !important;
        -webkit-transform: scaleX(-1) !important;
        -moz-transform: scaleX(-1) !important;
        -ms-transform: scaleX(-1) !important;
    }
    
    /* Ensure close button is visible and clickable on mobile */
    .callback-modal-close {
        visibility: visible !important;
        opacity: 1 !important;
        color: white !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 10001 !important;
        min-height: 44px !important;
        min-width: 44px !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    /* Ensure close button icon is visible on mobile */
    .callback-modal-close i {
        visibility: visible !important;
        opacity: 1 !important;
        color: white !important;
    }
    
    /* SIMPLE CLOSE BUTTON ON MOBILE - GUARANTEED TO WORK */
    #modal-close-btn {
        background: red !important;
        border: 2px solid white !important;
        color: white !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        z-index: 10001 !important;
        min-height: 44px !important;
        min-width: 44px !important;
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        visibility: visible !important;
        opacity: 1 !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    #modal-close-btn i {
        color: white !important;
        font-size: 18px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Reverse phone icon on mobile devices */
    .callback-modal-header h3 i.fa-phone-alt {
        transform: scaleX(-1) !important;
        -webkit-transform: scaleX(-1) !important;
        -moz-transform: scaleX(-1) !important;
        -ms-transform: scaleX(-1) !important;
    }
}

@media (max-width: 480px) {
    .callback-modal {
        padding: 10px;
        /* Ensure modal is visible on small mobile */
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
    }
    
    .callback-modal-content {
        border-radius: 12px;
        /* Ensure content is visible on small mobile */
        visibility: visible !important;
        opacity: 1 !important;
        transform: scale(1) !important;
    }
    
    .callback-modal-header {
        padding: 18px 20px;
        border-radius: 12px 12px 0 0;
        /* Ensure header is visible on small mobile */
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .callback-modal-header h3 {
        font-size: 1.2rem;
        color: white !important;
        /* Ensure header text is visible on small mobile */
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .callback-modal-form {
        /* Ensure form is visible on small mobile */
        visibility: visible !important;
        opacity: 1 !important;
        padding: 20px 15px;
    }
    
    .banner-text {
        font-size: 1rem;
        padding: 15px;
    }
    
    /* Reverse phone icon on small mobile devices */
    .callback-modal-header h3 i.fa-phone-alt {
        transform: scaleX(-1) !important;
        -webkit-transform: scaleX(-1) !important;
        -moz-transform: scaleX(-1) !important;
        -ms-transform: scaleX(-1) !important;
    }
}