
/*
Theme Name: Kingsland Holiday
Description: A custom WordPress theme for tour packages and travel agency websites.
Version: 1.0.0
Author: Jitendra Ghodela
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kingsland-holiday
*/

/* Import the existing plugin styles */
@import url("assets/css/style.css");
@import url("assets/css/blog.css");

/* ===========================================
   CUSTOMER REVIEWS SECTION - SLIDER LAYOUT
   =========================================== */

/* Customer Reviews Section */
.customer-reviews-section {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
    clear: both;
}

.reviews-section-title {
    text-align: center;
    color: #1a73e8;
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
}

.reviews-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #1a73e8;
    margin: 15px auto 0;
    border-radius: 2px;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Slider Wrapper */
.reviews-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.reviews-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding: 20px 0;
}

/* Review Slide Styles */
.review-slide {
    min-width: 300px;
    max-width: 300px;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8eaed;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.review-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #1a73e8;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    color: #1a73e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
    background: #1a73e8;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

/* Mobile Responsive for Reviews Slider */
@media (max-width: 768px) {
    .reviews-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .review-slide {
        min-width: 280px;
        scroll-snap-align: center;
    }
    
    .slider-nav {
        display: none;
    }
    
    .customer-reviews-section h2 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }
    
    .reviews-section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .review-slide {
        min-width: 250px;
    }
    
    .customer-reviews-section {
        padding: 20px;
    }
    
    .review-card-google {
        padding: 15px;
        min-height: 180px;
    }
}

.prev-nav {
    left: 10px;
}

.next-nav {
    right: 10px;
}

/* Review Card Styles */
.review-card-google {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8eaed;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.review-card-google:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Review Header */
.review-header {
    margin-bottom: 15px;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a73e8;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.star-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.star-rating .star {
    font-size: 16px;
    color: #dadce0;
    transition: color 0.2s ease;
}

.star-rating .star.filled {
    color: #fbbc04;
}

/* Review Content */
.review-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-text {
    font-size: 14px;
    line-height: 1.5;
    color: #3c4043;
    margin: 0 0 15px 0;
    flex-grow: 1;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .customer-reviews-section {
        padding: 40px 0;
    }
    
    .reviews-container {
        padding: 0 15px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .review-card-google {
        padding: 15px;
        min-height: 180px;
    }
    
    .reviewer-name {
        font-size: 15px;
    }
    
    .review-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .customer-reviews-section {
        padding: 30px 0;
    }
    
    .reviews-container {
        padding: 0 10px;
    }
    
    .review-card-google {
        padding: 12px;
        min-height: 160px;
    }
    
    .reviewer-name {
        font-size: 14px;
    }
    
    .review-text {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .star-rating .star {
        font-size: 14px;
    }
    
    .google-icon {
        width: 18px;
        height: 18px;
    }
}

/* Tour Info */
.tour-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #fff4e6, #ffeaa7);
    border-radius: 10px;
    border-left: 4px solid #e67e22;
    box-shadow: 0 2px 10px rgba(230, 126, 34, 0.1);
}

.tour-name {
    font-size: 1rem;
    font-weight: 700;
    color: #e67e22;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-date {
    font-size: 0.9rem;
    color: #95a5a6;
    font-weight: 500;
}

/* Review Text */
.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    font-style: italic;
    margin: 0;
    position: relative;
    flex-grow: 1;
    text-align: left;
}

.review-text::before {
    content: '"';
    font-size: 60px;
    color: #e8f4fd;
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 1;
}

.review-text::after {
    content: '"';
    font-size: 60px;
    color: #e8f4fd;
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 1;
}

/* Navigation Arrows */
.reviews-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 2px solid #2980b9;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    color: #2980b9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.reviews-nav-arrow:hover {
    background: #2980b9;
    color: white;
    border-color: #2980b9;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(41, 128, 185, 0.3);
}

.reviews-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.reviews-nav-left {
    left: 0;
}

.reviews-nav-right {
    right: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .travelers-reviews-section .container {
        padding: 0 30px;
    }
    
    .reviews-slider-wrapper {
        padding: 0 40px;
    }
    
    .review-card-new {
        min-width: 380px;
        max-width: 380px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .travelers-reviews-section {
        padding: 60px 0;
    }
    
    .travelers-reviews-section .container {
        padding: 0 20px;
    }
    
    .reviews-header h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .reviews-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .reviews-rating {
        flex-direction: column;
        gap: 15px;
    }
    
    .reviews-slider-wrapper {
        padding: 0 20px;
    }
    
    .review-card-new {
        min-width: 320px;
        max-width: 320px;
        padding: 25px;
        min-height: 350px;
    }
    
    .reviewer-name {
        font-size: 1.2rem;
    }
    
    .reviews-nav-arrow {
        display: none;
    }
    
    .reviews-slider-container {
        gap: 20px;
        padding: 15px 0 30px 0;
    }
    
    .tour-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .review-card-new {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
        min-height: 320px;
    }
    
    .reviews-header h2 {
        font-size: 1.8rem;
    }
    
    .review-avatar {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .avatar-fallback {
        font-size: 24px;
    }
    
    .review-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .reviews-slider-wrapper {
        padding: 0 10px;
    }
}

/* ===========================================
   NEW PACKAGE CARD DESIGN - OVERRIDE PLUGIN STYLES
   =========================================== */

/* High specificity selectors to override plugin styles */
.packages-grid .package-card-new,
.destination-single-page .package-card-new,
.featured-packages-section .package-card-new,
article.package-card-new {
    background: white !important;
    border-radius: 16px !important;
    overflow: visible !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    max-width: 420px !important;
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 350px !important;
    flex: none !important;
    min-height: 600px !important;
    position: relative !important;
}

.packages-grid .package-card-new:hover,
.destination-single-page .package-card-new:hover,
.featured-packages-section .package-card-new:hover,
article.package-card-new:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.package-card-new .package-image-container {
    position: relative !important;
    height: 220px !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    flex-shrink: 0 !important;
    border-radius: 16px 16px 0 0 !important;
}

.package-card-new .package-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.package-card-new:hover .package-image-container img {
    transform: scale(1.05) !important;
}

.package-card-new .package-category-badge {
    position: absolute !important;
    top: 16px !important;
    left: 16px !important;
    background: #ff6b35 !important;
    color: white !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: capitalize !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3) !important;
    z-index: 2 !important;
}

.package-card-new .package-rating-badge {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    z-index: 2 !important;
}

.package-card-new .package-rating-badge .fas.fa-star {
    color: #ffd700 !important;
    font-size: 10px !important;
}

.package-card-new .package-wishlist {
    position: absolute !important;
    bottom: 16px !important;
    right: 16px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    z-index: 2 !important;
}

.package-card-new .package-wishlist:hover {
    background: #ff6b35 !important;
    color: white !important;
    transform: scale(1.1) !important;
}

.package-card-new .package-destination-overlay {
    position: absolute !important;
    bottom: 16px !important;
    left: 16px !important;
    color: #ffffff !important;
    z-index: 2 !important;
}

.package-card-new .package-destination-overlay h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    letter-spacing: 1px !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Ensure destination overlay text is always white */
.package-card-new .package-destination-overlay *,
.package-card-new .package-destination-overlay h3,
.package-card-new .package-destination-overlay h3 a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.package-card-new .package-content-new {
    padding: 10px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.package-card-new .package-title-new {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: -5px 0 !important;
    line-height: 1.3 !important;
    color: #4A90E2 !important;
    min-height: 35px !important;
    display: flex !important;
    align-items: flex-start !important;
}

.package-card-new .package-title-new a {
    color: #4A90E2 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    display: block !important;
    line-height: 1.3 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-wrap: break-word !important;
}

.package-card-new .package-title-new a:hover {
    color: #357ABD !important;
}

.package-card-new .package-details {
    margin-bottom: 20px !important;
}

.package-card-new .package-location {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 12px !important;
    color: #ff6b35 !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.package-card-new .package-info {
    display: flex !important;
    gap: 16px !important;
    font-size: 13px !important;
    color: #718096 !important;
    flex-wrap: wrap !important;
}

.package-card-new .package-features {
    margin-bottom: 0px !important;
    padding: 23px 0 10px 0 !important;
    flex: 1 !important;
    min-height: 100px !important;
    border-top: 3px solid #d1bbc2 !important;
}

.package-card-new .package-features h4 {
    font-size: 14px !important;
    color: #4A90E2 !important;
    margin: 0 0 16px 0 !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.package-card-new .features-icons {
    display: flex !important;
    justify-content: space-around !important;
    gap: 16px !important;
    align-items: flex-start !important;
}

.package-card-new .feature-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 12px !important;
    color: #000000 !important;
    text-align: center !important;
    flex: 1 !important;
    height: 60px;
    margin-top: 15px;
    background-color: #e5e5e5;
    max-width: 50px;
}


.package-card-new .feature-item i {
    font-size: 18px !important;
    color: #ff6b35 !important;
    margin-bottom: 4px !important;
    margin-top: -15px;
}

.package-card-new .feature-item span {
    font-weight: 500 !important;
    line-height: 1.2 !important;
}

.package-card-new .package-pricing {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0px 0 0 0 !important;
    border-top: 3px solid #d1bbc2 !important;
    margin-top: 10px !important;
    min-height: 60px !important;
}

.package-card-new .price-main {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ff6b35 !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 8px !important;
    margin-bottom: 6px !important;
}

.package-card-new .price-original {
    font-size: 14px !important;
    color: #a0aec0 !important;
    text-decoration: line-through !important;
    font-weight: 400 !important;
}

.package-card-new .price-details {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Discount badge styling removed - no longer displaying discount badges */

.package-card-new .view-details-btn {
    background: #ff6b35 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3) !important;
    border: none !important;
    cursor: pointer !important;
}

.package-card-new .view-details-btn:hover {
    background: #e55a2b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4) !important;
    color: white !important;
}

/* Grid System for New Cards */
.packages-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)) !important;
    gap: 2rem !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
    padding: 1rem !important;
    align-items: start !important;
    justify-items: center !important;
    box-sizing: border-box !important;
    clear: both !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Main container improvements for better visibility */
.content-area,
.site-main,
.taxonomy-destination .site-main,
.archive .site-main {
    overflow: visible !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure package section has proper spacing */
.package-section,
.featured-packages,
.destination-packages {
    width: 100% !important;
    overflow: visible !important;
    margin: 1rem 0 !important;
    padding: 0 0.5rem !important;
    box-sizing: border-box !important;
}

/* Additional visibility and overlap fixes */
.packages-grid .package-card-new {
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
    isolation: isolate !important;
    grid-column: auto !important;
    grid-row: auto !important;
}

/* Ensure first package has no extra spacing and is stable */
.packages-grid .package-card-new:first-child {
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    z-index: 1 !important;
}

.packages-grid .package-card-new:hover {
    z-index: 5 !important;
}

/* Ensure proper spacing for featured packages section */
.featured-packages-section {
    padding: 2rem 0 !important;
    overflow: visible !important;
}

.featured-packages-section .packages-grid {
    margin-top: 2rem !important;
    padding: 1rem !important;
}

/* Responsive Design for Package Cards */
@media (max-width: 1400px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
        gap: 2rem !important;
        max-width: 1200px !important;
        padding: 1rem !important;
    }
}

@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
        gap: 1.5rem !important;
        padding: 1rem !important;
    }

    .packages-grid .package-card-new {
        max-width: 380px !important;
        min-height: 580px !important;
    }
}

