:root {
    --primary-color: #0066cc;      /* Sky blue – trust, calm, travel */
    --secondary-color: #ff6600;    /* Orange – energy, excitement */
    --accent-color: #00b894;       /* Teal – freshness, nature */
    --dark-color: #1e272e;         /* Dark grayish navy – professional */
    --light-color: #f5f9ff;        /* Very light blue – background */
    --text-color: #333333;         /* Main text color */
    --text-light: #7f8c8d;         /* Light text (for secondary info) */
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 60px;
    height: 60px;
    padding: 0 16px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    overflow: hidden;
    cursor: pointer;

    /* initially hidden */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: all 0.4s ease;
}

/* visible after load */
.whatsapp-float.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float:hover {
    width: 180px;
    border-radius: 30px;
}

.whatsapp-float i {
    font-size: 30px;
    color: #fff;
    flex-shrink: 0;
}

.whatsapp-text {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
}


/* Tour Card Secondary Button */
.tour-card .btn-secondary {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border-radius: 14px;
    margin-left: 10px;

    background: linear-gradient(
        135deg,
        #667eea,
        #764ba2,
        #4ecdc4,
        #667eea
    );
    background-size: 300% 300%;

    color: #fff;
    border: none;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    position: relative;
    overflow: hidden;
    cursor: pointer;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: btnGradientFlow 6s ease infinite;
}

/* Animated gradient flow */
@keyframes btnGradientFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Ripple glow effect */
.tour-card .btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Shine sweep */
.tour-card .btn-secondary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transform: rotate(25deg);
    transition: left 0.6s ease;
}

.tour-card .btn-secondary:hover::before {
    opacity: 1;
}

.tour-card .btn-secondary:hover::after {
    left: 130%;
}

/* Hover lift */
.tour-card .btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.45);
}

/* Button text */
.tour-card .btn-secondary .btn-text {
    position: relative;
    z-index: 2;
}

/* Button icon */
.tour-card .btn-secondary .btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

/* Icon motion */
.tour-card .btn-secondary:hover .btn-icon {
    transform: translateX(6px) rotate(360deg);
}

/* Active press */
.tour-card .btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 18px rgba(102, 126, 234, 0.35);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .tour-card .btn-secondary {
        animation: none;
        background-size: 100% 100%;
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .tour-card .btn-secondary {
        animation: none;
    }
    .tour-card .btn-secondary::after {
        display: none;
    }
}












































