.newsletter-form>* {
    flex-grow: 0;
}

/* Custom styles for Visit Sri Lanka website */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Tour Detail Page Styles */
.tour-detail-hero {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tour-detail-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-card {
    position: sticky;
    top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.itinerary-day {
    position: relative;
    padding-left: 2rem;
}

.itinerary-day::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #f97316, #ea580c);
    border-radius: 2px;
}

.itinerary-day::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #f97316;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #f97316;
}

.highlight-item {
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    color: #f97316;
}

.review-card {
    transition: all 0.3s ease;
}

.review-card:hover {
    background-color: #f9fafb;
    transform: translateY(-2px);
}

.related-tour-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.related-tour-card img {
    transition: transform 0.3s ease;
}

.related-tour-card:hover img {
    transform: scale(1.05);
}

.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    color: #f97316;
}

.contact-item:hover i {
    color: #f97316;
}

/* Photo Gallery Styles */
.tour-photo {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.tour-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.tour-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-photo:hover img {
    transform: scale(1.1);
}

.tour-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.8), rgba(20, 184, 166, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-photo:hover::after {
    opacity: 1;
}

.tour-photo::before {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.tour-photo:hover::before {
    opacity: 1;
}

/* Lightbox Styles */
#photoLightbox {
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}

#photoLightbox.hidden {
    opacity: 0;
    pointer-events: none;
}

#photoLightbox:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

#lightboxImage {
    max-height: 80vh;
    max-width: 90vw;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#closeLightbox,
#prevPhoto,
#nextPhoto {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#closeLightbox:hover,
#prevPhoto:hover,
#nextPhoto:hover {
    background: rgba(249, 115, 22, 0.8);
    transform: scale(1.1);
}

/* Photo Gallery Grid Responsive */
@media (max-width: 768px) {
    .tour-photo {
        aspect-ratio: 1.2;
    }

    #lightboxImage {
        max-height: 70vh;
        max-width: 95vw;
    }

    #closeLightbox,
    #prevPhoto,
    #nextPhoto {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Responsive adjustments for tour detail */
@media (max-width: 768px) {
    .tour-detail-hero {
        background-attachment: scroll;
        height: 60vh;
    }

    .booking-card {
        position: static;
        margin-top: 2rem;
    }

    .itinerary-day {
        padding-left: 1.5rem;
    }
}