/* Mobile-First Override - High Specificity */
@media screen and (max-width: 768px) {
    /* Full width container adjustments */
    body .container,
    body .site-content,
    body .content-area,
    body .site-main {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .packages-grid .package-card-new,
    .destination-single-page .package-card-new,
    .featured-packages-section .package-card-new,
    article.package-card-new {
        max-width: 100% !important;
        min-height: 380px !important;
        min-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        transform: scale(1) !important;
    }

    .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 5px !important;
        margin: 0 !important;
        max-width: 100% !important;
        justify-items: stretch !important;
    }

    .package-card-new .package-content-new {
        padding: 12px !important;
    }

    .package-card-new .package-image-container {
        height: 160px !important;
    }

    .package-card-new .package-destination-overlay h3 {
        font-size: 18px !important;
        letter-spacing: 0.5px !important;
    }

    .package-card-new .package-title-new {
        font-size: 14px !important;
        min-height: 25px !important;
        margin: -3px 0 8px 0 !important;
    }

    .package-card-new .package-details {
        margin-bottom: 12px !important;
    }

    .package-card-new .package-location,
    .package-card-new .package-info {
        font-size: 11px !important;
    }

    .package-card-new .package-features {
        min-height: 60px !important;
        margin-bottom: 0px !important;
        padding: 12px 0 6px 0 !important;
    }

    .package-card-new .package-features h4 {
        margin: 0 0 8px 0 !important;
        font-size: 12px !important;
    }

    .package-card-new .feature-item {
        height: 45px !important;
        font-size: 9px !important;
        max-width: 40px !important;
        margin-top: 8px !important;
    }

    .package-card-new .feature-item i {
        font-size: 14px !important;
        margin-bottom: 2px !important;
        margin-top: -8px !important;
    }

    .package-card-new .package-pricing {
        flex-direction: row !important;
        gap: 8px !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin-top: 6px !important;
        padding: 8px 0 0 0 !important;
        min-height: 50px !important;
    }

    .package-card-new .price-main {
        font-size: 18px !important;
        margin-bottom: 0 !important;
        flex: 0 0 auto !important;
    }

    .package-card-new .view-details-btn {
        width: auto !important;
        text-align: center !important;
        padding: 8px 16px !important;
        font-size: 12px !important;
        flex: 0 0 auto !important;
    }
}

