/* ===================================
   Design System & CSS Variables
   =================================== */
:root {
    /* Color Palette - Rich & Premium */
    --primary-hue: 25;
    --primary-sat: 85%;
    --primary-light: 55%;

    --primary-50: hsl(var(--primary-hue), var(--primary-sat), 95%);
    --primary-100: hsl(var(--primary-hue), var(--primary-sat), 85%);
    --primary-200: hsl(var(--primary-hue), var(--primary-sat), 75%);
    --primary-300: hsl(var(--primary-hue), var(--primary-sat), 65%);
    --primary-400: hsl(var(--primary-hue), var(--primary-sat), 60%);
    --primary-500: hsl(var(--primary-hue), var(--primary-sat), var(--primary-light));
    --primary-600: hsl(var(--primary-hue), var(--primary-sat), 45%);
    --primary-700: hsl(var(--primary-hue), var(--primary-sat), 35%);
    --primary-800: hsl(var(--primary-hue), var(--primary-sat), 25%);
    --primary-900: hsl(var(--primary-hue), var(--primary-sat), 15%);

    /* Neutral Colors */
    --neutral-50: hsl(220, 20%, 98%);
    --neutral-100: hsl(220, 15%, 95%);
    --neutral-200: hsl(220, 13%, 90%);
    --neutral-300: hsl(220, 12%, 80%);
    --neutral-400: hsl(220, 10%, 60%);
    --neutral-500: hsl(220, 10%, 45%);
    --neutral-600: hsl(220, 12%, 35%);
    --neutral-700: hsl(220, 15%, 25%);
    --neutral-800: hsl(220, 18%, 15%);
    --neutral-900: hsl(220, 20%, 10%);

    /* Accent Colors */
    --accent-warm: hsl(15, 80%, 60%);
    --accent-cool: hsl(200, 70%, 55%);
    --success: hsl(145, 65%, 50%);
    --warning: hsl(40, 90%, 55%);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
    --gradient-warm: linear-gradient(135deg, hsl(25, 85%, 60%) 0%, hsl(15, 80%, 55%) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ===================================
   Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--neutral-800);
    background-color: var(--neutral-50);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--neutral-900);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

img {
    max-width: 100%;
    display: block;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--neutral-700);
    border: 2px solid var(--neutral-300);
}

.btn-outline:hover {
    background: var(--neutral-100);
    border-color: var(--neutral-400);
}

.btn-search {
    background: var(--gradient-warm);
    color: white;
    padding: 1rem 2.5rem;
    box-shadow: var(--shadow-md);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-cta {
    background: white;
    color: var(--primary-600);
    font-size: 1.125rem;
    padding: 1.125rem 3rem;
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
}

.logo h1 {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.tagline {
    font-size: 0.75rem;
    color: var(--neutral-500);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--neutral-700);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-600);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    /* Removed min-height to match cta-section's content-based sizing */
    display: flex;
    align-items: center;
    justify-content: center;
    /* 80px navbar + spacing-3xl (6rem) top, spacing-lg (2rem) bottom to reduce gap */
    padding-top: calc(80px + var(--spacing-3xl));
    padding-bottom: var(--spacing-lg);
    overflow: hidden;
}

/* ... existing styles ... */

/* ===================================
   Featured Hosts Section
   =================================== */
.featured-hosts {
    /* Restored to spacing-3xl to equal cta-section as requested */
    padding: var(--spacing-3xl) 0;
    scroll-margin-top: 100px;
    background: linear-gradient(180deg, white 0%, var(--neutral-50) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            hsl(25, 85%, 95%) 0%,
            hsl(200, 70%, 95%) 50%,
            hsl(280, 60%, 95%) 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-200) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-cool) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--neutral-600);
    margin-bottom: var(--spacing-2xl);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Search Container
   =================================== */
