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

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

:root {
    /* ── Himalayan Trust palette (Phase 10) ──────────────────────────── */
    /* Modern tokens (preferred — use these in new code) */
    --primary:        #0F4C81;   /* Deep Indigo — brand spine */
    --primary-dark:   #0A3A66;
    --primary-light:  #E8EFF7;
    --secondary:      #2E8B57;   /* Forest — confirmed/approved */
    --accent:         #E76F00;   /* Marigold — CTAs, urgency, prices */
    --accent-dark:    #C25800;
    --accent-light:   #FFEFD9;
    --bg:             #FAF7F2;   /* Warm ivory page bg */
    --surface:        #FFFFFF;
    --text:           #1A1F2E;
    --danger:         #C0392B;
    --warning:        #F59E0B;

    /* Legacy aliases — kept so existing classes still resolve, now mapped to new palette */
    --primary-color:    var(--primary);
    --secondary-color:  #1A5F9E;          /* gradient pair for primary */
    --accent-color:     var(--accent);
    --success-color:    var(--secondary);
    --text-dark:        var(--text);
    --text-light:       #6B7280;
    --bg-light:         var(--bg);
    --border-color:     #E5DED1;          /* warm divider */

    --shadow:        0 4px 6px rgba(15, 76, 129, 0.06);
    --shadow-md:     0 10px 15px rgba(15, 76, 129, 0.10);
    --shadow-hover:  0 20px 25px rgba(15, 76, 129, 0.15);
    --shadow-cta:    0 8px 18px rgba(231, 111, 0, 0.30);

    /* Reduced gradient set (was 45 ad-hoc uses; reserve gradients for hero/CTA only) */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-success: linear-gradient(135deg, var(--secondary) 0%, #1F6B40 100%);
    --gradient-cta:     linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --gradient-hero:    linear-gradient(180deg, rgba(15,76,129,.55) 0%, rgba(15,76,129,.85) 100%);
    --gradient-placeholder: linear-gradient(135deg, #EFE9DC 0%, #DDD3BD 100%);
}

/* ── Universal accessibility: visible focus rings ─────────────────── */
*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.75;
}

.btn-primary-ui {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
}

.btn-primary-ui:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
}

.btn-cta-ui {
    background: var(--gradient-cta);
    color: #fff;
    border: none;
}

.btn-cta-ui:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0F4C81 0%, #1A5F9E 100%);
    color: white;
    padding: 9rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background image hero variant */
.hero-fullbg {
    background:
        url('/assets/71K4EWjvoPL._AC_UF894,1000_QL80__1776080889106.jpg')
        center center / cover no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(15, 23, 60, 0.75) 0%,
        rgba(37, 99, 235, 0.55) 50%,
        rgba(249, 115, 22, 0.3) 100%
    );
    z-index: 0;
}

.hero::before {
    display: none;
}

.hero-fullbg .hero-content {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.hero-badges span,
.offer-pill,
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Hero headings */
.hero-main-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 3px 12px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    color: rgba(255,255,255,0.88);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* CTA Row */
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    background: var(--gradient-cta);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.45);
    color: #fff;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.stat-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.search-bar {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.search-bar form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    width: 100%;
}

.search-btn {
    padding: 0.875rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    align-self: end;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-btn,
.btn-cta,
.btn-submit,
.btn-signup,
.btn-login,
.btn-logout {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.35);
}

