/* 💻 Website Development Credit
            Designed and Developed by: Lucky Design

            This website was built by an independent developer, [Your Name/Alias], specializing in modern, responsive web design.

            Explore my portfolio: luckydesign.netlify.app

            Follow my work on Instagram: shocking.tech

            Contact me on WhatsApp: 7042181503 */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lato&family=Poppins&display=swap');
/* --- 1. GLOBAL STYLES & RESET --- */
:root {
    --color-primary: #ffc300; 
    --color-secondary: #ffc400cd; 
    --color-text-dark: #333;
    --color-text-light: #f4f4f4;
    --color-background-light: #ffffff;
    --color-background-dark: #f0f0f5; 
    --font-heading: 'Georgia', serif;
    --font-body: 'Arial', sans-serif;

    --f1-font: "Roboto", sans-serif;
    --f2-font: "Lato", sans-serif;
    --f3-font: "Poppins", sans-serif;
    --f4-font: "Bebas Neue", sans-serif;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--f3-font);
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-background-light);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.3s;
}

/* --- 2. HEADER & NAVIGATION --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--color-background-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-primary);
}
.logo a > img {
    width: 250px;
}

.main-nav ul {
    list-style: none;
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav a {
    color: var(--color-text-dark);
    padding: 8px 15px;
    font-size: 18px;
}
.book_now_button {
            line-height: 1;
            text-decoration: none;
            display: inline-flex;
            border: none;
            cursor: pointer;
            align-items: center;
            gap: 0.75rem;
            /* Use a dark blue/purple for 'Book Now' theme */
            background-color: var(--color-primary); 
            color: #fff;
            border-radius: 10rem;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            padding-left: 20px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: background-color 0.3s;
        }

        .book_now_button__icon-wrapper {
            flex-shrink: 0;
            width: 25px;
            height: 25px;
            position: relative;
            /* The icon's background color is white, but its stroke/fill is the primary color */
            color: var(--color-text-dark); 
            background-color: #fff;
            border-radius: 50%;
            display: grid;
            place-items: center;
            overflow: hidden;
        }

        .book_now_button:hover {
            /* Change button background to a darker color on hover */
            background-color: #1e293b; 
        }

        .book_now_button:hover .book_now_button__icon-wrapper {
            /* Change the icon color to match the new background */
            color: #1e293b; 
        }

        .book_now_button__icon-svg {
            /* Ensure SVGs fit within the wrapper */
            width: 50%; 
            height: 50%;
        }

        .book_now_button__icon-svg--copy {
            position: absolute;
            /* Initial position for the copy icon (off-screen) */
            transform: translate(-150%, 150%);
        }

        .book_now_button:hover .book_now_button__icon-svg:first-child {
            /* Move original icon off-screen */
            transition: transform 0.3s ease-in-out;
            transform: translate(150%, -150%);
        }

        .book_now_button:hover .book_now_button__icon-svg--copy {
            /* Move copy icon into view */
            transition: transform 0.3s ease-in-out 0.1s;
            transform: translate(0);
        }

.main-nav a:hover, .main-nav li.active a {
    color: var(--color-primary);
}

