﻿
:root {
    --primary: #0077B6;
    --primary-dark: #023E8A;
    --primary-light: #90E0EF;
    --accent: #00B4D8;
    --accent-warm: #F77F00;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-50: #F1F5F9;
    --gray-100: #E2E8F0;
    --gray-300: #94A3B8;
    --gray-500: #64748B;
    --gray-700: #334155;
    --gray-900: #0F172A;
    --success: #10B981;
    --error: #EF4444;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --nav-h: 70px;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0,119,182,0.08);
    --shadow: 0 8px 32px rgba(0,119,182,0.12);
    --shadow-lg: 0 20px 60px rgba(2,62,138,0.18);
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    --bg: #FFFFFF;
    --bg-alt: #F8FAFC;
    --surface: #FFFFFF;
    --surface-2: #F1F5F9;
    --text: #0F172A;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --nav-bg: rgba(255,255,255,0.96);
    --footer-main-bg: #024791;
    --footer-bottom-bg: #023991;
    --trpbg: rgba(235, 235,235, 0.52);
    --inverse-bg: #0A1628;
    --head-bg1: #0052B3;
    --head-bg2: #003d80;
    --badge-bg: #f0f4ff;
    --hero-bg1: #0077B6;
    --hero-bg2: #0077B6;
    --modal-bg:#004f76;
}

[data-theme="dark"] {
    --bg: #0A1628;
    --bg-alt: #0D1F3C;
    --surface: #112240;
    --surface-2: #1A2E4A;
    --text: #E2E8F0;
    --text-muted: #94A3B8;
    --border: #1E3A5F;
    --nav-bg: rgba(10,22,40,0.97);
    --gray-50: #0D1F3C;
    --off-white: #0D1F3C;
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --footer-bottom-bg: #013a66;
    --footer-main-bg: #06223f;
    --trpbg: rgba(3, 33, 54, 0.43);
    --inverse-bg: #FFFFFF;
    --head-bg1: #06223f;
    --head-bg2: #011c3a;
    --badge-bg: #003d80;
    --hero-bg1: #000102;
    --hero-bg2: #0077B6;
    --modal-bg:#00354a
}

 ===== RESET & BASE ===== 
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s,color 0.3s
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit
}

input, textarea, select {
    font-family: inherit
}

 ===== PRELOADER ===== 
#preloader {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s,visibility 0.5s
}

    #preloader.hidden {
        opacity: 0;
        visibility: hidden
    }

.preloader-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 99px;
    overflow: hidden
}

.preloader-fill {
    height: 100%;
    background: var(--primary-light);
    border-radius: 99px;
    animation: loadBar 2s ease forwards
}

@keyframes loadBar {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

 ===== NAVIGATION ===== 
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition)
}

    #navbar.scrolled {
        box-shadow: var(--shadow)
    }

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0
}

.nav-brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg,var(--primary),var(--accent));
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.1rem
}

.nav-brand-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.1
}

[data-theme="dark"] .nav-brand-text {
    color: var(--primary-light)
}

.nav-brand-tag {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.05em;

}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top:1rem !important;
}

.nav-link {
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition);
    cursor: pointer
}

    .nav-link:hover, .nav-link.active {
        color: var(--primary);
        background: rgba(0,119,182,0.07)
    }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-theme {
    
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: inline-flex; /* better than grid for icons */
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .btn-theme:hover {
        /*        border-color: var(--primary);
        color: var(--primary)*/
        border-color: var(--primary);
        color: var(--primary);
        background: rgba(13,110,253,0.08);
    }
    .btn-theme:active {
        transform: scale(0.95);
    }

.btn-nav {
    padding: 3px 3px; /* balanced padding */
    height:35px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-nav-outline {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    margin-right:4px;
    font-size:13px !important;
    padding:6px 3px !important;
}

    .btn-nav-outline:hover {
        background: var(--primary);
        color: #fff;
    }

.btn-nav-solid {
    background: var(--primary);
    color: #fff;
    margin-left: 2px;
    font-size: 13px !important;
    padding: 6px 6px !important;
}

    .btn-nav-solid:hover {
        background: var(--primary-dark)
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border)
}

    .hamburger span {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: all var(--transition)
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }

#mobile-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    z-index: 999;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: var(--shadow)
}

    #mobile-menu.open {
        display: flex
    }

.mobile-nav-link {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text);
    transition: background var(--transition)
}

    .mobile-nav-link:hover {
        background: var(--surface-2);
        color: var(--primary)
    }

.mobile-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem
}

    .mobile-actions .btn-nav {
        flex: 1;
        text-align: center;
        padding: 0.75rem
    }

.page {
    display: none
}

    .page.active {
        display: block
    }

#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg,var(--hero-bg1) 0%,var(--hero-bg2) 50%,#0096C7 100%)
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-top: var(--nav-h);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 99px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px)
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem,4vw,3.75rem);
    line-height: 1.15;
    color: #fff;
    font-weight: 800;
    margin-bottom: 1.25rem
}

    .hero-title span {
        color: var(--primary-light)
    }

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.7
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 2rem;
    background: #fff;
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
/*    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2)*/
}

    .btn-primary:hover {
/*        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(0,0,0,0.3)*/
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 2rem;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    backdrop-filter: blur(8px)
}

    .btn-secondary:hover {
        background: rgba(255,255,255,0.25);
        transform: translateY(-2px)
    }

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem
}

.stat-item {
    text-align: center
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem
}

/* Hero search card 
*/
.hero-card {
    background: rgba(255,255,255,0.1)!important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg)
}

    .hero-card h3 {
        font-family: var(--font-display);
        color: white !important;
        font-size: 1.3rem;
        margin-bottom: 1.25rem
    }

.search-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color:var(--text)!important;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.65rem 1rem;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid var(--text);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition) !important;
    outline: none
}

    .form-group input::placeholder {
        color: var(--text-muted) !important;
    }

    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
        border-color: var(--text-muted) !important;
        background: rgba(255,255,255,0.18) !important;
        border: 1px solid rgba(255,255,255,0.25);
        outline: none !important;
        padding: 0.65rem 1rem;
        transition: all var(--transition) !important;
    }

    .form-group select option {
        background: var(--primary-dark);
        color: var(--text-muted) !important;
    }

.btn-search {
    width: 100%;
    padding: 0.9rem;
    background: var(--accent-warm);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all var(--transition)
}

    .btn-search:hover {
        background: #E07000;
        transform: translateY(-1px)
    }

 ===== SECTION UTILITIES ===== 
.section {
    padding: 5rem 0
}

.section-alt {
    background: var(--surface)
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.section-header {
    text-align: center;
    margin-bottom: 3rem
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0,119,182,0.08);
    padding: 0.35rem 1rem;
    border-radius: 99px;
    margin-bottom: 0.875rem
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem,3vw,2.5rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 0.875rem
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7
}

 ===== SCROLL ANIMATIONS ===== 
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease,transform 0.7s ease
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0)
    }

.reveal-delay-1 {
    transition-delay: 0.1s
}

.reveal-delay-2 {
    transition-delay: 0.2s
}

.reveal-delay-3 {
    transition-delay: 0.3s
}

.reveal-delay-4 {
    transition-delay: 0.4s
}

.reveal-delay-5 {
    transition-delay: 0.5s
}

 ===== CARDS ===== 
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 1.5rem
}

.card {
    background: var(--surface) !important;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    color:blue;
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow)
    }

.card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    border-radius:50%;
    margin:auto;
    
}

    .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        display:block;
    }

.card:hover .card-img img {
    transform: scale(1.06)
}
.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    letter-spacing: 0.04em
}

    .card-badge.hot {
        background: var(--accent-warm)
    }

    .card-badge.popular {
        background: var(--success)
    }

.card-wishlist {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gray-500);
    transition: all var(--transition);
    cursor: pointer
}

    .card-wishlist:hover, .card-wishlist.active {
        color: #EF4444;
        background: #fff
    }

.card-body {
    padding: 1.25rem
}

.card-location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
    line-height: 1.3
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.875rem
}

    .card-meta span {
        display: flex;
        align-items: center;
        gap: 0.3rem
    }

.card-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem
}

    .card-rating .stars {
        color: #F59E0B;
        font-size: 0.75rem
    }

    .card-rating .count {
        font-size: 0.78rem;
        color: var(--text-muted)
    }

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.875rem;
    border-top: 1px solid var(--border)
}

.card-price {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary)
}

    .card-price small {
        font-size: 0.75rem;
        color: var(--text-muted);
        font-family: var(--font-body);
        font-weight: 400
    }

