@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary-blue: #008cff;
    --secondary-blue: #0a2351;
    --accent-red: #ef4444;
    --bg-light: #f4f6f9;
    --white: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #5e6d77;
    --border-mt: #e5e9f0;
    --radius-portal: 12px;
    --radius-sm: 6px;
    --shadow-portal: 0 5px 15px rgba(0, 0, 0, 0.04);
    --shadow-heavy: 0 15px 45px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.5;
}

h1,
h2,
h3,
.brand {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-portal {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Standardized Section Titles */
.section-title {
    font-size: 3.2rem;
    font-weight: 950;
    color: var(--secondary-blue);
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    line-height: 1.1;
}

.section-title.light {
    color: white;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.7);
}

/* --- How it Works Section --- */
.how-it-works {
    padding: 120px 0;
    background: #0f172a;
    /* Same as Adventure Hub for dark consistency */
    color: white;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 70px;
}

.step-card {
    position: relative;
    padding: 20px;
}

.step-number {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    font-weight: 950;
    color: var(--primary-blue);
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover .step-number {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 140, 255, 0.4);
}

.step-card h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.step-card p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* --- Portal Navigation (Dual Layer) --- */
.main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    border-bottom: 1px solid var(--border-mt);
}

.portal-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
    letter-spacing: -1px;
}

.portal-brand span {
    color: var(--text-main);
}

.nav-user-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-login-mt {
    background: linear-gradient(90deg, #53b2fe, #065af3);
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Service Navigation Icons (MMT Style) */
.service-icon-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    background: var(--white);
    padding: 10px 0;
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-muted);
    transition: 0.3s;
    border-bottom: 3px solid transparent;
    padding-bottom: 8px;
}

.service-icon-item.active,
.service-icon-item:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.service-icon-item i {
    font-size: 1.6rem;
}

.service-icon-item span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* --- Portal Hero - Pure Functionality --- */
.portal-hero-section {
    background: linear-gradient(to bottom, var(--secondary-blue), #1c3b70);
    padding: 60px 0 120px;
    text-align: center;
    color: white;
}

.portal-hero-section h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

/* Master Search Widget */
.search-widget-mt {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr 1fr auto;
    padding: 18px;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
}

.sw-field {
    text-align: left;
    padding: 10px 25px;
    cursor: pointer;
    border-right: 1px solid var(--border-mt);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    /* For dropdown positioning */
}

.sw-field:first-child {
    border-radius: 12px 0 0 12px;
}

.sw-field:hover,
.sw-field.active {
    background: #f8faff;
    z-index: 1001;
    /* Above other fields and widget */
}

.sw-field.active {
    box-shadow: inset 0 0 10px rgba(0, 140, 255, 0.05);
}

.sw-field:last-of-type {
    border-right: none;
}

.sw-field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.sw-field .val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sw-field .sub-val {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Premium Search Dropdowns */
.sw-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 350px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-mt);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 15px;
}

.sw-field.active .sw-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sw-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 40px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid var(--border-mt);
    border-top: 1px solid var(--border-mt);
}

.sw-dropdown-search {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-mt);
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.sw-dropdown-search:focus {
    border-color: var(--primary-blue);
}

.sw-dropdown-list {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sw-dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.2s;
    cursor: pointer;
}

.sw-dropdown-item:hover {
    background: #f0f7ff;
}

.sw-dropdown-item i {
    font-size: 1.2rem;
    color: var(--secondary-blue);
    width: 24px;
    text-align: center;
}

.sw-dropdown-item .item-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-main);
}

.sw-dropdown-item .item-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* Datepicker & Guests Specifics */
.sw-dropdown.guests-dropdown {
    min-width: 280px;
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5px;
    border-bottom: 1px solid #f1f5f9;
}

.guest-row:last-child {
    border-bottom: none;
}

.guest-type h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.guest-type p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.guest-counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-counter {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.btn-counter:hover {
    background: var(--primary-blue);
    color: white;
}

.count-val {
    font-weight: 800;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.btn-sw-search {
    background: linear-gradient(90deg, #53b2fe, #065af3);
    color: white;
    border: none;
    padding: 0 50px;
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
}

/* --- Offer Strips (Agoda/MMT Feel) --- */
.portal-section {
    padding: 60px 0;
}

.offers-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.offer-card {
    min-width: 320px;
    background: var(--white);
    border: 1px solid var(--border-mt);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.offer-card img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
}

.offer-info h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.offer-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Grid Category (Justdial Style) --- */
.category-strip {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-mt);
}

.jd-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 30px;
    text-align: center;
}

.jd-item {
    text-decoration: none;
    color: inherit;
}

.jd-icon {
    width: 65px;
    height: 65px;
    background: white;
    border: 1px solid var(--border-mt);
    border-radius: 16px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.6rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.jd-item:hover .jd-icon {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 140, 255, 0.2);
    border-color: var(--primary-blue);
}

.jd-item span {
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- Service Cards (Portal Density) --- */
.listing-portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 25px;
}

.service-card-portal {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-portal);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border-mt);
}