/* Extra Small Mobile Devices - Ultra Compact */
@media screen and (max-width: 480px) {
    .packages-grid .package-card-new,
    .destination-single-page .package-card-new,
    .featured-packages-section .package-card-new,
    article.package-card-new {
        max-width: 95% !important;
        min-height: 300px !important;
        min-width: 280px !important;
        width: 95% !important;
        transform: scale(1) !important;
        margin: 0 auto !important;
    }

    .packages-grid {
        padding: 0.75rem !important;
        gap: 1.5rem !important;
        max-width: 100% !important;
    }

    .package-card-new .package-content-new {
        padding: 8px !important;
    }

    .package-card-new .package-image-container {
        height: 120px !important;
    }

    .package-card-new .package-destination-overlay h3 {
        font-size: 14px !important;
    }

    .package-card-new .package-title-new {
        font-size: 12px !important;
        min-height: 18px !important;
        margin: -2px 0 6px 0 !important;
    }

    .package-card-new .package-details {
        margin-bottom: 8px !important;
    }

    .package-card-new .package-location,
    .package-card-new .package-info {
        font-size: 10px !important;
    }

    .package-card-new .package-features {
        min-height: 40px !important;
        padding: 6px 0 3px 0 !important;
    }

    .package-card-new .package-features h4 {
        font-size: 10px !important;
        margin: 0 0 5px 0 !important;
    }

    .package-card-new .feature-item {
        height: 30px !important;
        font-size: 7px !important;
        max-width: 30px !important;
        margin-top: 5px !important;
    }

    .package-card-new .feature-item i {
        font-size: 10px !important;
        margin-top: -5px !important;
    }

    .package-card-new .package-pricing {
        gap: 6px !important;
        margin-top: 4px !important;
        padding: 6px 0 0 0 !important;
        min-height: 40px !important;
    }

    .package-card-new .price-main {
        font-size: 16px !important;
    }

    .package-card-new .view-details-btn {
        padding: 6px 12px !important;
        font-size: 11px !important;
    }
}

    /* Very small screens (small phones) */
    @media (max-width: 375px) {
        .packages-grid {
            padding: 0.1rem !important;
            gap: 0.5rem !important;
        }

        .packages-grid .package-card-new {
            min-width: 240px !important;
            min-height: 350px !important;
            max-width: 95% !important;
        }

        .package-card-new .package-image-container {
            height: 130px !important;
        }

        .package-card-new .package-content-new {
            padding: 10px !important;
        }

        .package-card-new .package-destination-overlay h3 {
            font-size: 16px !important;
        }
    }