/* hero pannel */
.app-panel {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .panel-video-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        .panel-video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .panel-details {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10; 
            color: white; 
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 10px;
            padding: 2rem;
            background-color: rgba(0, 0, 0, 0.4); 
        }

        .panel-details h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        .panel-details p {
            max-width: 1000px;
            font-size: 15px;
            /* line-height: 1.75; */
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        }
        .glasspannel {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px 15px;
            gap: 10px;
            font-size: 10px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.25s ease-out;
            cursor: pointer;
        }
        .glasspannel svg {
            width: 16px;
        }
        .flexbuttons {
            display: flex;
            gap: 10px;
        }
        .flexbuttons .button:nth-child(2) {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }
        .button {
            padding: 15px 20px;
            border: none;
            outline: none; 
            background-color: #151515;
            color: #eee;
            border-radius: 7px;
            font-weight: 600;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.25s ease-out;
            }

            .button:hover, .glasspannel:hover {
            transform: translateY(-3px);
            }

            .button-span {
            color: #aaa;
            }

/* hero pannel */


/* --- 3. HERO SECTION - TOURS --- */
.hero-tours {
    background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(15px);
            background-image: url('https://images.pexels.com/photos/5956902/pexels-photo-5956902.jpeg');
            background-position: center;
            background-size: cover;
            mask-image: linear-gradient(to bottom,transparent,#000 10% 90%, transparent);
    color: var(--color-text-light);
    padding: 100px 10px;
    /* height: 100vh; */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 100px; */
}


/* 💻 Website Development Credit
            Designed and Developed by: Lucky Design

            This website was built by an independent developer, [Your Name/Alias], specializing in modern, responsive web design.

            Explore my portfolio: luckydesign.netlify.app

            Follow my work on Instagram: shocking.tech

            Contact me on WhatsApp: 7042181503 */
.hero-tours h1 {
    font-family: var(--f3-font);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-tours p {
    font-size: 1.1rem;
    opacity: 0.9;
}


/* --- 4. TOURS GRID & CARDS (MOBILE FIRST) --- */
/* --- Base Styling & Card Container (GRID) - UNCHANGED --- */
.blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px;
}
.tour_details_header {
    width: 70%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tours-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
    margin: 20px auto;
}
/* --- General Card Styling: Minimal Look --- */
.tour-card,
.service-card {
    border: 1px solid #e5e5e5;
    background-color: rgba(255, 255, 255, 0.506);
    border-radius: 4px;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column; 
    height: 100%;
}
.tour-image {
    width: 100%;
    aspect-ratio: 16 / 7; 
    overflow: hidden;
}
.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Text/Details Styling: KEY CHANGES HERE --- */
.tour-details,
.service-details {
    padding: 18px; 
    display: flex; 
    flex-direction: column;
    flex-grow: 1;
    gap: 10px;
}

.tour-details h2,
.service-details h2 {
    color: #333333; 
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 600;
    /* Title is always visible and stable */
    transition: none; 
}


button.custom-save-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    outline: none;
    padding: 0.5rem 14px;    
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    border-radius: 2px;   
    cursor: pointer;
    transition: background-color 100ms, border 100ms;
}

.custom-save-btn:hover {
    background-color: var(--color-secondary);
}

.custom-save-btn:active {
    border: 1px solid black;
}
.custom-save-btn .btn-text {
    font-size: 12px;
    color: black;
    font-weight: 700;
    padding-right: 0.25rem;
}
.custom-save-btn .btn-text svg {
    fill: #000;
}
/* gallary */
/* --- GALLERY SECTION STYLING (True Masonry Layout) --- */

.gallery-section {
    padding: 60px 10px;
    /* background-color: var(--color-background-dark); */
}

.gallery-grid {
    column-count: 4;
    margin: auto 100px;
}

.grid-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px; 
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    /* Resetting previous grid properties */
    grid-column: unset;
    grid-row: unset;
}

.grid-item img {
    width: 100%;
    /* Height is determined by the image's intrinsic aspect ratio */
    height: auto; 
    object-fit: cover;
    transition: transform 0.5s ease-in-out, filter 0.5s ease;
    display: block;
}

/* --- HOVER EFFECT (Retained) --- */
.grid-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.hover-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 77, 153, 0.8);
    color: var(--color-text-light);
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    
    transform: translateY(100%); 
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.grid-item:hover .hover-caption {
    transform: translateY(0);
    opacity: 1;
}

/* testimonals */
        .testimonals {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin: 100px auto;
        }
        .testimonals h2 {
            font-size: 44px;
        }
        .section-subtitle {
            font-size: 20px;
        }
        .Carousel {
            width: 90%;
            display: flex;
            gap: 1em;
            overflow-x: auto;
            mask-image: linear-gradient(
                to right,
                transparent, 
                #000 10% 90%,
                transparent
            );
        }
        .Carousel::-webkit-scrollbar {
            display: none;
        }
        .group {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1em;
            animation: spin 20s infinite linear;
            padding-right: 1em;
        }
        @keyframes spin {
            from {translate: 0;}
            to {translate: -100%;}
        }


        /* --- TESTIMONIALS SECTION STYLING --- */

