﻿ 
:root {
    --primary: #0066cc;
    --primary-dark: #004d99;
    --primary-light: #4d94ff;
    --secondary: #ff6b6b;
    --secondary-dark: #ff5252;
    --accent: #00cc99;
    --accent-dark: #00b386;
    --dark: #1a1a2e;
    --darker: #16213e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #ffa726 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    --shadow: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 25px 50px rgba(0,0,0,0.15);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.9rem;
}

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: var(--gradient-secondary);
        transition: var(--transition);
        z-index: -1;
    }

    .btn:hover::before {
        width: 100%;
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

.btn-secondary {
    background: var(--gradient-secondary);
}

    .btn-secondary::before {
        background: var(--gradient);
    }

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

    .btn-outline:hover {
        background: var(--primary);
        color: var(--white);
    }

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

    .section-header h2 {
        font-size: 3.2rem;
        margin-bottom: 20px;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        display: inline-block;
    }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }

    .section-header p {
        color: var(--gray);
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
    }

/* Redesigned Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.logoimg
{
    width:200px;
  
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .logo span {
        color: var(--secondary);
    }

    .logo i {
        font-size: 1.6rem;
    }

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

    .nav-links li a {
        font-weight: 500;
        transition: var(--transition);
        position: relative;
        padding: 10px 0;
    }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient);
            transition: var(--transition);
            border-radius: 2px;
        }

        .nav-links li a:hover {
            color: var(--primary);
        }

            .nav-links li a:hover::after {
                width: 100%;
            }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .nav-cta .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* Redesigned Hero Slider - Smaller and behind text */
.hero {
    position: relative;
    padding: 160px 0 60px;
    overflow: hidden;
    color: var(--white);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 204, 153, 0.9) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Slider Styles - Smaller Size and positioned behind */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
    height: 100%;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slider-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 1;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

    .slider-dot.active {
        background: var(--white);
        transform: scale(1.2);
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
}

    .slider-arrow:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

/* Search Form - Moved Below Slider */
.search-section {
    padding: 60px 0 40px;
    background: var(--light);
}

.search-form {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

    .search-form h3 {
        margin-bottom: 20px;
        color: var(--primary);
        text-align: center;
    }

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--dark);
        font-size: 0.9rem;
    }

    .form-group input, .form-group select {
        padding: 10px 12px;
        border: 1px solid var(--gray-light);
        border-radius: 8px;
        font-family: 'Poppins', sans-serif;
        transition: var(--transition);
        font-size: 0.9rem;
    }

        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }

.search-btn {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Search Results */
.search-results {
    max-width: 1200px;
    margin: 40px auto 0;
    display: none;
}

    .search-results.active {
        display: block;
    }

    .search-results h3 {
        margin-bottom: 20px;
        color: var(--primary);
        text-align: center;
    }

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.result-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .result-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

.result-img {
    height: 160px;
    overflow: hidden;
}

    .result-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.result-card:hover .result-img img {
    transform: scale(1.05);
}

.result-content {
    padding: 15px;
}

    .result-content h4 {
        margin-bottom: 8px;
        color: var(--dark);
        font-size: 1.1rem;
    }

    .result-content p {
        color: var(--gray);
        margin-bottom: 10px;
        font-size: 0.85rem;
    }

.result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Destinations Section with Carousel */
.destinations {
    position: relative;
}

.destinations-carousel {
    position: relative;
    overflow: hidden;
}

.destinations-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    padding: 10px 0;
}

.destination-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    min-width: calc(33.333% - 20px);
    flex-shrink: 0;
}

    .destination-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.destination-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

    .destination-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.destination-card:hover .destination-img img {
    transform: scale(1.1);
}

.destination-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.destination-content {
    padding: 20px;
}

    .destination-content h3 {
        margin-bottom: 10px;
        color: var(--dark);
        font-size: 1.4rem;
    }

    .destination-content .location {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--gray);
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .destination-content p {
        color: var(--gray);
        margin-bottom: 15px;
        font-size: 0.95rem;
    }

.destination-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.destination-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary);
    font-size: 0.9rem;
}

.destination-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

    .destination-price span {
        font-size: 0.85rem;
        color: var(--gray);
        font-weight: 400;
    }

.destinations-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.destination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
}

    .destination-dot.active {
        background: var(--primary);
        transform: scale(1.2);
    }

.destinations-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 10;
}

    .destinations-arrow:hover {
        background: var(--primary);
        color: var(--white);
    }

    .destinations-arrow.prev {
        left: -20px;
    }

    .destinations-arrow.next {
        right: -20px;
    }

/* Services Section */
.services {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: var(--gradient);
        transition: var(--transition);
        z-index: -1;
    }

    .service-card:hover::before {
        height: 100%;
    }

    .service-card:hover {
        transform: translateY(-8px);
        color: var(--white);
    }

        .service-card:hover .service-icon {
            background: var(--white);
            color: var(--primary);
        }

        .service-card:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: var(--transition);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--gray);
    transition: var(--transition);
    font-size: 0.95rem;
}

