/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbar for Chrome, Safari, and Edge */
html {
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer and Edge */
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
html::-webkit-scrollbar {
    display: none;
}

/* Alternatively, apply to body if you want to target body specifically */
body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer and Edge */
}

body::-webkit-scrollbar {
    display: none;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Header Styles */
      /* .top-bar {
            background: linear-gradient(135deg, #4A90E2 0%, #87CEEB 100%);
            padding: 6px 0;
            color: white;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            flex-wrap: wrap;
        } */

.social-icons a {
    color: white;
    margin: 0 8px;
    font-size: 18px;
    transition: transform 0.3s;
}

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

.contact-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
}

.contact-info span {
    margin: 0 5px;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%234A90E2" width="1200" height="600"/><path fill="%2387CEEB" d="M0 400 Q300 350 600 400 T1200 400 V600 H0 Z"/><circle fill="%23FFD700" cx="100" cy="100" r="50"/><rect fill="%23FFF" x="800" y="150" width="200" height="250" opacity="0.8"/><rect fill="%23FFF" x="850" y="100" width="100" height="300" opacity="0.8"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(74,144,226,0.3) 0%, rgba(135,206,235,0.3) 100%);
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 20px;
}

.search-box {
    background: white;
    padding: 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: floatUp 1s ease-out;
}

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

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px 20px;
    font-size: 16px;
}

.search-box button {
    background: linear-gradient(135deg, #4A90E2 0%, #87CEEB 100%);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.search-box button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(74,144,226,0.5);
}

/* Floating Elements */
.float-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.umbrella1 { top: 20%; left: 10%; font-size: 40px; animation-delay: 0s; }
.umbrella2 { top: 30%; right: 15%; font-size: 35px; animation-delay: 2s; }
.plane { top: 15%; right: 25%; font-size: 45px; animation-delay: 1s; }

/* Explore Section */
.explore-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.explore-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    animation: slideDown 0.8s ease-out;
}

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

.explore-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4A90E2, #87CEEB);
    border-radius: 2px;
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row by default */
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .services-grid-home {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablets */
    }
}

@media (max-width: 600px) {
    .services-grid-home {
        grid-template-columns: 1fr; /* 1 card per row on mobile */
    }
}
.contact-section {
    padding: 80px 20px;
    background: #F9FAFB;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #555;
    font-size: 1rem;
    margin-bottom: 40px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-form button {
    background:#265080;
    border: none;
    margin-top: 20px;
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(74,144,226,0.5);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group.full-width {
    grid-column: span 2;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #0078ff;
    outline: none;
}

.submit-btn {
    margin-top: 25px;
    background: #0078ff;
    color: #fff;
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    /* transition: background 0.3s ease; */
    transform: none !important;
}

/* .submit-btn:hover {
    background: #005fcc;
} */
 .submit-btn:hover,
.submit-btn-new:hover {
    transform: none !important;
    background: linear-gradient(135deg, #3a7bd5 0%, #5eb9e4 100%) !important;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}


.service-card-home {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74,144,226,0.1), transparent);
    transition: left 0.5s;
}

.service-card-home:hover::before {
    left: 100%;
}

.service-card-home:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(74,144,226,0.3);
}

.service-card-home i {
    font-size: 60px;
    color: #4A90E2;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-card-home:hover i {
    transform: scale(1.2) rotate(10deg);
}

.service-card-home h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.service-card-home p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Destinations Section */
.destinations {
    padding: 80px 20px;
    background: linear-gradient(135deg, #8291a1 0%, #87CEEB 100%) !important;
    color: white;
}

.destinations h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.dest-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
    display: block;
}

.dest-card:hover img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px;
    transform: translateY(10px);
    transition: transform 0.3s;
}

.dest-card:hover .dest-overlay {
    transform: translateY(0);
}

/* Contact Section */
.contact-section-form {
    padding: 80px 20px;
    background: #b1cde8;
}

.contact-section h2 {
    text-align: center;
    font-size: 52px;
    margin-bottom: 60px;
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.contact-card i {
    font-size: 50px;
    color: #4A90E2;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #87CEEB;
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37,211,102,0.5);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.whatsapp-float:hover {
    transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
    }

    .nav-items {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .search-box {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
    }

    .search-box input {
        margin-bottom: 10px;
        text-align: center;
    }

    /* Match textarea with input field styles */
.form-group textarea {
    width: 100%;
    
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    resize: none; /* prevent manual resizing for cleaner layout */
    height: 65px; /* same as input height */
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group textarea:focus {
    border-color: #007bff; /* highlight color on focus */
    outline: none;
}

    .search-box button {
        width: 100%;
    }

    .explore-section h2, .destinations h2, .contact-section h2 {
        font-size: 42px;
    }
}

 .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100%;
            object-fit: fill; 
            overflow: hidden;
            z-index: 0;
        }

        .video-background iframe {
            position: absolute;
            top: 50%;
            object-fit: fill; 
            left: 50%;
            width: 10 !important;
            height: 100vh;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

@media (min-width: 769px) and (max-width: 1024px) {

    .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100%;
            object-fit: fill; 
            overflow: hidden;
            z-index: 0;
        }

        .video-background iframe {
            position: absolute;
            top: 50%;
            object-fit: fill; 
            left: 50%;
            width: 10 !important;
            height: 300vh;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
    
    .nav-items {
        gap: 5px;
    }

    .nav-item {
        padding: 10px 15px;
        min-width: 70px;
    }

    .nav-item i {
        font-size: 20px;
    }

    .nav-item span {
        font-size: 11px;
    }

    .top-bar-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .contact-info {
        font-size: 13px;
    }
}

@media (min-width: 1025px) {
    .nav-items {
        gap: 15px;
    }

    .nav-item {
        padding: 12px 20px;
    }
}