.testimonials-section {
    padding: 60px 5%;
    background-color: var(--color-background-dark); /* Light grey background for emphasis */
    text-align: center;
}

.testimonials-section h2 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

/* Default to single column for mobile */
.testimonial-grid {
    grid-template-columns: 1fr;
}

.testimonial-card {
    background-color: var(--color-background-light);
    border-radius: 8px;
    padding: 30px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    text-align: left;
    min-width: 400px;
}

.rating {
    color: var(--color-secondary); /* Golden Yellow for the stars */
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-dark);
    line-height: 1.5;
    margin-bottom: 20px;
    border-left: 3px solid var(--color-primary);
    padding-left: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    /* background-color: #ccc; */
    border-radius: 50%;
    margin-right: 15px;
    background-image: url('https://img.icons8.com/puffy-filled/32/user.png');
    background-position: center;
    background-size: 50% cover;
    background-repeat: no-repeat;
}

.client-name {
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.client-location {
    font-size: 0.9rem;
    color: #888;
}

/* --- 5. FOOTER --- */
/* --- FOOTER STYLING --- */
/* --- FOOTER STYLING --- */
.site-footer {
    background-color: var(--color-text-dark);
    color: var(--color-background-dark);
    padding: 40px 5%;
    font-size: 0.9rem;
}

/* Subscribe Section Styling */
.footer-subscribe {
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footer-subscribe h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.subscribe-form input {
    padding: 10px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px; /* Rounded on the left */
    margin-right: -5px; /* Pulls the button closer */
}

.subscribe-form .cta-button {
    border-radius: 0 4px 4px 0; /* Rounded on the right */
    padding: 10px 15px;
    background-color: var(--color-primary);
    color: var(--color-dark-light);
    border: none;
    cursor: pointer;
    vertical-align: middle;
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    /* Default: Stack columns on mobile */
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-column h4 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-column ul, .footer-column address {
    list-style: none;
    padding: 0;
}

.footer-column ul li, .footer-column address p {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--color-background-dark);
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--color-primary);
}

.social-links a {
    /* display: inline-block; */
    display: flex;
    flex-direction: column;
    float: left;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 40px;
    height: 40px;
    line-height: 30px;
    text-align: center;
    margin-right: 10px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
}
.social-links a svg {
    width: 30px;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.8rem;
}

.footer-bottom .tagline {
    font-style: italic;
    color: #555;
    margin-bottom: 5px;
}

/* menu bar */


.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 35px;
}

.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    margin: 1px 0px;
    background-color: var(--color-primary);
    border-radius: 1px;
    transition: all 0.3s ease-in-out;
}

/* 2. Full-Screen Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-background-dark);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mobile-menu-overlay.open {
    transform: translateX(0);
}

/* 3. Navigation Links */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    padding-top: 150px;
}

.mobile-nav-links li {
    margin: 15px 50px;
    text-align-last: left;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    color: #000;
    /* font-weight: 700;   */
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.mobile-nav-links a:hover {
    color: var(--color-primary);
}

/* 4. Cross Button (transforms from hamburger) */
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(38deg);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-1px) rotate(-45deg);
}

.menu-toggle {
        display: none;
    }
    .mobile-menu-overlay {
        display: none; /* Ensure overlay is hidden on desktop */
    }


    /* 💻 Website Development Credit
            Designed and Developed by: Lucky Design

            This website was built by an independent developer, [Your Name/Alias], specializing in modern, responsive web design.

            Explore my portfolio: luckydesign.netlify.app

            Follow my work on Instagram: shocking.tech

            Contact me on WhatsApp: 7042181503 */