/* ========================================
   Wanderlust Travel Agency
   Premium Tropical & Adventure Theme
======================================== */

/* CSS Variables */
:root {
    /* Tropical Color Palette */
    --primary: #00b4d8;
    --primary-dark: #0096c7;
    --secondary: #f77f00;
    --accent: #ff006e;
    --gold: #ffbe0b;
    --coral: #ee6c4d;

    /* Neutrals */
    --dark: #0a192f;
    --dark-blue: #112240;
    --light: #f8f9fa;
    --white: #ffffff;

    /* Gradients */
    --gradient-ocean: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #00b4d8 100%);
    --gradient-sunset: linear-gradient(135deg, #f77f00 0%, #ff006e 50%, #9b5de5 100%);
    --gradient-tropical: linear-gradient(135deg, #00b4d8 0%, #0096c7 50%, #023e8a 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 25, 47, 0.7) 0%, rgba(10, 25, 47, 0.5) 100%);

    /* Typography */
    --font-ar: 'Tajawal', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Shadows */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 25px 80px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.3);

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ar);
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

/* ========================================
   Preloader
======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-tropical);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.plane-loader {
    font-size: 4rem;
    color: var(--white);
    animation: fly 2s infinite ease-in-out;
}

@keyframes fly {

    0%,
    100% {
        transform: translateX(-50px) rotate(-10deg);
    }

    50% {
        transform: translateX(50px) rotate(10deg);
    }
}

/* ========================================
   Header / Navigation
======================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-display);
}

.logo i {
    font-size: 1.5rem;
    color: var(--primary);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(15deg);
    }
}

.navbar {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-sunset);
    border-radius: 10px;
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-ar);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: var(--gradient-sunset);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(247, 127, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(247, 127, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg video,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 100px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Booking Box */
.booking-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.form-group {
    text-align: right;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-ar);
    font-size: 1rem;
    transition: all var(--transition);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.search-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ========================================
   Services Section
======================================== */
.services {
    background: var(--white);
}

.section-title {
    margin-bottom: 60px;
}

.section-title.text-center {
    text-align: center;
}

.section-title span {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-tropical);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    margin: 0 auto 25px;
    transition: transform var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   Destinations Section
======================================== */
.destinations {
    background: linear-gradient(180deg, var(--light) 0%, rgba(0, 180, 216, 0.05) 100%);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.slider-arrows {
    display: flex;
    gap: 15px;
}

.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    width: 55px !important;
    height: 55px !important;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-button-prev i,
.swiper-button-next i {
    font-size: 1.2rem;
    color: var(--dark);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.swiper-button-prev:hover i,
.swiper-button-next:hover i {
    color: var(--white);
}

.destinations-slider {
    overflow: visible !important;
    padding: 20px 0;
}

.card-dest {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.card-dest:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card-dest:hover .card-img img {
    transform: scale(1.15);
}

.card-price {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background: var(--gradient-sunset);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px rgba(247, 127, 0, 0.4);
}

.card-content {
    padding: 25px;
}

.location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.95rem;
}

.rating i {
    color: var(--gold);
}

.swiper-pagination {
    position: relative !important;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gradient-sunset);
    width: 30px;
    border-radius: 10px;
}

/* ========================================
   Packages Section
======================================== */
.packages {
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.package-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 180, 216, 0.2);
}

.package-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.package-card:hover .package-img img {
    transform: scale(1.1);
}

.discount {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background: var(--coral);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(238, 108, 77, 0.4);
}

.discount.search-tag {
    background: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 180, 216, 0.4);
}

.package-content {
    padding: 30px;
}

.package-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--primary);
    width: 20px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price .old {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-left: 10px;
}

.price .new {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--coral);
}

/* ========================================
   Video Banner
======================================== */
.video-banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.video-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.7);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--gradient-sunset);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    box-shadow: 0 10px 40px rgba(247, 127, 0, 0.4);
}

.play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(247, 127, 0, 0.5);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.play-btn i {
    font-size: 1.8rem;
    color: var(--white);
    margin-right: -5px;
}

.play-btn:hover {
    transform: scale(1.1);
}

.video-btn-wrapper span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ========================================
   Reviews Section
======================================== */
.reviews {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.review-card {
    background: var(--white);
    padding: 35px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.user-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.user-info span {
    font-size: 0.85rem;
    color: #888;
}

.review-header .rating {
    margin-right: auto;
}

.review-header .rating i {
    font-size: 0.9rem;
}

.review-text {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    font-style: italic;
}

/* ========================================
   Newsletter
======================================== */
.newsletter {
    background: var(--white);
    padding: 60px 0;
}

.newsletter-box {
    background: var(--gradient-tropical);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: slide 30s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

.newsletter-content {
    position: relative;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    position: relative;
}

.newsletter-form input {
    width: 350px;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-ar);
    font-size: 1rem;
    background: var(--white);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form .btn-primary {
    background: var(--secondary);
    box-shadow: 0 8px 30px rgba(247, 127, 0, 0.4);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--dark);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* ========================================
   Responsive Design - Enhanced
======================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .booking-box {
        max-width: 100%;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .section {
        padding: 70px 0;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        transition: right var(--transition);
        z-index: 1000;
        padding: 50px 30px;
    }

    .navbar.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .nav-list .nav-link {
        font-size: 1.3rem;
    }

    .mobile-toggle {
        display: block;
    }

    .header-actions .btn-outline {
        display: none;
    }

    .booking-form {
        grid-template-columns: 1fr 1fr;
    }

    .booking-form .search-btn {
        grid-column: 1 / -1;
    }

    .reviews-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }

    .video-banner {
        height: 400px;
    }

    .banner-content h2 {
        font-size: 2.2rem;
    }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-content {
        padding-top: 120px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title span {
        font-size: 0.8rem;
    }

    .services-grid,
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .booking-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .booking-box {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .form-group input,
    .form-group select {
        padding: 14px 16px;
    }

    .search-btn {
        width: 100%;
        padding: 16px 30px;
    }

    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .slider-arrows {
        justify-content: center;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 45px !important;
        height: 45px !important;
    }

    .card-img {
        height: 220px;
    }

    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    .package-img {
        height: 200px;
    }

    .package-content {
        padding: 25px 20px;
    }

    .package-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .package-footer .btn {
        text-align: center;
    }

    .reviews-wrapper {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 25px;
    }

    .video-banner {
        height: 350px;
    }

    .banner-content h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .banner-content p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .play-btn {
        width: 70px;
        height: 70px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .section {
        padding: 50px 0;
    }

    .hero {
        min-height: auto;
        padding-bottom: 50px;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 15px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .card-img {
        height: 180px;
    }

    .card-price {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .package-content h3 {
        font-size: 1.2rem;
    }

    .price .new {
        font-size: 1.4rem;
    }

    .newsletter-box {
        padding: 30px 20px;
    }

    .newsletter-content h2 {
        font-size: 1.4rem;
    }

    .video-banner {
        height: 300px;
    }

    .banner-content h2 {
        font-size: 1.5rem;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .play-btn i {
        font-size: 1.3rem;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .booking-box {
        padding: 20px 15px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}