/* ABSOLUTE MOBILE OVERRIDE - FULL WIDTH */
@media screen and (max-width: 768px) {
    body .packages-grid .package-card-new,
    body .destination-single-page .package-card-new,
    body .featured-packages-section .package-card-new,
    body article.package-card-new {
        max-width: 100% !important;
        min-width: 100% !important;
        min-height: 350px !important;
        width: 100% !important;
        margin: 0 !important;
        font-size: 12px !important;
    }

    body .packages-grid {
        grid-template-columns: 1fr !important;
        justify-items: stretch !important;
        padding: 15px !important;
        gap: 20px !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Container adjustments for full width */
    body .package-section,
    body .featured-packages,
    body .destination-packages {
        padding: 0 5px !important;
        margin: 0 !important;
        width: 100% !important;
    }

    /* Main content area adjustments */
    body .content-area,
    body .site-main,
    body .taxonomy-destination .site-main,
    body .archive .site-main {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    body .package-card-new .package-image-container {
        height: 140px !important;
    }

    body .package-card-new .package-content-new {
        padding: 10px !important;
    }

    /* Fix first card layout issues on mobile */
    body .packages-grid .package-card-new:first-child {
        margin-top: 0 !important;
        margin-bottom: 10px !important;
        position: relative !important;
        z-index: 1 !important;
        transform: none !important;
        overflow: hidden !important;
    }

    /* Ensure grid layout is stable */
    body .packages-grid {
        overflow: visible !important;
        position: relative !important;
        z-index: auto !important;
    }
}

/* Mobile Layout Stability Fixes */
@media screen and (max-width: 768px) {
    /* Prevent layout overflow issues */
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    /* Fix main content container */
    body .site-content,
    body .content-area,
    body .site-main {
        overflow: visible !important;
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Ensure package cards don't cause layout issues */
    body .packages-grid .package-card-new {
        overflow: hidden !important;
        position: static !important;
        z-index: auto !important;
        box-sizing: border-box !important;
        transform: none !important;
        will-change: auto !important;
        transition: none !important;
    }

    /* Fix first card specifically - prevent any positioning issues */
    body .packages-grid .package-card-new:first-child {
        margin: 0 !important;
        padding: 0 !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: auto !important;
        float: none !important;
        clear: none !important;
    }

    /* Disable hover effects on mobile to prevent layout shifts */
    body .packages-grid .package-card-new:hover {
        transform: none !important;
        z-index: auto !important;
        transition: none !important;
    }
}

/* Additional fixes for layout overlap */
.package-card-new * {
    box-sizing: border-box !important;
}

.package-card-new .package-content-new>* {
    padding-bottom: 10px;
    flex-shrink: 0 !important;
}

.package-card-new .package-features .feature-item span {
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    margin-top: 2px !important;
    
}

/* Ensure proper z-index stacking */
.package-card-new .package-category-badge,
.package-card-new .package-rating-badge,
.package-card-new .package-wishlist,
.package-card-new .package-destination-overlay {
    z-index: 3 !important;
}

/* Force proper font rendering */
.package-card-new {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* ===========================
   UNIFIED COLOR SYSTEM
   =========================== */
:root {
    /* === PRIMARY COLOR PALETTE (Nature-inspired Travel Theme) === */
    --primary-color: #2C5F2D;
    /* Forest Green - trust, nature */
    --primary-light: #4CAF50;
    /* Lighter Green - growth, harmony */
    --primary-dark: #1B4332;
    /* Dark Green - sophistication */

    /* === ACCENT COLORS (Warm Complement) === */
    --accent-color: #FF6B35;
    /* Warm Orange - energy, adventure */
    --accent-light: #FF8A65;
    /* Light Orange - warmth */
    --accent-dark: #E55A2B;
    /* Dark Orange - action */

    /* === SECONDARY COLORS === */
    --secondary-blue: #3B82C7;
    /* Travel Blue - sky, ocean */
    --secondary-teal: #2D7D89;
    /* Ocean Teal - adventure */

    /* === NEUTRAL COLORS === */
    --text-dark: #2c3e50;
    /* Primary text */
    --text-medium: #495057;
    /* Secondary text */
    --text-light: #6c757d;
    /* Tertiary text */
    --text-muted: #adb5bd;
    /* Muted text */

    /* === BACKGROUND COLORS === */
    --white: #ffffff;
    --background-light: #f8f9fa;
    --background-alt: #e9ecef;
    --background-dark: #343a40;
}

/* Basic theme styles */
body {
    margin: 0;
    padding: 0;
    background: var(--white);
    font-family: 'Arial', sans-serif;
}

/* Override only for content areas, not header */
.site-main {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    min-height: calc(100vh - 200px);
}

.main-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-menu a:hover {
    color: var(--accent-color);
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #080909;
}

.featured-packages,
.destinations-section,
.blog-section {
    padding: 60px 0;
}

.packages-grid,
.destinations-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Sample package styling */
.sample-package {
    position: relative;
}

.sample-package::before {
    content: 'Sample Package';
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 107, 53, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sample-package .package-image {
    position: relative;
}

.sample-package:hover::before {
    background: rgba(255, 107, 53, 1);
    transform: scale(1.05);
}

/* Destinations Section Styles */
.destinations-section {
    padding: 80px 0;
    background: #f8f9fb;
}

.destinations-section .section-title {
    font-size: 3.5rem;
    color: #2c5282;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Georgia', serif;
    text-align: center;
}

.destinations-section .section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    line-height: 1.6;
    text-align: center;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.destination-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    height: 320px;
    transform-origin: center;
}

.destination-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.destination-image {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.packages-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    align-self: flex-start;
    margin-bottom: auto;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.destination-card:hover .packages-badge {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.destination-content {
    color: white;
    text-align: left;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-content {
    transform: translateY(-5px);
}

.destination-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.destination-subtitle {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

/* Responsive Design for Destinations */
@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .destinations-section .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .destination-card {
        height: 280px;
    }

    .destinations-section .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .destinations-section {
        padding: 40px 0;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .destination-card {
        height: 280px;
        margin: 0 auto;
        max-width: 400px;
    }

    .destinations-section .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }

    .destinations-section .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .destination-name {
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .destination-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .packages-badge {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .view-all-destinations {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .view-all-destinations .btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 30px;
        font-size: 1rem;
    }
}

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

    .destinations-grid {
        padding: 0 0.75rem;
        gap: 1.25rem;
    }

    .destination-card {
        height: 260px;
        max-width: 100%;
    }

    .destination-overlay {
        padding: 18px;
    }

    .destinations-section .section-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
        padding: 0 0.75rem;
    }

    .destinations-section .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        padding: 0 0.75rem;
        margin-bottom: 2.5rem;
    }

    .destination-name {
        font-size: 1.25rem;
        line-height: 1.1;
        margin-bottom: 4px;
    }

    .destination-subtitle {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .packages-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .view-all-destinations {
        margin-top: 1.5rem;
        padding: 0 0.75rem;
    }

    .view-all-destinations .btn {
        width: 100%;
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 375px) {
    .destinations-section {
        padding: 25px 0;
    }

    .destinations-grid {
        padding: 0 0.5rem;
        gap: 1rem;
    }

    .destination-card {
        height: 240px;
    }

    .destination-overlay {
        padding: 15px;
    }

    .destinations-section .section-title {
        font-size: 1.6rem;
        padding: 0 0.5rem;
    }

    .destinations-section .section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }

    .destination-name {
        font-size: 1.15rem;
    }

    .destination-subtitle {
        font-size: 0.8rem;
    }

    .packages-badge {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.btn-primary {
    background: #3498db;
}

.btn-primary:hover {
    background: #2980b9;
}

/* View all packages button */
.view-all-packages {
    text-align: center;
    margin-top: 2rem;
}

/* View all destinations button */
.view-all-destinations {
    text-align: center;
    margin-top: 3rem;
}

.view-all-destinations .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Old destination card styles removed - using new overlay design */

/* Blog section */
.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 0.5rem;
}

.blog-content h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: #e74c3c;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    color: #c0392b;
}

/* Special Offers Section */
.special-offers {
    padding: 80px 0;
    background: #f8f9fa;
}

.special-offers .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.special-offers .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.offer-card {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
}

.offer-content {
    position: relative;
    z-index: 1;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.offer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.offer-validity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.offer-validity i {
    font-size: 0.8rem;
}

.offer-cta-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.offer-cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.admin-notice-card {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.admin-notice-card .offer-content {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .main-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .packages-grid,
    .destinations-grid,
    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .destination-info {
        padding: 1rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .offer-card {
        padding: 1.5rem;
        min-height: 250px;
    }

    .offer-title {
        font-size: 1.3rem;
    }

    .special-offers .section-title {
        font-size: 2rem;
    }

    .special-offers {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        padding: 1.25rem;
    }

    .offer-badge {
        top: 15px;
        right: 15px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* ========================================
   PROFESSIONAL HERO SLIDER STYLES
======================================== */

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: visible;
    margin: 0;
    padding: 0 0 80px 0;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Mobile-specific background handling */
@media (max-width: 768px) {
    .hero-slide {
        background-attachment: scroll !important; /* Fixed: was 'fixed' causing scroll issues on iOS */
        background-size: cover;
        background-position: center center;
    }
    
    /* Remove body padding for home page with hero slider */
    body.home {
        padding-top: 0 !important;
    }
    
    /* Ensure hero slider starts from top */
    .heritage-home-page .hero-slider {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1;
        height: 100vh;
    }
    
    /* Ensure header stays above hero slider */
    .modern-header {
        z-index: 1100 !important;
    }
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide.default-bg {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #1e40af 100%);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Enhanced mobile overlay for better readability */
@media (max-width: 480px) {
}

/* Subtle texture overlay for premium look */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
    background-size: 20px 20px;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 30px;
}

.hero-text {
    animation: slideInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin: 0 0 3rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.92;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.hero-cta-button::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.6s ease;
}

.hero-cta-button:hover::before {
    left: 100%;
}

.hero-cta-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    text-decoration: none;
}

/* Professional Slider Navigation */
.hero-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(25px);
    font-size: 18px;
    z-index: 15;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-nav:hover {
    background: rgba(59, 130, 246, 0.9);
    border-color: rgba(59, 130, 246, 1);
    transform: translateY(-50%) translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    scale: 1.05;
}

.hero-prev {
    left: 60px;
}

.hero-next {
    right: 60px;
}

/* Professional Dots Navigation - HIDDEN */
.hero-dots {
    display: none !important;
    visibility: hidden !important;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-dot {
    display: none !important;
    visibility: hidden !important;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-dot.active {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.hero-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
}

/* Home Page Spacing Improvements */
.heritage-home-page {
    overflow-x: hidden;
}

.heritage-destinations-section {
    padding: 80px 0 100px 0;
    background: #f8f9fa;
}

.heritage-destinations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.heritage-destinations-header {
    text-align: center;
    margin-bottom: 60px;
}

.heritage-destinations-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.heritage-destinations-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.heritage-destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Hero Section Improvements */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    z-index: 2;
    position: relative;
}

/* Featured Packages Section Improvements */
.featured-packages,
.packages-section {
    padding: 100px 0;
    background: #ffffff;
}

.packages-section .container,
.featured-packages .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

/* Package Grid Improvements */
.packages-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* Responsive Design Improvements */
@media (max-width: 1200px) {
    .heritage-destinations-container,
    .packages-section .container,
    .featured-packages .container {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .heritage-destinations-title,
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .heritage-destinations-section {
        padding: 60px 0 80px 0;
    }
    
    .featured-packages,
    .packages-section {
        padding: 80px 0;
    }
    
    .heritage-destinations-container,
    .packages-section .container,
    .featured-packages .container,
    .hero-content {
        padding: 0 20px;
    }
    
    .heritage-destinations-title,
    .section-title {
        font-size: 2rem;
    }
    
    .heritage-destinations-subtitle,
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .heritage-destinations-grid,
    .packages-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .heritage-destinations-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .heritage-destinations-container,
    .packages-section .container,
    .featured-packages .container,
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-slider-nav {
        padding: 0 20px;
    }
    
    .hero-nav {
        width: 50px;
        height: 50px;
        font-size: 16px;
        top: 35%;
    }
    
    .hero-prev {
        left: 20px;
    }
    
    .hero-next {
        right: 20px;
    }
    
    .hero-search-floating {
        position: absolute !important;
        bottom: -35px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 32px) !important;
        max-width: 500px !important;
        z-index: 25 !important;
        padding: 0 16px !important;
    }
}

/* Tablet specific adjustments */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-nav {
        width: 55px;
        height: 55px;
        font-size: 17px;
    }
    
    .hero-prev {
        left: 40px;
    }
    
    .hero-next {
        right: 40px;
    }
    
    /* Override with overlay positioning */
    .hero-search-floating {
        position: absolute !important;
        bottom: -30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 32px) !important;
        max-width: 500px !important;
        z-index: 25 !important;
        padding: 0 16px !important;
    }
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

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

/* Slider Indicators */
.hero-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active,
.hero-indicator:hover {
    background: white;
    border-color: white;
}

/* Professional Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced mobile animation */
@media (max-width: 480px) {
    @keyframes slideInUpMobile {
        from {
            opacity: 0;
            transform: translateY(30px) scale(0.98);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .hero-text {
        animation: slideInUpMobile 1.5s cubic-bezier(0.4, 0, 0.2, 1);
        animation-delay: 0.3s;
        animation-fill-mode: both;
    }
}

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Professional text reveal animation */
@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(2px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(10px) scale(0.98);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Hero Layout Matching Screenshot */
.hero-slider.with-search {
    height: 100vh;
    min-height: 700px;
    position: relative;
    padding: 0px;
}

/* Main Hero Content - Centered */
.hero-content-main {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-center {
    color: white;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    color: white;
}

.hero-main-subtitle {
    font-size: 1.3rem;
    margin: 0 0 2.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    line-height: 1.4;
    color: white;
}

.hero-main-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.hero-main-button {
    display: inline-block;
    width: 268px;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.hero-main-button.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border: 2px solid transparent;
}

.hero-main-button.primary::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.6s ease;
}

.hero-main-button.primary:hover::before {
    left: 100%;
}

.hero-main-button.primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.hero-main-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.hero-main-button.secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    border-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

/* Centered single button styling */
.hero-main-buttons.hero-centered {
    justify-content: center;
}

.hero-main-buttons.hero-centered .hero-main-button.primary {
    padding: 14px 30px;
    font-size: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    min-width: 180px;
}

/* Professional Floating Search Box - Positioned at Hero Border */
.hero-search-floating {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1300px;
    padding: 0 120px;
    z-index: 10;
}

.hero-search-box-floating {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 27px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 12px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.hero-search-box-floating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #10b981);
}

.hero-search-box-floating:hover {
    transform: translateY(-2px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18), 0 15px 35px rgba(0, 0, 0, 0.12);
}

.hero-search-title-floating {
    color: #1e293b;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 24px 0;
    text-align: center;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Horizontal Filter Container for Floating Box */
.hero-filter-container-floating {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.hero-filter-field-floating {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.hero-filter-label-floating {
    color: #555;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-filter-icon-floating {
    color: #3b82f6;
    font-size: 14px;
}

.hero-filter-label-floating {
    color: #374151;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-filter-input-floating,
.hero-filter-select-floating {
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
    font-family: inherit;
    font-weight: 500;
    width: 100%;
    color: #1e293b;
}

.hero-filter-input-floating:focus,
.hero-filter-select-floating:focus {
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08), 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.hero-filter-input-floating:hover,
.hero-filter-select-floating:hover {
    border-color: #cbd5e1;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hero-filter-select-floating {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.hero-filter-button-floating {
    display: flex;
    align-items: flex-end;
}

.hero-search-btn-floating {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.hero-search-btn-floating::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.6s ease;
}

.hero-search-btn-floating:hover::before {
    left: 100%;
}

.hero-search-btn-floating:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.35);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.hero-search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.6), transparent);
}

.hero-search-box:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.hero-search-title {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 18px 0;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Horizontal Filter Container */
.hero-filter-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

.hero-filter-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.hero-filter-label {
    color: #555;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hero-filter-icon {
    color: #e74c3c;
    font-size: 12px;
}

.hero-filter-input,
.hero-filter-select {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fafafa;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-weight: 500;
    width: 100%;
}

.hero-filter-input:focus,
.hero-filter-select:focus {
    border-color: #e74c3c;
    background: white;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-filter-input:hover,
.hero-filter-select:hover {
    border-color: #ccc;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.hero-filter-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.hero-filter-button {
    display: flex;
    align-items: flex-end;
}

.hero-search-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 12px rgba(231, 76, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.hero-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
}

.hero-form-row {
    display: grid;
    gap: 15px;
    margin-bottom: 15px;
}

/* Destination row - Full width */
.hero-form-row.destination-row {
    grid-template-columns: 1fr;
}

/* Dates row - Two columns side by side */
.hero-form-row.dates-row {
    grid-template-columns: 1fr 1fr;
}

/* Travelers row - Full width */
.hero-form-row.travelers-row {
    grid-template-columns: 1fr;
}

.hero-form-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.hero-label {
    color: #555;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-icon {
    color: #e74c3c;
    font-size: 12px;
}

.hero-input, .hero-select {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fafafa;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-weight: 500;
}

.hero-input:focus, .hero-select:focus {
    border-color: #e74c3c;
    background: white;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-input:hover, .hero-select:hover {
    border-color: #ccc;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.hero-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.hero-search-button-container {
    text-align: center;
    margin-top: 18px;
}

.hero-search-button {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 12px rgba(231, 76, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    justify-content: center;
    max-width: 200px;
}

.hero-search-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.8rem;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .hero-nav {
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }

    .hero-nav i {
        font-size: 14px;
    }
    
    .hero-search-box-floating {
        padding: 30px;
        border-radius: 20px;
    }
    
    .hero-search-title-floating {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .hero-content.with-search-layout {
        flex-direction: column;
        gap: 40px;
        padding: 0 30px;
    }
    
    .hero-search-container {
        max-width: 100%;
    }
    
    .hero-form-row {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    
    .hero-form-row.dates-row {
        grid-template-columns: 1fr !important;
    }
    
    /* Floating Search Box Responsive - Tablet */
    .hero-search-floating {
        position: absolute !important;
        bottom: -30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 32px) !important;
        max-width: 500px !important;
        z-index: 25 !important;
        padding: 0 16px !important;
    }
    
    .hero-search-box-floating {
        padding: 20px;
        border-radius: 15px;
    }
    
    .hero-search-title-floating {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .hero-filter-container-floating {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .hero-filter-button-floating {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 15px;
    }
    
    .hero-search-btn-floating {
        width: 100%;
        max-width: 250px;
        padding: 12px 24px;
    }
    
    .hero-main-title {
        font-size: 3.2rem;
    }
    
    .hero-main-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-main-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: calc(100vh - 70px);
        min-height: calc(550px - 70px);
        padding-bottom: 60px;
        margin-top: 0;
    }
    
    .hero-slider.with-search {
        min-height: calc(650px - 70px);
        padding-bottom: 60px;
    }
    
    .hero-content {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }
    
    .hero-cta-button {
        padding: 16px 32px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .hero-nav {
        width: 45px;
        height: 45px;
        border-radius: 8px;
    }
    
    .hero-dots {
        bottom: 25px;
        padding: 6px 12px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-content.with-search-layout {
        padding: 0 20px;
        gap: 30px;
    }
    
    .hero-search-box {
        padding: 18px;
        border-radius: 12px;
        max-width: 100%;
    }
    
    .hero-search-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .hero-form-row {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .hero-form-row.dates-row {
        grid-template-columns: 1fr !important;
    }
    
    .hero-input, .hero-select {
        padding: 9px 12px;
        font-size: 13px;
    }
    
    .hero-search-button {
        padding: 10px 24px;
        font-size: 13px;
        max-width: 180px;
    }
    
    /* Enhanced Mobile Floating Search Box */
    .hero-search-floating {
        position: absolute !important;
        bottom: -30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 32px) !important;
        max-width: 500px !important;
        z-index: 25 !important;
        padding: 0 16px !important;
    }
    
    .hero-search-box-floating {
        padding: 25px 20px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.8);
        transform: translateY(0);
        transition: all 0.3s ease;
    }
    
    .hero-search-box-floating:hover {
        transform: translateY(-2px);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18), 0 10px 30px rgba(0, 0, 0, 0.12);
    }
    
    .hero-search-title-floating {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-align: center;
        color: #1e293b;
        letter-spacing: -0.02em;
    }
    
    .hero-filter-container-floating {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 12px 10px;
        margin-bottom: 20px;
    }
    
    .hero-filter-field-floating {
        width: 100%;
    }
    
    /* Grid positioning for 2-line layout */
    .hero-filter-field-floating:nth-child(1) {
        grid-column: 1 / -1;
    }
    
    .hero-filter-field-floating:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }
    
    .hero-filter-field-floating:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }
    
    .hero-filter-label-floating {
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 6px;
        color: #374151;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .hero-filter-input-floating,
    .hero-filter-select-floating {
        width: 100%;
        padding: 12px 14px;
        font-size: 14px;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        background: white;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }
    
    .hero-filter-input-floating:focus,
    .hero-filter-select-floating:focus {
        border-color: #3b82f6;
        background: white;
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
        outline: none;
        transform: translateY(-1px);
    }
    
    .hero-filter-input-floating:hover,
    .hero-filter-select-floating:hover {
        border-color: #cbd5e1;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    /* Add icons for mobile labels */
    .hero-filter-label-floating .hero-filter-icon-floating {
        color: #3b82f6;
        font-size: 14px;
        margin-right: 4px;
    }
    
    /* Smooth loading animation for mobile */
    .hero-search-box-floating {
        animation: slideUpMobile 0.6s ease-out;
    }
    
    @keyframes slideUpMobile {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero-filter-button-floating {
        grid-column: 1 / -1;
        grid-row: 3;
        display: flex;
        justify-content: center;
        margin-top: 8px;
    }
    
    .hero-search-btn-floating {
        width: 100%;
        max-width: 260px;
        padding: 14px 20px;
        font-size: 14px;
        font-weight: 600;
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    
    .hero-search-btn-floating:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    }
    
    .hero-search-btn-floating:active {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-main-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-main-button {
        padding: 12px 28px;
        font-size: 1rem;
    }
    
    /* Mobile styling for centered single button */
    .hero-main-buttons.hero-centered .hero-main-button.primary {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-buttons .hero-cta-button {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-slider-nav {
        padding: 0 20px;
    }

    .hero-nav-btn {
        width: 45px;
        height: 45px;
    }

    .hero-nav-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: calc(100vh - 70px);
        min-height: calc(600px - 70px);
        padding-bottom: 80px;
        overflow: visible;
        margin-top: 0;
        position: relative;
    }
    
    .hero-slider.with-search {
        min-height: calc(700px - 70px);
        padding-bottom: 40px;
    }
    
    .hero-content {
        padding: 0 20px;
        max-width: 100%;
        margin-top: 0;
        position: relative;
        z-index: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100%;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        letter-spacing: -0.02em;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
        font-weight: 800;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        opacity: 0.95;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-button {
        padding: 16px 32px;
        font-size: 1rem;
        border-radius: 10px;
        letter-spacing: 0.5px;
        font-weight: 700;
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
        text-transform: uppercase;
    }
    
    .hero-nav {
        width: 40px;
        height: 40px;
        border-radius: 6px;
        font-size: 14px;
    }
    
    .hero-dots {
        bottom: 20px;
        padding: 5px 10px;
        gap: 6px;
    }
    
    .hero-dot {
        width: 6px;
        height: 6px;
        border-width: 1px;
    }
    
    .hero-search-floating {
        position: absolute !important;
        bottom: -20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 32px) !important;
        max-width: 500px !important;
        z-index: 25 !important;
        padding: 0 16px !important;
    }
    
    .hero-search-box-floating {
        padding: 20px;
        border-radius: 16px;
    }
    
    .hero-search-title-floating {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    
    .hero-content.with-search-layout {
        padding: 0 15px;
        gap: 25px;
    }
    
    .hero-search-box {
        padding: 15px;
        border-radius: 10px;
        max-width: 100%;
    }
    
    .hero-search-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .hero-form-row {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .hero-form-row.dates-row {
        grid-template-columns: 1fr !important;
    }
    
    .hero-input, .hero-select {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .hero-search-button {
        padding: 9px 20px;
        font-size: 12px;
        width: 100%;
        max-width: 160px;
    }
    
    .hero-label {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    .hero-icon {
        font-size: 10px;
    }
    
    /* Floating Search Box Small Mobile */
    .hero-search-floating {
        position: absolute !important;
        bottom: -20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 32px) !important;
        max-width: 500px !important;
        z-index: 25 !important;
        padding: 0 16px !important;
    }
    
    .hero-search-box-floating {
        padding: 15px;
        border-radius: 48px;
        bottom: -96px; 
    }
    
    .hero-search-title-floating {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .hero-filter-container-floating {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .hero-filter-input-floating,
    .hero-filter-select-floating {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .hero-filter-label-floating {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }
    
    .hero-search-btn-floating {
        padding: 10px 18px;
        font-size: 12px;
        max-width: 180px;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-main-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .hero-cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-slider-indicators {
        bottom: 20px;
    }

    .hero-indicator {
        width: 10px;
        height: 10px;
    }
}

/* ===========================
   GLOBAL STAT ITEMS STYLING
   =========================== */

/* Archive Stats Container */
.archive-stats,
.destination-stats,
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin: 3rem auto;
    flex-wrap: wrap;
    max-width: 800px;
    padding: 0 2rem;
}

/* Individual Stat Item */
.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Stat Number Styling */
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color, #FF6B35);
    margin-bottom: 0.5rem;
    line-height: 1;
}

/* Stat Label Styling */
.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light, #6c757d);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero Section Stat Items (White Text for Dark Backgrounds) */
.hero-stats .stat-number,
.destinations-hero .stat-number,
.packages-archive-hero .stat-number,
.blog-archive-hero .stat-number {
    color: var(--accent-color, #FF6B35);
}

.hero-stats .stat-label,
.destinations-hero .stat-label,
.packages-archive-hero .stat-label,
.blog-archive-hero .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Stats Section Styling */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

/* Testimonials Stats Styling */
.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

/* Company Stats (About Page) */
.company-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light, #f8f9fa);
    border-radius: 12px;
    flex-wrap: wrap;
}

.company-stats .stat-item {
    flex: 1;
    min-width: 120px;
}

.company-stats .stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary-color, #2C5F2D);
    margin-bottom: 0.5rem;
}

.company-stats .stat-item p {
    color: var(--text-medium, #495057);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

    .archive-stats,
    .destination-stats,
    .hero-stats,
    .stats-section {
        gap: 2rem;
        margin: 2rem auto;
        padding: 0 1rem;
        max-width: 100%;
    }

    .stat-item {
        min-width: 140px;
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .company-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .archive-stats,
    .destination-stats,
    .hero-stats,
    .stats-section {
        gap: 1.5rem;
        margin: 1.5rem auto;
        flex-direction: row;
        justify-content: center;
    }

    .stat-item {
        min-width: 100px;
        padding: 0.8rem 0.3rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

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

/* Extra Small Mobile Devices (320px and below) */
@media (max-width: 320px) {
    .hero-search-floating {
        position: absolute !important;
        bottom: -25px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 32px) !important;
        max-width: 500px !important;
        z-index: 25 !important;
        padding: 0 16px !important;
    }
    
    .hero-search-box-floating {
        padding: 20px 15px;
        border-radius: 16px;
        margin: 0;
    }
    
    .hero-search-title-floating {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }
    
    .hero-filter-container-floating {
        grid-template-columns: 1fr 1fr;
        gap: 10px 8px;
        margin-bottom: 16px;
    }
    
    .hero-filter-input-floating,
    .hero-filter-select-floating {
        padding: 4px 16px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    .hero-filter-label-floating {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .hero-search-btn-floating {
        max-width: 100%;
        padding: 12px 18px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    .hero-nav {
        width: 45px;
        height: 45px;
        font-size: 14px;
        top: 30%;
    }
    
    .hero-prev {
        left: 15px;
    }
    
    .hero-next {
        right: 15px;
    }
    
    /* Enhanced mobile slider visibility */
    .hero-slider {
        height: calc(100vh - 70px);
        min-height: calc(500px - 70px);
        padding-bottom: 100px;
        margin-top: 0;
    }
    
    .hero-slider.with-search {
        min-height: calc(600px - 70px);
        padding-bottom: 140px;
    }
    
    .hero-content {
        margin-top: 0;
        padding: 0 15px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
        line-height: 1.1;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    }
    
    .hero-cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
        min-width: 200px;
    }
}

/* Mobile Layout Stability and Performance Fixes */
@media screen and (max-width: 768px) {
    /* Prevent horizontal scroll and improve performance */
    body {
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
    }
    
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Optimize transforms for mobile */
    .heritage-destination-card,
    .heritage-feature-card,
    .heritage-service-card,
    .heritage-review-slider-card {
        will-change: auto !important;
        transform: translateZ(0); /* Hardware acceleration */
    }
    
    /* Disable hover effects on mobile to prevent layout issues */
    .heritage-destination-card:hover,
    .heritage-feature-card:hover,
    .heritage-service-card:hover {
        transform: none !important;
        box-shadow: inherit !important;
    }
    
    /* Improve slider performance on mobile */
    .heritage-packages-slider,
    .heritage-reviews-slider {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
    }
    
    /* Prevent zoom on form inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Extra small mobile optimizations */
@media screen and (max-width: 375px) {
    /* Ensure no horizontal overflow */
    .heritage-home-page,
    .heritage-destinations-section,
    .heritage-packages-slider-section,
    .heritage-reviews-slider-section {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Optimize grid layouts for very small screens */
    .heritage-destinations-grid,
    .heritage-features-grid,
    .heritage-services-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 10px !important;
    }
    
    /* Reduce animations on very small screens */
    .heritage-destination-card,
    .heritage-feature-card {
        transition: none !important;
    }
}

/* Performance optimizations for all devices */
.heritage-packages-slider-card,
.heritage-review-slider-card {
    contain: layout style paint;
}

/* Enhanced Dynamic Search Form Styling */
#dynamic-search-form {
    position: relative;
}

#destination-select:required:invalid {
    border-color: #e3342f;
    box-shadow: 0 0 0 3px rgba(227, 52, 47, 0.1);
}

.hero-filter-label-floating .fa-clock,
.hero-filter-label-floating .fa-rupee-sign {
    color: #3b82f6;
    font-size: 14px;
}

.hero-search-btn-floating[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.hero-search-btn-floating[disabled]:hover {
    transform: none !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3) !important;
}

/* Dynamic button text styling */
.hero-search-btn-floating .fa-search,
.hero-search-btn-floating .fa-spinner {
    margin-right: 8px;
    font-size: 14px;
}

/* Clean Professional Mobile Filter Styling */
@media screen and (max-width: 768px) {
    /* Mobile Hero Search Floating - Same as Desktop Overlay */
    .hero-search-floating {
        position: absolute !important;
        bottom: -30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 32px) !important;
        max-width: 500px !important;
        z-index: 25 !important;
        padding: 0 16px !important;
    }
    
    /* Ensure Hero Slider has proper positioning for overlay */
    .hero-slider {
        position: relative !important;
        overflow: visible !important;
        height: 100vh !important;
        min-height: 100vh !important;
    }
    
    /* Ensure hero slide allows overlay to extend beyond */
    .hero-slide {
        overflow: visible !important;
        background-attachment: scroll !important; /* Fixed: was 'fixed' causing scroll issues on mobile */
        background-size: cover !important;
        background-position: center center !important;
    }
    
    /* Ensure hero content container allows overlay */
    .hero-content {
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Clean Search Box Container - Overlay Style */
    .hero-search-box-floating {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.6) !important;
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.12),
            0 8px 16px rgba(0, 0, 0, 0.08),
            0 0 0 1px rgba(255, 255, 255, 0.1) !important;
        border-radius: 16px !important;
        padding: 24px 20px !important;
        position: relative !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
    }
    
    /* Hover Effect for Overlay */
    .hero-search-box-floating:hover {
        transform: translateY(-2px) !important;
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.15),
            0 12px 24px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.2) !important;
    }
    
    /* Subtle Background Pattern */
    .hero-search-box-floating::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
        z-index: -1;
    }
    
    /* Clean Professional Title */
    .hero-search-title-floating {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        color: #1e293b !important;
        margin-bottom: 24px !important;
        text-align: center !important;
        letter-spacing: -0.01em !important;
        position: relative !important;
    }
    
    .hero-search-title-floating::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: #9ca3af;
        border-radius: 2px;
    }
    
    /* Professional Mobile Filter Layout - Clean Horizontal Design */
    #dynamic-search-form .hero-filter-container-floating {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto auto !important;
        gap: 20px 16px !important;
        margin-bottom: 24px !important;
        position: relative !important;
    }
    
    /* Clean field styling - no colors, no backgrounds */
    .hero-filter-field-floating {
        position: relative !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        transition: all 0.3s ease !important;
    }
    
    .hero-filter-field-floating:hover {
        transform: translateY(-1px) !important;
    }
    
    /* Grid positioning for clean layout */
    .hero-filter-field-floating:nth-child(1) {
        grid-column: 1 / -1 !important;
        grid-row: 1 !important;
    }
    
    .hero-filter-field-floating:nth-child(2) {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
    
    .hero-filter-field-floating:nth-child(3) {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }
    
    /* Search button positioned below */
    #dynamic-search-form .hero-filter-button-floating {
        grid-column: 1 / -1 !important;
        grid-row: 3 !important;
        width: 100% !important;
        margin-top: 8px !important;
        border-radius: 12px !important;
        background: #1f2937 !important;
        box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3) !important;
        transform: none !important;
    }
    
    #dynamic-search-form .hero-filter-button-floating:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 20px rgba(31, 41, 55, 0.4) !important;
        background: #374151 !important;
    }
    
    /* Clean Professional Field Labels */
    .hero-filter-label-floating {
        font-size: 0.75rem !important;
        font-weight: 600 !important;
        color: #6b7280 !important;
        margin-bottom: 8px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        position: relative !important;
    }
    
    /* Clean Professional Input Fields */
    .hero-filter-input-floating,
    .hero-filter-select-floating {
        padding: 12px 16px !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        min-height: 48px !important;
        border-radius: 8px !important;
        border: 1px solid #d1d5db !important;
        background: #ffffff !important;
        color: #1f2937 !important;
        transition: all 0.2s ease !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Clean Input Focus States - No Colors */
    .hero-filter-input-floating:focus,
    .hero-filter-select-floating:focus {
        border-color: #9ca3af !important;
        background: #ffffff !important;
        box-shadow: 
            0 0 0 3px rgba(156, 163, 175, 0.1),
            0 1px 2px rgba(0, 0, 0, 0.05) !important;
        outline: none !important;
    }
    
    /* Clean Input Hover States */
    .hero-filter-input-floating:hover,
    .hero-filter-select-floating:hover {
        border-color: #9ca3af !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
    }
    
    /* Clean Professional Search Button */
    .hero-search-btn-floating {
        padding: 14px 24px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        min-height: 48px !important;
        border-radius: 8px !important;
        background: #1f2937 !important;
        border: none !important;
        color: #ffffff !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        box-shadow: 
            0 4px 6px rgba(31, 41, 55, 0.2),
            0 1px 2px rgba(0, 0, 0, 0.05) !important;
        transition: all 0.2s ease !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        cursor: pointer !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Clean Button Hover Effect */
    .hero-search-btn-floating:hover {
        background: #374151 !important;
        box-shadow: 
            0 6px 8px rgba(31, 41, 55, 0.3),
            0 2px 4px rgba(0, 0, 0, 0.08) !important;
        transform: translateY(-1px) !important;
    }
    
    /* Clean Button Active State */
    .hero-search-btn-floating:active {
        background: #111827 !important;
        transform: translateY(0) !important;
        box-shadow: 
            0 2px 4px rgba(31, 41, 55, 0.2),
            0 1px 2px rgba(0, 0, 0, 0.05) !important;
    }
    
    /* Clean Professional Icons */
    .hero-filter-icon-floating {
        color: #6b7280 !important;
        font-size: 0.875rem !important;
    }
    
    /* Clean Select Dropdown Styling */
    .hero-filter-select-floating {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
        background-position: right 12px center !important;
        background-repeat: no-repeat !important;
        background-size: 16px !important;
        padding-right: 36px !important;
        cursor: pointer !important;
    }
    
    /* Clean Placeholder Styling */
    .hero-filter-input-floating::placeholder,
    .hero-filter-select-floating option:first-child {
        color: #9ca3af !important;
        font-weight: 400 !important;
    }
    
    /* Clean Loading State - No Colors */
    .hero-search-btn-floating:disabled {
        background: #6b7280 !important;
        cursor: not-allowed !important;
        transform: none !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
    }
    
    /* Clean Professional Animations */
    .hero-search-box-floating {
        animation: slideUpFade 0.4s ease-out !important;
    }
    
    @keyframes slideUpFade {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Clean Field Animation on Focus */
    .hero-filter-field-floating {
        transition: all 0.2s ease !important;
    }
    
    .hero-filter-field-floating:focus-within {
        transform: translateY(-1px) !important;
    }
    
    /* Clean Spacing - Already defined above for overlay positioning */
    
    /* Clean Success State - No Colors */
    .hero-filter-input-floating:valid,
    .hero-filter-select-floating:valid {
        border-color: #d1d5db !important;
        background: #ffffff !important;
    }
    
    /* Clean Error State - No Colors */
    .hero-filter-input-floating:invalid:not(:placeholder-shown),
    .hero-filter-select-floating:invalid:not(:placeholder-shown) {
        border-color: #d1d5db !important;
        background: #ffffff !important;
    }
    
    /* Clean Loading Spinner */
    .hero-search-btn-floating .fa-spinner {
        animation: spin 1s linear infinite !important;
    }
    
    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    
    /* Clean Button States */
    .hero-search-btn-floating:not(:disabled):hover {
        animation: none !important;
    }
    
    /* Enhanced mobile button feedback */
    .hero-search-btn-floating:active {
        transform: scale(0.98);
    }
    
    /* Mobile error state styling */
    .hero-filter-select-floating[style*="border: 3px solid #ff4444"] {
        animation: shake 0.5s ease-in-out;
    }
    
    @keyframes shake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-5px); }
        75% { transform: translateX(5px); }
    }
}

/* Cache bust: 20250818-185015 */