.btn-card {
    padding: 0.5rem 1.1rem;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.83rem;
    font-weight: 600;
    transition: all var(--transition)
}

    .btn-card:hover {
        background: var(--primary-dark)
    }

 ===== FEATURES ===== 
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 1.5rem
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all var(--transition);
    text-align: center
}

    .feature-card:hover {
        border-color: var(--primary);
        transform: translateY(-3px);
        box-shadow: var(--shadow)
    }

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,rgba(0,119,182,0.12),rgba(0,180,216,0.12));
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all var(--transition)
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg,var(--primary),var(--accent));
    color: #fff
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6
}

 ===== SEARCH FILTERS ===== 
.search-bar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end
}

.filter-group {
    flex: 1;
    min-width: 150px
}

    .filter-group label {
        display: block;
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--text-muted);
        margin-bottom: 0.4rem;
        text-transform: uppercase;
        letter-spacing: 0.04em
    }

    .filter-group input, .filter-group select {
        width: 100%;
        padding: 0.65rem 0.875rem;
        border: 1.5px solid var(--border);
        border-radius: var(--radius-sm);
        background: var(--bg);
        color: var(--text);
        font-size: 0.875rem;
        transition: border-color var(--transition);
        outline: none
    }

        .filter-group input:focus, .filter-group select:focus {
            border-color: var(--primary)
        }

.btn-filter {
    padding: 0.7rem 1.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: all var(--transition)
}

    .btn-filter:hover {
        background: var(--primary-dark)
    }

 ===== DESTINATIONS TABS ===== 
.tab-nav {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 2rem;
    flex-wrap: wrap
}

.tab-btn {
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: all var(--transition);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer
}

    .tab-btn.active {
        color: var(--primary);
        border-bottom-color: var(--primary)
    }

    .tab-btn:hover:not(.active) {
        color: var(--text)
    }

.tab-content {
    display: none
}

    .tab-content.active {
        display: block
    }

 ===== TESTIMONIALS ===== 
.testimonial-slider {
    position: relative;
    overflow: hidden
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease
}

.testimonial-card {
    min-width: 100%;
    padding: 0 0.5rem
}

.testimonial-inner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light)
}

.testimonial-name {
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted)
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all var(--transition)
}

    .dot.active {
        background: var(--primary);
        width: 24px;
        border-radius: 99px
    }

.slider-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--text-muted);
    transition: all var(--transition);
    cursor: pointer
}

    .slider-btn:hover {
        border-color: var(--primary);
        color: var(--primary)
    }

 ===== FAQ ===== 
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    cursor: pointer;
    gap: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    transition: color var(--transition)
}

    .faq-q:hover {
        color: var(--primary)
    }

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    transition: all var(--transition)
}

.faq-item.open .faq-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease,padding 0.3s ease
}

.faq-a-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7
}

 ===== GALLERY LIGHTBOX ===== 
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease
    }

    .gallery-item:hover img {
        transform: scale(1.08)
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2,62,138,0.5);
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity var(--transition);
    color: #fff;
    font-size: 1.5rem
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-item.span-2 {
    grid-column: span 2;
    grid-row: span 2
}

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.93);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem
}

    #lightbox.open {
        display: flex
    }

    #lightbox img {
        max-width: 90vw;
        max-height: 85vh;
        border-radius: var(--radius);
        object-fit: contain;
        box-shadow: 0 0 60px rgba(0,0,0,0.5)
    }

#lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background var(--transition)
}

    #lightbox-close:hover {
        background: rgba(255,255,255,0.25)
    }

#lightbox-prev, #lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--transition)
}

#lightbox-prev {
    left: 1.5rem
}

#lightbox-next {
    right: 1.5rem
}

    #lightbox-prev:hover, #lightbox-next:hover {
        background: rgba(255,255,255,0.25)
    }

 ===== CONTACT FORM ===== 
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text);
    margin-bottom: 1rem
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(0,119,182,0.1);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    color: var(--primary);
    flex-shrink: 0;
    font-size: 1rem
}

.contact-item-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 0.2rem
}

.contact-item-text span {
    font-size: 0.875rem;
    color: var(--text-muted)
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 1.5rem
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.1rem
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem
}

.field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em
}

.field input, .field select, .field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font-size: 0.9rem;
    transition: border-color var(--transition);
    outline: none;
    resize: vertical
}

    .field input:focus, .field select:focus, .field textarea:focus {
        border-color: var(--primary)
    }

.field .error-msg {
    font-size: 0.78rem;
    color: var(--error);
    margin-top: 0.25rem;
    display: none
}

.field.invalid .error-msg {
    display: block
}

.field.invalid input, .field.invalid select, .field.invalid textarea {
    border-color: var(--error)
}

.field.valid input, .field.valid select, .field.valid textarea {
    border-color: var(--success)
}

.btn-submit {
    width: 100%;
    padding: 0.95rem;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all var(--transition);
    margin-top: 0.5rem
}

    .btn-submit:hover {
        background: var(--primary-dark);
        transform: translateY(-1px)
    }

.form-success {
    display: none;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: var(--radius-sm);
    padding: 1rem;
    text-align: center;
    color: var(--success);
    font-weight: 500;
    margin-top: 1rem
}

 ===== NEWSLETTER ===== 
.newsletter-section {
    background: linear-gradient(135deg,var(--primary-dark),var(--primary));
    padding: 4rem 0
}

.newsletter-inner {
    text-align: center
}

    .newsletter-inner h2 {
        font-family: var(--font-display);
        font-size: 2rem;
        color: #fff;
        margin-bottom: 0.75rem
    }

    .newsletter-inner p {
        color: rgba(255,255,255,0.8);
        margin-bottom: 2rem;
        font-size: 1rem
    }

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap
}

    .newsletter-form input {
        flex: 1;
        min-width: 200px;
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-sm);
        border: none;
        background: rgba(255,255,255,0.15);
        color: #fff;
        font-size: 0.95rem;
        outline: none;
        border: 1.5px solid rgba(255,255,255,0.3)
    }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.6)
        }

        .newsletter-form input:focus {
            border-color: rgba(255,255,255,0.7)
        }

.btn-newsletter {
    padding: 0.875rem 1.75rem;
    background: #fff;
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition);
    white-space: nowrap
}

    .btn-newsletter:hover {
        background: var(--primary-light);
        transform: translateY(-1px)
    }

 ===== MAP ===== 
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 400px
}

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        display: block
    }

 ===== FOOTER ===== 
footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 4rem 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem
}

.footer-brand p {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: 1rem;
    margin-bottom: 1.5rem
}

.footer-socials {
    display: flex;
    gap: 0.75rem
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    display: grid;
    place-items: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all var(--transition)
}

    .social-link:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
        transform: translateY(-2px)
    }

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.25rem
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem
}

    .footer-links a {
        font-size: 0.875rem;
        color: rgba(255,255,255,0.7);
        transition: color var(--transition);
        display: flex;
        align-items: center;
        gap: 0.4rem
    }

        .footer-links a:hover {
            color: #fff
        }

        .footer-links a::before {
            content: '›';
            color: var(--accent)
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap
}

    .footer-bottom p {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.5)
    }

 ===== BACK TO TOP ===== 
#back-top {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 500;
    box-shadow: var(--shadow);
    font-size: 1rem
}

    #back-top.visible {
        opacity: 1;
        visibility: visible
    }

    #back-top:hover {
        background: var(--primary-dark);
        transform: translateY(-3px)
    }

 ===== STICKY CTA ===== 
#sticky-cta {
    position: fixed;
    bottom: 2rem;
    left: 1.5rem;
    z-index: 500;
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden
}

    #sticky-cta.visible {
        opacity: 1;
        visibility: visible
    }

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: var(--accent-warm);
    color: #fff;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 20px rgba(247,127,0,0.35);
    animation: pulse-cta 2.5s infinite
}

@keyframes pulse-cta {
    0%,100% {
        box-shadow: 0 4px 20px rgba(247,127,0,0.35)
    }

    50% {
        box-shadow: 0 4px 32px rgba(247,127,0,0.6)
    }
}

 ===== PACKAGES PAGE ===== 
.packages-hero {
    background: linear-gradient(135deg,var(--primary-dark),var(--primary));
    padding: 8rem 0 4rem;
    text-align: center;
    color: #fff
}

    .packages-hero h1 {
        font-family: var(--font-display);
        font-size: 2.75rem;
        margin-bottom: 0.75rem
    }

    .packages-hero p {
        color: rgba(255,255,255,0.8);
        font-size: 1.05rem
    }

.compare-bar {
    position: sticky;
    bottom: 0;
    background: var(--primary-dark);
    color: #fff;
    padding: 1rem 0;
    z-index: 100;
    display: none;
    border-top: 2px solid var(--accent)
}

    .compare-bar.active {
        display: block
    }

.compare-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap
}

.compare-items {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap
}

.compare-chip {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 99px;
    padding: 0.3rem 0.875rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem
}

    .compare-chip button {
        color: rgba(255,255,255,0.7);
        font-size: 0.8rem;
        transition: color var(--transition)
    }

        .compare-chip button:hover {
            color: #fff
        }