.search-container {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.search-box {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: flex-end;
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
    transition: transform var(--transition-base);
}

.search-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.search-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-field input,
.search-field select {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--neutral-800);
    outline: none;
    padding: var(--spacing-xs) 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.search-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.25rem;
    padding-right: 2rem;
}

/* Global Select Styling */
select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem !important;
}

select:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.search-field input::placeholder {
    color: var(--neutral-400);
}

.search-divider {
    width: 1px;
    height: 40px;
    background: var(--neutral-200);
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.step-card {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--neutral-50) 0%, white 100%);
    border: 1px solid var(--neutral-200);
    transition: all var(--transition-base);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-300);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform var(--transition-base);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--neutral-900);
}

.step-card p {
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ===================================
   Featured Hosts Section
   =================================== */
.featured-hosts {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, white 0%, var(--neutral-50) 100%);
}

.section-header {
    margin-bottom: var(--spacing-2xl);
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.host-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

.host-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.host-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-200) 0%, var(--primary-400) 100%);
}

.host-info {
    padding: var(--spacing-md);
}

.host-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: var(--spacing-sm);
}

.host-name {
    font-size: 1.25rem;
    color: var(--neutral-900);
}

.host-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    color: var(--warning);
}

.host-location {
    color: var(--neutral-600);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.host-cuisine {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary-50);
    color: var(--primary-700);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.host-description {
    color: var(--neutral-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.host-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--neutral-200);
}

.host-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-600);
}

.host-meals {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Modal
   =================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    max-width: 800px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--neutral-400) transparent;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-sm {
    max-width: 440px;
}

.modal-md {
    max-width: 600px;
}

.modal-lg {
    max-width: 900px;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background-color: var(--neutral-300);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background-color: var(--neutral-400);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 40px;
    height: 40px;
    border: none;
    background: var(--neutral-100);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    z-index: 10;
}

.modal-close:hover {
    background: var(--neutral-200);
    transform: rotate(90deg);
}

.modal-body {
    padding: var(--spacing-xl);
}

@media (min-width: 1024px) {
    .modal-body {
        padding: 1rem 1.5rem;
    }
}

.registration-options h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.modal-subtitle {
    text-align: center;
    color: var(--neutral-600);
    margin-bottom: var(--spacing-xl);
}

.registration-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.registration-card {
    padding: var(--spacing-lg);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
}