.search-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-group label {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.search-group input,
.search-group select {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-group input:focus,
.search-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Header & Navigation */
.header {
    background: white;
    box-shadow: var(--shadow);
    z-index: 1000;
    position: sticky;
    top: 0;
}

.header.sticky {
    position: sticky;
    top: 0;
    background: white;
}

.navbar {
    padding: 0.85rem 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-link {
    position: relative;
    padding: 0.4rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.btn-login, .btn-signup, .btn-logout {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

.btn-partner {
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    background: var(--gradient-cta);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-partner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
    color: #fff;
}

.btn-login {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

.btn-login:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 15px rgba(102, 126, 234, 0.3);
}

.btn-signup {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(102, 126, 234, 0.4);
}

.btn-logout {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    border: none;
}

.btn-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(255, 107, 107, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: none;
    background: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 1rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.search-bar {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-hover);
}

.search-bar form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.search-group {
    display: flex;
    flex-direction: column;
}

.search-bar input,
.search-bar select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.search-bar input:focus,
.search-bar select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.search-btn {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Categories Section */
.categories {
    padding: 4rem 1rem;
    background: var(--bg-light);
}

.categories h2,
.featured h2,
.why-choose-us h2,
.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.category-link:hover {
    color: var(--secondary-color);
}

/* Featured Listings */
.featured {
    padding: 4rem 1rem;
    background: white;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.card-image {
    height: 220px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0.85rem;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.4s ease;
}

.featured-card:hover .card-image img {
    transform: scale(1.05);
}

/* Subtle image overlay for readability */
.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.card-badges {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.card-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.card-badge-limited {
    background: var(--gradient-cta);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(249,115,22,0.3);
    animation: pulse-badge 2.2s ease infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.78; }
}

.card-content {
    padding: 1.35rem 1.4rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.35;
}

.card-content p {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.55;
    flex: 1;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #e8920a;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 0.9rem;
    margin-top: auto;
}

.price {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.price-label {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta {
    padding: 0.6rem 1.2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.28);
    color: white;
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 4rem 1rem;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.btn-submit {
    padding: 0.875rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
    color: rgba(255,255,255,0.8);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 1rem;
    color: #aaa;
}

/* Trust & Conversion Elements */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 2rem 0;
}

.trust-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid #0F4C81;
    border-radius: 5px;
    color: #0F4C81;
    font-size: 0.85rem;
    font-weight: bold;
}

.urgency-indicator {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: #ff6b6b;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.testimonials-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.testimonial {
    background: white;
    border-left: 4px solid #0F4C81;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-author {
    color: #0F4C81;
    font-weight: bold;
    margin-top: 1rem;
}

.testimonial-rating {
    color: #ff9800;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    margin: 0.5rem 0;
}

/* Authentication Pages */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.auth-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    max-width: 400px;
}

.auth-card h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
}

.form-group button {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.form-group button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.auth-link {
    text-align: center;
    margin-top: 1rem;
}

.auth-link a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-link a:hover {
    text-decoration: underline;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav-menu.active {
        max-height: 700px;
        box-shadow: var(--shadow);
    }

    .nav-menu li {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .search-bar form {
        grid-template-columns: 1fr;
    }

    .search-bar input,
    .search-bar select,
    .search-btn {
        width: 100%;
    }

    .categories h2,
    .featured h2,
    .why-choose-us h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .auth-card {
        margin: 1rem;
    }
}

/* Package Listing Page */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.package-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.package-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5rem;
    transition: all 0.4s ease;
}

.package-card:hover .package-image {
    background-size: 110%;
}

.package-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
}

.package-content {
    padding: 1.5rem;
}

.package-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.package-content .location {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.package-content .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Package Detail Page */
.package-detail {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.package-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.package-detail-content {
    padding: 3rem 2rem;
}

.package-detail-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.package-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 1.1rem;
    color: var(--text-light);
}

.package-section {
    margin-bottom: 2rem;
}

.package-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.package-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.package-booking {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
}

.package-booking .price {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.back-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.back-link a:hover {
    color: var(--secondary-color);
}

/* Package Form */
.package-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 2rem auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.package-form .form-group {
    margin-bottom: 1.5rem;
}

.package-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.package-form input,
.package-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.package-form input:focus,
.package-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.package-form small {
    display: block;
    margin-top: 0.5rem;
    color: #999;
    font-size: 0.85rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Pagination */
.btn-pagination {
    display: inline-block;
    padding: 0.75rem 1rem;
    margin: 0.25rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-pagination:hover,
.btn-pagination.active {
    background: var(--primary-color);
    color: white;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.hotel-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.hotel-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.hotel-rating {
    background: rgba(0, 0, 0, 0.7);
    color: gold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.hotel-content .location {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.hotel-content .description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Hotel Detail */
.hotel-detail {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hotel-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hotel-detail-content {
    padding: 3rem 2rem;
}

.hotel-detail-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hotel-detail-content .location {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.hotel-section {
    margin-bottom: 2rem;
}

.hotel-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.hotel-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.amenity-tag {
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.room-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.room-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #0F4C81 0%, #1A5F9E 100%);
}

.room-card-content {
    padding: 1.5rem;
}

.room-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.room-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.room-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.room-price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.rooms-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.room-item {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    align-items: flex-start;
}

.room-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.room-info {
    flex: 1;
}

.room-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.room-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.filter-section {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Vehicles Grid */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.vehicle-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.vehicle-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.vehicle-type {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

.vehicle-content {
    padding: 1.5rem;
}

.vehicle-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.vehicle-content .driver {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.vehicle-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.vehicle-meta .price {
    font-weight: bold;
    color: var(--primary-color);
}

/* Booking Form */
.booking-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.booking-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.booking-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.booking-form small {
    display: block;
    margin-top: 0.5rem;
    color: #999;
    font-size: 0.85rem;
}

/* Fare Calculator */
.fare-calculator {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.fare-calculator h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.fare-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-light);
}

.fare-row span:last-child {
    font-weight: bold;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .vehicles-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .booking-card,
    .booking-form {
        margin-bottom: 2rem;
    }
}

/* Bookings List */
.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.booking-item:hover {
    box-shadow: var(--shadow-hover);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.booking-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.booking-header p {
    margin: 0.3rem 0 0 0;
}

.booking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row span:first-child {
    color: #999;
    font-size: 0.9rem;
}

.detail-row strong {
    color: var(--text-dark);
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
}

.bookings-table {
    font-size: 0.95rem;
}

.bookings-table th {
    background: #f5f5f5;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    padding: 1rem;
    text-align: left;
}

.bookings-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.bookings-table tr:hover {
    background: #f9f9f9;
}

@media (max-width: 768px) {
    .bookings-table {
        font-size: 0.85rem;
    }

    .bookings-table th,
    .bookings-table td {
        padding: 0.75rem;
    }

    .booking-details {
        grid-template-columns: 1fr;
    }
}

/* Checkout & Payments */
.checkout-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.booking-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-row span {
    color: #999;
    font-size: 0.95rem;
}

.summary-row strong {
    color: var(--text-dark);
    font-weight: 600;
}

.payment-options {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 5px;
}

.payment-options label {
    display: block;
    padding: 0.75rem 0;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-options label:hover {
    color: var(--primary-color);
}

.payment-amount {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.payments-table {
    font-size: 0.95rem;
}

.payments-table th,
.payments-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.payments-table th {
    background: #f5f5f5;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
}

.payments-table tr:hover {
    background: #f9f9f9;
}

@media (max-width: 768px) {
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .checkout-card {
        padding: 1.5rem;
    }

    .payments-table th,
    .payments-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Dashboard Layout */
.dashboard-layout {
    display: flex;
    background: #f5f5f5;
    min-height: 100vh;
}

.dashboard-sidebar {
    width: 250px;
    background: white;
    box-shadow: var(--shadow);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-logo {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.sidebar-nav {
    padding: 1rem 0;
}

.nav-section {
    margin: 1.5rem 0;
}

.nav-label {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: bold;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-item:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}

.nav-item.active {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: calc(1.5rem - 4px);
}

.nav-item .icon {
    font-size: 1.2rem;
}

.nav-item.logout {
    color: #f44336;
}

.dashboard-main {
    margin-left: 250px;
    flex: 1;
    padding: 2rem;
}

.dashboard-header {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.dashboard-header h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-label {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
    text-transform: uppercase;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 0.5rem 0;
    font-weight: bold;
}

.stat-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.stat-link:hover {
    text-decoration: underline;
}

/* Quick Actions */
.quick-actions {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.quick-actions h2 {
    margin-top: 0;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #0F4C81 0%, #1A5F9E 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
    text-align: center;
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.btn-icon {
    font-size: 2rem;
}

.btn-text {
    font-weight: 600;
}

/* List Table */
.list-table {
    border-collapse: collapse;
    overflow: hidden;
}

.list-table thead {
    background: #f5f5f5;
    border-bottom: 2px solid var(--border-color);
}

.list-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.list-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.list-table tr:hover {
    background: #f9f9f9;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        box-shadow: none;
        border-bottom: 1px solid var(--border-color);
    }

    .sidebar-toggle {
        display: block;
    }

    .dashboard-main {
        margin-left: 0;
    }

    .sidebar-nav {
        display: none;
    }

    .dashboard-sidebar.active .sidebar-nav {
        display: block;
    }

    .dashboard-header {
        display: block;
    }

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

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .list-table {
        font-size: 0.85rem;
    }

    .list-table th,
    .list-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .dashboard-main {
        padding: 1rem;
    }

    .dashboard-header {
        padding: 1rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .stat-icon {
        margin: 0 auto;
    }
}

/* Reviews Section */
.reviews-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.reviews-section h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.reviews-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.star-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #ddd;
}

.star-btn:hover {
    color: #ff9800;
    transform: scale(1.1);
}

.star-btn.selected {
    color: #ff9800;
}

.review-item {
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: bold;
    color: var(--text-dark);
}

.review-rating {
    color: #ff9800;
    margin: 0.5rem 0;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.review-comment {
    color: #666;
    line-height: 1.6;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.rating-display {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    color: #ff9800;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rating-bar-fill {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-progress {
    height: 100%;
    background: #ff9800;
}

@media (max-width: 768px) {
    .rating-summary {
        flex-direction: column;
    }

    .reviews-section {
        padding: 1.5rem;
    }

    .star-btn {
        font-size: 1.5rem;
    }
}

.btn-cta-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin-top: 0.5rem;
    background: #25d366;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
}

.btn-cta-secondary:hover {
    background: #1ba855;
    transform: translateY(-2px);
}

/* ===== MOBILE-FIRST OPTIMIZATION ===== */

/* Tablet & Small Desktop (768px to 1023px) */
@media (max-width: 1023px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.95rem;
    }

    .featured-grid,
    .category-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile (480px to 767px) */
@media (max-width: 767px) {
    /* ===== Typography Mobile ===== */
    h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    h4, h5, h6 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* ===== Navigation Mobile ===== */
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-content {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 4px 0;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border-color);
        list-style: none;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }

    .btn-login, .btn-signup, .btn-logout {
        width: 90%;
        margin: 0.5rem auto;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    /* ===== Hero Section Mobile ===== */
    .hero {
        padding: 4rem 1rem;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .search-bar {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 12px;
        width: 100%;
    }

    .search-group {
        width: 100%;
    }

    .search-group label {
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
    }

    .search-group input,
    .search-group select {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.95);
        color: var(--text-dark);
    }

    .search-btn {
        width: 100%;
        padding: 0.875rem !important;
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }

    /* ===== Grid Layouts Mobile ===== */
    .featured-grid,
    .category-grid,
    .features-grid,
    .packages-grid,
    .hotels-grid,
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .featured-card,
    .category-card,
    .package-card,
    .hotel-card,
    .vehicle-card {
        border-radius: 12px;
    }

    /* ===== Buttons Mobile ===== */
    .btn-cta,
    .btn-cta-large,
    .btn-submit,
    .btn-primary,
    .btn-secondary,
    .action-btn,
    .category-link {
        width: 100%;
        padding: 0.875rem 1rem !important;
        font-size: 0.95rem;
        display: block;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .btn-cta-secondary {
        width: 100%;
        padding: 0.875rem 1rem;
    }

    /* ===== Card Images Mobile ===== */
    .card-image {
        min-height: 200px;
        object-fit: cover;
    }

    /* ===== Form Inputs Mobile ===== */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="date"],
    input[type="number"],
    textarea,
    select {
        width: 100%;
        padding: 0.875rem;
        font-size: 1rem;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        font-family: inherit;
    }

    textarea {
        min-height: 120px;
        resize: vertical;
    }

    /* ===== Flexbox Mobile ===== */
    .flex-between,
    .flex-center,
    .flex-column {
        flex-direction: column;
    }

    .flex-between,
    .flex-center {
        align-items: stretch;
        gap: 1rem;
    }

    /* ===== Booking Info Mobile ===== */
    .booking-info {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-section {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    /* ===== Details Mobile ===== */
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .detail-item {
        padding: 1rem;
    }

    /* ===== Testimonials Mobile ===== */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    /* ===== Trust Badges Mobile ===== */
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-badge {
        padding: 1rem;
        text-align: center;
    }

    /* ===== Reviews Mobile ===== */
    .review-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .rating-summary {
        flex-direction: column;
        gap: 1.5rem;
    }

    .reviews-section {
        padding: 1.25rem;
    }

    /* ===== Tables Mobile ===== */
    .list-table {
        font-size: 0.85rem;
    }

    .list-table th,
    .list-table td {
        padding: 0.75rem 0.5rem;
    }

    /* ===== Contact Form Mobile ===== */
    .contact-form {
        padding: 1.5rem;
    }

    /* ===== Package Detail Mobile ===== */
    .package-detail-content {
        padding: 1.5rem 1rem;
    }

    .package-detail-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .package-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .package-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* ===== Hotel/Vehicle Detail Mobile ===== */
    .detail-header {
        flex-direction: column;
        gap: 1rem;
    }

    .detail-gallery {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    /* ===== Footer Mobile ===== */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1.5rem;
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .social-links {
        justify-content: center;
    }

    /* ===== Dashboard Mobile ===== */
    .dashboard-container {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
    }

    .dashboard-main {
        margin-left: 0;
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .action-btn {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }

    .btn-icon {
        font-size: 1.5rem;
    }

    /* ===== Spacing Mobile ===== */
    section {
        padding: 2rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* ===== Hover Effects - Reduce on Mobile ===== */
    @media (hover: none) {
        .card:hover {
            transform: none;
        }

        .btn-cta:hover {
            transform: none;
        }

        .featured-card:hover {
            transform: none;
        }
    }
}

/* Small Mobile (up to 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 0.75rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1rem;
    }

    p {
        font-size: 0.9rem;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .logo {
        font-size: 1.1rem;
    }

    .hero {
        padding: 3rem 0.75rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .search-bar {
        padding: 1rem 0.75rem;
    }

    .search-group input,
    .search-group select {
        padding: 0.75rem 0.5rem;
        font-size: 16px;
    }

    .btn-login, .btn-signup, .btn-logout {
        width: 95%;
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .btn-cta,
    .btn-cta-large,
    .btn-submit {
        padding: 0.75rem 0.75rem !important;
        font-size: 0.9rem;
    }

    .featured-card,
    .category-card,
    .card {
        margin-bottom: 1rem;
    }

    .featured-card,
    .category-card,
    .package-card,
    .hotel-card,
    .vehicle-card {
        border-radius: 10px;
    }

    section {
        padding: 1.5rem 0.75rem;
    }

    .package-detail-content {
        padding: 1.25rem 0.75rem;
    }

    .reviews-section {
        padding: 1rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .review-item {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .rating-number {
        font-size: 2.5rem;
    }

    .star-btn {
        font-size: 1.5rem;
    }

    .trust-badge {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section {
        padding-bottom: 1rem;
    }
}

/* ===== HIGH-CONVERSION ELEMENTS ===== */

/* Urgency & Trust Badges */
.urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.5rem 0.25rem;
    animation: pulse 2s infinite;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid var(--primary-color);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0.5rem 0.25rem;
}

.trust-badge-icon {
    font-size: 1.2rem;
}

/* Sticky Booking Button */
.sticky-book-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 900;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
}

.sticky-book-button.show {
    display: flex;
    animation: slideInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticky-cta-btn {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.sticky-book-now {
    background: var(--gradient-primary);
    color: white;
}

.sticky-enquire {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.sticky-enquire:hover {
    background: var(--primary-color);
    color: white;
}

.sticky-call-btn {
    background: linear-gradient(135deg, #25d366 0%, #1ba855 100%);
    color: white;
}

/* Floating WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 950;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #1ba855 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button-tooltip {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: white;
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-button:hover .whatsapp-button-tooltip {
    opacity: 1;
    bottom: 80px;
}

/* Urgency Message */
.urgency-message {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    border-left: 4px solid #ff6b6b;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.urgency-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.urgency-text {
    flex: 1;
}

.urgency-text strong {
    color: #ff6b6b;
    display: block;
    font-size: 0.95rem;
}

.urgency-text p {
    margin: 0.25rem 0 0 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Limited Time Banner */
.limited-time-banner {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: center;
    font-weight: 600;
    animation: blink 1.5s ease-in-out infinite;
}

/* Trust Signals Section */
.trust-signals {
    background: var(--bg-light);
    padding: 2rem 1.25rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.trust-signals h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.trust-signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.trust-signal-item {
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.trust-signal-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-signal-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-signal-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Secure Payment Badges */
.payment-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin: 1.5rem 0;
}

.payment-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-badge-icon {
    font-size: 2rem;
}

.payment-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
}

/* CTA Button Group */
.cta-button-group {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-button-group .btn-primary,
.cta-button-group .btn-secondary {
    flex: 1;
    min-width: 150px;
    padding: 1rem;
    font-size: 0.95rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.cta-button-group .btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.cta-button-group .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.cta-button-group .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button-group .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Call Now Button */
.call-now-btn {
    background: linear-gradient(135deg, #25d366 0%, #1ba855 100%);
    color: white;
}

.call-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* Mobile Responsive Conversion Elements */
@media (max-width: 767px) {
    .sticky-book-button {
        bottom: 80px;
        right: 10px;
    }

    .sticky-cta-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-button-tooltip {
        bottom: 70px;
    }

    .whatsapp-button:hover .whatsapp-button-tooltip {
        bottom: 75px;
    }

    .trust-signals-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .payment-badges {
        gap: 1rem;
        padding: 1rem;
    }

    .cta-button-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-button-group .btn-primary,
    .cta-button-group .btn-secondary {
        width: 100%;
    }

    .urgency-message {
        gap: 0.75rem;
        padding: 0.875rem 1rem;
    }

    .trust-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 479px) {
    .sticky-book-button {
        bottom: 70px;
        right: 5px;
    }

    .sticky-cta-btn {
        padding: 0.7rem 0.75rem;
        font-size: 0.85rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .trust-signals {
        padding: 1.5rem 1rem;
    }

    .trust-signals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-badges {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ===== ENHANCED NAVIGATION & SEARCH ===== */

/* Search Bar in Header */
.navbar-search {
    flex: 1;
    max-width: 400px;
    margin: 0 1.5rem;
}

.search-form {
    display: flex;
    gap: 0;
}

.search-input {
    flex: 1;
    padding: 0.625rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px 0 0 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-btn {
    padding: 0.625rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #1A5F9E 0%, #0F4C81 100%);
    transform: translateY(-2px);
}

/* Navigation Dropdowns */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(-180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

/* Mobile Navigation Dropdown Adjustments */
@media (max-width: 767px) {
    .navbar-search {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transform: none;
        background: var(--bg-light);
        border: none;
        border-left: 3px solid var(--primary-color);
        box-shadow: none;
        overflow: hidden;
        transition: max-height 0.3s ease, visibility 0.3s ease;
        margin-left: 1rem;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .dropdown-arrow {
        transform: rotate(0deg);
        display: inline-block;
    }

    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(-180deg);
    }

    .dropdown-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Improved Footer Navigation */
.footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-contact a {
    color: var(--primary-color);
}

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

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    gap: 2rem;
}

.footer-bottom-left,
.footer-bottom-right {
    flex: 1;
}

.footer-bottom-center {
    flex: 1;
    text-align: center;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

/* Responsive Footer */
@media (max-width: 1023px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-badge {
        font-size: 0.75rem;
    }
}

/* Sticky Header Improvements */
.header.sticky {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.header.sticky:active,
.header.sticky:focus-within {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Navbar Content Flex Layout */
.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo {
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-menu {
    flex: 1;
    min-width: auto;
}

/* Enhanced Mobile Search */
@media (max-width: 767px) {
    .navbar-content {
        flex-wrap: nowrap;
    }

    .navbar-search {
        display: none;
    }

    .nav-menu.active {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
    }
}

/* ===== LISTING PAGE FILTERS ===== */

/* Filter Container */
.listing-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.filter-sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.filter-sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.filter-group input[type="range"],
.filter-group input[type="text"],
.filter-group input[type="number"],
.filter-group select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-group input[type="range"] {
    padding: 0;
    cursor: pointer;
}

.price-inputs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.price-inputs input {
    flex: 1;
}

.price-inputs span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.range-value {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-dark);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.filter-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn-apply {
    background: var(--gradient-primary);
    color: white;
}

.filter-btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
}

.filter-btn-reset {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.filter-btn-reset:hover {
    background: var(--bg-light);
}

/* Filter Results Info */
.filter-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.filter-results-count {
    font-weight: 600;
    color: var(--text-dark);
}

.active-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.filter-tag-remove {
    cursor: pointer;
    font-weight: bold;
}

.filter-tag-remove:hover {
    opacity: 0.8;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    color: var(--text-light);
}

.no-results h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.no-results p {
    margin-bottom: 1.5rem;
}

.no-results .btn-cta {
    display: inline-block;
}

/* Responsive Filter Layout */
@media (max-width: 1023px) {
    .listing-container {
        grid-template-columns: 200px 1fr;
        gap: 1.5rem;
    }

    .filter-sidebar {
        padding: 1rem;
    }

    .filter-sidebar h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .listing-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filter-sidebar {
        position: relative;
        top: auto;
        margin-bottom: 2rem;
        padding: 1.25rem;
    }

    .filter-group {
        margin-bottom: 1.5rem;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

    .filter-results-info {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 479px) {
    .filter-sidebar {
        padding: 1rem;
    }

    .filter-group label {
        font-size: 0.9rem;
    }

    .active-filters {
        justify-content: center;
    }

    .filter-tag {
        font-size: 0.8rem;
    }
}

/* ===== DETAIL PAGE ENHANCEMENTS ===== */

/* Image Gallery */
.image-gallery {
    margin: 2rem 0;
}

.gallery-main {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.gallery-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

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

/* Detail Page Sections */
.detail-sections {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.detail-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.detail-section h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.detail-section h2::before {
    font-size: 1.75rem;
}

.detail-section ul {
    list-style: none;
    padding: 0;
}

.detail-section li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.detail-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.exclusion-item::before {
    content: "✕";
    color: #dc3545;
}

/* Day-wise Itinerary */
.itinerary-timeline {
    position: relative;
    padding: 1rem 0;
}

.itinerary-day {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.itinerary-day::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 60px;
    bottom: -60px;
    width: 2px;
    background: var(--border-color);
}

.itinerary-day:last-child::before {
    display: none;
}

.itinerary-day-number {
    min-width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.itinerary-day-content {
    flex: 1;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.itinerary-day-content h4 {
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
}

.itinerary-day-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Reviews Section Enhanced */
.reviews-container {
    display: grid;
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--text-dark);
}

.review-rating {
    color: #ffc107;
    font-weight: bold;
    font-size: 1rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-helpful {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.review-helpful-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-helpful-btn:hover {
    transform: scale(1.1);
}

/* Sticky Booking Button */
.sticky-booking-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    font-weight: 600;
    font-size: 0.95rem;
    animation: slideIn 0.3s ease;
    transition: all 0.3s ease;
    display: none;
}

.sticky-booking-btn.show {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sticky-booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Rating Summary */
.rating-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rating-score-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.rating-score-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.rating-score-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-bar-label {
    min-width: 60px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.rating-bar-fill {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.rating-bar-count {
    min-width: 40px;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Responsive Detail Pages */
@media (max-width: 767px) {
    .gallery-main {
        height: 250px;
    }

    .detail-section {
        padding: 1.5rem;
    }

    .itinerary-day {
        gap: 1rem;
    }

    .sticky-booking-btn {
        right: 1rem;
        bottom: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .rating-summary {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}

@media (max-width: 479px) {
    .gallery-thumbnails {
        gap: 0.5rem;
    }

    .gallery-thumbnail {
        width: 60px;
        height: 60px;
    }

    .detail-section {
        padding: 1rem;
        margin: 1rem 0;
    }

    .sticky-booking-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        display: none;
    }

    .sticky-booking-btn.show {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sticky-booking-btn span {
        display: none;
    }
}


/* ===== REVIEW SUBMISSION SYSTEM ===== */

/* Star Rating Input */
.star-rating-input {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
    margin: 1rem 0;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    color: #ddd;
    transition: all 0.2s ease;
    user-select: none;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: #ffc107;
}

.star-rating-input:has(input:checked) label:hover,
.star-rating-input:has(input:checked) label:hover ~ label {
    color: #ffc107;
}

/* Review Form */
.review-form-container {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid var(--border-color);
}

.review-form-container h3 {
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-form-group {
    margin-bottom: 1.5rem;
}

.review-form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.review-form-group textarea,
.review-form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.review-form-group textarea:focus,
.review-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.review-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.review-form-submit {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
}

.review-form-submit:active {
    transform: translateY(0);
}

.review-success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
    display: none;
}

.review-success-message.show {
    display: block;
}

.review-error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
    display: none;
}

.review-error-message.show {
    display: block;
}

/* Star Rating Display (for existing reviews) */
.star-rating-display {
    display: inline-flex;
    gap: 0.25rem;
    color: #ffc107;
    font-size: 0.95rem;
}

.star-rating-display .empty-star {
    color: #ddd;
}

/* Response to Reviews */
.review-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: flex-end;
}

@media (max-width: 767px) {
    .review-form-container {
        padding: 1.5rem;
    }

    .star-rating-input {
        font-size: 1.75rem;
    }

    .review-form-row {
        grid-template-columns: 1fr;
    }
}

/* Offers Section */
.offers {
    padding: 3rem 1.5rem;
    background: white;
}

.offers-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    justify-content: space-between;
}

.offer-image {
    flex: 1;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.offer-image:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
    .offers {
        padding: 2rem 1rem;
    }

    .offers-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .offers {
        padding: 1.5rem 0.75rem;
    }

    .offers-grid {
        gap: 1rem;
    }
}

/* Hero fullbg responsive */
@media (max-width: 768px) {
    .hero-fullbg {
        background-attachment: scroll;
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-hero-cta,
    .btn-hero-outline {
        padding: 0.85rem 1.6rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-num {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.75rem;
    }

    .hero-badges {
        gap: 0.5rem;
    }

    .hero-badges span {
        font-size: 0.78rem;
        padding: 0.45rem 0.8rem;
    }

    .hero-stats {
        gap: 1rem;
    }
}

/* =====================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS UPGRADE
   ===================================================== */

/* --- Section spacing --- */
@media (max-width: 767px) {
    .categories,
    .featured,
    .why-choose-us,
    .contact,
    .offers {
        padding: 3rem 0;
    }

    .categories .container,
    .featured .container,
    .why-choose-us .container,
    .contact .container {
        padding: 0 1rem;
    }

    /* Section titles centered and sized */
    .categories h2,
    .featured h2,
    .why-choose-us h2,
    .contact h2 {
        font-size: 1.65rem;
        text-align: center;
        line-height: 1.25;
    }
}

/* --- Card footer: stack on mobile so btn-cta gets full width --- */
@media (max-width: 767px) {
    .card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .price {
        text-align: center;
    }

    .price-amount {
        font-size: 1.3rem;
    }

    .card-content h3 {
        font-size: 1rem;
    }

    .card-image {
        height: 190px;
    }

    /* btn-cta full width inside card on mobile */
    .featured-card .btn-cta {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
}

/* --- Become Partner btn full width on mobile menu --- */
@media (max-width: 767px) {
    .btn-partner {
        width: 90%;
        margin: 0.5rem auto;
        justify-content: center;
    }

    .nav-divider {
        display: none;
    }
}

/* --- Offers strip pills wrap naturally --- */
@media (max-width: 767px) {
    .offers-strip {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .offer-pill {
        font-size: 0.82rem;
        padding: 0.45rem 0.9rem;
    }
}

/* --- Footer responsive --- */
@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }
}

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

/* --- Category cards on very small screens --- */
@media (max-width: 480px) {
    .category-card {
        padding: 1.5rem 1rem;
    }

    .category-icon {
        font-size: 2.5rem;
    }

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

    .contact-content {
        gap: 1.5rem;
    }

    /* Hero stats: horizontal scrollable row */
    .hero-stats {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .hero-stat {
        min-width: 90px;
        flex-shrink: 0;
    }

    /* Search bar compact on very small screens */
    .search-bar {
        padding: 1rem;
        margin-top: 1.5rem;
    }
}

/* --- Touch targets: minimum 44px tall for all interactive elements --- */
@media (max-width: 767px) {
    .btn-cta,
    .btn-hero-cta,
    .btn-hero-outline,
    .btn-login,
    .btn-signup,
    .btn-logout,
    .btn-partner,
    .btn-submit,
    .search-btn,
    .nav-link,
    .category-link {
        min-height: 44px;
    }
}

/* =====================================================
   PACKAGE DETAIL PAGE — FULL REDESIGN
   ===================================================== */

/* Page wrapper */
.pd-wrapper {
    background: #F8FAFC;
    min-height: 60vh;
    padding-bottom: 3rem;
}

/* Breadcrumb */
.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0 0.25rem;
    font-size: 0.88rem;
    color: #64748b;
    flex-wrap: wrap;
}
.pd-breadcrumb a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
}
.pd-breadcrumb a:hover { text-decoration: underline; }
.pd-breadcrumb span:last-child { color: #1E293B; font-weight: 600; }

/* ------- GALLERY ------- */
.pd-gallery {
    margin: 1.25rem 0 0;
    display: grid;
    grid-template-rows: auto auto;
    gap: 0.75rem;
}

.pd-gallery-main {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    background: #e2e8f0;
}

.pd-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.pd-gallery-main:hover img { transform: scale(1.03); }

.pd-gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0F4C81 0%, #1A5F9E 100%);
}

.pd-gallery-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.pd-gallery-type-badge {
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.pd-gallery-thumbs {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.pd-gallery-thumb {
    width: 90px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    flex-shrink: 0;
    transition: border-color 0.25s ease, transform 0.2s ease;
    background: #e2e8f0;
}
.pd-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumb-grad { width: 100%; height: 100%; }
.pd-gallery-thumb.active { border-color: #2563EB; box-shadow: 0 0 0 2px rgba(37,99,235,0.2); }
.pd-gallery-thumb:hover { transform: scale(1.06); }

/* ------- TWO-COLUMN LAYOUT ------- */
.pd-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

/* ------- MAIN CONTENT ------- */
.pd-main { min-width: 0; }

.pd-hero-info { margin-bottom: 1.5rem; }

.pd-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1E293B;
    line-height: 1.25;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.pd-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pd-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #EFF6FF;
    color: #1d4ed8;
    border: 1px solid #BFDBFE;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
}

.pd-rating-chip {
    background: #FFF7ED;
    color: #C2410C;
    border-color: #FED7AA;
}

/* ------- TABS ------- */
.pd-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #E2E8F0;
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

.pd-tab {
    background: none;
    border: none;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease;
    font-family: inherit;
}

.pd-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 3px;
    background: #2563EB;
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.pd-tab.active { color: #2563EB; }
.pd-tab.active::after { transform: scaleX(1); }
.pd-tab:hover { color: #2563EB; }

/* ------- TAB PANELS ------- */
.pd-tab-panel { display: none; }
.pd-tab-panel.active { display: block; }

/* ------- SECTIONS ------- */
.pd-section {
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.pd-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #EFF6FF;
    letter-spacing: -0.01em;
}

.pd-lead {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1rem;
    font-weight: 500;
}

.pd-description {
    color: #64748b;
    line-height: 1.8;
    font-size: 0.97rem;
}

/* Highlights grid */
.pd-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.pd-highlight-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.1rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #E2E8F0;
}

.pd-highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pd-highlight-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pd-highlight-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1E293B;
    margin-top: 0.15rem;
}

/* ------- ITINERARY ACCORDION ------- */
.pd-itinerary { display: flex; flex-direction: column; }

.pd-day {
    display: flex;
    gap: 1rem;
    position: relative;
}

.pd-day-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.pd-day-circle {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2563EB, #1d4ed8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
    z-index: 1;
    flex-shrink: 0;
}

.pd-day-line {
    width: 2px;
    flex: 1;
    background: #BFDBFE;
    margin: 4px 0;
    min-height: 20px;
}

.pd-day-body {
    flex: 1;
    margin-bottom: 1.25rem;
}

.pd-day-toggle {
    width: 100%;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
    font-family: inherit;
}

.pd-day-toggle:hover { background: #DBEAFE; }
.pd-day-toggle[aria-expanded="true"] { border-radius: 10px 10px 0 0; border-bottom-color: transparent; }

.pd-day-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1E293B;
}

.pd-day-chevron {
    color: #2563EB;
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}

.pd-day-toggle[aria-expanded="true"] .pd-day-chevron { transform: rotate(180deg); }

.pd-day-content {
    display: none;
    padding: 1rem 1.1rem;
    border: 1px solid #BFDBFE;
    border-top: none;
    border-radius: 0 0 10px 10px;
    background: #fff;
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
}

.pd-day-content.open { display: block; }

.pd-day-last .pd-day-marker { }

/* Custom itinerary form */
.pd-custom-itinerary {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.pd-custom-itinerary h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    color: #1E293B;
}

.pd-custom-itinerary p {
    color: #64748b;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.pd-custom-form { display: flex; flex-direction: column; gap: 1rem; }

.pd-form-row label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}

.pd-form-row input[type="number"] {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
}

.pd-form-row input[type="number"]:focus { border-color: #2563EB; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }

.pd-interest-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.pd-interest-chip {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.8rem;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
    color: #1d4ed8;
}

.pd-interest-chip input { display: none; }
.pd-interest-chip:has(input:checked) { background: #2563EB; color: #fff; border-color: #2563EB; }

.pd-itinerary-result {
    background: #fff;
    border-radius: 10px;
    padding: 1.25rem;
    margin-top: 1rem;
    border: 1px solid #E2E8F0;
}

/* ------- INCLUSIONS ------- */
.pd-incl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pd-incl-col {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #E2E8F0;
}

.pd-incl-col h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #1E293B;
}

.pd-incl-col ul { list-style: none; padding: 0; margin: 0; }

.pd-incl-yes li, .pd-incl-no li {
    padding: 0.5rem 0 0.5rem 1.6rem;
    position: relative;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    border-bottom: 1px solid #F1F5F9;
}

.pd-incl-yes li:last-child, .pd-incl-no li:last-child { border-bottom: none; }

.pd-incl-yes li::before {
    content: "✓";
    position: absolute; left: 0;
    color: #10b981; font-weight: 700;
}

.pd-incl-no li::before {
    content: "✕";
    position: absolute; left: 0;
    color: #ef4444; font-weight: 700;
}

/* ------- REVIEWS TAB ------- */
.pd-rating-summary {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    align-items: center;
    background: #EFF6FF;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.pd-rating-score { text-align: center; }

.pd-score-big {
    font-size: 3.5rem;
    font-weight: 800;
    color: #F97316;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pd-stars { font-size: 1.1rem; margin-bottom: 0.25rem; }

.pd-score-sub { font-size: 0.8rem; color: #64748b; }

.pd-rating-bar-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    color: #475569;
}

.pd-bar-track {
    flex: 1;
    height: 8px;
    background: #CBD5E1;
    border-radius: 999px;
    overflow: hidden;
}

.pd-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #F97316, #EF4444);
    border-radius: 999px;
    transition: width 0.6s ease;
}

.pd-review-form, .pd-review-login-prompt {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #E2E8F0;
    margin-bottom: 1.5rem;
}

.pd-review-form h3 { margin: 0 0 1rem; font-size: 1rem; color: #1E293B; }

.pd-review-login-prompt p { margin: 0; color: #64748b; font-size: 0.9rem; }
.pd-review-login-prompt a { color: #2563EB; font-weight: 600; }

.pd-reviews-list h3 { font-size: 1rem; font-weight: 700; color: #1E293B; margin-bottom: 1rem; }

.pd-no-reviews { text-align: center; color: #94a3b8; padding: 2rem; }

.pd-review-card {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: #fff;
}

.pd-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.pd-review-header strong { color: #1E293B; font-size: 0.95rem; }

.pd-review-stars { font-size: 0.85rem; margin-top: 0.15rem; }

.pd-review-header small { color: #94a3b8; font-size: 0.8rem; }

.pd-review-card p { color: #475569; font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* ------- SIDEBAR BOOKING PANEL (STEP 3) ------- */
.pd-sidebar { position: sticky; top: 100px; }

.pd-booking-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 1.75rem;
    border: 1px solid #E2E8F0;
}

.pd-booking-price {
    text-align: center;
    margin-bottom: 1rem;
}

.pd-price-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.pd-price-amount {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: #2563EB;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.pd-price-per {
    display: block;
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: 0.15rem;
}

.pd-duration-chip {
    text-align: center;
    background: #F0FDF4;
    color: #166534;
    border: 1px solid #BBF7D0;
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.83rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pd-booking-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.pd-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.9rem 1rem;
    background: linear-gradient(135deg, #2563EB, #1d4ed8);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}

.pd-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.4);
    color: #fff;
}

.pd-enquire-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem;
    background: #F0FDF4;
    color: #15803d;
    border: 1.5px solid #86EFAC;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: background 0.2s ease;
}

.pd-enquire-btn:hover { background: #DCFCE7; color: #15803d; }

.pd-call-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
    background: #FFF7ED;
    color: #C2410C;
    border: 1.5px solid #FED7AA;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease;
}

.pd-call-btn:hover { background: #FFEDD5; color: #C2410C; }

/* Trust mini grid */
.pd-trust-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #EFF6FF;
    border-radius: 10px;
}

.pd-trust-mini-item {
    text-align: center;
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
}

.pd-trust-mini-item span {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 0.15rem;
}

/* Payment badges row */
.pd-payment-row {
    display: flex;
    justify-content: space-between;
    gap: 0.4rem;
}

.pd-pay-badge {
    flex: 1;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: #475569;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 0.45rem 0.3rem;
}

/* Help card */
.pd-help-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem;
    border: 1px solid #E2E8F0;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.pd-help-icon { font-size: 2rem; }

.pd-help-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1E293B;
    margin-bottom: 0.25rem;
}

.pd-help-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #25D366;
    text-decoration: none;
}

.pd-help-link:hover { text-decoration: underline; }

/* Back link */
.pd-back-wrap { padding: 1.5rem 0 0; }

.pd-back-link {
    color: #2563EB;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.92rem;
}

.pd-back-link:hover { text-decoration: underline; }

/* Mobile sticky booking bar */
.pd-sticky-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0; right: 0;
    z-index: 500;
    background: #fff;
    border-top: 2px solid #E2E8F0;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}

.pd-sticky-book {
    flex: 1;
    background: linear-gradient(135deg, #2563EB, #1d4ed8);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.pd-sticky-call {
    background: #FFF7ED;
    color: #C2410C;
    border: 1.5px solid #FED7AA;
    border-radius: 10px;
    padding: 0.8rem 1.1rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* ------- RESPONSIVE ------- */
@media (max-width: 1024px) {
    .pd-layout { grid-template-columns: 1fr 310px; gap: 1.5rem; }
    .pd-highlights { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .pd-layout { grid-template-columns: 1fr; }
    .pd-sidebar { position: static; margin-top: 0; }
    .pd-sidebar .pd-booking-card { display: none; }
    .pd-sidebar .pd-help-card { display: none; }
    .pd-sticky-mobile { display: flex; }
    .pd-gallery-main { height: 240px; }
    .pd-gallery-thumb { width: 70px; height: 56px; }
    .pd-title { font-size: 1.5rem; }
    .pd-tabs { gap: 0; }
    .pd-tab { padding: 0.75rem 0.85rem; font-size: 0.82rem; }
    .pd-highlights { grid-template-columns: repeat(2, 1fr); }
    .pd-incl-grid { grid-template-columns: 1fr; }
    .pd-rating-summary { grid-template-columns: 1fr; }
    .pd-trust-mini { grid-template-columns: repeat(2, 1fr); }
    .pd-section { padding: 1.25rem; }
    .pd-wrapper { padding-bottom: 5rem; }
}

@media (max-width: 480px) {
    .pd-highlights { grid-template-columns: 1fr 1fr; }
    .pd-title { font-size: 1.3rem; }
    .pd-score-big { font-size: 2.5rem; }
}

/* =====================================================
   HIGH-CONVERSION UI ELEMENTS
   ===================================================== */

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 9999;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: wa-pulse 2.5s ease infinite;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.floating-whatsapp svg {
    flex-shrink: 0;
}

.floating-whatsapp-label {
    white-space: nowrap;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
    50%       { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.7); }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 1.25rem;
        right: 1.25rem;
        padding: 0.75rem;
        border-radius: 50%;
    }
    .floating-whatsapp-label {
        display: none;
    }
}

/* --- Booking Urgency & Trust Row --- */
.booking-urgency-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #fff3cd;
    color: #92400e;
    border: 1px solid #fcd34d;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    animation: urgency-flash 1.8s ease infinite;
}

@keyframes urgency-flash {
    0%, 100% { background: #fff3cd; }
    50%       { background: #fde68a; }
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

/* =====================================================
   TRUST-BUILDING SECTIONS (reviews, testimonials,
   payment icons)
   ===================================================== */

/* ---- Section wrapper ---- */
.trust-reviews-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
    padding: 5rem 0 4rem;
}

.tr-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tr-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1E293B;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
}

.tr-section-sub {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* ---- STEP 2: Rating Hero Bar ---- */
.tr-rating-hero {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: #fff;
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: 1px solid #E2E8F0;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.tr-score-block {
    text-align: center;
    flex-shrink: 0;
}

.tr-big-score {
    font-size: 4.5rem;
    font-weight: 900;
    color: #F97316;
    line-height: 1;
    letter-spacing: -0.04em;
}

.tr-stars-row {
    font-size: 1.6rem;
    margin: 0.2rem 0 0.3rem;
    letter-spacing: 0.05em;
}

.tr-star { display: inline-block; }
.tr-star-full  { color: #F97316; }
.tr-star-half  { color: #FDBA74; }
.tr-star-empty { color: #CBD5E1; }

.tr-score-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
}

.tr-divider {
    width: 1px;
    height: 80px;
    background: #E2E8F0;
    flex-shrink: 0;
}

.tr-stats-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    flex: 1;
}

.tr-stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 100px;
    background: #EFF6FF;
    border-radius: 14px;
    padding: 1rem 0.75rem;
    border: 1px solid #BFDBFE;
}

.tr-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2563EB;
    line-height: 1;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.tr-stat-text {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #475569;
    text-align: center;
}

/* ---- STEP 1: DB Review Cards ---- */
.tr-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tr-review-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tr-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.tr-review-top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.tr-reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tr-reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1E293B;
}

.tr-review-stars-sm {
    font-size: 0.85rem;
    margin-top: 0.1rem;
}

.tr-review-date {
    margin-left: auto;
    font-size: 0.75rem;
    color: #94a3b8;
    white-space: nowrap;
}

.tr-review-text {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    flex: 1;
}

.tr-review-verified {
    font-size: 0.75rem;
    font-weight: 600;
    color: #15803d;
}

/* ---- STEP 3: Testimonials ---- */
.tr-testimonials {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.5rem;
}

.tr-testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #E2E8F0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tr-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.tr-testimonial-featured {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-color: #BFDBFE;
}

.tr-quote-icon {
    font-size: 4rem;
    color: #BFDBFE;
    font-family: Georgia, serif;
    line-height: 0.5;
    margin-bottom: -0.5rem;
}

.tr-testimonial-text {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

.tr-testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid #E2E8F0;
    padding-top: 1rem;
}

.tr-testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.tr-avatar-orange { background: linear-gradient(135deg, #F97316, #DC2626); }
.tr-avatar-blue   { background: linear-gradient(135deg, #2563EB, #7C3AED); }
.tr-avatar-green  { background: linear-gradient(135deg, #10B981, #059669); }

.tr-testimonial-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: #1E293B;
}

.tr-testimonial-meta {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.1rem;
}

.tr-testimonial-stars {
    margin-left: auto;
    color: #F97316;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* ---- STEP 4: Payment Trust Strip ---- */
.payment-trust-section {
    background: #1E293B;
    padding: 2rem 0;
}

.pt-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pt-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.pt-lock-icon { font-size: 2rem; }

.pt-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.pt-sub {
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: 0.15rem;
}

.pt-methods {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex: 1;
}

.pt-method-badge {
    background: #fff;
    border-radius: 6px;
    padding: 0.3rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.pt-method-badge:hover { transform: scale(1.08); }

.pt-certifications {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pt-cert {
    font-size: 0.78rem;
    font-weight: 600;
    color: #CBD5E1;
    background: rgba(255,255,255,0.07);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    white-space: nowrap;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .tr-testimonials { grid-template-columns: 1fr 1fr; }
    .tr-testimonial-featured { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
    .tr-rating-hero { gap: 1.25rem; padding: 1.25rem; flex-direction: column; align-items: flex-start; }
    .tr-divider { display: none; }
    .tr-stats-row { gap: 0.75rem; }
    .tr-stat-pill { min-width: 80px; padding: 0.75rem 0.5rem; }
    .tr-stat-num { font-size: 1.35rem; }
    .tr-big-score { font-size: 3.5rem; }
    .tr-reviews-grid { grid-template-columns: 1fr; }
    .tr-testimonials { grid-template-columns: 1fr; }
    .tr-testimonial-featured { grid-column: auto; }
    .pt-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .tr-section-title { font-size: 1.5rem; }
}


/* ============================================================
   UTILITY CLASSES — Added for improvement pass
   ============================================================ */

/* Page hero banner */
.page-hero {
    background: linear-gradient(135deg, #0F4C81 0%, #1A5F9E 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 1rem 3rem;
}
.page-hero h1 { font-size: 2.2rem; margin-bottom: 0.75rem; color: #fff; }
.page-hero p  { font-size: 1.05rem; opacity: .9; max-width: 640px; margin: 0 auto; }

/* Page content wrapper */
.page-wrap { max-width: 900px; margin: 0 auto; padding: 3rem 1rem 4rem; }
.page-wrap-wide { max-width: 1100px; margin: 0 auto; padding: 3rem 1rem 4rem; }

/* Generic content section card */
.section-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    padding: 2rem;
    margin-bottom: 2rem;
}
.section-card h2 { margin-top: 0; color: #2c3e50; }

/* Two-column grid for cards */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (max-width: 640px) {
    .two-col-grid { grid-template-columns: 1fr; }
}

/* Gradient card */
.gradient-card {
    padding: 2rem;
    border-radius: 12px;
    color: #fff;
}
.gradient-card h2 { margin-top: 0; color: #fff; }
.gradient-card p  { opacity: .92; line-height: 1.7; }
.gradient-primary { background: linear-gradient(135deg, #0F4C81 0%, #1A5F9E 100%); box-shadow: 0 4px 18px rgba(102,126,234,.3); }
.gradient-accent  { background: linear-gradient(135deg, #E76F00 0%, #E76F00 100%); box-shadow: 0 4px 18px rgba(245,87,108,.3); }
.gradient-cta     { background: linear-gradient(135deg, #0F4C81 0%, #1A5F9E 100%); box-shadow: 0 8px 24px rgba(102,126,234,.3); text-align: center; }
.gradient-card .icon-big { font-size: 3rem; margin-bottom: 1rem; }

/* Feature icons grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}
.feature-item { padding: 1.5rem; text-align: center; }
.feature-item .icon-big { font-size: 2.5rem; margin-bottom: .75rem; }
.feature-item h3 { color: #2c3e50; margin: 0 0 .5rem; }
.feature-item p  { color: #666; line-height: 1.6; font-size: .95rem; margin: 0; }

/* Service list items */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.service-item { padding: 1.5rem; border-left: 4px solid #0F4C81; }
.service-item.accent { border-color: #E76F00; }
.service-item.purple { border-color: #1A5F9E; }
.service-item h3 { color: #2c3e50; margin-top: 0; }
.service-item p  { color: #666; margin: 0; }

/* CTA card buttons */
.cta-btn-solid {
    display: inline-block;
    padding: .75rem 1.5rem;
    background: #fff;
    color: #0F4C81;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    margin: .4rem;
    transition: transform .2s;
}
.cta-btn-solid:hover { transform: translateY(-2px); }
.cta-btn-outline {
    display: inline-block;
    padding: .75rem 1.5rem;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    margin: .4rem;
    transition: background .2s;
}
.cta-btn-outline:hover { background: rgba(255,255,255,.15); }

/* Listing container align fix */
.listing-container { align-items: start; }

/* Image fallback placeholder */
.img-placeholder {
    background: linear-gradient(135deg, #0F4C81 0%, #1A5F9E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
}

/* Status badges (vendor approval) */
.badge { display:inline-block; padding:.25rem .75rem; border-radius:999px; font-size:.8rem; font-weight:700; }
.badge-pending  { background:#fff8e1; color:#f59e0b; }
.badge-active   { background:#e8f5e9; color:#22c55e; }
.badge-rejected { background:#fce8e8; color:#ef4444; }

/* Empty state */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.empty-state .empty-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.empty-state h3 { color: #444; margin-bottom: .5rem; }
.empty-state p  { color: #888; margin-bottom: 1.5rem; }

/* Mobile listing/filter improvements */
@media (max-width: 768px) {
    .listing-container { flex-direction: column; }
    .filter-sidebar { width: 100% !important; }
    .page-hero h1 { font-size: 1.6rem; }
    .two-col-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .page-wrap { padding: 2rem 1rem 3rem; }
    .section-card { padding: 1.5rem; }
    .pagination { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; }
}

/* Page listing section header */
.page-section-header {
    max-width: 980px;
    margin: 0 auto 2rem;
    text-align: center;
}
.page-section-header h1 {
    font-size: 1.75rem;
    margin-bottom: .75rem;
    color: #2c3e50;
}
.page-section-header p {
    color: #666;
    font-size: 1rem;
    margin-bottom: .5rem;
    line-height: 1.7;
}

/* Listing page hero strip */
.listing-hero {
    background: linear-gradient(135deg, #0F4C81 0%, #1A5F9E 100%);
    color: #fff;
    text-align: center;
    padding: 3rem 1rem 2.5rem;
}
.listing-hero h1 { font-size: 2rem; color:#fff; margin-bottom:.5rem; }
.listing-hero p  { opacity:.9; font-size:1rem; margin:.25rem 0 0; }

/* Filter reset link — remove inline style need */
.filter-btn-reset { text-decoration: none; display: flex; align-items: center; justify-content: center; }

/* ---- Wishlist heart on listing cards ---- */
.wishlist-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    z-index: 5;
}
.wishlist-heart:hover { transform: scale(1.1); box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
.wishlist-heart.active { background: #ffe0e0; }

.card-reviews { font-weight: 600; margin: 0.3rem 0; font-size: 0.9rem; }
.compare-toggle:hover { color: var(--primary, #2563EB); }

/* ---- Admin tables: horizontal scroll on mobile ---- */
@media (max-width: 768px) {
    .list-table, .bookings-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .dashboard-main { padding: 1rem !important; }
    .stats-grid     { grid-template-columns: repeat(2, 1fr) !important; }
    .stat-card      { padding: 1rem !important; }
}
@media (max-width: 480px) {
    .stats-grid     { grid-template-columns: 1fr !important; }
}

/* ─── Booking modal (Phase 9) ─── */
.booking-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.booking-modal[hidden] { display: none; }
.booking-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(2px); }
.booking-modal-card { position: relative; background: #fff; border-radius: 14px; padding: 2rem; max-width: 460px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,.3); max-height: 90vh; overflow-y: auto; }
.booking-modal-card h2 { margin: 0 0 .25rem; font-size: 1.25rem; }
.booking-modal-close { position: absolute; top: .5rem; right: .75rem; background: transparent; border: 0; font-size: 1.75rem; line-height: 1; cursor: pointer; color: #888; padding: .25rem .5rem; }
.booking-modal-close:hover { color: #000; }
.booking-modal .form-group { margin-bottom: .9rem; }
.booking-modal .form-group label { display: block; margin-bottom: .35rem; font-weight: 600; font-size: .9rem; }
.booking-modal .form-group input { width: 100%; padding: .65rem; border: 1px solid #d4d4d8; border-radius: 8px; font-size: 1rem; }
.booking-modal-total { padding: .85rem 1rem; background: #f8f9fb; border-radius: 8px; margin: .5rem 0; text-align: right; }
.booking-modal-total strong { font-size: 1.15rem; color: var(--primary-color, #2563EB); }

/* ════════════════════════════════════════════════════════════════════
   Phase 10 — Himalayan Trust UI polish
   ════════════════════════════════════════════════════════════════════ */

/* Toast notifications (replaces alert() in user-facing flows) */
.toast-container { position: fixed; top: 1rem; right: 1rem; z-index: 99999; display: flex; flex-direction: column; gap: .5rem; pointer-events: none; }
.toast { background: #fff; color: var(--text); border-left: 4px solid var(--primary); box-shadow: 0 10px 25px rgba(0,0,0,.15); border-radius: 8px; padding: .85rem 1.1rem; min-width: 240px; max-width: 360px; pointer-events: auto; animation: toast-in .25s ease-out; font-size: .95rem; display: flex; align-items: center; gap: .5rem; }
.toast.success { border-left-color: var(--secondary); }
.toast.error   { border-left-color: var(--danger); }
.toast.warning { border-left-color: var(--warning); }
.toast .toast-icon { font-size: 1.25rem; }
.toast.fade-out { animation: toast-out .25s ease-in forwards; }
@keyframes toast-in  { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes toast-out { from { opacity: 1; transform: translateX(0); }    to { opacity: 0; transform: translateX(100%); } }

/* Mobile bottom nav (hidden on desktop) */
.mobile-bottom-nav { display: none; }
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: grid; grid-template-columns: repeat(5, 1fr);
        position: fixed; bottom: 0; left: 0; right: 0;
        background: #fff; border-top: 1px solid var(--border-color);
        z-index: 999; padding: .25rem 0 max(.25rem, env(safe-area-inset-bottom));
        box-shadow: 0 -4px 16px rgba(0,0,0,.06);
    }
    .mobile-bottom-nav a {
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        padding: .5rem .25rem; text-decoration: none; color: var(--text-light);
        font-size: .68rem; gap: .15rem; font-weight: 600;
    }
    .mobile-bottom-nav a .icon { font-size: 1.35rem; line-height: 1; }
    .mobile-bottom-nav a.active, .mobile-bottom-nav a:hover { color: var(--primary); }
    body { padding-bottom: 64px; }   /* keep last content above bar */
    .floating-whatsapp { bottom: 80px !important; }
    .pd-sticky-mobile  { bottom: 64px !important; }
}

/* Skeleton/shimmer loader (replaces lavender placeholder feel) */
.skeleton { background: linear-gradient(90deg, #EFE9DC 0%, #FAF7F2 50%, #EFE9DC 100%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: 8px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Replace generic purple placeholder boxes with warm neutral */
.image-placeholder, .room-card > div[style*="667eea"], .pd-gallery-placeholder {
    background: var(--gradient-placeholder) !important;
    color: var(--primary) !important;
}

/* Section heading — emoji-in-circle treatment (opt-in via .section-heading wrapper) */
.section-heading { display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem; }
.section-heading .heading-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--accent-light); color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.section-heading h2, .section-heading h3 { margin: 0; }

/* Trust strip (move pills to white surface for contrast) */
.trust-strip-light { background: #fff; padding: 1rem 0; border-bottom: 1px solid var(--border-color); }
.trust-strip-light .container { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.trust-strip-light .trust-item { display: inline-flex; align-items: center; gap: .5rem; color: var(--text); font-weight: 600; font-size: .9rem; }
.trust-strip-light .trust-item .icon { font-size: 1.15rem; color: var(--secondary); }

/* Tighter, more confident CTAs */
.btn-cta, .btn-submit, .pd-book-btn, .pd-sticky-book {
    background: var(--gradient-cta) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: var(--shadow-cta) !important;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease !important;
}
.btn-cta:hover, .btn-submit:hover, .pd-book-btn:hover, .pd-sticky-book:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 24px rgba(231, 111, 0, .35) !important;
    filter: brightness(1.05) !important;
}

/* Print-friendly booking voucher */
@media print {
    .navbar, .header, .footer, .floating-whatsapp, .mobile-bottom-nav, .toast-container, button { display: none !important; }
    body { background: #fff; padding: 0; }
}

/* ════════════════════════════════════════════════════════════════════
   Phase 10b — Type / spacing / radius scale + microinteractions
   ════════════════════════════════════════════════════════════════════ */
:root {
    /* Type scale */
    --fs-xs: 0.75rem;   /* 12 */
    --fs-sm: 0.875rem;  /* 14 */
    --fs-base: 1rem;    /* 16 */
    --fs-md: 1.25rem;   /* 20 */
    --fs-lg: 1.75rem;   /* 28 */
    --fs-xl: 2.5rem;    /* 40 */
    /* Spacing */
    --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px;  --sp-4: 16px;
    --sp-5: 24px; --sp-6: 32px; --sp-8: 48px;  --sp-10: 64px;
    /* Radius (single source) */
    --r-sm: 8px; --r-md: 12px; --r-pill: 999px;
}

/* Heart-burst animation on wishlist toggle */
.wishlist-heart, .wishlist-btn { transition: transform .2s ease; }
.wishlist-heart.burst, .wishlist-btn.burst { animation: heart-burst .5s ease; }
@keyframes heart-burst {
    0%   { transform: scale(1) rotate(0); }
    30%  { transform: scale(1.4) rotate(-15deg); }
    60%  { transform: scale(0.9) rotate(10deg); }
    100% { transform: scale(1) rotate(0); }
}

/* Section reveal on scroll */
.fade-in-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in-on-scroll.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .fade-in-on-scroll { opacity: 1; transform: none; transition: none; }
    .wishlist-heart.burst, .wishlist-btn.burst { animation: none; }
}

/* Whole-card click: card-link wraps card content */
.package-card, .featured-card, .hotel-card, .vehicle-card { position: relative; }
.card-overlay-link { position: absolute; inset: 0; z-index: 1; text-indent: -9999px; overflow: hidden; }
.card-overlay-link:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; border-radius: var(--r-md); }
.package-card .wishlist-heart, .package-card .compare-toggle, .package-card .btn-cta,
.featured-card .btn-cta, .featured-card .wishlist-btn { position: relative; z-index: 2; }

/* Hero search-first: enlarge + lift the search bar so it dominates */
.hero .search-bar { box-shadow: 0 20px 40px rgba(0,0,0,.25); border-radius: var(--r-md); }
.hero .search-btn { background: var(--gradient-cta) !important; color: #fff; font-weight: 700; }

/* Trust strip below hero (light) — auto-applied via .trust-strip-light wrapper */
.trust-strip-below-hero { background: #fff; border-bottom: 1px solid var(--border-color); padding: var(--sp-4) 0; }
.trust-strip-below-hero .container { display: flex; gap: var(--sp-6); justify-content: center; flex-wrap: wrap; align-items: center; }
.trust-strip-below-hero .item { display: inline-flex; align-items: center; gap: var(--sp-2); color: var(--text); font-weight: 600; font-size: var(--fs-sm); }
.trust-strip-below-hero .item .ic { color: var(--secondary); font-size: var(--fs-md); }

/* Phase 10b polish — mobile trust strip gap */
@media (max-width: 600px) {
    .trust-strip-below-hero .container { gap: var(--sp-3); padding: 0 var(--sp-4); }
    .trust-strip-below-hero .item { font-size: var(--fs-xs); }
}

/* ════════════════════════════════════════════════════════════════════
   Phase 11 — Cookie banner / Exit-intent / Lightbox / Sticky sidebar
   ════════════════════════════════════════════════════════════════════ */

/* Sticky right-rail booking summary on package-detail */
@media (min-width: 992px) {
    .pd-sidebar { position: sticky; top: 90px; align-self: start; }
}

/* Cookie consent banner */
.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 99998; background: #fff; border: 1px solid var(--border-color); border-radius: var(--r-md); box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.cookie-banner-inner { display: flex; gap: var(--sp-5); align-items: center; padding: var(--sp-4) var(--sp-5); flex-wrap: wrap; }
.cookie-banner-text { flex: 1 1 320px; font-size: var(--fs-sm); }
.cookie-banner-text strong { display: block; font-size: var(--fs-base); margin-bottom: .25rem; color: var(--primary); }
.cookie-banner-text p { margin: 0; color: var(--text-light); }
.cookie-banner-text a { color: var(--primary); }
.cookie-banner-actions { display: flex; gap: var(--sp-2); flex-shrink: 0; }
.cookie-btn-primary { background: var(--gradient-cta); color: #fff; border: 0; padding: .65rem 1.25rem; border-radius: var(--r-pill); font-weight: 700; cursor: pointer; box-shadow: var(--shadow-cta); }
.cookie-btn-primary:hover { transform: translateY(-1px); }
.cookie-btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-color); padding: .6rem 1.1rem; border-radius: var(--r-pill); font-weight: 600; cursor: pointer; }
.cookie-btn-ghost:hover { background: var(--bg); }
@media (max-width: 600px) {
    .cookie-banner { left: .5rem; right: .5rem; bottom: 70px; }
    .cookie-banner-actions { width: 100%; }
    .cookie-banner-actions button { flex: 1; }
}

/* Exit-intent modal */
.exit-modal { position: fixed; inset: 0; z-index: 99997; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.exit-modal[hidden] { display: none; }
.exit-modal-backdrop { position: absolute; inset: 0; background: rgba(15, 31, 46, .6); backdrop-filter: blur(2px); }
.exit-modal-panel { position: relative; background: #fff; border-radius: var(--r-md); padding: 2rem; max-width: 440px; width: 100%; text-align: center; box-shadow: 0 30px 80px rgba(0,0,0,.3); animation: exit-in .25s ease-out; }
@keyframes exit-in { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }
.exit-modal-close { position: absolute; top: .5rem; right: .75rem; background: transparent; border: 0; font-size: 1.75rem; line-height: 1; cursor: pointer; color: var(--text-light); }
.exit-modal-emoji { font-size: 3rem; margin-bottom: .5rem; }
.exit-modal h3 { margin: 0 0 .5rem; color: var(--primary); }
.exit-modal-code { display: inline-flex; gap: .5rem; align-items: center; background: var(--accent-light); border: 2px dashed var(--accent); border-radius: var(--r-sm); padding: .5rem 1rem; margin: 1rem 0 0; }
.exit-modal-code code { font-size: 1.25rem; font-weight: 700; color: var(--accent-dark); letter-spacing: 1px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 99999; background: rgba(15,31,46,.95); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox-img { max-width: 92vw; max-height: 88vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.5); border-radius: var(--r-sm); }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; width: 48px; height: 48px; border-radius: 50%; font-size: 1.75rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s ease; }
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-counter { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); color: #fff; font-size: var(--fs-sm); background: rgba(0,0,0,.5); padding: .35rem .75rem; border-radius: var(--r-pill); }

/* ════════════════════════════════════════════════════════════════════
   Phase 12 — PWA / Vendor earnings / Admin refund
   ════════════════════════════════════════════════════════════════════ */

/* PWA install button */
.pwa-install-btn { position: fixed; bottom: 90px; left: 20px; z-index: 99996; background: var(--gradient-cta); color: #fff; border: 0; padding: .75rem 1.25rem; border-radius: var(--r-pill); font-weight: 700; cursor: pointer; box-shadow: var(--shadow-cta); display: inline-flex; align-items: center; gap: .5rem; font-size: .95rem; }
.pwa-install-btn:hover { transform: translateY(-2px); }
@media (max-width: 768px) { .pwa-install-btn { bottom: 80px; left: 12px; padding: .6rem 1rem; font-size: .85rem; } }

/* Vendor earnings dashboard */
.vendor-earnings { padding: 0 2rem; }
.earnings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.earning-card { background: #fff; border-radius: var(--r-md); padding: 1.25rem; border-left: 4px solid var(--primary); box-shadow: var(--shadow); }
.earning-card.success { border-left-color: var(--success, #2E8B57); }
.earning-card.primary { border-left-color: var(--primary); background: linear-gradient(135deg, rgba(15,76,129,.04), #fff); }
.earning-card.warning { border-left-color: var(--accent, #E76F00); }
.earning-card.muted { border-left-color: #999; }
.earning-label { margin: 0 0 .25rem; font-size: .85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; }
.earning-amount { margin: 0 0 .25rem; font-size: 1.75rem; font-weight: 800; color: var(--primary); font-variant-numeric: tabular-nums; }
.earning-card small { color: var(--text-light); font-size: .8rem; }

.earnings-chart-card, .recent-bookings-card { background: #fff; padding: 1.25rem; border-radius: var(--r-md); box-shadow: var(--shadow); margin-bottom: 1rem; }
.earnings-chart { display: flex; align-items: flex-end; gap: 1.5rem; height: 200px; padding: 1rem 0 0; border-bottom: 1px solid var(--border-color); }
.chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.chart-bar { width: 100%; max-width: 60px; background: linear-gradient(180deg, var(--primary), var(--accent)); border-radius: 6px 6px 0 0; transition: filter .15s; }
.chart-col:hover .chart-bar { filter: brightness(1.1); }
.chart-label { font-size: .75rem; color: var(--text-light); margin-top: .35rem; }
.chart-val { font-size: .7rem; font-weight: 700; color: var(--primary); }

.recent-bookings { width: 100%; border-collapse: collapse; }
.recent-bookings th, .recent-bookings td { padding: .65rem .75rem; text-align: left; border-bottom: 1px solid var(--border-color); font-size: .9rem; }
.recent-bookings th { font-weight: 600; color: var(--text-light); text-transform: uppercase; font-size: .75rem; letter-spacing: .5px; }
.rb-type { background: var(--bg, #f5f5f5); padding: .15rem .55rem; border-radius: var(--r-pill); font-size: .75rem; text-transform: uppercase; }
.rb-status { padding: .2rem .65rem; border-radius: var(--r-pill); font-size: .75rem; font-weight: 600; color: #fff; background: #999; }
.rb-status-confirmed, .rb-status-paid, .rb-status-completed { background: var(--success, #2E8B57); }
.rb-status-pending, .rb-status-processing { background: var(--accent, #E76F00); }
.rb-status-refunded, .rb-status-cancelled, .rb-status-failed { background: #999; }

/* Admin refund button */
.btn-refund:hover { filter: brightness(1.05); }

/* Admin flash message */
.admin-flash { padding: 1rem 1.25rem; border-radius: var(--r-sm); margin: 1rem 0; font-weight: 500; }
.admin-flash.success { background: #d4edda; color: #155724; border-left: 4px solid #2E8B57; }
.admin-flash.error   { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }
.admin-flash.warning { background: #fff3cd; color: #856404; border-left: 4px solid #E76F00; }

/* ════════════════════════════════════════════════════════════════════
   Phase 13 — Guest checkout + DPDP/GDPR privacy hub
   ════════════════════════════════════════════════════════════════════ */
.guest-checkout-block { background: #FFF8EC; border-left: 3px solid var(--accent, #E76F00); padding: .85rem 1rem; margin: .5rem 0 1rem; border-radius: 6px; }
.guest-checkout-hint { margin: 0 0 .5rem; font-size: .85rem; color: #6b4a00; }
.guest-checkout-hint a { color: var(--primary); font-weight: 600; }
.guest-checkout-block .form-group { margin-bottom: .5rem; }
.guest-checkout-block .form-group:last-child { margin-bottom: 0; }
.guest-checkout-block label { font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: .25rem; display: block; }
.guest-checkout-block input { width: 100%; padding: .55rem .75rem; border: 1px solid var(--border-color); border-radius: 6px; font-size: .9rem; background: #fff; }
.guest-checkout-block input:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(231,111,0,.15); }

/* Privacy hub */
.privacy-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--r-md); padding: 1.5rem 1.75rem; margin: 1.25rem 0; box-shadow: var(--shadow); }
.privacy-card h2 { margin: 0 0 .75rem; font-size: 1.2rem; color: var(--primary); }
.privacy-card p { color: #555; margin: 0 0 1rem; }
.privacy-card.danger { border-color: #f5c2c7; background: #fff5f5; }
.privacy-card.danger h2 { color: #c0392b; }
.privacy-dl { display: grid; grid-template-columns: 180px 1fr; gap: .35rem 1rem; margin: 0; }
.privacy-dl dt { font-weight: 600; color: var(--text-light); }
.privacy-dl dd { margin: 0; color: var(--text); }
.btn-danger { background: #c0392b; color: #fff; border: 0; padding: .8rem 1.5rem; border-radius: var(--r-pill); font-weight: 700; cursor: pointer; transition: background .15s; }
.btn-danger:hover { background: #a02d20; }
@media (max-width: 600px) { .privacy-dl { grid-template-columns: 1fr; } .privacy-dl dt { margin-top: .5rem; } }
