/* CSS Variables for Brand Colors */
:root {
    --color-green-dark: #003049;
    --color-green-light: #0077b6;
    --color-blue: #00b4d8;
    --color-blue-light: #90e0ef;
    --color-sand: #fbf7f4;
    --color-gold: #FFB703;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;

    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    --transition: all 0.3s ease-in-out;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--color-green-dark);
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.bg-sand {
    background-color: var(--color-sand);
}

.bg-light-blue {
    background-color: #e8f5e9;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-green-dark);
}

.btn-primary:hover {
    background-color: #e5a400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 183, 3, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-green-dark);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    border-radius: var(--radius);
}

.btn-text {
    padding: 0;
    color: var(--color-blue);
    background: transparent;
    font-weight: 600;
}

.btn-text:hover {
    color: var(--color-green-dark);
}

.btn-text i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
    transition: var(--transition);
}

.brand-logo {
    height: 110px;
    /* Adjust height of the logo as needed */
    width: auto;
    object-fit: contain;
}

.header.scrolled .brand-logo {
    /* Make the white logo text visible on the white scrolled background */
    filter: brightness(0.15) sepia(1) hue-rotate(180deg) saturate(3);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.header.scrolled .nav-links a {
    color: var(--color-text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.header.scrolled .mobile-menu-btn {
    color: var(--color-text);
}

/* Hero Section */
.hero {
    height: calc(100vh - 40px);
    max-width: 1600px;
    margin: 20px auto;
    border-radius: 40px;
    background-image: url('Main_pic.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

/* Animated Waves */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    margin-bottom: -7px;
    /* Fix for whitespace gap */
}

.wave-container svg {
    width: 100%;
    height: 100%;
}

.parallax-waves>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax-waves>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax-waves>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax-waves>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax-waves>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-counter {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    font-family: var(--font-secondary);
}

.stat-item span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-gold);
    border-radius: var(--radius);
    z-index: 0;
}

.rounded-img {
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
}

.shadow-lg {
    box-shadow: var(--shadow);
}

/* Destinations Section */
#destinations {
    background-color: #fafbfc;
    padding: 5rem 0;
}

.destinations-slider .swiper-slide {
    width: 300px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destinations-slider .swiper-slide.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.destinations-slider .card-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 16px 16px 0 0;
}

.destinations-slider .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destinations-slider .swiper-slide:hover .card-img {
    transform: scale(1.05);
}

.destinations-slider .card-content {
    background: transparent;
    padding: 1.2rem;
    text-align: left;
}

.package-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.package-card-header h3 {
    font-size: 1.15rem;
    color: #333;
    margin: 0;
    font-family: var(--font-primary);
}

.package-card-price {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 600;
}

.package-card-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.package-card-details i {
    color: #1a202c;
}

.card-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--color-green-dark);
}

.card-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Booking Section */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.booking-features {
    list-style: none;
    margin-top: 2rem;
}

.booking-features li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-gold {
    color: var(--color-gold);
}

.booking-form-wrapper {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius);
}

.taxi-form .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.taxi-form .form-group {
    flex: 1;
}

.taxi-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.taxi-form input,
.taxi-form select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.taxi-form input:focus,
.taxi-form select:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.2);
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.hidden {
    display: none;
}

/* Journey Highlights Slider Gallery */
.gallery-slider .swiper-slide.gallery-card {
    width: 320px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #000;
}

.gallery-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    opacity: 0.85;
}

.gallery-slider .swiper-slide-active img {
    opacity: 1;
}

.gallery-slider .swiper-slide-active:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff;
}

.overlay-text h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.overlay-text p {
    font-size: 0.85rem;
    color: #ccc;
    margin: 0;
}

.view-all-btn {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.view-all-btn:hover {
    background: #fff;
    color: #000;
}

.drag-indicator {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    background: rgba(0, 48, 73, 0.85);
    /* Dark circle color */
    color: #fff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

@media (max-width: 992px) {
    .drag-indicator {
        left: 50%;
        top: auto;
        bottom: -20px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fafafa;
    padding: 6rem 0;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
}

.btn-dark-pill {
    background: #1a202c;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-dark-pill:hover {
    background: #2d3748;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: #f4f5f7;
    padding: 2rem;
    border-radius: 12px;
}

.testimonial-card .stars {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-card .review-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.reviewer-info h4 {
    font-size: 0.95rem;
    color: #1a202c;
    margin-bottom: 0.1rem;
}

.reviewer-info p {
    font-size: 0.8rem;
    color: #718096;
    margin: 0;
}

/* Modern Footer */
.footer-modern {
    background-color: #fff;
    color: #4a5568;
    padding-top: 3rem;
    font-family: var(--font-primary);
}

.footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 4rem;
}

.footer-newsletter h3 {
    font-size: 2.2rem;
    color: #1a365d;
    max-width: 400px;
    line-height: 1.2;
}

.footer-newsletter-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: #fff;
    border: 1px solid #cbd5e0;
    border-radius: 50px;
    padding: 0.5rem;
    width: 450px;
}

.footer-newsletter-form input {
    border: none;
    outline: none;
    flex: 1;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    background: transparent;
}

.footer-newsletter-form button {
    background: #1a365d;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.footer-brand .footer-logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 250px;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e6f7ff;
    color: #0ea5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: #0ea5e9;
    color: #fff;
}

.footer-widget h4 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #718096;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 0.7rem;
}

.footer-links a:hover {
    color: #1a365d;
}

.footer-address {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-address li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.5;
}

.footer-address .icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e6f7ff;
    color: #0ea5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-instagram {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.footer-instagram img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.footer-bottom {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Mirissa-Plage_%283%29.jpg/1920px-Mirissa-Plage_%283%29.jpg');
    background-size: cover;
    background-position: center;
    padding: 1.5rem 0;
    color: #fff;
    position: relative;
    border-top: 1px solid #4a5568;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.85);
}

.footer-bottom-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 0.85rem;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-payments img {
    height: 25px;
    background: #fff;
    padding: 2px 4px;
    border-radius: 4px;
}

@media (max-width: 900px) {
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-dark-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-dark-top {
        grid-template-columns: 1fr;
    }

    .footer-dark-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Animations */
.reveal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0);
}

.fade-bottom {
    transform: translateY(50px);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-right {
    transform: translateX(50px);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--color-text);
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .taxi-form .form-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .header-actions .btn {
        display: none;
    }
}