.btn-compare {
    padding: 0.6rem 1.5rem;
    background: var(--accent-warm);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.875rem;
    transition: all var(--transition)
}

    .btn-compare:hover {
        background: #E07000
    }

 Compare Modal 
#compare-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 2001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem
}

    #compare-modal.open {
        display: flex
    }

.compare-modal-inner {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto
}

.compare-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem
}

    .compare-modal-header h3 {
        font-family: var(--font-display);
        font-size: 1.5rem;
        color: var(--text)
    }

.compare-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition)
}

    .compare-close:hover {
        border-color: var(--error);
        color: var(--error)
    }

.compare-table {
    width: 100%;
    border-collapse: collapse
}

    .compare-table th, .compare-table td {
        padding: 0.875rem 1rem;
        text-align: left;
        border-bottom: 1px solid var(--border);
        font-size: 0.875rem
    }

    .compare-table th {
        background: var(--surface-2);
        font-weight: 700;
        color: var(--text)
    }

    .compare-table td:first-child {
        color: var(--text-muted);
        width: 160px
    }

    .compare-table td.highlight {
        color: var(--primary);
        font-weight: 600
    }

 ===== BOOKINGS PAGE ===== 
.booking-hero {
    background: linear-gradient(135deg,var(--primary-dark),var(--primary));
    padding: 8rem 0 4rem;
    text-align: center;
    color: #fff
}

    .booking-hero h1 {
        font-family: var(--font-display);
        font-size: 2.75rem;
        margin-bottom: 0.75rem
    }

.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 2.5rem 0
}

.step-item {
    display: flex;
    align-items: center
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition)
}

    .step-circle.done {
        background: #fff;
        color: var(--primary)
    }

    .step-circle.active {
        background: var(--accent-warm);
        color: #fff;
        box-shadow: 0 0 0 4px rgba(247,127,0,0.3)
    }

    .step-circle.pending {
        background: rgba(255,255,255,0.2);
        color: rgba(255,255,255,0.7)
    }

.step-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.4rem;
    white-space: nowrap
}

.step-line {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    margin-bottom: 1rem
}

.step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center
}

.booking-form-wrap {
    max-width: 760px;
    margin: 0 auto
}

.booking-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem
}

    .booking-card h3 {
        font-family: var(--font-display);
        font-size: 1.3rem;
        color: var(--text);
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem
    }

        .booking-card h3 span {
            width: 32px;
            height: 32px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 0.85rem
        }

.enquiry-options {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    margin-bottom: 1.5rem
}

.enquiry-option {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition)
}

    .enquiry-option:hover {
        border-color: var(--primary)
    }

    .enquiry-option.selected {
        border-color: var(--primary);
        background: rgba(0,119,182,0.05)
    }

    .enquiry-option i {
        font-size: 1.5rem;
        color: var(--text-muted);
        margin-bottom: 0.5rem;
        display: block;
        transition: color var(--transition)
    }

    .enquiry-option.selected i {
        color: var(--primary)
    }

    .enquiry-option span {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--text)
    }

 ===== ABOUT PAGE ===== 
.about-hero {
    background: linear-gradient(135deg,var(--primary-dark),var(--primary));
    padding: 8rem 0 4rem;
    color: #fff
}

.about-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    margin-bottom: 1rem
}

.about-hero p {
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    font-size: 1.05rem
}

.about-hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

    .about-hero-img img {
        width: 100%;
        height: 320px;
        object-fit: cover
    }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
    gap: 1.5rem
}

.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: all var(--transition)
}

    .team-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow)
    }

.team-img {
    aspect-ratio: 1;
    overflow: hidden
}

    .team-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease
    }

.team-card:hover .team-img img {
    transform: scale(1.06)
}

.team-body {
    padding: 1.25rem
}

.team-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem
}

.team-role {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem
}

.team-bio {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem
}

.team-social {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    transition: all var(--transition)
}

    .team-social:hover {
        border-color: var(--primary);
        color: var(--primary)
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius)
}

.value-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0,119,182,0.12);
    line-height: 1;
    margin-bottom: 0.5rem
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem
}

.value-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6
}

 ===== BLOG PAGE ===== 
.blog-hero {
    background: linear-gradient(135deg,var(--primary-dark),var(--primary));
    padding: 8rem 0 4rem;
    text-align: center;
    color: #fff
}

    .blog-hero h1 {
        font-family: var(--font-display);
        font-size: 2.75rem;
        margin-bottom: 0.75rem
    }

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start
}

.blog-main .blog-featured {
    margin-bottom: 2rem
}

.blog-featured .card-img {
    aspect-ratio: 16/8
}

.blog-featured .card-body {
    padding: 1.75rem
}

.blog-featured .card-title {
    font-size: 1.5rem
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.blog-mini {
    display: flex;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition)
}

    .blog-mini:hover {
        box-shadow: var(--shadow);
        transform: translateX(4px)
    }

.blog-mini-img {
    width: 100px;
    flex-shrink: 0
}

    .blog-mini-img img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.blog-mini-body {
    padding: 0.875rem;
    flex: 1
}

.blog-mini-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem
}

.blog-mini-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3
}

.blog-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem)
}

.sidebar-widget {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem
}

.sidebar-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary)
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text)
}

    .category-item:hover {
        background: var(--surface-2);
        color: var(--primary)
    }

.category-count {
    font-size: 0.75rem;
    background: var(--surface-2);
    padding: 0.2rem 0.5rem;
    border-radius: 99px;
    color: var(--text-muted)
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem
}

.tag {
    padding: 0.3rem 0.75rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 99px;
    font-size: 0.78rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition)
}

    .tag:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary)
    }

 ===== TRUST BADGES ===== 
.trust-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500
}

    .trust-item i {
        color: var(--primary);
        font-size: 1.1rem
    }

 ===== PARALLAX ===== 
.parallax-section {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center
}

.parallax-bg {
    position: absolute;
    inset: -20%;
    background-image: url('https://picsum.photos/seed/travel-map/1400/600');
    background-size: cover;
    background-position: center;
    will-change: transform;
    filter: brightness(0.4)
}

.parallax-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 4rem 0
}

    .parallax-content h2 {
        font-family: var(--font-display);
        font-size: 2.5rem;
        margin-bottom: 1rem
    }

    .parallax-content p {
        font-size: 1.05rem;
        color: rgba(255,255,255,0.85);
        max-width: 560px;
        margin: 0 auto 2rem
    }

 ===== RESPONSIVE ===== 