.service-card-portal:hover {
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-blue);
}

.scp-image {
    height: 200px;
    position: relative;
}

.scp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scp-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #2ecc71;
    color: white;
    padding: 3px 8px;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 4px;
}

.scp-body {
    padding: 20px;
    flex-grow: 1;
}

.scp-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.rating-pill {
    background: #008134;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
}

.scp-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
    min-height: 54px;
    line-height: 1.3;
}

.scp-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.scp-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-mt);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.scp-price-area .old-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.scp-price-area .curr-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
}

.btn-portal-view {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 0.9rem;
}

/* --- Filter Sidebar (MMT Listing) --- */
.filter-sidebar-mt {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    position: sticky;
    top: 140px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

/* Footer (Deep Portal) */
.footer-mt {
    background: #0b1522;
    color: #8a8d91;
    padding: 80px 0;
}

.footer-mt h4 {
    color: white;
    margin-bottom: 25px;
}

.footer-mt ul {
    list-style: none;
}

.footer-mt li {
    margin-bottom: 18px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-mt li i {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-top: 4px;
    width: 20px;
}

.footer-mt a {
    color: #8a8d91;
    text-decoration: none;
    transition: 0.3s;
}

.footer-mt a:hover {
    color: white;
}

/* --- Districts Multi-Card Slider --- */
.districts-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.districts-slider-container {
    width: 100%;
    position: relative;
    padding: 0 80px;
    /* Side padding for navigation buttons */
}

.districts-slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 20px 0;
}

.district-card-item {
    flex: 0 0 350px;
    /* Use fixed width for reliable layout */
    height: 480px;
    background: #000;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.district-card-item:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.district-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.district-card-item:hover img {
    transform: scale(1.1);
}

.district-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: white;
}

.district-card-info span {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-blue);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    border-radius: 6px;
    margin-bottom: 12px;
}

.district-card-info h3 {
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
}

.district-card-info p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 8px;
}

/* Slider Controls Refined */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: var(--secondary-blue);
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.slider-nav:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav.next {
    right: 15px;
}

@media (max-width: 1200px) {
    .district-card-item {
        flex: 0 0 320px;
    }
}

@media (max-width: 900px) {
    .district-card-item {
        flex: 0 0 300px;
        height: 400px;
    }

    .districts-slider-container {
        padding: 0 60px;
    }
}

@media (max-width: 550px) {
    .district-card-item {
        flex: 0 0 280px;
    }

    .districts-slider-container {
        padding: 0 45px;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
    }
}



/* --- Travel Themes Section (Ultra Cinematic) --- */
.themes-section {
    padding: 160px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

/* Dynamic Mesh Background */
.themes-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 140, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 140, 255, 0.05) 0%, transparent 50%);
    filter: blur(100px);
    z-index: 1;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 320px;
    gap: 30px;
    position: relative;
    z-index: 5;
}

.theme-card {
    position: relative;
    background: #111;
    border-radius: 40px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.theme-card.large {
    grid-column: span 7;
    grid-row: span 2;
}

.theme-card.medium {
    grid-column: span 5;
    grid-row: span 1;
}

.theme-card.small {
    grid-column: span 5;
    grid-row: span 1;
}

.theme-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    /* Better visibility before hover */
    filter: saturate(0.7) brightness(0.9);
    transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
}

.theme-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 40px 100px rgba(0, 140, 255, 0.25);
    z-index: 10;
}

.theme-card:hover img {
    opacity: 1;
    filter: saturate(1.1) brightness(1);
    transform: scale(1.05);
}

.theme-content {
    position: absolute;
    inset: 0;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    color: white;
}

.theme-tag {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-content h4 {
    font-size: 3rem;
    font-weight: 950;
    margin-bottom: 15px;
    letter-spacing: -2px;
    line-height: 0.95;
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theme-card.medium h4,
.theme-card.small h4 {
    font-size: 2rem;
}

.theme-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}

.theme-card:hover p {
    transform: translateY(0);
    opacity: 1;
}

.theme-explore-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--primary-blue);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}