.registration-card:hover {
    border-color: var(--primary-400);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.registration-card.featured {
    border-color: var(--primary-500);
    background: linear-gradient(135deg, var(--primary-50) 0%, white 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: var(--spacing-md);
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.registration-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.registration-card h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.registration-card>p {
    text-align: center;
    color: var(--neutral-600);
    margin-bottom: var(--spacing-md);
}

.benefits-list {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.benefits-list li {
    padding: var(--spacing-xs) 0;
    color: var(--neutral-700);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.benefits-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-100);
    color: var(--primary-700);
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-300);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    line-height: 1.7;
}

.footer-section a {
    display: block;
    padding: var(--spacing-xs) 0;
    color: var(--neutral-400);
    transition: color var(--transition-base);
}

.footer-section a:hover {
    color: var(--primary-400);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--neutral-800);
    color: var(--neutral-500);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .search-box {
        flex-direction: column;
        align-items: stretch;
    }

    .search-divider {
        width: 100%;
        height: 1px;
    }

    .nav-links {
        gap: var(--spacing-sm);
    }

    .nav-link {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .registration-cards {
        grid-template-columns: 1fr;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-dropdown-menu {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 2100;
    background-color: #ffffff;
    display: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    min-width: 280px;
    border: 1px solid var(--neutral-200);
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.user-dropdown-menu.active {
    display: block;
}

.dropdown-header {
    padding: 1.5rem;
    background: linear-gradient(to bottom, var(--neutral-50), white);
    border-bottom: 1px solid var(--neutral-100);
}

.dropdown-user-name {
    display: block;
    font-weight: 700;
    color: var(--neutral-900);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.dropdown-user-email {
    display: block;
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin-bottom: 0.5rem;
}

.dropdown-role-badge {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary-700);
    font-weight: 600;
    background: var(--primary-50);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dropdown-divider {
    height: 1px;
    background-color: var(--neutral-100);
    margin: 0.25rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: var(--neutral-700);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    gap: 0.75rem;
}

.dropdown-item:hover {
    background-color: var(--primary-50);
    color: var(--primary-700);
    padding-left: 1.75rem;
}

.dropdown-item.text-danger:hover {
    background-color: #fef2f2;
    color: #dc2626;
}

.user-menu-divider {
    height: 1px;
    background: var(--neutral-200);
    margin: 0.5rem 0;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1rem;
    color: var(--neutral-700);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    cursor: default;
}

.user-menu-logout {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.user-menu-logout:hover {
    background: var(--primary-50);
    color: var(--primary-700);
}

.menu-icon {
    font-size: 1.125rem;
    width: 24px;
    text-align: center;
}

/* Host Modal Styles */
.host-modal-header {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.host-modal-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.host-modal-info h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--neutral-900);
}

@media (max-width: 640px) {
    .host-modal-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   Host Profile Modal Styles
   =================================== */
.host-profile-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-title {
    font-size: 1.75rem;
    font-family: var(--font-display);
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: var(--neutral-500);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--neutral-700);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label-hint {
    font-weight: 400;
    color: var(--neutral-500);
    font-size: 0.75rem;
}

.host-profile-form input[type="text"],
.host-profile-form input[type="number"],
.host-profile-form input[type="email"],
.host-profile-form select,
.host-profile-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--neutral-800);
    background-color: white;
    transition: all var(--transition-fast);
    width: 100%;
}

.host-profile-form input:focus,
.host-profile-form select:focus,
.host-profile-form textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.select-wrapper {
    position: relative;
}

/* Custom Chip/Badge Checkboxes */
.chip-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.chip {
    cursor: pointer;
    user-select: none;
}

.chip input {
    display: none;
}

.chip span {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-full);
    background-color: white;
    color: var(--neutral-600);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.chip input:checked+span {
    background-color: var(--primary-50);
    border-color: var(--primary-500);
    color: var(--primary-700);
    box-shadow: var(--shadow-sm);
}

.chip:hover span {
    border-color: var(--primary-300);
    background-color: var(--neutral-50);
}

.chip input:checked:hover+span {
    background-color: var(--primary-100);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.form-error {
    padding: 0.75rem;
    background: #fef2f2;
    border: 1px solid #fee2e2;
    border-radius: var(--radius-sm);
    color: #dc2626;
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {

    .form-row,
    .form-row.three-col {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Auth & Registration Styles
   =================================== */
.auth-section {
    text-align: center;
}

.auth-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.auth-card {
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition-fast);
    background: white;
}

.auth-card:hover {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.auth-card.featured {
    border-color: var(--primary-500);
    background: var(--primary-50);
    position: relative;
    overflow: hidden;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--primary-500);
    color: white;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.auth-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-600);
}

.auth-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--neutral-900);
}

.auth-card p {
    color: var(--neutral-600);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
    width: 100%;
}

.benefits-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--neutral-700);
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-600);
    font-weight: bold;
}

.auth-modal-content {
    max-width: 480px;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.auth-form .form-group label {
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 0.25rem;
    display: block;
}

.auth-form .form-group input,
.auth-form .form-group select,
.auth-form .form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--neutral-100);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
    width: 100%;
    background: var(--neutral-50);
    color: var(--neutral-900);
    font-family: var(--font-body);
    /* Ensure font consistency for textarea */
}

.auth-form .form-group input:focus,
.auth-form .form-group select:focus,
.auth-form .form-group textarea:focus {
    background: white;
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px var(--primary-50);
    outline: none;
}

.auth-form .form-group input::placeholder {
    color: var(--neutral-400);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    padding: 0.5rem 0;
}

.role-highlight {
    font-weight: 700;
    color: var(--primary-600);
}

.form-footer {
    text-align: center;
    color: var(--neutral-600);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.form-link {
    color: var(--primary-600);
    font-weight: 500;
    text-decoration: none;
}

.form-link:hover {
    text-decoration: underline;
}

/* ===================================
   Host Details Modal Styles
   =================================== */
.host-modal-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.host-modal-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.host-modal-info {
    flex: 1;
}

.host-name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--neutral-900);
}