@media(max-width:1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .hero-card {
        max-width: 540px
    }

    .hero-stats {
        justify-content: flex-start
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .blog-grid {
        grid-template-columns: 1fr
    }

    .blog-sidebar {
        position: static
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .about-hero-inner {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .values-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .nav-links, .nav-actions .btn-nav {
        display: none
    }

    .nav-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 1rem 1.5rem;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem
    }

    .hamburger {
        display: flex
    }

    .hero-content {
        padding: 0 1rem;
        padding-top: calc(var(--nav-h) + 2rem)
    }

    .hero-cta {
        flex-direction: column
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.25rem
    }

    .section {
        padding: 3.5rem 0
    }

    .card-grid {
        grid-template-columns: 1fr
    }

    .features-grid {
        grid-template-columns: 1fr 1fr
    }

    .gallery-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .gallery-item.span-2 {
        grid-column: span 2;
        grid-row: span 1
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .form-row, .field-row {
        grid-template-columns: 1fr
    }

    .enquiry-options {
        grid-template-columns: 1fr
    }

    .booking-steps {
        gap: 0
    }

    .step-line {
        width: 30px
    }

    .compare-bar .compare-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .values-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .features-grid {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr
    }

    .newsletter-form {
        flex-direction: column
    }

        .newsletter-form input {
            min-width: unset
        }


    .nav-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 1rem 1.5rem;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem
    }
}

 ===== UTILITY ===== 
.text-center {
    text-align: center
}

.mt-1 {
    margin-top: 0.5rem
}

.mt-2 {
    margin-top: 1rem
}

.mt-3 {
    margin-top: 1.5rem
}

.mb-2 {
    margin-bottom: 1rem
}

.mb-3 {
    margin-bottom: 1.5rem
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.875rem;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 600
}

.pill-blue {
    background: rgba(0,119,182,0.1);
    color: var(--primary)
}

.pill-orange {
    background: rgba(247,127,0,0.1);
    color: var(--accent-warm)
}

.pill-green {
    background: rgba(16,185,129,0.1);
    color: var(--success)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

#hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
}

:root {
    --primary: #0077B6;
    --dark: #023E8A;
    --light: #f8fafc;
}

[data-theme="dark"] {
    --light: #0f172a;
}

/* Navbar Styling */
#navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

[data-theme="dark"] #navbar {
    background: rgba(15, 23, 42, 0.95);
}

/* Hero Canvas Fix */
#hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--hero-bg1) 0%, var(--hero-bg2) 100%);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.65;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0077B6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

.preloader-logo {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.preloader-bar {
    width: 220px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-fill {
    width: 0%;
    height: 100%;
    background: white;
    animation: preload 1.8s ease-in-out forwards;
}

@keyframes preload {
    to {
        width: 100%;
    }
}
@keyframes slideUp {
    from {
        transform: translate(-50%, 50px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    to {
        transform: translate(-50%, 50px);
        opacity: 0;
    }
}

.toast-msg {
    white-space: nowrap;
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 38px 32px; /* Balanced padding */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    height: fit-content;
}

/* Fix for Check-in & Check-out overlap */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px; /* Increased gap */
    margin-bottom: 18px;
}

.form-group.half {
    margin-bottom: 0 !important;
}

.form-group {
    margin-bottom: 20px;
}

.search-form label {
    display: block;
    font-size: 0.84rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-form input,
.search-form select {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: #1e2937;
    font-size: 1rem;
}

.btn-search {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    background: #f97316;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-search:hover {
        background: #ea580c;
        transform: translateY(-2px);
    }

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 20px 80px;
    }

    .hero-card {
        max-width: 520px;
        margin: 0 auto;
    }
}
/* ================= SMALL DEVICES ================= */
@media (max-width: 768px) {

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 80px 20px;
        text-align: center;
    }

    .hero-card {
        max-width: 100%;
        padding: 28px 22px;
    }

    /* FORM FIX */
    .form-row {
        grid-template-columns: 1fr; /* stack fields */
        gap: 12px;
    }

    .search-form input,
    .search-form select {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .btn-search {
        padding: 14px;
        font-size: 1rem;
    }
}


/* ================= MOBILE DEVICES ================= */
@media (max-width: 576px) {

    #hero {
        height: auto; /* important */
       
    }

    .hero-content {
        padding: 70px 15px 50px;
        gap: 25px;
    }

    .hero-card {
        padding: 22px 18px;
        border-radius: 16px;
        display: none;
    }

    /* LABEL */
    .search-form label {
        font-size: 0.72rem;
        margin-bottom: 6px;
    }

    /* INPUT */
    .search-form input,
    .search-form select {
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    /* BUTTON */
    .btn-search {
        padding: 12px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    /* GAP FIX */
    .form-group {
        margin-bottom: 14px;
    }
}
#gallery-grid img {
    transition: 0.3s;
}

    #gallery-grid img:hover {
        transform: scale(1.1);
    }

.image-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

    .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


/* ================= FOOTER BASE ================= */
#site-footer {
    background: var(--footer-main-bg);
    color: rgba(255,255,255,0.7);
    padding-top: 60px;
    font-family: 'Poppins', sans-serif;
}

/* ================= GRID ================= */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* ================= BRAND ================= */
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 15px 0;
    color: rgba(255,255,255,0.65);
}

/* ================= SOCIAL ================= */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: var(--primary);
        transform: translateY(-3px);
    }

/* ================= COLUMN ================= */
.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* ================= LINKS ================= */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links a {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .footer-links a:hover {
            color: #fff;
            transform: translateX(4px);
        }

/* ================= CONTACT ================= */
.footer-col div i {
    font-size: 0.9rem;
}

/* ================= BOTTOM ================= */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .footer-bottom p {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.5);
        margin: 0;
    }

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    #site-footer {
        padding-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

        .footer-bottom div {
            justify-content: center;
        }
}
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

    .gallery-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: 0.4s;
    }

    /* Hover Zoom */
    .gallery-card:hover img {
        transform: scale(1.1);
    }

/* Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    font-weight: 600;
    opacity: 0;
    transition: 0.3s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* PREVIEW MODAL */
.gallery-preview {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

    .gallery-preview img {
        max-width: 90%;
        max-height: 80%;
        border-radius: 10px;
    }

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.travel-card {
    background: var(--bg) !important;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .travel-card:hover {
        transform: translateY(-6px);
    }

.travel-img {
    position: relative;
}

    .travel-img img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

/* dots */
.img-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

    .img-dots span {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 0 3px;
        background: #fff;
        border-radius: 50%;
        opacity: 0.7;
    }

/* tags */
.package-tags span {
    background: #f1f3f5;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    margin-right: 5px;
}

.package-tags .more {
    color: orange;
    font-weight: 600;
}

/* price */
.price-box .save {
    display: inline-block;
    background: #e6f7ec;
    color: #1e7e34;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 4px;
}
.mmt-card {
    background: var(--bg);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    color:var(--text) !important;
}

    .mmt-card:hover {
        transform: translateY(-5px);
    }

.mmt-img-slider {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .mmt-img-slider img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: 0.4s;
    }

        .mmt-img-slider img.active {
            opacity: 1;
        }

/* dots */
.mmt-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

    .mmt-dots span {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 3px;
        background: #fff;
        border-radius: 50%;
        opacity: 0.6;
    }

        .mmt-dots span.active {
            opacity: 1;
        }

/* tags */
.mmt-tags {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

    .mmt-tags span {
        background: var(--bg);
        font-size: 12px;
        padding: 3px 8px;
        border-radius: 6px;
    }

/* price */
.mmt-price small {
    font-size: 12px;
}
/* LABEL */
.mmt-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* HEART */
.mmt-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

    .mmt-heart i {
        color: #aaa;
        transition: 0.3s;
    }

    .mmt-heart.active i {
        color: red;
    }

    /* hover */
    .mmt-heart:hover {
        transform: scale(1.1);
    }

/* IMAGE FIX */
.travel-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

    .travel-img img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

/* LABEL */
.travel-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* HEART */
.travel-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

    .travel-heart i {
        color: #bbb;
    }

    .travel-heart.active i {
        color: red;
    }

    .travel-heart:hover {
        transform: scale(1.1);
    }
.travel-card {
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s;
    background: #fff;
}

    .travel-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }
/* Container */
#sticky-cta {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

    /* Right side (default) */
    #sticky-cta.right {
        right: 0;
    }

    /* Left side (optional) */
    #sticky-cta.left {
        left: 0;
    }

/* Button style */
.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f97316;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 8px 0 0 8px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

/* Left side ke liye border adjust */
#sticky-cta.left .sticky-cta-btn {
    border-radius: 0 8px 8px 0;
}

/* Hover effect */
.sticky-cta-btn:hover {
    background: #ea580c;
    transform: translateX(-5px);
}

/* Icon */
.sticky-cta-btn i {
    font-size: 16px;
}

/* Text hide for small screens */
@media (max-width: 768px) {
    .sticky-cta-btn span {
        display: none;
    }

    .sticky-cta-btn {
        padding: 12px;
        border-radius: 50%;
    }
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249,115,22,0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(249,115,22,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249,115,22,0);
    }
}

.sticky-cta-btn {
    animation: pulse 2s infinite;
}
/* Mobile Menu Hidden by Default */
#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s;
}

    /* Active State */
    #mobile-menu.active {
        right: 0;
    }

    /* Links */
    #mobile-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
    }

/* Button */
.mobile-btn {
    background: #f97316;
    color: #fff !important;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

/* Hamburger visible only mobile */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-actions a {
        display: none;
        color:var(--text-muted) !important;
    }

    .hamburger {
        display: block;
        background: var(--text) !important;
    }
}

/* Desktop hide mobile menu */
@media (min-width: 993px) {
    #mobile-menu {
        display: none;
    }
}
#menu-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    display: none;
    z-index: 9999;
}

    #menu-overlay.active {
        display: block;
    }

/* MOBILE MENU DEFAULT HIDDEN */
#mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%; /* sidebar width */
    height: 100%;
    background: white; /* dark blue instead of full black */
    z-index: 9999;
    transition: 0.4s ease;
    padding: 20px;
    overflow-y: auto;
}

    /* ACTIVE STATE */
    #mobile-menu.active {
        left: 0;
    }


/* LINKS */
.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    padding: 12px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

    .mobile-nav-link:hover {
        background: rgba(255,255,255,0.1);
    }

/* ACTION BUTTONS */
.mobile-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ❌ DESKTOP PAR HIDE KAR DO */
@media (min-width: 992px) {
    #mobile-menu {
        display: none !important;
    }
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
}

    .hamburger span {
        width: 24px;
        height: 2px;
        background: white;
        display: block;
    }

/* ONLY MOBILE PAR SHOW */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
        
    }

    .nav-links {
        display: none;
    }

    .nav-actions .btn-nav {
        display: none;
    }
}

#mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#0077B6; /* 👈 LIGHT BLACK (NOT FULL BLACK) */
    z-index: 9998;
    display: none;
}

    /* SHOW OVERLAY */
    #mobile-overlay.active {
        display: block;
    }

/* CARD */
/* =========================
   CATEGORY SLIDER
========================= */
.category-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0; /* Add padding */
}

/* TRACK */
.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    padding: 0 60px; /* Space for buttons */
}