/* Common Styles for Terms, Privacy, and Other Pages */
.terms-container, 
.privacy-container,
.destinations-page,
.tours-page,
.contact-container,
.about-container,
.tour-detail-content {
    max-width: 1600px;
    margin: 15px auto;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Common Headers */
.terms-container h1,
.privacy-container h1,
.destinations-page h1,
.tours-page h1,
.contact-container h2,
.about-container h1,
.tour-detail-header h1,
.section-title {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.2rem;
    position: relative;
}

/* Common Subheaders */
.terms-container h2,
.privacy-container h2,
.destinations-page h2,
.tours-page h2,
.about-section h2,
.tab-content h2 {
    color: #e74c3c;
    margin-top: 25px;
    font-size: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* Common Content Styles */
.terms-container p, 
.terms-container ul,
.privacy-container p, 
.privacy-container ul,
.destinations-page p,
.tours-page p,
.about-section p,
.tab-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

/* Common List Styles */
.terms-container ul,
.privacy-container ul {
    padding-left: 20px;
}

.terms-container li,
.privacy-container li {
    margin-bottom: 8px;
}

/* Last Updated Style */
.last-updated {
    text-align: right;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .terms-container,
    .privacy-container,
    .destinations-page,
    .tours-page,
    .contact-container,
    .about-container,
    .tour-detail-content {
        padding: 20px;
        margin: 20px;
    }
    
    .terms-container h1,
    .privacy-container h1,
    .destinations-page h1,
    .tours-page h1,
    .contact-container h2,
    .about-container h1,
    .tour-detail-header h1,
    .section-title {
        font-size: 1.8rem;
    }
}

/* Unique navigation item styling */
.custom-nav-item.holiday-nav {
    position: relative;
    margin: 0 10px;
}

.custom-nav-item.holiday-nav:hover .custom-dropdown-content.holiday-dropdown {
    display: block;
}

/* Unique nav link styling */
.custom-nav-link.holiday-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.custom-nav-link.holiday-link:hover {
    background: linear-gradient(to right, #e9ecef, #dee2e6);
    color: #e74c3c;
}

.custom-nav-link.holiday-link i:first-child {
    margin-right: 8px;
    color: #3498db;
}

.custom-nav-link.holiday-link i:last-child {
    margin-left: 8px;
    font-size: 0.8em;
    transition: transform 0.3s;
}

.custom-nav-item.holiday-nav:hover .custom-nav-link.holiday-link i:last-child {
    transform: rotate(180deg);
}

/* Unique dropdown styling for Holidays*/
.custom-dropdown-content.holiday-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 0 0 5px 5px;
    z-index: 1000;
    border-top: 3px solid #3498db;
}

.custom-dropdown-content.holiday-dropdown a {
    display: block;
    padding: 10px 15px;
    color: #34495e;
    text-decoration: none;
    border-bottom: 1px solid #ecf0f1;
    transition: all 0.2s;
}

.custom-dropdown-content.holiday-dropdown a:hover {
    background-color: #f8f9fa;
    color: #e74c3c;
    padding-left: 20px;
}

.custom-dropdown-content.holiday-dropdown a:last-child {
    border-bottom: none;
}

/* Hero Slider Styles */
.hero-slider,
.tours-hero {
    position: relative;
    height: 80vh;
    min-height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    transition: background-image 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease-in;
    margin-bottom: 3rem;
    z-index: 1;
}

    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .slide.active {
        opacity: 10;
    }
    
    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    }

    /* Slider Controls */
    .slider-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        padding: 15px;
        font-size: 24px;
        cursor: pointer;
        transition: background 0.3s;
    }
    
    .slider-control:hover {
        background: rgba(0,0,0,0.8);
    }
    
    .prev {
        left: 20px;
    }
    
    .next {
        right: 20px;
    }
    
    /* Slider Indicators */
    .slider-indicators {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        display: flex;
        gap: 10px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        cursor: pointer;
        transition: background 0.3s;
    }
    
    .indicator.active {
        background: white;
    }


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

.hero-slider::before,
.tours-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 0 10px;
    max-width: 900px;
    margin: 0 auto;
    animation: slideUp 0.8s ease-out;
}

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

.hero-content h2,
.tours-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    padding: 10px 10px;
    background-color: #27ae60;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color, #ff6b6b);
}

