/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Accessibility */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    background: #fff;
    color: #000;
    font-weight: 700;
    left: 50%;
    padding: 4px;
    position: absolute;
    transform: translateY(-100%);
    transition: transform 0.3s;
}

.skip-link:focus {
    transform: translateY(0%);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    height: 75px;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    display: block;
}

.nav-menu li a:hover {
    color: #3498db;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    z-index: 1001;
}

.nav-toggle:hover {
    color: #3498db;
}

/* Modern Glassmorphism Booking Form Styles */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 60px;
}

.hero-headline {
    color: #fff;
    font-size: 4.5rem;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    max-width: 90%;
    width: 100%;
    padding: 0 20px;
    z-index: 3;
    position: relative;
}

.hero-headline strong {
    display: block;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 3rem;
        margin: 80px auto 0;
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-headline strong {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
        padding: 0 10px;
        max-width: 100%;
        margin: 60px auto 0;
    }

    .hero-headline strong {
        font-size: 28px;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .booking-form {
        background: #fff;
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        max-width: 1000px;
        margin: 24px auto;
    }

    .form-row {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    /* Make pickup, interchange, and dropoff share the first column space */
    .form-group:nth-child(1) {
        grid-column: 1 / span 2;
    }

    .interchange-btn {
        grid-column: 3 / span 1;
        background: rgba(255, 255, 255, 0.9);
        color: #333;
        border: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
        margin: 0 auto;
    }

    .form-group:nth-child(3) {
        grid-column: 4 / span 2;
    }

    .form-group:nth-child(4),
    .form-group:nth-child(5),
    .form-group:nth-child(6) {
        grid-column: span 2;
    }

    .whatsapp-btn {
        margin-top: 12px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .booking-form {
        position: relative;
        z-index: 3;
        background: rgba(0,0,0,0.75);
        padding: 16px;
        margin-top: auto;
    }

    .form-row {
        flex-direction: column;
    }

    .location-group {
        flex-direction: column;
        width: 100%;
    }
    
    .location-group .form-group {
        width: 100%;
    }
    
    .interchange-btn {
        margin: -4px 0;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        height: 44px;
        background: #fff;
        border: none;
        border-radius: 8px;
        padding: 0 16px;
        font-size: 16px;
        color: #333;
    }

    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
        padding-right: 40px;
    }

    .whatsapp-btn {
        width: 100%;
        height: 44px;
        margin-top: 8px;
        background: #25D366;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Remove focus styles on mobile */
    .form-group input:focus,
    .form-group select:focus,
    .whatsapp-btn:focus {
        outline: none;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
        margin-right: 100px;
    }

    .booking-form {
        padding: 12px;
    }
}

/* Destinations Section */
.destinations {
    padding: 80px 20px;
    background: #f8f9fa;
}

.destinations h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.5em;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.search-container input {
    width: 100%;
    height: 60px;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-container input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.1);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: white;
    display: none; /* Hide all cards by default */
}

.destination-card.visible {
    display: block; /* Show cards with visible class */
    animation: fadeIn 0.5s ease forwards;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-image img.lazy-image {
    opacity: 0;
}

.destination-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay p {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.book-now-btn {
    background: #4a90e2;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.book-now-btn:hover {
    background: #357abd;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    margin: 0 0 10px;
    color: #333;
    font-size: 1.5em;
}

.stars {
    color: #ffd700;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .destination-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .destination-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}

/* Animation for cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destination-card {
    animation: fadeIn 0.5s ease forwards;
}

.destination-card:nth-child(2) {
    animation-delay: 0.1s;
}

.destination-card:nth-child(3) {
    animation-delay: 0.2s;
}

.destination-card:nth-child(4) {
    animation-delay: 0.3s;
}

.destination-card:nth-child(5) {
    animation-delay: 0.4s;
}

.destination-card:nth-child(6) {
    animation-delay: 0.5s;
}

/* Activities Section */
.activities {
    padding: 5rem 5%;
    background: #f9f9f9;
}

.activities h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: #f8f9fa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about {
        padding: 60px 15px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

/* Contact Section Styles */
.contact {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 15px;
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: #007bff;
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.info-item p {
    color: #666;
    line-height: 1.5;
}

.info-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #007bff;
}

.social-links {
    margin-top: 30px;
}

.social-links h3 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    max-width: 95%;
    width: 600px;
    margin: 1rem auto 5px;
    padding: 24px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: rgb(233 233 233 / 90%);
    font-size: 0.95rem;
    color: #333;
    border: none;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

/* Remove default validation styling */
.contact-form input:invalid,
.contact-form select:invalid,
.contact-form textarea:invalid {
    box-shadow: none;
    border-color: #ddd;
    height: 40px;
}

/* Custom validation styling */
.contact-form input:focus:invalid,
.contact-form select:focus:invalid,
.contact-form textarea:focus:invalid {
    border-color: #ddd;
    box-shadow: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.95);
}

/* Remove default webkit appearance */
.contact-form input,
.contact-form select,
.contact-form textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Custom select arrow */
.contact-form select {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.9);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    background-color: #f8f9fa;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Checkbox styles */
.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    margin: 1rem 0;
    gap: 0.75rem;
}

.privacy-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2.5px solid #333;
    border-radius: 4px;
    margin: 0;
    cursor: pointer;
    position: relative;
    background-color: #e9e9e9;
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px #333;
}

.privacy-checkbox input[type="checkbox"]:checked {
    background-color: #333;
}

.privacy-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 18px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.privacy-checkbox input[type="checkbox"]:focus {
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px #333;
}

.privacy-checkbox label {
    cursor: pointer;
    user-select: none;
    font-size: 1rem;
    padding-top: 3px;
    color: #333;
}

.privacy-checkbox label a {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
}

.privacy-checkbox label a:hover {
    text-decoration: underline;
}

/* WhatsApp Button in Contact Form */
.contact-form .whatsapp-btn {
    width: 100%;
    padding: 14px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.contact-form .whatsapp-btn:hover {
    background: #22c35e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.contact-form .whatsapp-btn i {
    font-size: 20px;
}

/* Form Validation Styles */
.contact-form input:invalid + .error-message,
.contact-form select:invalid + .error-message,
.contact-form textarea:invalid + .error-message {
    display: block;
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #007bff;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #007bff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #007bff;
    transform: translateX(5px);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.social-links h3,
.newsletter h3 {
    color: #fff;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #333;
    color: #fff;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 12px 25px;
    background: #007bff;
    height: 50px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #0056b3;
}

.footer-legal {
    padding-top: 20px;
    text-align: center;
}

.legal-links {
    margin-bottom: 15px;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #007bff;
}

.copyright {
    color: #999;
    font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .legal-links a {
        display: block;
        margin: 10px 0;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #3498db;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.scroll-top:hover {
    background: #2980b9;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        margin-left: auto;
        align-items: center;
        justify-content: flex-end;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem;
        transition: all 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }

    .carousel-caption h2 {
        font-size: 2rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

.booking-form-premium form {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.booking-form-premium .form-group {
    flex: 1 1 120px;
    min-width: 120px;
    position: relative;
}

.booking-form-premium .whatsapp-btn {
    width: 220px;
    margin-top: 0;
    align-self: stretch;
}

@media (max-width: 900px) {
    .booking-form-premium form {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }
    .booking-form-premium .whatsapp-btn {
        width: 100%;
        margin-top: 0.8rem;
    }
}

@media (max-width: 900px) {
  .why-cards,
  .testimonial-cards {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .why-cards,
  .testimonial-cards {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
}

/* See More/Less Buttons */
.see-more-container {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.see-more-btn, .see-less-btn {
    background-color: #4a90e2;
    color: white;
    width: 70px;
    height: 60px;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.see-more-btn.visible, .see-less-btn.visible {
    display: inline-flex !important;
}

.see-more-btn:hover, .see-less-btn:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.see-more-btn:active, .see-less-btn:active {
    transform: translateY(1px);
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .see-more-container {
        padding: 0 1rem;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .see-more-btn, .see-less-btn {
        width: 100%;
        height: 50px;
        max-width: 300px;
        margin: 0.5rem 0;
        padding: 15px 30px;
        font-size: 1rem;
    }

    .see-more-btn.visible, .see-less-btn.visible {
        display: flex !important;
        height: 50px;
    }
}

/* Hidden Cards */
.destination-card.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.destination-card:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure smooth animations on mobile */
@media (prefers-reduced-motion: no-preference) {
    .destination-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .card-image img {
        transition: transform 0.5s ease, opacity 0.3s ease;
    }
}

/* Booking Form Styles */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.location-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 2;
}

.form-group {
    flex: 1;
}

.location-group .form-group {
    flex: 1;
}

.interchange-btn {
    background: linear-gradient(135deg, #25D366, #0088cc);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.2);
}

.interchange-btn:hover {
    background: linear-gradient(135deg, #0088cc, #25D366);
    transform: rotate(180deg);
    box-shadow: 0 4px 8px rgba(0, 136, 204, 0.3);
}

.interchange-btn i {
    font-size: 14px;
    color: #fff;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .location-group {
        flex-direction: column;
        width: 100%;
    }
    
    .location-group .form-group {
        width: 100%;
    }
    
    .interchange-btn {
        margin: -4px 0;
    }
}

/* Animation for interchange */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.interchange-btn.rotating i {
    animation: rotate 0.5s ease;
}

/* Policy Pages Styles */
.policy-section {
    padding: 80px 20px 40px;
    min-height: 100vh;
    background: #f8f9fa;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.policy-container h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}

.policy-content {
    color: #444;
    line-height: 1.6;
}

.policy-content h2 {
    color: #333;
    font-size: 1.8rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.policy-content h3 {
    color: #444;
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.policy-content p {
    margin-bottom: 20px;
}

.policy-content ul, 
.policy-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-content li {
    margin-bottom: 10px;
}

.policy-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 15px 30px;
    }

    .policy-container {
        padding: 25px;
    }

    .policy-container h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 1200px) {
    .hero-headline { font-size: 2.5rem; }
}
@media (max-width: 900px) {
    .hero-section, .hero-bg-carousel, .hero-bg-carousel .bg-image, .hero-overlay {
        min-height: 45vh;
    }
    .hero-headline { font-size: 2rem; }
    .hero-content { min-height: 120px; }
}
@media (max-width: 600px) {
    .hero-section, .hero-bg-carousel, .hero-bg-carousel .bg-image, .hero-overlay {
        min-height: 32vh;
    }
    .hero-headline { font-size: 1.3rem; margin-top: 20px; margin-bottom: 14px; }
    .hero-content { min-height: 80px; }
}

@media (max-width: 900px) and (min-height: 700px) {
    .hero-headline {
        font-size: 1.6rem;
        margin-bottom: 32px;
    }
    .booking-form {
        margin-top: 12px !important;
    }
}

@media (max-width: 900px) {
    .booking-form {
        margin-top: 8px !important;
    }
}

/* Hero bottom content layout */
.hero-bottom-content {
    position: relative;
    z-index: 3;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding-bottom: 32px;
    margin-top: 0;
}

.hero-headline {
    margin-bottom: 24px;
    margin-top: 120px;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0,0,0,0.4);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    max-width: 900px;
    width: 90vw;
}

.booking-form {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    max-width: 95%;
    width: 600px;
    margin: 1rem auto 5px;
    padding: 24px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.form-group {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none !important;
    outline: none !important;
    background: rgb(233 233 233 / 90%);;
    font-size: 0.95rem;
    color: #333;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

/* Remove any hover/focus effects that might add shadows */
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.95);
}

/* Ensure the select dropdown has the same styling */
.form-group select {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.9);
}

.whatsapp-btn {
    width: 100%;
    height: 40px;
    padding: 12px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #22c35e;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .booking-form {
        padding: 16px;
        border-radius: 12px;
        max-width: 95%;
        margin: 0.5rem auto 5px auto;
    }

    .form-row {
        flex-direction: column;
        gap: 8px;
    }

    .form-group {
        flex: 1 1 100%;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 1rem;
    }

    .whatsapp-btn {
        padding: 12px;
        font-size: 1rem;
        margin-top: 4px;
    }
}

@media (max-width: 480px) {
    .booking-form {
        padding: 12px;
        border-radius: 10px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px;
    }
}

/* Ensure box-sizing for all form elements */
.booking-form, .booking-form * {
  box-sizing: border-box;
}

/* Add keyframes for the slide transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Complete reset for form elements */
*:focus {
    outline: 0 !important;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none !important;
}

/* Reset all form elements */
input,
select,
textarea,
button,
.form-group input,
.form-group select,
.form-group textarea {
    border: 0 !important;
    outline: 0 !important;
    background: #e9e9e9;
    width: 100%;
    height: 80px;
    font-size: 1rem;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    box-shadow: none !important;
}

/* Form container styles */
.booking-form {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    max-width: 95%;
    width: 600px;
    margin: 1rem auto 5px;
    padding: 24px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Form group styles */
.form-group {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

/* Input and select styles */
.form-group input,
.form-group select {
    width: 100%;
    height: 40px;
    padding: 12px;
    border-radius: 8px;
    background: rgb(233 233 233 / 90%);
    font-size: 0.95rem;
    color: #333;
    margin: 0;
}

/* Remove any focus/hover effects */
.form-group input:focus,
.form-group select:focus,
.form-group input:hover,
.form-group select:hover {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.95);
}

/* Remove fieldset borders if they exist */
fieldset {
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0;
}

/* Remove legend styles if they exist */
legend {
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove select arrow */
select::-ms-expand {
    display: none;
}

.error-message {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
    padding-left: 2px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545 !important;
    background-color: #fff !important;
}

.privacy-checkbox.error input[type="checkbox"] {
    border-color: #dc3545;
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px #dc3545;
}

.privacy-checkbox.error .error-message {
    margin-left: 2.5rem;
}

/* Notification styles for form errors */
.notification.error {
    background-color: #dc3545;
    color: white;
    border-left: none;
    padding: 15px 25px;
}

.notification.error i {
    color: white;
}

/* Improve date input styling */
input[type="date"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Mobile optimizations for date input */
@media (max-width: 768px) {
    input[type="date"] {
        font-size: 16px;
        padding: 15px;
        min-height: 48px; /* Larger touch target */
        -webkit-tap-highlight-color: transparent;
    }

    input[type="date"]::-webkit-calendar-picker-indicator {
        width: 24px;
        height: 24px;
        padding: 8px;
        margin-right: 4px;
    }
}

/* Destination Card Highlight Effect */
@keyframes highlightCard {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
}

.destination-card.highlight {
    animation: highlightCard 2s ease-in-out;
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 15px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }

    .contact-form-container {
        padding: 20px 15px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        margin: 0;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 10px;
    }
    
    .contact-container {
        gap: 20px;
    }

    .contact-form-container {
        padding: 15px 10px;
    }

    .contact-form {
        padding: 10px;
    }
} 