/* CARD */
.category-card {
    flex: 0 0 300px; /* ✅ FIXED width - exactly 3 cards */
    max-width: 300px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
}/* IMAGE CIRCLE */
.category-img {
    width: 180px;
    height: 180px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

    .category-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.4s ease;
        border-radius: 50%;
    }

/* HOVER EFFECT */
.category-card:hover {
    transform: translateY(-8px);
}

    .category-card:hover img {
        transform: scale(1.1);
    }

    .category-card:hover .category-img {
        box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    }


/* =========================
   BUTTONS
========================= */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0b2b26;
    color: #fff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* =========================
   TRUST CARD (UNCHANGED)
========================= */
.trust-card {
    background: var(--bg);
    padding: 20px 15px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

    .trust-card i {
        font-size: 28px;
        color: var(--primary);
        margin-bottom: 10px;
    }

    .trust-card h6 {
        font-weight: 600;
        margin-bottom: 5px;
    }

    .trust-card p {
        font-size: 0.8rem;
        color: #777;
        margin: 0;
    }

    .trust-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

/* =========================
   MOBILE VIEW
========================= */
@media (max-width: 768px) {
    .slider-track {
        gap: 20px;
        padding: 0 50px;
    }

    .category-card {
        flex: 0 0 280px; /* ✅ FIXED - 1 card only */
        max-width: 280px;
    }

    .category-img {
        width: 140px;
        height: 140px;
    }
}
body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(-45deg, #e3f2fd, #f3e5f5, #e0f7fa, #fff3e0);
    background-size: 400% 400%;
    animation: bgMove 15s ease infinite;
}

@keyframes bgMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* soft cloud layer */
body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    /* PREMIUM SOFT GRADIENT */
    background: linear-gradient(-45deg, #e0f2fe, #f3e8ff, #ecfeff, #fff7ed );
    background-size: 400% 400%;
    animation: gradientFlow 18s ease infinite;
}

/* smooth color movement */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ===== SECTION ===== */
.register-section {
    min-height: 100vh;
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
    padding: 120px 15px 60px;
    place-items: center;
}

/* ===== LAYOUT ===== */
.register-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== FORM CARD (GLASS PREMIUM) ===== */
.form-card {
    position: relative;
    overflow: hidden;
    padding: 35px;
    border-radius: 25px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 550px; /* IMPORTANT */
    margin: auto;
}

    /* background image INSIDE card */
    .form-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("https://picsum.photos/900/700?travel");
        background-size: cover;
        background-position: center;
        opacity: 0.08;
        filter: blur(3px);
    }

    /* content above bg */
    .form-card > * {
        position: relative;
        z-index: 2;
    }

/* ===== STEP ===== */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .step.active {
        background: #6366f1;
        color: #fff;
    }

/* ===== FORM STEPS ===== */
.form-step {
    display: none;
}

    .form-step.active {
        display: block;
    }

/* ===== INPUT ===== */
.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
/*    background: rgba(255,255,255,0.95);
*/
    /*border-radius: 12px;*/
/*    padding: 5px 10px;
*/
}

/*    .input-group .icon {
        margin-right: 8px;
    }*/

    .input-group input,
    .input-group textarea,
    .input-group select {
        
        flex: 1;
        background: transparent;
    }

/* ===== BUTTONS ===== */
.btn-next,
.btn-prev,
.btn-submit {
    padding: 10px 20px;
    border-radius: 30px;
    background: #6366f1;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
}

.btn-prev {
    background: #94a3b8;
}

.btn-next:hover,
.btn-submit:hover {
    background: #4f46e5;
}

/* ===== PLANE ===== */
.plane {
    position: absolute;
    top: 15px;
    right: -40px;
    font-size: 28px;
    opacity: 0.6;
    animation: fly 7s linear infinite;
}

@keyframes fly {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-200px) translateY(20px);
    }

    100% {
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .register-wrapper {
        max-width: 100%;
    }
}

.register-main {
    min-height: 100vh;
    padding: 40px;
}

/* CONTAINER */
.register-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    background: var(--surface);
    border-radius: 20px;
/*    align-items: stretch;
*/
    border-color:white;
}

/* LEFT PANEL */
.left-panel {
    flex: 1.2;
    background: #0b2b26;
    background-image: radial-gradient(circle at 10% 20%, rgba(46, 125, 116, 0.15) 0%, rgba(11, 43, 38, 0.95) 90%);
    padding: 2.5rem 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

    .left-panel h2 {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.25;
    }

        .left-panel h2 span {
            color: #ffb347;
            border-bottom: 3px solid #ffb347;
            display: inline-block;
            padding-bottom: 4px;
        }

    .left-panel p {
        font-size: 1rem;
        opacity: 0.85;
    }

/* FEATURES */
.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
}

    .feature b {
        color: #ffdeac;
    }

/* IMAGE */
.left-panel img {
    width: 100%;
    border-radius: 1.5rem;
    max-height: 200px;
    object-fit: cover;
}

/* RIGHT PANEL */
.right-panel {
    width: 60%;
    padding: 40px;
    /* FIX SCROLL ISSUE */
    max-height: 100vh;
    overflow-y: auto;
    /* Hide scrollbar - Chrome, Edge, Safari */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;
}
    .right-panel::-webkit-scrollbar {
        display: none;
    }
    /* TITLE */
    .right-panel h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color:var(--text);
    }

.subtitle {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-size: 0.9rem;
    border-left: 3px solid #ffb347;
    padding-left: 12px;
}

/* GRID */
.grid-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 1.5rem;
    align-items: start;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color:var(--text) !important;
}

    .form-group.full {
        grid-column: span 2;
    }

/* INPUTS */
label {
    font-weight: 600;
    font-size: 0.85rem;
    color:var(--text) !important;
}