.btn-primary:hover {
    background: #f6ad55;
    color: var(--primary-color, #ff6b6b);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Common Button Styles */
.btn-custom {
    display: inline-block;
    padding: 12px 25px;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
}

/* Enquiry Button (Primary Style) */
.btn-enquiry {
    background: var(--primary-color, #ff6b6b);
    border: 2px solid var(--primary-color, #ff6b6b);
}

.btn-enquiry:hover {
    background: transparent;
    color: var(--primary-color, #ff6b6b);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Call Button (Secondary Style) */
.btn-call {
    background: var(--secondary-color, #3d5afe);
    border: 2px solid var(--secondary-color, #3d5afe);
    margin-left: 10px;
}

.btn-call:hover {
    background: transparent;
    color: var(--secondary-color, #3dfe77);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Container Styling for Responsiveness */
.cta-buttons-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

/* Responsive Button Sizing */
@media (max-width: 400px) {
    .btn-custom {
        width: 100%;
        text-align: center;
        padding: 10px 10px;
        font-size: 1rem;
    }
}



/* Contact Us Page Styles */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1 1 45%;
}

.contact-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-info i {
    color: #e74c3c;
    margin-right: 10px;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form form button {
    padding: 12px 30px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form form button:hover {
    background: #c0392b;
}

.map {
    margin-top: 30px;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

/* About Us Page Styles */
.about-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: rgb(235, 177, 101);
}

.about-header p {
    font-size: 18px;
    color: #555;
}

.about-section {
    margin-top: 30px;
}

.about-section p {
    line-height: 1.8;
    color: #444;
    font-size: 16px;
}

.image-box {
    margin-top: 30px;
    text-align: center;
}

.image-box img {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
}

/* Tours Page Specific Styles */
.tours-filter {
    background: white;
    padding: 2rem 0;
    box-shadow: var(--shadow);
    position: relative;
    top: 0px;
    z-index: 100;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.filter-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Tours Section */
.tours-section {
    margin-top: 30px;
}
/* Tours Details Page Styles */
.tour-detail-header {
    height: 75vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: white;
    padding-bottom: 60px;
    margin-top: 5px;
}

.tour-detail-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.tour-detail-header .location {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.tour-detail-header .location i {
    margin-right: 8px;
}

/* Default desktop layout */
.tour-main {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 30px;
    margin-bottom: 50px;
}

.tour-content-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


/* Mobile Layout - Highlights above slider */
@media (max-width: 768px) {
    .tour-main {
        grid-template-columns: 100%;
        /* Create explicit grid rows for ordering */
        grid-template-areas: 
            "highlights"
            "content";
    }

    .tour-highlights {
        grid-area: highlights; /* Force highlights to top */
        position: static !important; /* Remove sticky behavior */
        margin-bottom: 20px; /* Add spacing */
    }

    .tour-content-left {
        grid-area: content; /* Content comes after highlights */
    }
}

.tour-gallery {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 400px;
    position: relative;
}

.gallery-slideshow {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.gallery-slideshow img.active {
    opacity: 1;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.gallery-arrow:hover {
    background-color: rgba(0,0,0,0.8);
}

.gallery-arrow.prev {
    left: 20px;
}

.gallery-arrow.next {
    right: 20px;
}

.gallery-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.gallery-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-nav-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.tour-highlights {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 20px;
    align-self: start;
}

.tour-highlights h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.tour-highlights ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.tour-highlights ul li {
    padding: 2px 0;
    position: relative;
    padding-left: 30px;
}

.tour-highlights ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}


.price-box {
    text-align: center;
    padding: 1px;
    background-color: #264653;
    border-radius: 20px;
    color: white;
    height: 150px;
}

.price-box .price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #e9c46a;
}

.price-box .per-person {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    color: #e9c46a;
}

.details-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    transition: var(--transition);
}

.tab-btn:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active:after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.itinerary-day {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.itinerary-day:last-child {
    border-bottom: none;
}

.itinerary-day h4 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.itinerary-day h4:before {
    content: '\f274';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--secondary-color);
}

.inclusions-exclusions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.inclusions ul, .exclusions ul {
    list-style: none;
    padding: 0;
}

.inclusions ul li, .exclusions ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.inclusions ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.exclusions ul li:before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #e63946;
    position: absolute;
    left: 0;
}

.related-tours {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: white;
    font-size: 16px;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-2px);
}


.cta-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
}



.btn-secondary {
    padding: 6px 15px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    position: absolute;
    right: 10px; /* Move to the right edge */
    bottom: 10px; /* Optional: adjust vertical position */
}

.btn-secondary:hover {
    background-color: #27ae60;
}



@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #000;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.btn-submit {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 14px 20px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background-color: #0055aa;
}

.btn-submit.loading {
    position: relative;
    pointer-events: none;
}

.btn-submit.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.form-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}
    
    .social-icons {
        justify-content: center;
    }
    
    .tour-detail-header h1 {
        font-size: 2.2rem;
    }
    
    .tour-meta {
        grid-template-columns: 1fr;
    }
    
    .details-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    

    
    .hero-content h2,
    .tours-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }

    .tour-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .tour-badge.popular {
        right: 80px;
    }

    .tour-badge.trending {
        right: 150px;
    }

@media (max-width: 576px) {
    .hero-slider,
    .tours-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content h2,
    .tours-hero .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

    .tour-badge.popular,
    .tour-badge.trending {
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-detail-header {
        height: 50vh;
        padding-bottom: 40px;
    }
}