.theme-card:hover .theme-explore-cta {
    opacity: 1;
    transform: translateX(0);
}

.theme-card:hover .theme-explore-cta i {
    animation: bounceRight 1s infinite;
}

@keyframes bounceRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

@media (max-width: 1100px) {

    .theme-card.large,
    .theme-card.medium,
    .theme-card.small {
        grid-column: span 12;
        grid-row: span 1;
    }

    .theme-card.large {
        height: 600px;
    }
}

/* --- Adventure Hub Section --- */
.adventure-hub {
    padding: 120px 0;
    background: #0f172a;
    /* Slate 900 */
    color: white;
    position: relative;
    overflow: hidden;
}

.adventure-hub::after {
    content: 'ADVENTURE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}

.adventure-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
    position: relative;
    z-index: 5;
}

.adventure-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.adventure-item i {
    font-size: 3rem;
    color: var(--primary-blue);
    transition: 0.5s;
}

.adventure-item h4 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.adventure-item .explore-link {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s;
}

.adventure-item:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 140, 255, 0.3);
}

.adventure-item:hover i {
    color: white;
    transform: scale(1.2) rotate(5deg);
}

.adventure-item:hover h4 {
    color: white;
}

.adventure-item:hover .explore-link {
    opacity: 1;
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .adventure-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .adventure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .adventure-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Service Details Page (Premium) --- */
.detail-header-section {
    background: var(--white);
    padding: 30px 0 20px;
}

.detail-breadcrumb {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s;
}

.detail-breadcrumb a:hover {
    color: var(--primary-blue);
}

.detail-title-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.detail-title-area h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--secondary-blue);
    line-height: 1.2;
}

.detail-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.meta-item i {
    color: var(--primary-blue);
}

.meta-item.rating {
    background: #fff8e6;
    color: #b45309;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
}

.meta-item.rating i {
    color: #f59e0b;
}

/* Immersive Mosaic Gallery */
.mosaic-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    height: 550px;
    margin: 30px 0 60px;
    border-radius: 24px;
    overflow: hidden;
}

.mosaic-main {
    position: relative;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: zoom-in;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.mosaic-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

/* Tabbed Content Navigation */
.detail-tab-nav {
    display: flex;
    gap: 40px;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 40px;
    position: sticky;
    top: 135px;
    /* More generous offset for dual header */
    background: white;
    z-index: 1000;
    /* Higher priority but below header */
}

.tab-content {
    scroll-margin-top: 180px;
    /* Space for both header and tabs when jumping */
}

.tab-link {
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.tab-link.active {
    color: var(--primary-blue);
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
}

/* Detail Features Grid */
.detail-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.feature-box {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 25px 20px;
    border-radius: 16px;
    transition: 0.3s;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-box i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: block;
}

.feature-box h5 {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 800;
    line-height: 1;
}

.feature-box span {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--secondary-blue);
    line-height: 1.2;
}

/* Inclusions List */
.inclusion-card {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 20px;
    padding: 40px;
}

.inc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #166534;
}

.inc-item i {
    color: #22c55e;
    font-size: 1.2rem;
}

/* Premium Booking Widget */
.booking-widget-portal {
    background: white;
    border: 1px solid var(--border-mt);
    border-radius: 24px;
    padding: 35px;
}

.book-price-area {
    margin-bottom: 30px;
}

.book-price-area label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.book-price-area .amount {
    font-size: 2.22rem;
    font-weight: 900;
    color: var(--secondary-blue);
}

.book-field {
    margin-bottom: 20px;
}

.book-field-box {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book-field-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
}

.book-field-val {
    font-weight: 800;
    color: var(--primary-blue);
}

.btn-book-portal {
    width: 100%;
    background: linear-gradient(90deg, #53b2fe, #065af3);
    color: white;
    border: none;
    height: 60px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-book-portal:hover {
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .mosaic-gallery {
        height: 350px;
    }

    .detail-features-grid {
        grid-template-columns: 1fr;
    }

    .inc-grid {
        grid-template-columns: 1fr;
    }

    /* Stack the left and right columns on mobile */
    .detail-main-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .booking-widget-portal {
        position: static;
        /* Disable sticky on small screens */
        margin-top: 40px;
    }

    .detail-tab-nav {
        top: 120px;
        /* Adjust for potentially smaller header on mobile */
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 5px;
    }
}

/* --- Ultra-Clean Modern Auth Layout --- */
.auth-minimal-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* Subtle background Blobs */
.auth-minimal-wrapper::before,
.auth-minimal-wrapper::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.15;
}

.auth-minimal-wrapper::before {
    background: var(--primary-blue);
    top: -200px;
    left: -200px;
}

.auth-minimal-wrapper::after {
    background: #6366f1;
    bottom: -200px;
    right: -200px;
}

.auth-minimal-container {
    width: 100%;
    max-width: 480px;
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 20px 50px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.auth-minimal-header {
    text-align: center;
    margin-bottom: 45px;
}

.auth-minimal-header h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
}

.auth-minimal-header p {
    color: #64748b;
    font-size: 1rem;
    font-weight: 600;
}

.minimal-form-group {
    margin-bottom: 25px;
}

.minimal-form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: #475569;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.minimal-input {
    width: 100%;
    height: 62px;
    background: #fcfdfe;
    border: 2px solid #f1f5f9;
    border-radius: 18px;
    padding: 0 22px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.minimal-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 140, 255, 0.05);
}