/* Testimonials Section with Carousel */
.testimonials {
    position: relative;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    background: var(--white);
    padding: 35px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    min-width: 100%;
}

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 15px;
        right: 25px;
        font-size: 4rem;
        color: var(--primary);
        opacity: 0.2;
        font-family: Georgia, serif;
    }

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray);
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

    .author-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.85rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
}

    .testimonial-dot.active {
        background: var(--primary);
        transform: scale(1.2);
    }

.testimonials-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 10;
}

    .testimonials-arrow:hover {
        background: var(--primary);
        color: var(--white);
    }

    .testimonials-arrow.prev {
        left: 3px;
    }

    .testimonials-arrow.next {
        right: 10px;
    }

/* Deals Section with Carousel */
.deals {
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
}

    .deals .section-header h2 {
        background: var(--gradient-secondary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.deals-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.deals-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.deal-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    min-width: calc(100% / 3);
    margin: 0 15px;
}

    .deal-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.15);
    }

.deal-img {
    height: 180px;
    overflow: hidden;
}

    .deal-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.deal-card:hover .deal-img img {
    transform: scale(1.1);
}

.deal-content {
    padding: 20px;
}

    .deal-content h3 {
        margin-bottom: 10px;
        font-size: 1.3rem;
    }

    .deal-content p {
        margin-bottom: 12px;
        opacity: 0.8;
        font-size: 0.9rem;
    }

.deal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.deal-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

    .deal-price span {
        font-size: 0.95rem;
        text-decoration: line-through;
        opacity: 0.7;
        margin-left: 8px;
    }

.deal-countdown {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px;
    border-radius: 6px;
    text-align: center;
    min-width: 45px;
}

.countdown-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.65rem;
    opacity: 0.8;
}

.deals-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.deal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

    .deal-dot.active {
        background: var(--white);
        transform: scale(1.2);
    }

.deals-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

    .deals-arrow:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .deals-arrow.prev {
        left: 10px;
    }

    .deals-arrow.next {
        right: 10px;
    }

/* Newsletter Section */
.newsletter {
    background: var(--gradient);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .newsletter::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    }

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 35px;
    opacity: 0.9;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .newsletter-form input {
        flex: 1;
        padding: 15px 20px;
        border: none;
        background: transparent;
        outline: none;
        color: var(--white);
        font-size: 0.95rem;
    }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.8);
        }

    .newsletter-form button {
        background: var(--white);
        color: var(--primary);
        border: none;
        padding: 0 25px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        font-size: 0.9rem;
    }

        .newsletter-form button:hover {
            background: var(--secondary);
            color: var(--white);
        }

/* Footer */
footer {
    background: var(--darker);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

    .footer-col h3::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 35px;
        height: 3px;
        background: var(--gradient-secondary);
        border-radius: 2px;
    }

.footer-col p {
    color: #94a3b8;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

    .footer-col ul li a {
        color: #94a3b8;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
    }

        .footer-col ul li a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: var(--transition);
    }

        .social-links a:hover {
            background: var(--gradient);
            transform: translateY(-3px);
        }

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
    animation: float 15s infinite linear;
}

    .floating-element:nth-child(1) {
        width: 80px;
        height: 80px;
        top: 10%;
        left: 5%;
        animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
        width: 120px;
        height: 120px;
        top: 60%;
        left: 10%;
        animation-delay: 2s;
    }

    .floating-element:nth-child(3) {
        width: 70px;
        height: 70px;
        top: 30%;
        right: 10%;
        animation-delay: 4s;
    }

    .floating-element:nth-child(4) {
        width: 100px;
        height: 100px;
        top: 70%;
        right: 5%;
        animation-delay: 6s;
    }

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .deal-card {
        min-width: calc(100% / 2);
    }

    .destination-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 80px 0;
    }

    .mobile-menu {
        display: block;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 30px 25px;
        z-index: 999;
        gap: 20px;
    }

        nav.active {
            left: 0;
        }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .nav-cta {
        margin-top: 20px;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

        .nav-cta .btn {
            width: 100%;
            justify-content: center;
        }

    .deal-card {
        min-width: 100%;
    }

    .destination-card {
        min-width: 100%;
    }

    .testimonials-arrow, .deals-arrow, .destinations-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 40px;
    }

        .hero h1 {
            font-size: 2.2rem;
        }

        .hero p {
            font-size: 1rem;
        }

    .section-header h2 {
        font-size: 2rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 20px;
    }

        .newsletter-form input {
            border-radius: 20px 20px 0 0;
            margin-bottom: 0;
        }

        .newsletter-form button {
            border-radius: 0 0 20px 20px;
            padding: 12px;
        }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .slider-container {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 30px;
    }

        .hero h1 {
            font-size: 1.8rem;
        }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .newsletter h2 {
        font-size: 1.8rem;
    }

    .slider-container {
        height: 220px;
    }
}
 
