 @import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Encode+Sans+Expanded:wght@100;200;300;400;500;600;700;800;900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Kumbh+Sans:wght@100..900&family=Lexend:wght@100..900&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap" rel="stylesheet');
        @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
        @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');
        /* --- Base & Typography --- */
        body {
            font-family: 'Manrope', sans-serif;
            background-color: #fff;
            color: #000;
            margin: 0;
                outline: none;
        }
        a {
            text-decoration: none;
            color: inherit;
        }

        .content-wrapper {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        /* --- Header & Navigation --- */
        .header {
    position: relative;
    background-image: url('https://images.pexels.com/photos/16643413/pexels-photo-16643413.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    height: 40rem; /* Or however tall you want */
    overflow: hidden;
}
/* --- 

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px; 
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%), #f8f9fa);
    pointer-events: none;
}


        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.3);
        }
--- */
        .header-content {
            position: relative;
            z-index: 10;
        }
        /* --- Hero Section --- */
        .hero-text {
            padding-top: 8rem;
            padding-bottom: 0rem;
        }
        .hero-text h1 {
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -3px;
        }
        .hero-text .explore-link {
            display: inline-flex;
            align-items: center;
            margin-top: 0rem;
            font-size: 1.125rem;
            font-weight: 500;
        }

        /* --- Booking Widget --- */
        .booking-widget-section {
            position: relative;
            margin-top: -8rem;
            z-index: 2;
        }
        .booking-widget-container {
                background-color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* ---box-shadow: 0 25px 50px -12px rgb(0 0 0 / 8%);--- */
    border-radius: 0.5rem;
    border: solid 1px #eaeaea;
    padding: 2rem;
        }
        .booking-tabs {
            display: flex;
            gap: 0.5rem;
            background-color: rgba(229, 231, 235, 0.6);
            padding: 0.25rem;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
            max-width: 370px;
        }
        .booking-tabs button {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1rem;
            border-radius: 0.375rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
        }
        .booking-tabs button.active {
            background-color: #111827;
            color: white;
        }
        .booking-tabs button:not(.active) {
            background-color: transparent;
            color: #4b5563;
        }
        .booking-tabs button:not(.active):hover {
            background-color: rgba(209, 213, 219, 0.5);
        }
        .booking-tabs svg {
            margin-right: 0.5rem;
            width: 1.25rem;
            height: 1.25rem;
        }

        /* --- Responsive Breakpoint (Tablet and Up) --- */
@media (max-width: 500px) {
    .booking-widget-container {
            padding: 0rem;
        }
}

        /* --- Form Styles --- */

        
        .form-container {
            padding-top: 1rem;
        }
        .form-grid {
            display: grid;
            gap: 1rem;
            align-items: end;
        }
        .form-label {
            font-size: 0.75rem;
            font-weight: 600;
            color: #6b7280;
            text-transform: uppercase;
        }
        .form-value-lg {
            font-size: 1.5rem;
            font-weight: 700;
        }
        .form-value-sm {
            font-size: 0.875rem;
            color: #6b7280;
        }
        .search-button {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #111827;
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-button:hover {
            background-color: #1f2937;
            transform: scale(1.05);
        }

        /* --- Section Styles --- */
        .section {
            margin-top: 4rem;
            margin-bottom: 2rem;
        }
        .section-header {
            display: grid; /* flex */
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        .section-title {
            font-size: 1.875rem;
            font-weight: 700;
        }
        .section-link {
            font-weight: 600;
            color: #4b5563;
        }


        /* --- Card Grids --- */
        .card-grid-4 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        .card-grid-2 {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
        }
        .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .card:hover img {
            transform: scale(1.1);
        }
        .card-image-wrapper {
            aspect-ratio: 1 / 1;
            width: 100%;
            overflow: hidden;
            border-radius: 0.5rem;
        }
        .card h3 {
            margin-top: 1rem;
            font-size: 1.125rem;
            font-weight: 700;
        }
        .card p {
            margin-top: 0.25rem;
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* --- Offer Styles --- */
        .offer-tabs {
            display: flex;
            gap: 0.5rem;
        }
        .offer-tab {
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
        }
        .offer-tab.active {
            background-color: #1a202c;
            color: white;
        }
        .offer-tab:not(.active) {
            background-color: #e2e8f0;
            color: #4a5568;
        }
        .offer-content.hidden {
            display: none;
        }
        .offer-content img  {
            width: 3rem;
        }
        
        .hotel-offer-card {
            background-color: #fff;
    border-radius: 1.5rem;
    height: 15rem;
    overflow: hidden;
    display: flex
;
        }
        .hotel-offer-card img {
            width: 33.33%;
            object-fit: cover;
        }
        .hotel-offer-card-content {
            padding: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .flight-offer-card {
            background-color: white;
            border-radius: 1.5rem;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        
        /* --- Responsive Design --- */
        @media (min-width: 640px) { /* sm */
            .nav-links, .nav-actions .register-link {
                display: flex;
                gap: 2rem;
            }
            .hero-text h1 {
                font-size: 4rem;
            }
            .card-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 768px) { /* md */
             .card-grid-2 {
                grid-template-columns: repeat(2, 1fr);
            }
             .form-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) { /* lg */
            .card-grid-4 {
                grid-template-columns: repeat(4, 1fr);
            }
            .form-grid {
                grid-template-columns: repeat(12, 1fr);
            }
            .form-grid-span-5 { grid-column: span 5 / span 5; }
            .form-grid-span-2 { grid-column: span 2 / span 2; }
        }

        /* Main container to center the content */
        .main-container {
            display: flex
;
    align-items: center;
    justify-content: center;
    padding: 0;
        }

        /* The main landscape card */
        .showcase-card {
                width: 100%;
    max-width: 64rem;
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    text-align: center;
;
    flex-direction: column;
    align-items: center;
        }

        /* Image Grid Container */
        .image-grid-container {
            width: 100%;
            margin-bottom: 2rem; /* mb-8 */
        }

        .image-grid {
            display: grid;
            gap: 1.5rem; /* gap-6 */
            grid-template-columns: repeat(4, 1fr);
        }

        /* Individual Image Wrapper */
        .image-wrapper {
                width: 100%;
    height: auto;
    border-radius: 2rem;
    overflow: hidden;
    border: 0;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
        }

        .image-wrapper:hover {
            transform: scale(1.05); /* hover:scale-105 */
        }

        .screenshot-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* App Caption and Text */
        .app-title {
            font-size: 1.875rem; /* text-3xl */
            font-weight: 700; /* font-bold */
            margin-bottom: 0.5rem; /* mb-2 */
        }

        .app-description {
            color: #94a3b8;
    max-width: 42rem;
    margin: 1.5rem auto;
        }

        /* Download Buttons */
        .buttons-container {
            display: flex;
            gap: 1rem; /* gap-4 */
            width: 100%;
            justify-content: center;
        }

        .download-button {
            color: #ffffff;
            font-weight: 600; /* font-semibold */
            padding: 0.75rem 2rem; /* py-3 px-8 */
            border-radius: 0.5rem; /* rounded-lg */
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: background-color 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
        }
        
        .download-button.app-store {
            background-color: #2563eb; /* bg-blue-600 */
        }

        .download-button.app-store:hover {
            background-color: #3b82f6; /* hover:bg-blue-500 */
        }

        .download-button.google-play {
            background-color: #334155; /* bg-gray-700 */
        }

        .download-button.google-play:hover {
            background-color: #475569; /* hover:bg-gray-600 */
        }

        .download-button svg {
            width: 1.5rem; /* w-6 */
            height: 1.5rem; /* h-6 */
            margin-right: 0.75rem; /* mr-3 */
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) { /* md breakpoint */
            .image-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) { /* sm breakpoint */
            .showcase-card {
                padding: 1.5rem;
            }
            .buttons-container {
                flex-direction: column;
                width: auto;
            }
        }