input,
select,
textarea {
    /*    background: #f9fbfd;*/
    background: var(--inverse-bg);
    border-color: var(--inverse-bg);
    border-radius: 12px;
    padding: 7px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

    input:focus,
    select:focus,
    textarea:focus {
        border-color: var(--inverse-bg);
        box-shadow: 0 0 0 3px rgba(255, 180, 71, 0.2);
        background: var(--bg);
        color: blue;
        padding: 7px;
        width: 100%;
        box-sizing: border-box;
    }

textarea {
    border-color:var(--text-muted) !important;
    min-height: 80px;
    color:var(--text);
}

/* UPLOAD BOX (MERGED FIXED) */
.upload-box {
/*    background: #fff;*/
    border: 2px dashed var(--inverse-bg);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    color: var(--text);
}

    .upload-box:hover {
        border-color: white ;
        background: var(--inverse-bg);
        color:var(--bg);
    }

/* BUTTON */
.submit-btn {
    grid-column: span 2;
    background: #0b2b26;
    padding: 12px;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition:0.3s;
}

    .submit-btn:hover {
        background: #ffb347;
        color: #0b2b26;
        transition:0.3s;
    }

/* ERROR */
.error {
    color: red;
    font-size: 12px;
    margin-top: 4px;
}

/* ERROR BORDER */
input.error-border,
select.error-border,
textarea.error-border {
    border-color: red !important;
}

/* SIGNIN */
.signin-link {
    text-align: center;
    margin-top: 20px;
}

    .signin-link a {
        color: var(--text-muted);
        font-weight: bold;
    }

/* SECURITY */
.security-note {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 880px) {

    .register-container {
        flex-direction: column;
        align-items: center; /* ✅ CENTER WHOLE CARD */
        max-width: 900px;
    }

   

    .right-panel {
        width: 100%;
        max-width: 800px; /* ✅ MOBILE FORM WIDTH CONTROL */
        margin: auto; /* ✅ CENTER */
        padding: 20px;
    }

    .grid-form {
/*        grid-template-columns: 1fr;*/
        justify-content: center; /* ✅ CENTER GRID */
    }

    .form-group {
        width: 100%;
        /*align-items: center;*/ /* ✅ LABEL + INPUT CENTER */
    }

        .form-group label {
            align-self: flex-start; /* label left rahe */
            color:var(--text) !important;
        }

    input,
    select,
    textarea {
        width: 100%; /* ✅ FULL WIDTH FIX */
        max-width: 350px; /* ✅ CONTROL WIDTH */
    }

    .form-group.full {
        grid-column: span 1;
    }

    .submit-btn {
        width: 100%;
        max-width: 350px;
    }

    .left-panel {
        display: none;
    }
}

.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.swiper {
    height: 300px;
}

.swiper-slide {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

    /* Image fit */
    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* 🔥 Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

    /* Text styling */
    .overlay h3 {
        margin: 0;
        font-size: 20px;
    }

/* Hover effect */
.swiper-slide img {
    transition: transform 0.5s ease;
}

.swiper-slide:hover img {
    transform: scale(1.1);
}
.overlay {
    pointer-events: none;
}

.card-header {
    background: #0b2b3b;
    padding: 2rem 2rem 1.8rem 2rem;
    text-align: center;
    position: relative;
}

.brand-icon {
    background: #f4b942;
    width: 68px;
    height: 68px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 12px 18px -8px rgba(0,0,0,0.25);
}

    .brand-icon i {
        font-size: 2.2rem;
        color: #1e2f3a;
    }

.card-header h1 {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: white;
    margin-bottom: 0.25rem;
}

.card-header p {
    color: #b9d7e9;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge {
    display: inline-block;
/*    background: rgba(244,185,66,0.18);
*/
background:black;
    margin-top: 12px;
    padding: 0.25rem 1rem;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #f4b942;
    letter-spacing: 0.3px;
}

/* form body clean and minimal */
.card-body {
    padding: 2rem 2rem 2.2rem 2rem;
}

/* form group styling */
.form-group {
    margin-bottom: 1.6rem;
}

.input-wrapper {
    display: flex;
    align-items: center;
    border: 1.5px solid #e2edf2;
    border-radius: 1.5rem;
    background: #ffffff;
    transition: all 0.2s ease;
    padding: 0.2rem 0.2rem 0.2rem 1rem;
}

    .input-wrapper:focus-within {
        border-color: #f4b942;
        box-shadow: 0 0 0 4px rgba(244, 185, 66, 0.2);
    }

.input-icon {
    color: #94aebf;
    font-size: 1.1rem;
    margin-right: 0.6rem;
    transition: color 0.2s;
}

.input-wrapper:focus-within .input-icon {
    color: #f4b942;
}

.input-wrapper input {
    flex: 1;
    padding: 0.9rem 0.8rem 0.9rem 0;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: #1e2f3a;
    font-weight: 500;
}

    .input-wrapper input::placeholder {
        color: #b8cfdf;
        font-weight: 400;
        font-size: 0.9rem;
    }

/* simple label */
label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #34657c;
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
}

/* action buttons */
.btn-group {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary {
    background: #0b2b3b;
    color: white;
    border: none;
    padding: 1rem;
/*    border-radius: 2rem;*/
    font-weight: 700;
    font-size: .7rem;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

    .btn-primary:hover {
/*        background: #1a4e68;
        transform: translateY(-2px);*/

    }

.btn-secondary {
    background: #f1f7fc;
    border: 1px solid #cde0ea;
    color: #2c6e8f;
    padding: 0.9rem;
    border-radius: 2rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .btn-secondary:hover {
        background: #e6f0f7;
    }

/* toast notification */
.toast-message {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #166534e6;
    backdrop-filter: blur(12px);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1100;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

    .toast-message.show {
        opacity: 1;
    }

    .toast-message.error {
        background: #b91c1ce6;
    }

/* responsive touches */
@media (max-width: 520px) {


    .register-container {
        flex-direction: column;
        align-items: center; /* ✅ CENTER WHOLE CARD */
        max-width: 500px;
    }

    .grid-form {
/*        display: grid;*/
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem 1.5rem;
        align-items: start;
    }

    .card-body {
        padding: 1.6rem;
    }

    .toast-message {
        white-space: normal;
        text-align: center;
        width: 90%;
        font-size: 0.8rem;
    }
}

/* hint small */
.form-footer {
    text-align: center;
    margin-top: 1.8rem;
    font-size: 0.7rem;
    color: #809aab;
    border-top: 1px solid #ecf3f8;
    padding-top: 1.5rem;
}

    .form-footer i {
        margin-right: 4px;
    }
.register-section {
    background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') no-repeat center center/cover;
    min-height: 100vh;
    position: relative;
}

    /* Dark blur overlay */
    .register-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55);
        backdrop-filter: blur(6px);
    }

    /* Keep content above overlay */
    .register-section .container {
        position: relative;
        z-index: 2;
    }
.card {
/*    background: rgba(255, 255, 255, 0.08) !important;*/
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #fff;
}
.card-header {
    background: transparent !important;
    color: #fff;
}

    .card-header h3,
    .card-header p {
        color: #fff !important;
    }
/* ===== PAGE WRAPPER ===== */
.pkg-page {
    background: #f8f9fa;
}

/* ===== HERO ===== */
.pkg-hero {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://picsum.photos/1200/500') center/cover no-repeat;
    border-radius: 12px;
}

/* ===== INPUTS ===== */
.pkg-input,
.pkg-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 8px 12px;
}

/* ===== BUTTONS ===== */
.pkg-btn {
    background: #0d6efd;
    color: #fff;
    border-radius: 8px;
    border: none;
    transition: 0.2s;
}

    .pkg-btn:hover {
        background: #0b5ed7;
    }

.pkg-btn-outline {
    border: 1.5px solid #6c757d;
    color: #6c757d;
    border-radius: 8px;
}

    .pkg-btn-outline:hover {
        background: #6c757d;
        color: #fff;
    }

/* ===== TABLE ===== */
.pkg-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

    /* HEADER */
    .pkg-table thead {
        background: linear-gradient(45deg, #0d6efd, #4dabf7);
        color: #fff;
    }

    /* ROWS */
    .pkg-table tbody tr {
        transition: 0.2s;
    }

        .pkg-table tbody tr:hover {
            background: rgba(13,110,253,0.05);
        }

/* IMAGE */
.pkg-img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
}

/* ===== PAGE BASE ===== */
#page-packages {
    background: #f5f7fb;
    font-family: 'Segoe UI', sans-serif;
}

    /* ===== HERO ===== */
    #page-packages .hero-section {
        border-radius: 0 0 20px 20px;
        overflow: hidden;
    }

        #page-packages .hero-section h1 {
            font-size: 2.5rem;
            letter-spacing: 0.5px;
        }

        #page-packages .hero-section p {
            opacity: 0.9;
            font-size: 1rem;
        }

    /* ===== FILTER SECTION ===== */
    #page-packages .form-label {
        font-size: 0.85rem;
        font-weight: 600;
        color: #555;
    }

    #page-packages .form-control,
    #page-packages .form-select {
        border-radius: 10px;
        border: 1px solid #ddd;
        padding: 10px 12px;
        font-size: 0.9rem;
        transition: 0.2s ease;
    }

        #page-packages .form-control:focus,
        #page-packages .form-select:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 2px rgba(13,110,253,0.1);
        }

    /* ===== BUTTONS ===== */
    #page-packages .btn {
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: 500;
        padding: 10px;
    }

    #page-packages .btn-primary {
        background: linear-gradient(135deg, #0d6efd, #3a8bfd);
        border: none;
    }

        #page-packages .btn-primary:hover {
            background: linear-gradient(135deg, #0b5ed7, #2f7ae5);
        }

    #page-packages .btn-secondary {
        background: #e9ecef;
        border: none;
        color: #333;
    }

        #page-packages .btn-secondary:hover {
            background: #dfe3e7;
        }

    /* ===== TABS ===== */
    #page-packages .btn-group .btn {
        border-radius: 20px !important;
        padding: 6px 14px;
        font-size: 0.85rem;
        background:var(--bg) !important;
    }

    #page-packages .btn-outline-primary {
        border: 1px solid var(--bg);
        color: var(--primary-dark);
    }

        #page-packages .btn-outline-primary.active,
        #page-packages .btn-outline-primary:hover {
            background: var(--bg);
            color: var(--text);
            border:1px solid var(--text) !important;
        }

    /* ===== PACKAGE CARDS ===== */
    #page-packages .card {
        border: none;
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

        #page-packages .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        /* IMAGE */
        #page-packages .card img {
            height: 180px;
            object-fit: cover;
        }

    /* CARD BODY */
    #page-packages .card-body {
        padding: 15px;
    }

    /* TITLE */
    #page-packages .card h5 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    /* TEXT */
    #page-packages .card p {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

    /* PRICE */
    #page-packages .text-primary {
        font-weight: 700;
        font-size: 1rem;
    }

    /* BADGE */
    #page-packages .badge {
        font-size: 0.7rem;
        padding: 5px 10px;
        border-radius: 20px;
    }

    /* HEART BUTTON */
    #page-packages .btn-light {
        border: none;
        background: rgba(255,255,255,0.9);
    }

        #page-packages .btn-light:hover {
            background: #fff;
        }

    /* BOOK BUTTON */
    #page-packages .card .btn-primary {
        padding: 6px 12px;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    /* ===== EMPTY STATE ===== */
    #page-packages h5.text-muted {
        font-size: 1rem;
        opacity: 0.7;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    #page-packages .hero-section h1 {
        font-size: 1.8rem;
    }

    #page-packages .card img {
        height: 150px;
    }

    #page-packages .btn {
        font-size: 0.8rem;
    }

    .register-main{
        padding:30px 10px 0px 10px;
    }

    .register-container {
        flex-direction: row;
        align-items: center; /* ✅ CENTER WHOLE CARD */
        max-width: 600px;
    }

    .grid-form {
        display: block;
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem 1.5rem;
        align-items: start;
    }

}