.btn-minimal-submit {
    width: 100%;
    height: 65px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 950;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin-top: 15px;
    box-shadow: 0 10px 25px rgba(0, 140, 255, 0.2);
}

.btn-minimal-submit:hover {
    background: #0076d6;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 140, 255, 0.3);
}

.minimal-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 35px;
}

.social-btn-minimal {
    height: 60px;
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    color: #334155;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn-minimal:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
}

@media (max-width: 600px) {
    .auth-minimal-container {
        padding: 40px 25px;
        border-radius: 30px;
    }
}

/* --- Service Listing Page (Premium) --- */
.listing-header-mt {
    background: #fcfdfe;
    padding: 30px 0;
    border-bottom: 2px solid #eef2f8;
    margin-bottom: 40px;
}

.listing-breadcrumb {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.listing-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.listing-breadcrumb a:hover {
    color: var(--primary-blue);
}

.listing-title-area h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary-blue);
    margin-bottom: 10px;
}

.listing-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Sidebar Refinement */
.filter-sidebar-mt {
    background: white;
    border: 1px solid var(--border-mt);
    border-radius: 16px;
    padding: 25px;
    position: sticky;
    top: 140px;
}

.filter-section-title {
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.filter-item:hover {
    color: var(--primary-blue);
}

.filter-item input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-blue);
}

/* Premium Listing Card */
.listing-portal-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card-portal {
    background: white;
    border: 1px solid var(--border-mt);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 320px 1fr 220px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card-portal:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.scp-image {
    position: relative;
    height: 100%;
}

.scp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scp-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.scp-body {
    padding: 25px;
    border-right: 1px solid #f1f5f9;
}

.rating-pill {
    background: var(--primary-blue);
    color: white;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-right: 10px;
}

.scp-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-blue);
    margin: 12px 0;
    line-height: 1.3;
}

.scp-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.scp-meta i {
    color: var(--primary-blue);
    margin-right: 5px;
}

.scp-footer {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    background: #fcfdfe;
}

.scp-price-area {
    text-align: right;
    margin-bottom: 20px;
}

.old-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 700;
}

.curr-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-main);
}

.btn-portal-view {
    background: white;
    color: var(--primary-blue);
    border: 1.5px solid var(--primary-blue);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.3s;
    width: 100%;
    text-align: center;
}

.service-card-portal:hover .btn-portal-view {
    background: var(--primary-blue);
    color: white;
}

@media (max-width: 650px) {
    .trending-grid-home {
        grid-template-columns: 1fr;
    }

    .trending-card-home .scp-image {
        height: 200px;
    }
}

/* --- How It Works Section (Clean & Simple) --- */
.how-it-works {
    background: #f9fafb;
    /* Light Gray */
    padding: 100px 0;
    position: relative;
    border-top: 1px solid #f1f5f9;
}

.how-it-works .section-title.light {
    color: #1e293b;
    /* Deep Slate */
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
}

.how-it-works .section-subtitle.light {
    color: #64748b;
    /* Muted Slate */
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 60px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 140, 255, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.step-icon-inner {
    width: 80px;
    height: 80px;
    background: #eff6ff;
    color: var(--primary-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: 0.3s;
}

.step-card:hover .step-icon-inner {
    background: var(--primary-blue);
    color: white;
}

.step-number-pill {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.step-card h4 {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1023px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .service-card-portal {
        grid-template-columns: 1fr;
    }

    .scp-image {
        height: 250px;
    }

    .scp-body {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }

    .scp-footer {
        align-items: flex-start;
        text-align: left;
    }

    .scp-price-area {
        text-align: left;
    }

    .btn-portal-view {
        width: auto;
    }
}