.host-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neutral-600);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.host-rating-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--neutral-900);
}

.star-icon {
    color: #f59e0b;
}

.review-count {
    color: var(--neutral-500);
    font-weight: 400;
    font-size: 0.875rem;
}

.host-detail-section {
    margin-bottom: 1.5rem;
}

.host-bio {
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.host-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.badge {
    padding: 0.35rem 0.875rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
}

.badge-primary {
    background: var(--primary-50);
    color: var(--primary-700);
}

.badge-neutral {
    background: var(--neutral-100);
    color: var(--neutral-700);
}

.booking-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--neutral-200);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.price-display {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-600);
    line-height: 1.2;
}

.host-reviews-container {
    border-top: 1px solid var(--neutral-200);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.reviews-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.loading-text {
    color: var(--neutral-500);
    font-style: italic;
}

/* ===================================
   Booking Modal Styles
   =================================== */
.price-summary-card {
    background: var(--neutral-50);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
    border: 1px solid var(--neutral-100);
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: var(--neutral-600);
    font-size: 0.95rem;
}

.price-row.total {
    margin-bottom: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--neutral-200);
    font-weight: 700;
    color: var(--neutral-900);
    font-size: 1.125rem;
}

/* ===================================
   Status Modals (Success/Delete)
   =================================== */
.status-modal-content {
    text-align: center;
    max-width: 440px;
}

.status-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--neutral-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.status-icon.icon-success {
    background: var(--primary-50);
    color: var(--primary-600);
}

.status-icon.icon-danger {
    background: #fef2f2;
    color: #dc2626;
}

.status-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--neutral-900);
}

.status-title.text-danger {
    color: #dc2626;
}

.status-message {
    color: var(--neutral-600);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.status-detail-card {
    background: var(--neutral-50);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    text-align: left;
}

.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.status-label {
    color: var(--neutral-600);
}

.status-value {
    font-weight: 700;
    color: var(--neutral-900);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-badge.warning {
    background: var(--warning);
    color: white;
}

.status-footer {
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin-top: 1rem;
    border-top: 1px solid var(--neutral-200);
    padding-top: 1rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.modal-actions button {
    flex: 1;
}

.btn-danger {
    background-color: #dc2626;
    border-color: #dc2626;
    color: white;
}

.btn-danger:hover {
    background-color: #b91c1c;
}

/* Responsive Styles for Auth Cards */
@media (max-width: 640px) {
    .auth-cards {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Multi-Experience & Hourly Booking
   =================================== */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.experience-item-card {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: all var(--transition-base);
}

.experience-item-card:hover {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-sm);
}

.exp-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.exp-item-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--neutral-900);
}

.exp-item-price {
    font-weight: 700;
    color: var(--primary-600);
}

.exp-item-desc {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.exp-item-actions {
    display: flex;
    gap: 0.75rem;
}

/* Modal Experiences List (Booking View) */
.modal-experiences-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-exp-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.modal-exp-card:hover {
    border-color: var(--primary-200);
    background: var(--primary-50);
}

.modal-exp-info {
    flex: 1;
}

.modal-exp-qty-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--neutral-300);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.qty-btn:hover:not(:disabled) {
    background: var(--primary-500);
    color: white;
    border-color: var(--primary-500);
}

.qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.qty-value {
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.selected-experiences-summary {
    background: var(--neutral-50);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.form-section-divider {
    height: 1px;
    background: var(--neutral-200);
    margin: 2rem 0;
    width: 100%;
}