/* Professional Footer Styles */
footer {
    position: relative;
    z-index: 10;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f97316, #14b8a6, #059669, #f97316);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Footer Newsletter Animation */
footer input[type="email"]:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

footer button:hover {
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Footer Social Icons Animation */
footer .fab:hover {
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Footer Link Hover Effects */
footer a:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Footer Section Headers */
footer h3 {
    position: relative;
    overflow: hidden;
}

footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f97316, transparent);
    transition: left 0.5s ease;
}

footer h3:hover::after {
    left: 100%;
}

/* Footer Contact Icons Pulse */
footer .fa-phone,
footer .fa-envelope,
footer .fa-map-marker-alt,
footer .fa-clock {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Footer Background Pattern Animation */
footer .absolute.inset-0 {
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(-10px) translateY(-10px);
    }

    50% {
        transform: translateX(10px) translateY(-5px);
    }

    75% {
        transform: translateX(-5px) translateY(10px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

/* Responsive Footer Enhancements */
@media (max-width: 768px) {
    footer .grid {
        gap: 2rem;
    }

    footer .flex.flex-col.sm\\:flex-row {
        flex-direction: column;
    }

    footer button {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Footer Loading Animation */
footer {
    animation: fadeInUp 0.8s ease-out;
}

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

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

/* Header styles moved to header.css */

/* Custom hero section background */
.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Hero Button Styling */
.hero-btn {
    position: relative;
    overflow: hidden;
    min-height: 44px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
}

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

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

.hero-btn-primary {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    box-shadow: 0 12px 35px rgba(20, 184, 166, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px) scale(1.02);
}

.hero-btn i {
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Hero Button Animations */
@keyframes heroButtonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(20, 184, 166, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
    }
}

.hero-btn-primary:focus {
    animation: heroButtonPulse 1.5s infinite;
}

/* Responsive Hero Buttons */
@media (max-width: 640px) {
    .hero-btn {
        min-height: 40px;
        font-size: 0.85rem;
        padding: 0.625rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-btn {
        min-height: 38px;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* Custom button hover effects */
.btn-hover {
    transition: all 0.3s ease;
}

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

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Custom gradient backgrounds */
.gradient-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Mobile menu styles moved to header.css */

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #14b8a6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0d9488;
}

/* Star rating animation */
.star-rating {
    display: inline-flex;
    gap: 2px;
}

.star-rating .star {
    color: #fbbf24;
    transition: color 0.2s ease;
}

/* Heart icon animation */
.heart-icon {
    transition: all 0.3s ease;
}

.heart-icon:hover {
    color: #ef4444 !important;
    transform: scale(1.1);
}

.heart-icon.liked {
    color: #ef4444 !important;
}

/* Search form styling - Transparent Morphism */
.search-form {
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.15);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.search-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.search-form>* {
    position: relative;
    z-index: 2;
}

/* Form group styling */
.form-group {
    position: relative;
    margin-bottom: 0.75rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

/* Enhanced form input styling - Transparent Morphism */
.form-input {
    font-size: 12px;
    line-height: 1.4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-height: 36px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-input:focus {
    transform: translateY(-1px);
    box-shadow:
        0 4px 12px rgba(20, 184, 166, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(20, 184, 166, 0.5);
}

.form-input:hover {
    border-color: rgba(20, 184, 166, 0.4);
    background: rgba(255, 255, 255, 0.85);
}

/* Form label styling - Enhanced for transparent morphism */
.form-group label {
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    color: rgba(55, 65, 81, 0.9);
}

.form-group:focus-within label {
    color: #14b8a6;
    text-shadow: 0 1px 2px rgba(20, 184, 166, 0.2);
}

/* Button enhancements */
.btn-mobile {
    position: relative;
    overflow: hidden;
    min-height: 48px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

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

/* Form container animations */
.search-form {
    animation: slideInUp 0.6s ease-out;
}

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

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

/* Icon animations */
.form-group i {
    transition: all 0.3s ease;
}

.form-group:focus-within i {
    transform: scale(1.1);
    color: #0d9488;
}

/* Enhanced focus states */
.form-input:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

/* Placeholder styling */
.form-input::placeholder {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.form-input:focus::placeholder {
    color: #6b7280;
}

/* Tab styling */
.tab-button {
    transition: all 0.3s ease;
}

.tab-button.active {
    background-color: #14b8a6;
    color: white;
}

.tab-button:hover:not(.active) {
    background-color: #e5e7eb;
}

/* Carousel navigation */
.carousel-nav {
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
}

/* Statistics counter animation */
.stat-number {
    font-weight: bold;
    color: #14b8a6;
}

/* Footer link hover */
.footer-link {
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white !important;
}

/* Social media icon hover */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #a7f3d0 !important;
    transform: scale(1.2);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {

    /* Hero Section Mobile Fixes */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

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

    /* Hero section mobile layout */
    .h-screen {
        min-height: 100vh;
        height: auto;
        padding-bottom: 2rem;
    }

    /* Search form mobile improvements */
    .search-form {
        margin: 0.5rem;
        max-width: 100%;
        width: 100%;
        padding: 1rem;
        border-radius: 12px;
    }

    /* Mobile-specific improvements */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Better mobile spacing */
    .py-16 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    /* Mobile form improvements */
    .form-input {
        font-size: 16px;
        /* Prevents zoom on iOS */
        min-height: 44px;
        /* Touch-friendly size */
    }

    /* Mobile button improvements */
    .btn-mobile {
        min-height: 44px;
        /* Touch-friendly size */
    }

    /* Hero buttons mobile layout */
    .hero-btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }

    /* Grid layouts for mobile */
    .grid-cols-1 {
        gap: 1rem;
    }

    /* Card mobile improvements */
    .package-card-enhanced,
    .card-professional {
        margin-bottom: 1rem;
    }

    /* Section titles mobile */
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .title-professional {
        font-size: 2rem;
        line-height: 1.2;
    }

    /* Mobile typography */
    h1,
    h2,
    h3 {
        line-height: 1.2;
    }

    /* Mobile spacing adjustments */
    .mb-6 {
        margin-bottom: 1rem;
    }

    .mb-8 {
        margin-bottom: 1.5rem;
    }

    /* Mobile navigation styles moved to header.css */

    /* Hero section mobile specific fixes */
    .hero-section-mobile {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }

    /* Search form mobile positioning */
    .search-form-mobile {
        order: 2;
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    /* Hero content mobile positioning */
    .hero-content-mobile {
        order: 1;
        text-align: center;
    }

    /* Mobile grid improvements */
    .grid-mobile {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Mobile button stack */
    .button-stack-mobile {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    /* Mobile text adjustments */
    .text-mobile {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Mobile card improvements */
    .card-mobile {
        margin-bottom: 1rem;
        padding: 1rem;
    }

    /* Mobile image adjustments */
    .img-mobile {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* Extra small devices */
@media (max-width: 480px) {

    /* Header improvements for very small screens */
    .navbar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .nav-logo {
        height: 2.5rem;
        width: auto;
    }

    .mobile-toggle {
        padding: 0.5rem;
        font-size: 1.25rem;
    }

    .search-user-icons {
        gap: 0.25rem;
    }

    .nav-icon {
        padding: 0.5rem;
        min-width: 40px;
        min-height: 40px;
    }

    /* Mobile menu items for very small screens */
    .mobile-menu-item {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    /* Hero section for very small screens */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.1;
    }

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

    /* Stack elements vertically on very small screens */
    .flex-col-mobile {
        flex-direction: column;
    }

    /* Reduce padding on very small screens */
    .px-4 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    /* Very small screen hero adjustments */
    .h-screen {
        min-height: 80vh;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    /* Search form for very small screens */
    .search-form {
        margin: 0.25rem;
        padding: 0.75rem;
        max-width: 100%;
        border-radius: 8px;
    }

    /* Mobile form field improvements */
    .search-form .form-group {
        margin-bottom: 0.5rem;
    }

    .search-form .form-input {
        font-size: 16px;
        /* Prevents zoom on iOS */
        min-height: 48px;
        /* Touch-friendly size */
        padding: 0.75rem;
    }

    .search-form label {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .search-form .btn-mobile {
        min-height: 48px;
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }

    /* Single column layout for very small screens */
    .search-form .space-y-3 {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .search-form .form-group {
        margin-bottom: 0.5rem;
    }

    .search-form .form-input {
        font-size: 16px;
        min-height: 44px;
        padding: 0.625rem;
    }

    .search-form label {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }

    .search-form h3 {
        font-size: 0.9rem;
        padding: 0.375rem 0.625rem;
    }

    .search-form p {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

    /* Button adjustments for very small screens */
    .hero-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    /* Section titles for very small screens */
    .section-title {
        font-size: 1.5rem;
    }

    .title-professional {
        font-size: 1.5rem;
    }

    /* Card adjustments for very small screens */
    .package-card-enhanced,
    .card-professional {
        margin-bottom: 0.75rem;
        padding: 1rem;
    }

    /* Typography for very small screens */
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Spacing for very small screens */
    .py-16 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .mb-6 {
        margin-bottom: 0.75rem;
    }

    .mb-8 {
        margin-bottom: 1rem;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {

    /* Touch-friendly interactions */
    .btn-modern,
    .hero-btn,
    .btn-mobile {
        min-height: 36px;
        min-width: 36px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Better mobile spacing */
    .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Mobile grid improvements */
    .grid {
        gap: 1rem;
    }

    /* Mobile text improvements */
    p,
    span,
    div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Mobile image optimization */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Mobile form improvements */
    input,
    select,
    textarea {
        font-size: 16px;
        /* Prevents zoom on iOS */
        border-radius: 8px;
    }

    /* Mobile button improvements */
    button {
        touch-action: manipulation;
        user-select: none;
    }

    /* Mobile section improvements */
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Enhanced mobile header styles moved to header.css */
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #14b8a6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Custom focus styles */
.focus-ring:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.3);
}

/* Image overlay effects */
.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(20, 184, 166, 0.1), rgba(249, 115, 22, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.image-overlay:hover::before {
    opacity: 1;
}

/* Custom badge styles */
.badge-new {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-sale {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonial card styling */
.testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Province card styling */
.province-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.province-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Holiday package card styling */
.package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

/* Price styling */
.price-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1rem;
}

.price-sale {
    color: #14b8a6;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Section spacing */
.section-spacing {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 2rem 0;
    }
}

/* Enhanced Home Page Styling */

/* Modern Section Headers */
.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #ea580c);
    border-radius: 2px;
    z-index: -1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

/* Override for white text in Top Selling Deals section */
.bg-orange-texture .section-title {
    color: white !important;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

/* Override for white subtitle in Top Selling Deals section */
.bg-orange-texture .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Add green texture to Top Selling Deals background */
.bg-orange-texture {
    position: relative;
    overflow: hidden;
}




@keyframes textureMove {
    0% {
        background-position: 0 0, 100px 100px, 50px 50px, 0 0;
    }

    100% {
        background-position: 200px 200px, 400px 400px, 200px 200px, 100px 100px;
    }
}

/* Enhanced Category Buttons Container */
.category-buttons-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0;
    scrollbar-width: thin;
    scrollbar-color: #f59e0b #f3f4f6;
    -webkit-overflow-scrolling: touch;
}

.category-buttons-container::-webkit-scrollbar {
    height: 6px;
}

.category-buttons-container::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}

.category-buttons-container::-webkit-scrollbar-thumb {
    background: #f59e0b;
    border-radius: 3px;
}

.category-buttons-container::-webkit-scrollbar-thumb:hover {
    background: #d97706;
}

/* Enhanced Category Buttons */
.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    color: #6b7280;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

.category-btn:hover {
    border-color: #5eead4;
    color: #5eead4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(94, 234, 212, 0.15);
}

.category-btn-active {
    background: linear-gradient(135deg, #5eead4, #2dd4bf);
    border-color: #5eead4;
    color: white;
    box-shadow: 0 4px 15px rgba(94, 234, 212, 0.3);
}

.category-btn-active:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(94, 234, 212, 0.4);
}

.category-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.category-btn:hover .category-icon {
    transform: scale(1.1);
}

/* Mobile Responsive Category Buttons */
@media (max-width: 768px) {
    .category-buttons-container {
        gap: 8px;
        padding: 6px 0;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .category-btn {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 25px;
        min-width: auto;
    }

    .category-icon {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .category-buttons-container {
        gap: 6px;
        padding: 4px 0;
    }

    .category-btn {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 20px;
    }

    .category-icon {
        font-size: 12px;
    }
}

/* Enhanced Paper texture for Find Your Ideal Holiday section */
.section-orange {
    position: relative;
    background: #ffffff !important;
    overflow: hidden;
}

/* Compact styling for Find Your Ideal Holiday section */
.section-orange .section-header-professional {
    margin-bottom: 2rem !important;
}

.section-orange .title-professional {
    margin-bottom: 0.75rem !important;
}

.section-orange .subtitle-professional {
    margin-bottom: 2rem !important;
}

.section-orange .category-buttons-container {
    margin-bottom: 1.5rem !important;
}

.section-orange .grid {
    gap: 1rem !important;
}

@media (min-width: 640px) {
    .section-orange .grid {
        gap: 1.25rem !important;
    }
}

@media (min-width: 1024px) {
    .section-orange .grid {
        gap: 1.5rem !important;
    }
}

/* Section end styling */
section {
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #14b8a6, transparent);
    border-radius: 2px;
    opacity: 0.3;
}

/* Special styling for specific sections */
.section-orange::after {
    display: none;
}

.bg-orange-texture::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    width: 120px;
    height: 5px;
    opacity: 0.6;
}

.section-teal::after {
    background: linear-gradient(90deg, transparent, #14b8a6, transparent);
    width: 130px;
    height: 5px;
    opacity: 0.5;
}

/* Gradient sections get special treatment */
.bg-gradient-to-r::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    width: 200px;
    height: 6px;
    opacity: 0.7;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Card Styling */
.modern-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(20, 184, 166, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.modern-card:hover::before {
    opacity: 1;
}

.modern-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modern-card img {
    transition: transform 0.4s ease;
}

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

/* Enhanced Package Cards */
.package-card-enhanced {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card-enhanced .p-4 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-card-enhanced .flex.items-center.justify-between:last-child {
    margin-top: auto;
}

/* Align detail information (days/people) at same level for enhanced cards */
.package-card-enhanced .flex.items-center.justify-between:nth-last-child(2) {
    margin-bottom: 1rem;
    min-height: 2.5rem;
    align-items: center;
}

.package-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #ea580c, #14b8a6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card-enhanced:hover::before {
    opacity: 1;
}

.package-card-enhanced:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Enhanced Badge Styling */
.badge-modern {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.badge-sale {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

/* Enhanced Button Styling */
.btn-modern {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 90px;
    min-height: 36px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    touch-action: manipulation;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

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

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

.btn-modern:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.btn-modern:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.btn-modern:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3), 0 0 0 2px rgba(20, 184, 166, 0.2);
}

/* Orange button for View All */
.btn-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

/* Enhanced Section Backgrounds */
.section-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.section-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f97316" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%2314b8a6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Enhanced Typography */
.text-gradient {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Icons */
.icon-enhanced {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.icon-enhanced:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

/* Enhanced Statistics */
.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    .btn-modern {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
        min-width: 90px;
        min-height: 36px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .modern-card {
        border-radius: 16px;
    }

    .package-card-enhanced {
        border-radius: 20px;
    }

    .btn-modern {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
        min-width: 90px;
        min-height: 36px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .modern-card {
        border-radius: 12px;
    }

    .package-card-enhanced {
        border-radius: 16px;
    }
}

/* Professional Home Page Styling */

/* Professional Section Styling */
.section-professional {
    padding: 5rem 0;
    position: relative;
}

/* Professional Typography */
.title-professional {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.subtitle-professional {
    font-size: 1.25rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Professional Card Design */
.card-professional {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-professional .p-4 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-professional .flex.items-center.justify-between:last-child {
    margin-top: auto;
}

/* Align detail information (days/people) at same level for professional cards */
.card-professional .flex.items-center.justify-between:nth-last-child(2) {
    margin-bottom: 1rem;
    min-height: 2.5rem;
    align-items: center;
}

.card-professional:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-professional img {
    transition: transform 0.3s ease;
}

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

/* Professional Button Styling */
.btn-professional {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-professional:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Professional Badge */
.badge-professional {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.badge-new-professional {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.badge-sale-professional {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

/* Professional Section Headers */
.section-header-professional {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-professional::after {
    content: '';
    display: none;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #ea580c);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Professional Grid Layout */
.grid-professional {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: stretch;
}

/* Ensure all cards in grid have equal height */
.grid .card-professional,
.grid .package-card-enhanced {
    height: 100%;
}

/* Consistent alignment for all card detail information */
.card-professional .flex.items-center.justify-between,
.package-card-enhanced .flex.items-center.justify-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Ensure detail info (days/people) has consistent spacing */
.card-professional .flex.items-center.justify-between:not(:last-child),
.package-card-enhanced .flex.items-center.justify-between:not(:last-child) {
    margin-bottom: 1rem;
    min-height: 2.5rem;
    padding: 0.5rem 0;
}

/* Final Polish for Product Cards */
.card-professional h3,
.package-card-enhanced h3 {
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.card-professional p,
.package-card-enhanced p {
    line-height: 1.5;
    font-weight: 500;
    color: #4b5563;
}

/* Enhanced star ratings */
.card-professional .text-yellow-400,
.package-card-enhanced .text-yellow-400 {
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

/* Polish for price styling */
.card-professional .text-orange-500,
.package-card-enhanced .text-orange-500 {
    font-weight: 900;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 4px rgba(249, 115, 22, 0.2);
}

/* Enhanced button polish */
.btn-modern {
    font-weight: 800;
    letter-spacing: 0.025em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-orange {
    font-weight: 800;
    letter-spacing: 0.025em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Enhanced card shadows and borders */
.card-professional {
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

.package-card-enhanced {
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

/* Tablet Responsive Enhancements */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Tablet grid adjustments */
    .grid.grid-cols-1.sm\\:grid-cols-2.lg\\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    /* Tablet card enhancements */
    .card-professional,
    .package-card-enhanced {
        border-radius: 18px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    }

    /* Tablet typography */
    .card-professional h3,
    .package-card-enhanced h3 {
        font-size: 1.375rem;
        font-weight: 700;
    }

    /* Tablet buttons */
    .btn-modern,
    .btn-orange {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
        min-height: 46px;
        border-radius: 26px;
    }

    /* Tablet images */
    .card-professional img,
    .package-card-enhanced img {
        height: 240px;
    }
}

/* Enhanced hover effects */
.card-professional:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(20, 184, 166, 0.2);
}

.package-card-enhanced:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(20, 184, 166, 0.2);
}

/* Enhanced image effects */
.card-professional img,
.package-card-enhanced img {
    transition: all 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.card-professional:hover img,
.package-card-enhanced:hover img {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.02);
}

/* Enhanced badge styling */
.badge-professional,
.badge-modern {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Advanced Filter System Styles */
.filter-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    color: #6b7280;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.filter-tab:hover {
    border-color: #14b8a6;
    color: #14b8a6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
}

.filter-tab.active {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    border-color: #14b8a6;
    color: white;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
}

.filter-panel {
    display: none;
    animation: fadeInUp 0.3s ease-out;
}

.filter-panel.active {
    display: block;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-chip:hover {
    border-color: #14b8a6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
}

.filter-chip.active {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    border-color: #14b8a6;
    color: white;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
}

.filter-chip.active .chip-content {
    color: white;
}

.chip-content {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    transition: color 0.3s ease;
}

.active-filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0.25rem;
    animation: slideInRight 0.3s ease-out;
}

.active-filter-chip .remove-filter {
    margin-left: 0.5rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.active-filter-chip .remove-filter:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive Filter System */
@media (max-width: 768px) {
    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .filter-chip {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .chip-content {
        font-size: 0.8rem;
    }

    .filter-panel {
        padding: 1rem;
    }

    .filter-panel h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .filter-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .filter-chip {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }

    .chip-content {
        font-size: 0.75rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

/* Enhanced Search Input */
#searchInput {
    background: white;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

#searchInput:focus {
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
    transform: translateY(-2px);
}

/* Filter Panel Container */
.filter-panel {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Clear All Button */
#clearAllFilters {
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#clearAllFilters:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626;
    transform: translateY(-1px);
}

/* Enhanced detail icons */
.card-professional .text-blue-500,
.package-card-enhanced .text-blue-500 {
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.card-professional .text-green-500,
.package-card-enhanced .text-green-500 {
    filter: drop-shadow(0 2px 4px rgba(34, 197, 94, 0.3));
}

/* Enhanced discount badges */
.bg-red-100 {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

/* Enhanced heart icons */
.heart-icon {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.heart-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(239, 68, 68, 0.4));
}

/* Hide hero buttons and description on mobile */
@media (max-width: 768px) {
    .button-stack-mobile {
        display: none !important;
    }

    .hero-content-mobile p {
        display: none !important;
    }
}

/* Enhanced mobile search form layout */
@media (max-width: 768px) {

    /* Mobile form grid layout */
    .search-form .space-y-3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        grid-template-areas:
            "departure passengers"
            "kids date"
            "contact contact"
            "button button";
    }

    .search-form .form-group:nth-child(1) {
        grid-area: departure;
    }

    .search-form .form-group:nth-child(2) {
        grid-area: passengers;
    }

    .search-form .form-group:nth-child(3) {
        grid-area: kids;
    }

    .search-form .form-group:nth-child(4) {
        grid-area: date;
    }

    .search-form .form-group:nth-child(5) {
        grid-area: contact;
    }

    .search-form .btn-mobile {
        grid-area: button;
        margin-top: 0.5rem;
    }

    /* Mobile form header */
    .search-form h3 {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
    }

    .search-form p {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }
}

/* Enhanced Mobile Responsive Product Cards */
@media (max-width: 768px) {

    /* Improved grid layout for mobile */
    .grid.grid-cols-1.sm\\:grid-cols-2.lg\\:grid-cols-4 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 0.5rem;
    }

    /* Enhanced card sizing for mobile */
    .card-professional,
    .package-card-enhanced {
        margin-bottom: 1.25rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        background: white;
        overflow: hidden;
    }

    /* Mobile card content with better spacing */
    .card-professional .p-4,
    .package-card-enhanced .p-4 {
        padding: 1.25rem;
    }

    /* Enhanced mobile typography */
    .card-professional h3,
    .package-card-enhanced h3 {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
        font-weight: 700;
        color: #1f2937;
    }

    .card-professional p,
    .package-card-enhanced p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        color: #6b7280;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Enhanced mobile price styling */
    .card-professional .text-orange-500,
    .package-card-enhanced .text-orange-500 {
        font-size: 1.75rem;
        font-weight: 800;
        color: #f97316;
        text-shadow: 0 1px 2px rgba(249, 115, 22, 0.2);
    }

    /* Enhanced mobile button adjustments */
    .btn-modern,
    .btn-orange {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        font-weight: 600;
        min-height: 44px;
        min-width: 100px;
        border-radius: 25px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
        transition: all 0.3s ease;
    }

    .btn-orange {
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    }

    /* Enhanced mobile detail information */
    .card-professional .flex.items-center.justify-between,
    .package-card-enhanced .flex.items-center.justify-between {
        margin-bottom: 1rem;
        min-height: 2.5rem;
        padding: 0.5rem 0.75rem;
        background: rgba(249, 250, 251, 0.5);
        border-radius: 8px;
    }

    /* Enhanced mobile icons */
    .card-professional .text-blue-500,
    .card-professional .text-green-500,
    .package-card-enhanced .text-blue-500,
    .package-card-enhanced .text-green-500 {
        font-size: 1rem;
        font-weight: 600;
    }

    /* Enhanced mobile star ratings */
    .card-professional .text-yellow-400,
    .package-card-enhanced .text-yellow-400 {
        font-size: 0.875rem;
    }

    /* Enhanced mobile discount badges */
    .bg-red-100 {
        padding: 0.375rem 0.75rem;
        border-radius: 20px;
        font-weight: 600;
    }

    /* Enhanced mobile heart icons */
    .heart-icon {
        font-size: 1.25rem;
        padding: 0.5rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* Enhanced mobile badge positioning */
    .badge-professional,
    .badge-modern {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 700;
        top: 0.75rem;
        left: 0.75rem;
    }

    /* Enhanced mobile image adjustments */
    .card-professional img,
    .package-card-enhanced img {
        height: 220px;
        object-fit: cover;
        border-radius: 12px 12px 0 0;
    }

    /* Enhanced mobile hover effects - optimized for touch */
    .card-professional:hover,
    .package-card-enhanced:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .card-professional:hover img,
    .package-card-enhanced:hover img {
        transform: scale(1.03);
    }

    /* Active state for touch devices */
    .card-professional:active,
    .package-card-enhanced:active {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
}

/* Enhanced Extra Small Mobile Devices */
@media (max-width: 480px) {

    /* Enhanced smaller cards for very small screens */
    .card-professional,
    .package-card-enhanced {
        border-radius: 12px;
        margin-bottom: 1rem;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    }

    /* Enhanced compact content */
    .card-professional .p-4,
    .package-card-enhanced .p-4 {
        padding: 1rem;
    }

    /* Enhanced smaller typography */
    .card-professional h3,
    .package-card-enhanced h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
        line-height: 1.3;
    }

    .card-professional p,
    .package-card-enhanced p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
        -webkit-line-clamp: 2;
    }

    /* Enhanced smaller prices */
    .card-professional .text-orange-500,
    .package-card-enhanced .text-orange-500 {
        font-size: 1.5rem;
        font-weight: 800;
    }

    /* Enhanced compact buttons */
    .btn-modern,
    .btn-orange {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
        min-height: 40px;
        min-width: 90px;
        border-radius: 22px;
        font-weight: 600;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    /* Enhanced smaller detail info */
    .card-professional .flex.items-center.justify-between,
    .package-card-enhanced .flex.items-center.justify-between {
        margin-bottom: 0.75rem;
        min-height: 2rem;
        padding: 0.375rem 0.5rem;
        background: rgba(249, 250, 251, 0.6);
        border-radius: 6px;
    }

    /* Enhanced smaller icons */
    .card-professional .text-blue-500,
    .card-professional .text-green-500,
    .package-card-enhanced .text-blue-500,
    .package-card-enhanced .text-green-500 {
        font-size: 0.9rem;
        font-weight: 600;
    }

    /* Enhanced smaller images */
    .card-professional img,
    .package-card-enhanced img {
        height: 180px;
        border-radius: 8px 8px 0 0;
    }

    /* Enhanced smaller badges */
    .badge-professional,
    .badge-modern {
        font-size: 0.7rem;
        padding: 0.375rem 0.75rem;
        top: 0.5rem;
        left: 0.5rem;
    }

    /* Enhanced smaller heart icons */
    .heart-icon {
        font-size: 1.125rem;
        padding: 0.375rem;
    }

    /* Enhanced compact spacing */
    .grid {
        gap: 1rem;
        padding: 0 0.25rem;
    }
}

/* Popular Destinations Style Province Section - Compact */
.section-teal {
    background: #f3f4f6;
    position: relative;
    overflow: visible;
    padding: 3rem 0;
}

/* Province Carousel Container - Smaller Design */
.province-carousel-container {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    overflow: visible;
    width: 100%;
    perspective: 1000px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Province Carousel Styles - Enhanced Cover Flow Layout */
.province-slide {
    position: absolute;
    width: 200px;
    height: 240px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

/* Center card (focused) - Balanced and prominent */
.province-slide.center {
    z-index: 20;
    transform: translateX(0) scale(1.1) rotateY(0deg);
    filter: none;
    opacity: 1;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
    width: 220px;
    height: 270px;
}

/* Left cards - 3 cards on left side */
.province-slide.left-1 {
    z-index: 15;
    transform: translateX(-35px) scale(0.9) rotateY(8deg);
    filter: brightness(0.95);
    opacity: 0.95;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.province-slide.left-2 {
    z-index: 12;
    transform: translateX(-70px) scale(0.8) rotateY(15deg);
    filter: brightness(0.85);
    opacity: 0.85;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.province-slide.left-3 {
    z-index: 10;
    transform: translateX(-105px) scale(0.7) rotateY(20deg);
    filter: brightness(0.7);
    opacity: 0.7;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Right cards - 3 cards on right side */
.province-slide.right-1 {
    z-index: 15;
    transform: translateX(35px) scale(0.9) rotateY(-8deg);
    filter: brightness(0.95);
    opacity: 0.95;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.province-slide.right-2 {
    z-index: 12;
    transform: translateX(70px) scale(0.8) rotateY(-15deg);
    filter: brightness(0.85);
    opacity: 0.85;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.province-slide.right-3 {
    z-index: 10;
    transform: translateX(105px) scale(0.7) rotateY(-20deg);
    filter: brightness(0.7);
    opacity: 0.7;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Hidden cards */
.province-slide.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Province Card Styling - Enhanced Cover Flow Design */
.section-teal .card-professional {
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin: 0;
    padding: 0;
}

/* Province Card Link */
.card-professional-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
}

.card-professional-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Province Name Overlay */
.province-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.25rem 1rem 1rem;
    z-index: 2;
}

.province-name-overlay h3 {
    color: white;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    text-align: center;
}

.section-teal .card-professional img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    display: block;
}

/* Enhanced hover effects for center card */
.province-slide.center .card-professional:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.province-slide.center .card-professional:hover img {
    transform: scale(1.08);
}

/* Subtle hover effects for side cards */
.province-slide.left-1 .card-professional:hover,
.province-slide.right-1 .card-professional:hover {
    transform: translateY(-4px) scale(0.88);
    filter: brightness(0.9);
}

.province-slide.left-2 .card-professional:hover,
.province-slide.right-2 .card-professional:hover {
    transform: translateY(-2px) scale(0.78);
    filter: brightness(0.7);
}



/* Enhanced Carousel Navigation Buttons */
#provincePrev,
#provinceNext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border: 2px solid rgba(20, 184, 166, 0.3);
    color: #14b8a6;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 6px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 25;
    opacity: 1;
    visibility: visible;
}

#provincePrev {
    left: -35px;
}

#provinceNext {
    right: -35px;
}

#provincePrev:hover,
#provinceNext:hover {
    background: linear-gradient(145deg, #14b8a6, #0d9488);
    border-color: #14b8a6;
    color: white;
    transform: translateY(-50%) scale(1.2);
    box-shadow:
        0 15px 60px rgba(20, 184, 166, 0.5),
        0 10px 30px rgba(20, 184, 166, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

    #provincePrev,
    #provinceNext {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    #provincePrev {
        left: -25px;
    }

    #provinceNext {
        right: -25px;
    }
}

@media (max-width: 480px) {

    #provincePrev,
    #provinceNext {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    #provincePrev {
        left: -20px;
    }

    #provinceNext {
        right: -20px;
    }
}

#provincePrev:active,
#provinceNext:active {
    transform: translateY(-50%) scale(1.05);
}

/* Mobile Responsive Carousel - Balanced Cards */
@media (max-width: 768px) {
    .province-carousel-container {
        height: 320px;
        margin: 1.5rem 0;
        overflow: hidden;
    }

    /* Province name overlay - Tablet */
    .province-name-overlay {
        padding: 1.5rem 1.2rem 1.2rem;
    }

    .province-name-overlay h3 {
        font-size: 1.3rem;
    }

    .province-slide {
        width: 220px;
        height: 280px;
    }

    /* Smaller center card for mobile */
    .province-slide.center {
        transform: translateX(0) scale(1.0) rotateY(0deg);
        width: 250px;
        height: 300px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    /* Ensure images fill completely on mobile - no margins */
    .section-teal .card-professional {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        outline: none !important;
    }

    .section-teal .card-professional img {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        outline: none !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Compact positioning for mobile - cards closer together */
    .province-slide.left-1 {
        transform: translateX(-50px) scale(0.85) rotateY(15deg);
        filter: brightness(0.8);
    }

    .province-slide.left-2 {
        transform: translateX(-90px) scale(0.75) rotateY(20deg);
        filter: brightness(0.6);
    }

    .province-slide.left-3 {
        transform: translateX(-120px) scale(0.65) rotateY(25deg);
        filter: brightness(0.4);
    }

    .province-slide.right-1 {
        transform: translateX(50px) scale(0.85) rotateY(-15deg);
        filter: brightness(0.8);
    }

    .province-slide.right-2 {
        transform: translateX(90px) scale(0.75) rotateY(-20deg);
        filter: brightness(0.6);
    }

    .province-slide.right-3 {
        transform: translateX(120px) scale(0.65) rotateY(-25deg);
        filter: brightness(0.4);
    }

    /* Remove blurred margins and ensure images fill completely */
    .section-teal .card-professional {
        backdrop-filter: none;
        border: none;
        margin: 0;
        padding: 0;
    }

    .section-teal .card-professional img {
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


}

@media (max-width: 480px) {
    .province-carousel-container {
        height: 280px;
        margin: 1rem 0;
        overflow: hidden;
    }

    /* Province name overlay - Mobile */
    .province-name-overlay {
        padding: 1.2rem 1rem 1rem;
    }

    .province-name-overlay h3 {
        font-size: 1.1rem;
    }

    .province-slide {
        width: 180px;
        height: 220px;
    }

    /* Even smaller center card for small mobile */
    .province-slide.center {
        transform: translateX(0) scale(1.0) rotateY(0deg);
        width: 200px;
        height: 240px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    }

    /* Ensure images fill completely on small mobile - no margins */
    .section-teal .card-professional {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        outline: none !important;
    }

    .section-teal .card-professional img {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        outline: none !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Very compact positioning for small mobile */
    .province-slide.left-1 {
        transform: translateX(-40px) scale(0.8) rotateY(20deg);
        filter: brightness(0.8);
    }

    .province-slide.left-2 {
        transform: translateX(-70px) scale(0.7) rotateY(25deg);
        filter: brightness(0.6);
    }

    .province-slide.right-1 {
        transform: translateX(40px) scale(0.8) rotateY(-20deg);
        filter: brightness(0.8);
    }

    .province-slide.right-2 {
        transform: translateX(70px) scale(0.7) rotateY(-25deg);
        filter: brightness(0.6);
    }




    .flex.justify-center.mt-6.space-x-2 {
        margin-top: 1.5rem !important;
        margin-bottom: 0.5rem !important;
        padding: 0.5rem 0 !important;
        gap: 0.75rem !important;
    }

}

/* Very small mobile screens */
@media (max-width: 360px) {
    .province-carousel-container {
        height: 320px;
        margin: 0.5rem 0;
    }

    .province-slide {
        width: 240px;
        height: 300px;
    }

    /* Minimal center card for very small screens */
    .province-slide.center {
        transform: translateX(0) scale(1.0) rotateY(0deg);
        width: 240px;
        height: 300px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    /* Ensure images fill completely on mobile */
    .section-teal .card-professional {
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
    }

    .section-teal .card-professional img {
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}




/* Center Card Focus Animation */
@keyframes centerCardFocus {
    0% {
        transform: translateX(0) scale(0.95) rotateY(0deg);
        filter: brightness(0.9);
    }

    50% {
        transform: translateX(0) scale(1.05) rotateY(0deg);
        filter: brightness(1.1);
    }

    100% {
        transform: translateX(0) scale(1) rotateY(0deg);
        filter: brightness(1);
    }
}

/* Enhanced Hover Effects for Province Cards */
.province-slide {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.province-slide:hover {
    cursor: pointer;
}

/* Click animation for province cards */
.province-slide:active {
    transform: scale(0.98);
}

/* Medium Desktop Adjustments - Compact Design */
@media (min-width: 992px) and (max-width: 1199px) {
    .province-carousel-container {
        height: 550px;
        max-width: 1400px;
    }

    .province-slide {
        width: 380px;
        height: 480px;
    }

    /* Compact positioning for medium desktop */
    .province-slide.left-1 {
        transform: translateX(-65px) scale(0.88) rotateY(12deg);
    }

    .province-slide.left-2 {
        transform: translateX(-120px) scale(0.78) rotateY(18deg);
    }

    .province-slide.right-1 {
        transform: translateX(65px) scale(0.88) rotateY(-12deg);
    }

    .province-slide.right-2 {
        transform: translateX(120px) scale(0.78) rotateY(-18deg);
    }
}

/* Desktop Large Screen Adjustments - Balanced */
@media (min-width: 1200px) {
    .province-carousel-container {
        height: 520px;
        max-width: 1000px;
    }

    /* Province name overlay - Large Desktop */
    .province-name-overlay {
        padding: 2.5rem 2rem 2rem;
    }

    .province-name-overlay h3 {
        font-size: 1.6rem;
    }

    .province-slide {
        width: 240px;
        height: 300px;
    }

    /* Balanced center card for desktop */
    .province-slide.center {
        transform: translateX(0) scale(1.08) rotateY(0deg);
        width: 280px;
        height: 340px;
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    }

    /* Ultra compact positioning for large desktop */
    .province-slide.left-1 {
        transform: translateX(-40px) scale(0.92) rotateY(8deg);
        filter: brightness(0.95);
    }

    .province-slide.left-2 {
        transform: translateX(-80px) scale(0.82) rotateY(12deg);
        filter: brightness(0.85);
    }

    .province-slide.right-1 {
        transform: translateX(40px) scale(0.92) rotateY(-8deg);
        filter: brightness(0.95);
    }

    .province-slide.right-2 {
        transform: translateX(80px) scale(0.82) rotateY(-12deg);
        filter: brightness(0.85);
    }

    /* Adjust navigation buttons for larger screens */
    #provincePrev {
        left: -40px;
    }

    #provinceNext {
        right: -40px;
    }


}

/* Ultra-wide screen adjustments - Balanced */
@media (min-width: 1400px) {
    .province-carousel-container {
        height: 450px;
        max-width: 1400px;
    }

    .province-slide {
        width: 250px;
        height: 300px;
    }

    /* Balanced center card for ultra-wide screens */
    .province-slide.center {
        transform: translateX(0) scale(1.12) rotateY(0deg);
        width: 280px;
        height: 340px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    }

    /* Maximum compact positioning */
    .province-slide.left-1 {
        transform: translateX(-35px) scale(0.94) rotateY(6deg);
        filter: brightness(0.98);
    }

    .province-slide.left-2 {
        transform: translateX(-70px) scale(0.84) rotateY(10deg);
        filter: brightness(0.9);
    }

    .province-slide.right-1 {
        transform: translateX(35px) scale(0.94) rotateY(-6deg);
        filter: brightness(0.98);
    }

    .province-slide.right-2 {
        transform: translateX(70px) scale(0.84) rotateY(-10deg);
        filter: brightness(0.9);
    }
}

#provincePrev:focus,
#provinceNext:focus {
    outline: none;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 0 0 4px rgba(20, 184, 166, 0.2);
}


/* Mobile responsiveness for reference-style carousel */
@media (max-width: 1024px) {
    .province-carousel-container {
        height: 350px;
        margin: 2.5rem 0;
    }

    .province-slide {
        width: 260px;
        height: 300px;
    }

    .province-slide.left-1 {
        transform: translateX(-60px) scale(0.9);
    }

    .province-slide.left-2 {
        transform: translateX(-110px) scale(0.8);
    }

    .province-slide.right-1 {
        transform: translateX(60px) scale(0.9);
    }

    .province-slide.right-2 {
        transform: translateX(110px) scale(0.8);
    }


}

@media (max-width: 768px) {
    .province-carousel-container {
        height: 300px;
        margin: 2rem 0;
    }

    .province-slide {
        width: 220px;
        height: 260px;
    }

    .province-slide.left-1 {
        transform: translateX(-50px) scale(0.85);
    }

    .province-slide.left-2 {
        transform: translateX(-90px) scale(0.75);
    }

    .province-slide.right-1 {
        transform: translateX(50px) scale(0.85);
    }

    .province-slide.right-2 {
        transform: translateX(90px) scale(0.75);
    }


}

@media (max-width: 480px) {
    .province-carousel-container {
        height: 280px;
        margin: 1.5rem 0;
    }

    .province-slide {
        width: 180px;
        height: 220px;
    }

    .province-slide.left-1 {
        transform: translateX(-40px) scale(0.8);
    }

    .province-slide.left-2 {
        transform: translateX(-70px) scale(0.7);
    }

    .province-slide.right-1 {
        transform: translateX(40px) scale(0.8);
    }

    .province-slide.right-2 {
        transform: translateX(70px) scale(0.7);
    }


}

/* Professional Must-Visit Destinations Section */
.new-destinations-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.new-destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(20, 184, 166, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.02) 0%, transparent 50%);
    background-size: 400px 400px, 300px 300px;
    background-position: 0 0, 100px 100px;
    opacity: 0.6;
    pointer-events: none;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: #14b8a6;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.2);
}

/* Section Title */
.new-destinations-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 2;
}

/* Section Subtitle */
.new-destinations-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Destinations Grid */
.new-destinations-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Professional Destination Cards */
.new-destination-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.new-destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #14b8a6;
}

.featured-destination {
    grid-row: 1 / 3;
    grid-column: 1;
}

/* Image Container */
.destination-image-container {
    position: relative;
    height: 60%;
    overflow: hidden;
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Image Overlay */
.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.new-destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-badge {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.destination-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stars {
    color: #fbbf24;
    font-size: 0.75rem;
}

.rating-number {
    font-weight: 700;
    color: #1f2937;
    font-size: 0.875rem;
}

/* Professional Content */
.destination-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-category {
    color: #14b8a6;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destination-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.featured-destination .destination-title {
    font-size: 1.5rem;
}

.destination-description {
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.875rem;
}

/* Simple Tags */
.destination-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

/* Professional Footer */
.destination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.destination-info {
    display: flex;
    gap: 0.75rem;
}

.info-item {
    color: #6b7280;
    font-size: 0.8125rem;
    font-weight: 500;
}

.explore-btn {
    background: #14b8a6;
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(20, 184, 166, 0.2);
}

.explore-btn:hover {
    background: #0d9488;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(20, 184, 166, 0.3);
}

/* Professional Mobile Responsiveness */
@media (max-width: 1024px) {
    .new-destinations-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .featured-destination {
        grid-row: 1;
        grid-column: 1 / 3;
    }
}

@media (max-width: 768px) {
    .new-destinations-title {
        font-size: 2rem;
    }

    .new-destinations-subtitle {
        font-size: 1rem;
    }

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

    .featured-destination {
        grid-row: 1;
        grid-column: 1;
    }

    .destination-content {
        padding: 1.25rem;
    }

    .destination-title {
        font-size: 1.125rem;
    }

    .featured-destination .destination-title {
        font-size: 1.25rem;
    }

    .destination-footer {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .new-destinations-title {
        font-size: 1.75rem;
    }

    .new-destinations-subtitle {
        font-size: 0.9375rem;
    }

    .destination-content {
        padding: 1rem;
    }

    .destination-title {
        font-size: 1rem;
    }

    .featured-destination .destination-title {
        font-size: 1.125rem;
    }

    .explore-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Hero Section Enhanced Styling */
.hero-section-mobile h1 {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.hero-section-mobile h1 span {
    background: linear-gradient(135deg, #f97316, #ea580c, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-section-mobile h1::after {
    display: none;
}

@keyframes heroGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

.hero-section-mobile {
    position: relative;
    overflow: hidden;
}

.hero-section-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 400px 400px, 300px 300px, 200px 200px;
    background-position: 0 0, 100px 100px, 50px 50px;
    opacity: 0.8;
    pointer-events: none;
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.hero-section-mobile::after {
    content: '🏝️ 🌴 🏛️ 🏔️ 🌊 🦁 🍃 ⛰️ 🏖️ ✈️ 🌍';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    animation: heroIcons 25s linear infinite;
    letter-spacing: 2rem;
    line-height: 1;
    z-index: 1;
}

@keyframes heroIcons {
    0% {
        transform: translateX(-100%) rotate(0deg);
    }

    50% {
        transform: translateX(0%) rotate(180deg);
    }

    100% {
        transform: translateX(100%) rotate(360deg);
    }
}

/* Professional Statistics */
.stat-professional {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-professional:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.stat-number-professional {
    font-size: 3rem;
    font-weight: 900;
    color: #f97316;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-professional {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Professional Form Styling */
.form-professional {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Professional Navigation */
.nav-professional {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Professional Hero Section */
.hero-professional {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-title-professional {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.hero-subtitle-professional {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Professional Mobile Responsiveness */
@media (max-width: 768px) {
    .title-professional {
        font-size: 2.5rem;
    }

    .hero-title-professional {
        font-size: 3rem;
    }

    .section-professional {
        padding: 3rem 0;
    }

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

@media (max-width: 480px) {
    .title-professional {
        font-size: 2rem;
    }

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

    .btn-professional {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Inquiry Page Mobile Responsiveness */
@media (max-width: 768px) {

    /* Inquiry Hero Section Mobile */
    .inquiry-hero {
        padding: 3rem 0;
    }

    .inquiry-hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .inquiry-hero p {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 1rem;
    }

    /* Inquiry Form Section Mobile */
    .inquiry-form-section {
        padding: 2rem 0;
    }

    .inquiry-form-section .container {
        padding: 0 1rem;
    }

    /* Inquiry Grid Layout Mobile */
    .inquiry-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    /* Tour Information Sidebar Mobile */
    .tour-info-sidebar {
        order: 2;
        position: static;
        margin-top: 2rem;
    }

    .tour-info-sidebar .sticky {
        position: static;
    }

    .tour-info-sidebar .bg-white {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .tour-info-sidebar h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .tour-info-sidebar img {
        height: 200px;
        border-radius: 8px;
    }

    .tour-info-sidebar .space-y-3>div {
        margin-bottom: 1rem;
        padding: 0.75rem 0;
    }

    .tour-info-sidebar .flex.items-center {
        align-items: flex-start;
        gap: 0.75rem;
    }

    .tour-info-sidebar .flex.items-center i {
        margin-right: 0;
        margin-top: 0.125rem;
        flex-shrink: 0;
    }

    .tour-info-sidebar .text-sm {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* Tour info mobile improvements */
    .tour-info-sidebar .space-y-3>div:last-child {
        margin-bottom: 0;
    }

    /* Price display mobile */
    .tour-info-sidebar .flex.items-center.space-x-2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .tour-info-sidebar .bg-red-100 {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
    }

    /* Contact info mobile layout */
    .tour-info-sidebar .mt-6 .flex.items-center {
        align-items: flex-start;
        gap: 0.75rem;
    }

    .tour-info-sidebar .mt-6 .flex.items-center i {
        margin-right: 0;
        margin-top: 0.125rem;
        flex-shrink: 0;
    }

    /* Contact Info Mobile */
    .tour-info-sidebar .mt-6 {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .tour-info-sidebar .mt-6 h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .tour-info-sidebar .mt-6 .space-y-2>div {
        margin-bottom: 0.75rem;
    }

    /* Inquiry Form Mobile */
    .inquiry-form {
        order: 1;
    }

    .inquiry-form .bg-white {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .inquiry-form h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .inquiry-form p {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    /* Form Grid Mobile */
    .inquiry-form .grid.grid-cols-1.md\\:grid-cols-2 {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .inquiry-form .grid.grid-cols-1.md\\:grid-cols-2>div {
        width: 100%;
    }

    /* Form Inputs Mobile */
    .inquiry-form input,
    .inquiry-form select,
    .inquiry-form textarea {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 0.75rem;
        border-radius: 8px;
        min-height: 44px;
        /* Touch-friendly size */
        width: 100%;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    /* Select dropdown mobile styling */
    .inquiry-form select {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 1rem;
        padding-right: 2.5rem;
    }

    .inquiry-form label {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    /* Form Sections Mobile */
    .inquiry-form .border-t {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .inquiry-form .border-t h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    /* Country Select Mobile */
    .inquiry-form select[name="country"] {
        font-size: 16px;
        padding: 0.75rem;
        min-height: 44px;
    }

    /* Travel Preferences Mobile */
    .inquiry-form .grid.grid-cols-1.md\\:grid-cols-2.gap-6 {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .inquiry-form .grid.grid-cols-1.md\\:grid-cols-2.gap-6>div {
        width: 100%;
    }

    /* Submit Button Mobile */
    .inquiry-form button[type="submit"] {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 8px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .inquiry-form button[type="submit"]:active {
        transform: scale(0.98);
    }

    .inquiry-form button[type="submit"] i {
        margin-right: 0.5rem;
    }

    /* Form validation mobile styling */
    .inquiry-form input:invalid,
    .inquiry-form select:invalid,
    .inquiry-form textarea:invalid {
        border-color: #ef4444;
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    }

    .inquiry-form input:valid,
    .inquiry-form select:valid,
    .inquiry-form textarea:valid {
        border-color: #10b981;
    }

    /* Focus states for mobile */
    .inquiry-form input:focus,
    .inquiry-form select:focus,
    .inquiry-form textarea:focus {
        outline: none;
        border-color: #14b8a6;
        box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
        transform: translateY(-1px);
    }

    /* Why Choose Us Section Mobile */
    .why-choose-section {
        padding: 2rem 0;
    }

    .why-choose-section .container {
        padding: 0 1rem;
    }

    .why-choose-section .text-center h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .why-choose-section .text-center p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .why-choose-section .grid.grid-cols-1.md\\:grid-cols-3 {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .why-choose-section .text-center.p-6 {
        padding: 1.5rem;
        border-radius: 12px;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .why-choose-section .w-16.h-16 {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
    }

    .why-choose-section .w-16.h-16 i {
        font-size: 1.5rem;
    }

    .why-choose-section h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .why-choose-section p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    /* Breadcrumb Mobile */
    .breadcrumb-section {
        padding: 1rem 0;
    }

    .breadcrumb-section .container {
        padding: 0 1rem;
    }

    .breadcrumb-section nav {
        flex-wrap: wrap;
    }

    .breadcrumb-section .inline-flex.items-center.space-x-1.md\\:space-x-3 {
        gap: 0.5rem;
    }

    .breadcrumb-section .text-sm {
        font-size: 0.75rem;
    }

    .breadcrumb-section i {
        font-size: 0.75rem;
    }

    /* Scroll to Top Button Mobile */
    #scrollToTop {
        bottom: 1rem;
        right: 1rem;
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
}

/* Enhanced Social Media Buttons */
.footer-social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    backdrop-filter: blur(10px);
}

.footer-social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social-btn:hover {
    transform: translateY(-2px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer-social-btn:hover::before {
    opacity: 1;
}

.footer-social-btn i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.footer-social-btn:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

/* Individual Social Media Button Colors */
.footer-social-btn.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    border-color: #1877f2;
}

.footer-social-btn.twitter:hover {
    background: linear-gradient(135deg, #1da1f2, #42a5f5);
    border-color: #1da1f2;
}

.footer-social-btn.instagram:hover {
    background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
    border-color: #e4405f;
}

.footer-social-btn.youtube:hover {
    background: linear-gradient(135deg, #ff0000, #ff4444);
    border-color: #ff0000;
}

@media (max-width: 480px) {

    /* Extra Small Mobile Devices */
    .inquiry-hero h1 {
        font-size: 2rem;
    }

    .inquiry-hero p {
        font-size: 0.875rem;
    }

    .inquiry-form h2 {
        font-size: 1.25rem;
    }

    .inquiry-form .bg-white {
        padding: 1rem;
    }

    .tour-info-sidebar .bg-white {
        padding: 1rem;
    }

    .tour-info-sidebar img {
        height: 180px;
    }

    .inquiry-form input,
    .inquiry-form select,
    .inquiry-form textarea {
        padding: 0.625rem;
        font-size: 16px;
    }

    .inquiry-form button[type="submit"] {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .why-choose-section h2 {
        font-size: 1.5rem;
    }

    .why-choose-section .text-center.p-6 {
        padding: 1rem;
    }

    .breadcrumb-section .text-sm {
        font-size: 0.7rem;
    }

    /* Additional mobile improvements */
    .inquiry-form .space-y-6>*+* {
        margin-top: 1rem;
    }

    .inquiry-form .mt-6 {
        margin-top: 1rem;
    }

    .inquiry-form .mt-4 {
        margin-top: 0.75rem;
    }

    /* Mobile form message styling */
    .form-message {
        margin: 1rem;
        border-radius: 8px;
        font-size: 0.875rem;
    }

    /* Mobile scroll to top button improvements */
    #scrollToTop {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border: 2px solid white;
    }

    #scrollToTop:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
}

/* Newsletter Inspiration Section */
.newsletter-section {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: #ffffff;
    color: #0f172a;
}

.newsletter-card {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(2rem, 6vw, 2.75rem);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
}

.newsletter-copy h3 {
    font-size: clamp(1.75rem, 2.4vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
}

.newsletter-copy p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 420px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
}

.newsletter-input-group {
    position: relative;
    flex: 1 1 auto;
    min-width: 240px;
    max-width: 320px;
    display: flex;
    align-items: center;
}

.newsletter-input-group i {
    position: absolute;
    left: 1rem;
    color: rgba(100, 116, 139, 0.75);
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.25s ease;
}

.newsletter-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 3rem;
    padding: 0 1.25rem 0 3rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: #ffffff;
    color: #0f172a;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(100, 116, 139, 0.75);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.75);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    background: #ffffff;
}

.newsletter-input-group:focus-within i {
    color: rgba(14, 165, 233, 0.85);
}

.newsletter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.75rem;
    height: 3rem;
    border-radius: 9999px;
    border: none;
    background: linear-gradient(135deg, #f97316, #fb923c, #fde047);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.newsletter-button i {
    font-size: 1rem;
}

.newsletter-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 44px rgba(249, 115, 22, 0.3);
    filter: brightness(1.05);
}

.newsletter-button:focus-visible {
    outline: 3px solid rgba(56, 189, 248, 0.6);
    outline-offset: 3px;
}

.newsletter-form>* {
    flex-grow: 0;
}

@media (max-width: 1024px) {
    .newsletter-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
    }

    .newsletter-copy p {
        max-width: none;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 2.5rem 0;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
        padding: clamp(1.75rem, 7vw, 2.3rem);
        gap: 1.25rem;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .newsletter-input-group,
    .newsletter-button {
        width: 100%;
    }

    .newsletter-button {
        margin-top: 0.25rem;
    }
}

/* Ready to Explore Sri Lanka Section */
.ready-explore-section {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}


.ready-explore-section .container {
    position: relative;
    z-index: 2;
}

.ready-explore-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ready-explore-subtitle {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.ready-explore-button {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.ready-explore-button:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness for background */
@media (max-width: 768px) {
    .ready-explore-section {
        background-attachment: scroll !important;
        min-height: 250px;
    }
}