.pkg-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
   
}
.package-hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* WRAPPER */
.package-wrapper {
    max-width: 1200px;
    margin: auto;
    margin-top: 20px;
}

/* LEFT INFO */
.package-info {
    background: var(--surface) !important;
    padding: 20px;
    border-radius: 14px;
/*    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
*/
}

/* RIGHT BOOKING */
.package-booking {
    background: var(--surface-2) !important;
    padding: 20px;
    border-radius: 14px;
/*    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
*/
    position: sticky;
    top: 20px;
}

/* PRICE */
.price {
    font-size: 22px;
    font-weight: 700;
    color:var(--text) !important;
}

/* BUTTON */
.btn-booking {
    width: 100%;
    background: #ff385c;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
}

    .btn-booking:hover {
        background: #e03150;
    }

/* RATING */
.rating-badge {
    background: #f1f1f1;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
}
.star {
    cursor: pointer;
    color: #ccc;
    transition: 0.2s;
    margin-right: 5px;
    font-size:45px;
}

    .star.active {
        color: #ffc107;
    }

    .star:hover {
        transform: scale(1.2);
    }
#review-list {
    max-height: 420px; /* fixed height */
    overflow-y: auto; /* scrolling enabled */
    padding-right: 5px; /* space for hidden scrollbar */
}
    #review-list::-webkit-scrollbar {
        width: 0px;
        background: transparent;
    }

#review-list {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

._text-muted{
    color:var(--text-muted);
}

.travel-right {
    background: var(--surface-2) !important;
}

.login-heading h2{
    color:var(--text) !important;
}

.login-heading span , .form-group-custom label{
    color:var(--text-muted) !important;
}

.travel-login-wrapper {
    background: var(--surface-2) !important;
}

.divider:before{
    background:var(--bg-alt) !important;
}


.divider span{
    color:var(--text-muted) !important;
    background:var(--bg-alt) !important;
    border-radius:10px;
}

.social-login button {
    background:var(--bg) !important;
}

.social-login button i{
    color:var(--text) !important;
}

.register-link {
    color:var(--text-muted) !important;
}

.surface-two {
    background: var(--surface-2) !important;
}

.surface-one {
    background: var(--surface) !important;
}

.news-letter-bg{
    background:var(--footer-bottom-bg) !important;
}

.news-letter-bg .input-group .form-control {
    box-shadow: none !important;
}

    .news-letter-bg .input-group .form-control::placeholder {
        color: #fff !important;
    }




._register_trasnparent_bg{
    background:var(--trpbg) !important;
}

._register_trasnparent_bg h3{
    color:var(--text) !important;
}

    ._register_trasnparent_bg p, ._register_trasnparent_bg .form-label {
        color: var(--text) !important;
    }

    ._register_trasnparent_bg .input-group .input-group-text, ._register_trasnparent_bg .input-group .form-control{
        color: var(--text) !important;
        background: var(--bg) !important;
        box-shadow:none !important;
    }


        ._register_trasnparent_bg .input-group .form-control::placeholder{
            color:var(--text-muted) !important;
        }

        ._register_trasnparent_bg .reg-form-footer {
            color: var(--text) !important;
        }





/*    Package Page Mode Change*/


.pkg_search_header{
    background:var(--bg) !important;
    padding-bottom:15px;
}

#page-packages .package-card .card {
    background:var(--surface-2) !important;
    color:var(--text) !important;
}

._hrad-text{
    color:var(--text) !important;
}

.aminity_box, .feedback_box, .rating_box_form {
    background: var(--bg) !important;
}

.aminity_box div{
    color:var(--text) !important;
}



/*user color-profile Page CSS*/


/* Header Section */
.user_profile_page .header {
    background: linear-gradient(135deg, var(--head-bg1) 0%, var(--head-bg2) 100%);
    color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

    .user_profile_page .header::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        top: -50px;
        right: -50px;
        pointer-events: none;
    }

.user_profile_page .header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 250px;
}

.user_profile_page .profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

    .user_profile_page .profile-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.user_profile_page .user-info h1 {
    font-size: 24px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user_profile_page .verified-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.user_profile_page .contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
}

    .user_profile_page .contact-info div {
        display: flex;
        align-items: center;
        gap: 8px;
    }

.user_profile_page .icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user_profile_page .header-right {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.user_profile_page .stat {
    text-align: center;
    min-width: 100px;
}

.user_profile_page .stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.user_profile_page .stat-label {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 6px;
}

.user_profile_page .stat-value {
    font-size: 20px;
    font-weight: 600;
}

/* Navigation Tabs */
.user_profile_page .nav-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #ddd;
    margin-bottom: 30px;
    flex-wrap: wrap;
    background: var(--bg);
    border-radius: 8px 8px 0 0;
    padding: 0;
}

.user_profile_page .nav-tab {
    padding: 16px 24px;
    cursor: pointer;
    border: none;
    background: var(--bg);
    font-size: 15px;
    color: var(--text);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    white-space: nowrap;
}

    .user_profile_page .nav-tab:hover {
        color: var(--text-muted);
        background: var(--head-bg2);
    }

    .user_profile_page .nav-tab.active {
        color: var(--text);
        border-bottom-color: #0052B3;
    }

/* Tab Content */
.user_profile_page .tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.user_profile_page #bookings h2, .user_profile_page #saved h2 {
    color: #000 !important;
}

    .user_profile_page .tab-content.active {
        display: block;
    }

@@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* About Me Section */
.user_profile_page .about-section {
    background: var(--bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    color: var(--text) !important;
}

.user_profile_page .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .user_profile_page .section-header h2 {
        font-size: 20px;
        color: var(--text);
        margin: 0;
    }

.user_profile_page .edit-btn {
    background: white;
    color: #0052B3;
    border: 1px solid #0052B3;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .user_profile_page .edit-btn:hover {
        background: #0052B3;
        color: white;
    }

.user_profile_page .about-text {
    color: var(--text-muted);
    line-height: 1.8;
}

.user_profile_page .about-tags {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.user_profile_page .tag {
    background: var(--badge-bg);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.preferences-section {
    background: #fff !important;
}

    .preferences-section h2{
        color:#000 !important;
    }
    /* Travel Preferences */
    .user_profile_page .preferences-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

.user_profile_page .preference-card {
    background: var(--bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.user_profile_page .preference-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.user_profile_page .preference-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.user_profile_page .preference-value {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
}

/* Recent Trips */
.user_profile_page .trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.user_profile_page .trip-card {
    background: var(--bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    color:var(--text) !important;
}

    .user_profile_page .trip-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

.user_profile_page.trip-image {
    width: 100%;
    height: 180px;
    background: #e0e0e0;
    overflow: hidden;
    position: relative;
}

    .user_profile_page .trip-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.user_profile_page .status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.user_profile_page .status-completed {
    background: #10b981;
}

.user_profile_page .status-pending {
    background: #f59e0b;
}

.user_profile_page .trip-info {
    padding: 16px;
}

.user_profile_page .trip-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.user_profile_page .trip-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.user_profile_page .trip-subtitle {
    font-size: 13px;
    color: #999;
}

.user_profile_page .trip-details {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 13px;
    color: #666;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.user_profile_page .trip-price {
    margin-left: auto;
    font-size: 16px;
    font-weight: 600;
    color: #0052B3;
}

/* Account Information */
.user_profile_page .account-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

    .user_profile_page .account-section h2{
        color:#000 !important;
    }

    .user_profile_page .account-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

.user_profile_page .account-field {
    padding: 16px;
    background: var(--bg);
    border-radius: 6px;
}

.user_profile_page .field-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user_profile_page .field-value {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

/* Footer CTA */
.user_profile_page .footer-cta {
    background: linear-gradient(135deg, var(--head-bg1) 0%, var(--head-bg2) 100%);
    color: var(--text);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.user_profile_page .cta-content {
    flex: 1;
    min-width: 250px;
}

    .user_profile_page .cta-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .user_profile_page .cta-content p {
        font-size: 14px;
        opacity: 0.9;
    }

.user_profile_page .cta-button {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

    .user_profile_page .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

.user_profile_page .cta-icon {
    font-size: 16px;
}

/* Responsive Design */
@@media (max-width: 768px) {
    .user_profile_page .container {
        padding: 12px;
    }

    .user_profile_page .header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }

    .user_profile_page .header-left {
        flex-direction: column;
    }

    .user_profile_page .header-right {
        width: 100%;
        justify-content: space-around;
        gap: 20px;
    }

    .user_profile_page .nav-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .user_profile_page .nav-tab {
        padding: 12px 16px;
        font-size: 13px;
    }

    .user_profile_page .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .user_profile_page .about-section, .account-section {
        padding: 20px;
    }

    .user_profile_page .preferences-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .user_profile_page.trips-grid {
        grid-template-columns: 1fr;
    }

    .user_profile_page .account-grid {
        grid-template-columns: 1fr;
    }

    .user_profile_page .footer-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .user_profile_page .cta-content {
        order: 1;
    }

    .user_profile_page .cta-button {
        order: 2;
        width: 100%;
        justify-content: center;
    }
}

@@media (max-width: 480px) {
    .user_profile_page .container {
        padding: 8px;
    }

    .user_profile_page .header {
        padding: 16px;
    }

    .user_profile_page .header-left {
        gap: 12px;
    }

    .user_profile_page .profile-pic {
        width: 60px;
        height: 60px;
    }

    .user_profile_page .user-info h1 {
        font-size: 18px;
    }

    .user_profile_page .nav-tabs {
        gap: 0;
    }

    .user_profile_page .nav-tab {
        padding: 12px 12px;
        font-size: 12px;
    }

    .user_profile_page .stat {
        min-width: 80px;
    }

    .user_profile_page .stat-value {
        font-size: 18px;
    }

    .user_profile_page .about-section {
        padding: 16px;
    }

    .user_profile_page .section-header h2 {
        font-size: 18px;
    }
}



#budgetSearchModal .modal-content, #completeProfileModal .modal-content {
    border-radius: 10px;
    background: linear-gradient(135deg, var(--modal-bg), var(--hero-bg2)) !important;
}

#budgetSearchModal, modal-title, #budgetSearchModal, .form-label {
    color: #fff !important;
}



#budgetSearchModal .form-control {
    height: 48px;
    border-radius: 5px;
    box-shadow:none !important;
}

#budgetSearchModal .btn {
    border-radius: 6px;
    padding: 10px 24px;
}

@media (max-width:576px) {
    #budgetSearchModal .modal-dialog {
        margin: 1rem;
    }

    #budgetSearchModal .modal-content {
        border-radius: 7px;
    }

    #budgetSearchModal .modal-footer {
        display: flex;
        gap: 10px;
    }

        #budgetSearchModal .modal-footer .btn {
            flex: 1;
        }
}

#simpleRegisterForm .google-login-btn {
    width: 100%;
    height: 54px;
    border: 1px solid #dadce0;
    border-radius: 12px;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
    transition: all .25s ease;
}

    #simpleRegisterForm .google-login-btn img {
        width: 22px;
        height: 22px;
    }

    #simpleRegisterForm .google-login-btn:hover {
        background: var(--inverse-bg);
        border-color: #c6c6c6;
        box-shadow: 0 3px 10px rgba(0,0,0,.08);
        color: var(--bg);
    }

    #simpleRegisterForm .google-login-btn:active {
        transform: scale(.98);
    }












/*    Chat Bot section CSS Start*/


/* ==============================
   NM Chatbot Widget
   Namespaced to avoid conflicts
   ============================== */

.nm-chatbot-root {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99999;
    font-family: inherit;
}

/* Launcher */
.nm-chatbot-launcher {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    outline: none;
    cursor: pointer;
    padding: 7px 18px;
    border-radius: 30%;
    color: #fff;
    background: linear-gradient(135deg, #0f62fe, #6f42ff);
/*    box-shadow: 0 14px 35px rgba(15, 98, 254, 0.35);*/
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

    .nm-chatbot-launcher:hover {
/*        transform: translateY(-2px);*/
/*        box-shadow: 0 18px 42px rgba(15, 98, 254, 0.45);*/
    }

    .nm-chatbot-launcher:active {
        transform: translateY(0);
    }

.nm-chatbot-launcher-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    font-size: 18px;
}

.nm-chatbot-launcher-text {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Panel */
.nm-chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: 380px;
    max-width: calc(100vw - 28px);
    height: 560px;
    max-height: calc(100vh - 120px);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.20);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(22px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    will-change: transform, opacity;
}

    .nm-chatbot-panel.nm-chatbot-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

/* Header */
.nm-chatbot-header {
    padding: 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #0f62fe, #6f42ff);
    color: #fff;
}

.nm-chatbot-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nm-chatbot-avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nm-chatbot-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.nm-chatbot-status {
    font-size: 12px;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.nm-chatbot-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ee59d;
    box-shadow: 0 0 0 4px rgba(46, 229, 157, 0.16);
}

.nm-chatbot-close {
    border: 0;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .nm-chatbot-close:hover {
        background: rgba(255, 255, 255, 0.22);
        transform: scale(1.03);
    }

/* Body */
.nm-chatbot-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at top right, rgba(111, 66, 255, 0.08), transparent 24%), radial-gradient(circle at left bottom, rgba(15, 98, 254, 0.07), transparent 28%), #f8fafc;
    overflow-y: auto;
    overflow-x: hidden;
}

.nm-chatbot-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 18px 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .nm-chatbot-messages::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    /* Chrome / Edge / Brave */

    .nm-chatbot-messages::-webkit-scrollbar {
        width: 4px;
    }

    .nm-chatbot-messages::-webkit-scrollbar-track {
        background: transparent;
    }

    .nm-chatbot-messages::-webkit-scrollbar-thumb {
        background: transparent;
        border-radius: 50px;
        transition: .3s;
    }

    /* Show scrollbar only while hovering */

    .nm-chatbot-messages:hover::-webkit-scrollbar-thumb {
        background: rgba(120,120,120,.25);
    }

    /* Slightly darker while scrolling */

    .nm-chatbot-messages::-webkit-scrollbar-thumb:hover {
        background: rgba(120,120,120,.45);
    }

.nm-chatbot-bot-message,
.nm-chatbot-user-message {
    display: flex;
}

.nm-chatbot-bot-message {
    justify-content: flex-start;
}

.nm-chatbot-user-message {
    justify-content: flex-end;
}

.nm-chatbot-bubble {
    max-width: 82%;
    padding: 12px 14px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.55;
    word-break: break-word;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.nm-chatbot-bot-message .nm-chatbot-bubble {
    background: #fff;
    color: #1e293b;
    border-top-left-radius: 6px;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.nm-chatbot-user-message .nm-chatbot-bubble {
    background: linear-gradient(135deg, #0f62fe, #6f42ff);
    color: #fff;
    border-top-right-radius: 6px;
}

/* Suggestions */
.nm-chatbot-suggestions {
    padding: 0 16px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nm-chatbot-chip {
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: rgba(255, 255, 255, 0.75);
    color: #334155;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .nm-chatbot-chip:hover {
        border-color: rgba(15, 98, 254, 0.35);
        background: rgba(15, 98, 254, 0.06);
        color: #0f62fe;
    }

/* Footer */
.nm-chatbot-footer {
    padding: 12px 14px 14px;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.9);
}

.nm-chatbot-input-wrap {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 18px;
    padding: 10px 10px 10px 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.nm-chatbot-input {
    flex: 1;
    border: 0;
    outline: none;
    resize: none;
    background: transparent;
    color: #0f172a;
    font-size: 14px;
    line-height: 1.5;
    max-height: 120px;
    min-height: 24px;
}

    .nm-chatbot-input::placeholder {
        color: #94a3b8;
        border:none !important;
        background:none !important;
    }

    .nm-chatbot-input:focus{
        border:none !important;
        background:none !important;
    }

    .nm-chatbot-send {
        border: 0;
        outline: none;
        width: 40px;
        height: 40px;
        border-radius: 14px;
        background: linear-gradient(135deg, #0f62fe, #6f42ff);
        color: #fff;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 24px rgba(15, 98, 254, 0.25);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nm-chatbot-send:hover {
        transform: translateY(-1px);
    }

    .nm-chatbot-send:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

.nm-chatbot-powered {
    margin-top: 8px;
    text-align: center;
    font-size: 11px;
    color: #64748b;
}

/* Typing indicator */
.nm-chatbot-typing {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    width: fit-content;
}

    .nm-chatbot-typing span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #94a3b8;
        display: inline-block;
        animation: nmChatbotBlink 1.2s infinite ease-in-out;
    }

        .nm-chatbot-typing span:nth-child(2) {
            animation-delay: 0.15s;
        }

        .nm-chatbot-typing span:nth-child(3) {
            animation-delay: 0.3s;
        }

@keyframes nmChatbotBlink {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.35;
    }

    40% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .nm-chatbot-root {
        right: 12px;
        bottom: 12px;
    }

    .nm-chatbot-launcher {
        padding: 12px 14px;
    }

    .nm-chatbot-launcher-text {
        display: none;
    }

    .nm-chatbot-panel {
        width: calc(100vw - 24px);
        height: calc(100vh - 120px);
        bottom: 68px;
        border-radius: 20px;
    }
}

.nm-chatbot-bubble,
.nm-chatbot-chip,
.nm-chatbot-send,
.nm-chatbot-close,
.nm-chatbot-launcher {
    transition: all 0.22s ease;
}

.nm-chatbot-bubble {
    animation: nmBubbleIn 0.18s ease-out;
}

@keyframes nmBubbleIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}