/* ===== TULOYHUB PROFESSIONAL COLOR SYSTEM ===== */
:root {
    --sun: #E8521A;
    --sun-bright: #F47C3C;
    --sun-glow: #FFA05A;
    --gold: #C9952A;
    --gold-light: #EBC96A;
    --gold-soft: #FDF6E3;
    --teal: #1A5F6E;
    --teal-mid: #2A8599;
    --deep: #11100E;
    --ink: #2E2B24;
    --mid: #6E6860;
    --light: #F9F6F1;
    --white: #FFFFFF;
    --border: #EBE2D8;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.04);
    --shadow-md: 0 12px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 28px 48px rgba(0,0,0,0.12);
    --shadow-sun: 0 12px 28px rgba(232,82,26,0.3);
    --radius: 16px;
    --radius-lg: 28px;
    --radius-pill: 100px;
    --gradient-sun: linear-gradient(125deg, var(--sun), #E8511E, var(--sun-bright));
}

* {
    font-family: 'Quicksand', sans-serif;
}

body {
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .serif-heading {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(17, 16, 14, 0.96) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(235, 201, 106, 0.2);
    padding: 0.8rem 2rem;
    transition: all 0.25s;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.9rem;
    background: var(--gradient-sun);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    color: #D4CBBE !important;
    transition: 0.25s;
    margin: 0 0.25rem;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gradient-sun);
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff !important;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: var(--gradient-sun);
    transition: 0.25s;
    transform: translateX(-50%);
    border-radius: 4px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* ===== HEADER BUTTONS ===== */
.btn-list-prop {
    background: var(--gradient-sun);
    color: white;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 10px 32px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border: none;
    box-shadow: 0 6px 14px rgba(232,82,26,0.35);
    letter-spacing: 0.5px;
}

.btn-list-prop:hover {
    transform: translateY(-3px) scale(1);
    background: linear-gradient(125deg, #FF5E2E, #E8511E, #C23E12);
    color: white;
}

.btn-signin {
    background: transparent;
    border: 1.8px solid var(--gold-light);
    color: var(--gold-light);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 10px 32px;
    transition: all 0.25s ease;
    backdrop-filter: blur(2px);
}

.btn-signin:hover {
    background: rgba(235, 201, 106, 0.12);
    transform: translateY(-2px);
    border-color: var(--gold);
    color: #F2D88A;
}

/* ===== HERO SECTION (INDEX) ===== */
.hero {
    background: var(--deep);
    background-image: radial-gradient(ellipse 70% 55% at 85% 40%, rgba(26, 95, 110, 0.45), transparent),
                      radial-gradient(ellipse 50% 65% at 10% 85%, rgba(232, 82, 26, 0.2), transparent);
    padding: 3.5rem 0 5rem;
    position: relative;
}

.hero-badge {
    background: rgba(232, 82, 26, 0.15);
    border: 1px solid rgba(232, 82, 26, 0.4);
    border-radius: var(--radius-pill);
    padding: 8px 26px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--sun-bright);
    display: inline-block;
    backdrop-filter: blur(2px);
}

/* ===== SERVICES HERO SECTION ===== */
.services-hero {
    background: var(--deep);
    background-image: radial-gradient(ellipse 70% 55% at 85% 40%, rgba(26, 95, 110, 0.45), transparent),
                      radial-gradient(ellipse 50% 65% at 10% 85%, rgba(232, 82, 26, 0.2), transparent);
    padding: 4rem 0 5rem;
    position: relative;
}

/* ===== ENHANCED SEARCH CARD (INDEX) ===== */
.search-card-enhanced {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 90px;
    box-shadow: 0 32px 56px -16px rgba(0, 0, 0, 0.4);
    padding: 0.5rem;
    border: 1px solid rgba(232, 82, 26, 0.2);
    transition: box-shadow 0.2s;
}

.destination-input-wrapper {
    flex: 1.5;
    padding: 0.5rem 1.6rem;
    border-radius: 80px;
    transition: all 0.2s;
}

.destination-input-wrapper:focus-within {
    background: var(--light);
    box-shadow: 0 0 0 2px rgba(232, 82, 26, 0.2);
}

.filter-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: 5px;
}

.destination-input {
    width: 100%;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    padding: 0;
    outline: none;
}

.destination-input::placeholder {
    color: #A69B8F;
    font-weight: 500;
}

/* Filter Items */
.filter-item {
    flex: 1;
    padding: 0.5rem 1.6rem;
    cursor: pointer;
    border-radius: 80px;
    transition: all 0.2s;
    position: relative;
}

.filter-item:hover {
    background: var(--light);
}

.filter-value {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* Premium Search Button */
.btn-search-enhanced {
    background: linear-gradient(125deg, var(--sun), #E8511E, var(--sun-bright));
    border-radius: 80px;
    padding: 0 52px;
    height: 72px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
    white-space: nowrap;
    box-shadow: 0 16px 28px rgba(232, 82, 26, 0.45);
    position: relative;
    overflow: hidden;
}

.btn-search-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 70%);
    border-radius: inherit;
    pointer-events: none;
}

.btn-search-enhanced:hover {
    transform: translateY(-4px) scale(1.01);
    filter: brightness(1.05);
}

/* Dropdown Panels */
.guest-panel,
.prop-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: white;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    z-index: 99999;
    border: 1px solid var(--border);
    display: none;
    overflow: hidden;
    min-width: 320px;
}

.guest-panel.show,
.prop-dropdown.show {
    display: block;
    animation: fadeSlideUp 0.2s ease;
}

.guest-panel {
    padding: 1.4rem;
}

.guest-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.counter-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--light);
    border: none;
    font-weight: 800;
    transition: 0.15s;
}

.counter-btn:hover {
    background: var(--gradient-sun);
    color: #fff;
    transform: scale(1.02);
}

.btn-sun {
    background: var(--gradient-sun);
    color: white;
    border-radius: 48px;
    border: none;
    padding: 10px 24px;
    font-weight: 700;
    transition: 0.2s;
}

.btn-sun:hover {
    background: #C23E12;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(232, 82, 26, 0.3);
}

/* Property Type Dropdown with Search */
.prop-dropdown {
    width: 380px;
}

.prop-search-header {
    padding: 16px 18px 12px;
    border-bottom: 1px solid var(--border);
}

.prop-search-input {
    width: 100%;
    padding: 12px 18px;
    border-radius: 60px;
    border: 1px solid #E2D8CF;
    background: white;
    font-weight: 500;
    outline: none;
    transition: 0.2s;
}

.prop-search-input:focus {
    border-color: var(--sun);
    box-shadow: 0 0 0 3px rgba(232, 82, 26, 0.15);
}

.prop-options-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px 0;
}

.prop-option {
    padding: 12px 22px;
    cursor: pointer;
    transition: 0.1s;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
}

.prop-option i {
    width: 26px;
    color: var(--teal-mid);
}

.prop-option:hover {
    background: var(--light);
}

.prop-option.active {
    background: var(--gradient-sun);
    color: white;
}

.prop-option.active i {
    color: white;
}

.prop-category-header {
    padding: 8px 22px 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #A28E78;
    background: #FEFAF5;
    border-top: 1px solid var(--border);
}

/* Category Chips (INDEX) */
.category-chip {
    background: white;
    border-radius: var(--radius-pill);
    padding: 12px 32px;
    font-weight: 700;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.category-chip i {
    color: var(--teal-mid);
    margin-right: 10px;
    transition: 0.2s;
}

.category-chip:hover,
.category-active {
    background: var(--gradient-sun);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-sun);
}

.category-chip:hover i,
.category-active i {
    color: white;
}

/* Property Cards (INDEX) */
.card-stay {
    border-radius: 24px;
    overflow: hidden;
    border: none;
    transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
    background: white;
    box-shadow: var(--shadow-sm);
}

.card-stay:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.55s;
}

.card-stay:hover .card-img-top {
    transform: scale(1.04);
}

.price-badge {
    background: var(--gold-light);
    border-radius: 40px;
    padding: 5px 14px;
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--deep);
}

/* Section Titles */
.section-title {
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--ink);
}

.section-underline {
    width: 70px;
    height: 3px;
    background: var(--gradient-sun);
    margin-top: 14px;
    border-radius: 6px;
}

/* Service Detailed Cards (SERVICES PAGE) */
.service-detailed-card {
    background: var(--white);
    border-radius: 28px;
    padding: 2rem 1.8rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.service-detailed-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 82, 26, 0.2);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-sun);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: 0.2s;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.service-detailed-card:hover .service-icon-large {
    transform: scale(1.02);
    box-shadow: 0 12px 20px rgba(232,82,26,0.3);
}

/* Feature Grid (SERVICES PAGE) */
.feature-grid {
    background: var(--light);
    border-radius: 32px;
    padding: 2rem;
}

.feature-item {
    padding: 1rem;
    border-radius: 20px;
    transition: 0.2s;
}

.feature-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-sun);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Comparison Table (SERVICES PAGE) */
.comparison-table {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-table th {
    background: var(--deep);
    color: white;
    padding: 1.2rem;
    font-weight: 700;
}

.comparison-table td {
    padding: 1rem 1.2rem;
    vertical-align: middle;
}

.comparison-table tr:hover {
    background: var(--light);
}

.check-green {
    color: #2A8599;
    font-size: 1.2rem;
}

.fa-check-circle {
    color: var(--teal-mid);
}

/* CTA Banners */
.cta-banner-services {
    background: linear-gradient(125deg, #1E2A2E, #0F1C20);
    border-radius: 32px;
}

/* Footer */
footer {
    background: var(--deep);
    color: #B3A69A;
    margin-top: 3rem;
    border-top: 1px solid rgba(232, 82, 26, 0.15);
}

.footer-logo-text {
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--gradient-sun);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-link {
    color: #BCB0A2;
    transition: 0.2s;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--sun-bright);
    transform: translateX(4px);
    display: inline-block;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    color: #BCB0A2;
    margin-right: 12px;
}

.social-icon:hover {
    background: var(--gradient-sun);
    color: white;
    transform: translateY(-4px);
}

.footer-divider {
    background: rgba(232, 82, 26, 0.2);
    height: 1px;
}

.contact-footer i {
    width: 30px;
    color: var(--sun-bright);
}

/* Animations */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .search-card-enhanced {
        border-radius: 32px;
        padding: 1rem;
    }
    .btn-search-enhanced {
        height: 54px;
        padding: 0 28px;
        width: 100%;
        margin-top: 12px;
    }
    .destination-input-wrapper,
    .filter-item {
        padding: 0.4rem 1rem;
    }
    .prop-dropdown {
        width: calc(100% - 20px);
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    .service-detailed-card {
        padding: 1.5rem;
    }
    .comparison-table {
        font-size: 0.8rem;
    }
}

/* ===== HOW IT WORKS PAGE SPECIFIC STYLES ===== */
/* Hero Section */
.how-it-works-hero {
    background: var(--deep);
    background-image: radial-gradient(ellipse 70% 55% at 85% 40%, rgba(26, 95, 110, 0.45), transparent),
                      radial-gradient(ellipse 50% 65% at 10% 85%, rgba(232, 82, 26, 0.2), transparent);
    padding: 4rem 0 5rem;
    position: relative;
}

/* Step Cards */
.step-card-large {
    background: var(--white);
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.step-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 82, 26, 0.2);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-sun);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    box-shadow: var(--shadow-sun);
    transition: 0.2s;
}

.step-card-large:hover .step-number {
    transform: scale(1.05);
}

.step-icon {
    font-size: 2rem;
    color: var(--sun);
    margin-bottom: 1rem;
}

/* Video Section */
.video-placeholder {
    background: linear-gradient(135deg, #1E2A2E, #0F1C20);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.video-placeholder-inner {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 28px;
    transition: all 0.3s ease;
}

.video-placeholder-inner:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-sun);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(232, 82, 26, 0.6);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 80px);
    background: var(--gradient-sun);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-sun);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: 0.2s;
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 82, 26, 0.2);
}

.timeline-item:nth-child(odd) .timeline-content {
    float: left;
}

.timeline-item:nth-child(even) .timeline-content {
    float: right;
}

.timeline-content h4 {
    color: var(--sun);
    margin-bottom: 0.5rem;
}

.timeline-icon {
    font-size: 1.8rem;
    color: var(--sun);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-item {
    background: var(--white);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(232, 82, 26, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--ink);
}

.faq-question i {
    color: var(--sun);
    transition: 0.2s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--mid);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Stats Grid */
.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: 0.2s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 82, 26, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-sun);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* CTA Section */
.cta-how-it-works {
    background: linear-gradient(125deg, #1E2A2E, #0F1C20);
    border-radius: 32px;
}

/* Clearfix for timeline */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    .timeline-dot {
        left: 30px;
        transform: translateX(0);
    }
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
        float: none !important;
    }
    .stat-number {
        font-size: 2rem;
    }
}

/* ===== REVIEWS PAGE SPECIFIC STYLES ===== */
/* Hero Section */
.reviews-hero {
    background: var(--deep);
    background-image: radial-gradient(ellipse 70% 55% at 85% 40%, rgba(26, 95, 110, 0.45), transparent),
                      radial-gradient(ellipse 50% 65% at 10% 85%, rgba(232, 82, 26, 0.2), transparent);
    padding: 4rem 0 5rem;
    position: relative;
}

/* Rating Summary Card */
.rating-summary-card {
    background: var(--white);
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.rating-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-sun);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.rating-stars {
    font-size: 1.2rem;
    color: #FFB800;
    letter-spacing: 2px;
}

/* Category Ratings */
.category-rating-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.category-rating-label {
    font-weight: 600;
    width: 100px;
}

.category-rating-bar {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 10px;
    margin: 0 1rem;
    overflow: hidden;
}

.category-rating-fill {
    height: 100%;
    background: var(--gradient-sun);
    border-radius: 10px;
    width: 0%;
}

.category-rating-score {
    font-weight: 700;
    color: var(--sun);
    width: 35px;
}

/* Review Filters */
.review-filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.25s ease;
    color: var(--ink);
}

.review-filter-btn:hover,
.review-filter-btn.active {
    background: var(--gradient-sun);
    border-color: transparent;
    color: white;
}

/* Review Cards */
.review-card-detailed {
    background: var(--white);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card-detailed:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 82, 26, 0.2);
}

.reviewer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-weight: 700;
    margin-bottom: 0;
}

.reviewer-location {
    font-size: 0.75rem;
    color: var(--mid);
}

.review-rating {
    color: #FFB800;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.review-date {
    font-size: 0.7rem;
    color: var(--mid);
}

.review-text {
    color: var(--ink);
    line-height: 1.6;
    margin-top: 0.5rem;
}

.review-verified-badge {
    background: rgba(42, 133, 153, 0.1);
    color: var(--teal-mid);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.review-helpful-btn {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.75rem;
    transition: all 0.2s;
}

.review-helpful-btn:hover {
    background: var(--gradient-sun);
    border-color: transparent;
    color: white;
}

/* Host Spotlight Card */
.host-spotlight-card {
    background: linear-gradient(135deg, var(--light), var(--white));
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.host-spotlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.host-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gradient-sun);
    padding: 3px;
}

.host-badge {
    background: var(--gradient-sun);
    color: white;
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
}

/* Testimonial Carousel */
.testimonial-carousel-card {
    background: var(--white);
    border-radius: 28px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--gold-light);
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--ink);
}

.carousel-control-custom {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
}

.carousel-control-custom:hover {
    background: var(--gradient-sun);
    border-color: transparent;
    color: white;
}

/* Write a Review CTA */
.write-review-card {
    background: linear-gradient(125deg, #1E2A2E, #0F1C20);
    border-radius: 32px;
}

/* ===== ABOUT US PAGE SPECIFIC STYLES ===== */
/* Hero Section */
.about-hero {
    background: var(--deep);
    background-image: radial-gradient(ellipse 70% 55% at 85% 40%, rgba(26, 95, 110, 0.45), transparent),
                      radial-gradient(ellipse 50% 65% at 10% 85%, rgba(232, 82, 26, 0.2), transparent);
    padding: 4rem 0 5rem;
    position: relative;
}

/* Mission Card */
.mission-card {
    background: var(--white);
    border-radius: 32px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 82, 26, 0.2);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-sun);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 2.5rem;
    color: white;
}

/* Story Timeline */
.story-timeline {
    position: relative;
    padding-left: 2rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-sun);
    opacity: 0.3;
}

.story-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.story-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: var(--gradient-sun);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.story-year {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sun);
    margin-bottom: 0.5rem;
}

.story-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Values Section */
.values-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
}

.values-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 82, 26, 0.2);
}

.values-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-sun);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.values-icon i {
    font-size: 2rem;
    color: white;
}

/* Team Section */
.team-card {
    background: var(--white);
    border-radius: 28px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 82, 26, 0.2);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--gradient-sun);
    padding: 3px;
}

.team-name {
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.team-title {
    color: var(--sun);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light);
    color: var(--mid);
    transition: all 0.2s;
    margin: 0 4px;
}

.team-social:hover {
    background: var(--gradient-sun);
    color: white;
    transform: translateY(-2px);
}

/* Milestone Section */
.milestone-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(232, 82, 26, 0.2);
}

.milestone-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-sun);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.milestone-label {
    font-size: 0.85rem;
    color: var(--mid);
    margin-top: 0.5rem;
}

/* Press Section */
.press-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
}

.press-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.press-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mid);
    margin-bottom: 1rem;
}

.press-quote {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--ink);
}

/* CTA Section */
.cta-about {
    background: linear-gradient(125deg, #1E2A2E, #0F1C20);
    border-radius: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .story-timeline {
        padding-left: 1rem;
    }
    .story-item {
        padding-left: 1.5rem;
    }
    .team-avatar {
        width: 100px;
        height: 100px;
    }
    .milestone-number {
        font-size: 2rem;
    }
}

/* ===== CONTACT US PAGE SPECIFIC STYLES ===== */
/* Hero Section */
.contact-hero {
    background: var(--deep);
    background-image: radial-gradient(ellipse 70% 55% at 85% 40%, rgba(26, 95, 110, 0.45), transparent),
                      radial-gradient(ellipse 50% 65% at 10% 85%, rgba(232, 82, 26, 0.2), transparent);
    padding: 4rem 0 5rem;
    position: relative;
}

/* Contact Info Cards */
.contact-info-card {
    background: var(--white);
    border-radius: 24px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 82, 26, 0.2);
}

.contact-icon-circle {
    width: 70px;
    height: 70px;
    background: var(--gradient-sun);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.contact-icon-circle i {
    font-size: 1.8rem;
    color: white;
}

.contact-info-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info-detail {
    color: var(--mid);
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
}

.contact-info-detail:hover {
    color: var(--sun);
}

/* Contact Form Card */
.contact-form-card {
    background: var(--white);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    font-size: 0.95rem;
    transition: all 0.2s;
    outline: none;
    background: var(--white);
}

.form-input:focus {
    border-color: var(--sun);
    box-shadow: 0 0 0 3px rgba(232, 82, 26, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    font-size: 0.95rem;
    transition: all 0.2s;
    outline: none;
    resize: vertical;
    font-family: inherit;
}

.form-textarea:focus {
    border-color: var(--sun);
    box-shadow: 0 0 0 3px rgba(232, 82, 26, 0.1);
}

.btn-submit {
    background: var(--gradient-sun);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 82, 26, 0.3);
}

/* Map Container */
.map-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 350px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--mid);
}

/* FAQ Section for Contact */
.contact-faq-item {
    background: var(--white);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.25s ease;
}

.contact-faq-item:hover {
    border-color: rgba(232, 82, 26, 0.3);
    box-shadow: var(--shadow-sm);
}

.contact-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--ink);
}

.contact-faq-question i {
    color: var(--sun);
    transition: 0.2s;
}

.contact-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--mid);
    line-height: 1.6;
}

.contact-faq-item.active .contact-faq-answer {
    max-height: 200px;
    margin-top: 1rem;
}

.contact-faq-item.active .contact-faq-question i {
    transform: rotate(180deg);
}

/* Business Hours */
.business-hours {
    background: var(--light);
    border-radius: 24px;
    padding: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
}

.hours-time {
    color: var(--mid);
}

/* Social Connect */
.social-connect-card {
    background: var(--white);
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.social-connect-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.social-connect-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: 0.2s;
}

.social-facebook {
    background: #1877f2;
    color: white;
}

.social-instagram {
    background: radial-gradient(circle at 30% 110%, #ffdb8c, #ff6224);
    color: white;
}

.social-twitter {
    background: #1da1f2;
    color: white;
}

.social-email {
    background: var(--gradient-sun);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 1.5rem;
    }
    .contact-info-card {
        padding: 1.2rem;
    }
    .contact-icon-circle {
        width: 55px;
        height: 55px;
    }
    .contact-icon-circle i {
        font-size: 1.4rem;
    }
}

/* ===== SIGN IN / SIGN UP PAGE SPECIFIC STYLES ===== */
/* Hero Section */
.auth-hero {
    background: var(--deep);
    background-image: radial-gradient(ellipse 70% 55% at 85% 40%, rgba(26, 95, 110, 0.45), transparent),
                      radial-gradient(ellipse 50% 65% at 10% 85%, rgba(232, 82, 26, 0.2), transparent);
    padding: 3rem 0 5rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Auth Card */
.auth-card {
    background: var(--white);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.auth-tab {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 1.5rem;
}

.auth-tab-btn {
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--mid);
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.auth-tab-btn.active {
    color: var(--sun);
}

.auth-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-sun);
}

.auth-tab-btn:hover:not(.active) {
    color: var(--ink);
}

/* Social Login Buttons */
.btn-social {
    width: 100%;
    padding: 12px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--ink);
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--sun);
}

.btn-google {
    background: var(--white);
}

.btn-google:hover {
    background: #fff;
    border-color: #DB4437;
    color: #DB4437;
}

.btn-facebook {
    background: var(--white);
}

.btn-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.btn-apple {
    background: var(--white);
}

.btn-apple:hover {
    background: #000;
    border-color: #000;
    color: white;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.auth-divider span {
    padding: 0 1rem;
    font-size: 0.8rem;
    color: var(--mid);
}

/* Form Inputs */
.auth-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    font-size: 0.95rem;
    transition: all 0.2s;
    outline: none;
    background: var(--white);
}

.auth-input:focus {
    border-color: var(--sun);
    box-shadow: 0 0 0 3px rgba(232, 82, 26, 0.1);
}

.auth-input-error {
    border-color: #dc3545;
}

.auth-input-error:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.error-message {
    color: #dc3545;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
}

/* Checkbox */
.auth-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--sun);
}

/* Links */
.auth-link {
    color: var(--sun);
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.auth-link:hover {
    text-decoration: underline;
}

/* Password Toggle */
.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--mid);
    transition: 0.2s;
}

.password-toggle:hover {
    color: var(--sun);
}

/* Forgot Password */
.forgot-password {
    font-size: 0.85rem;
}

/* Sign Up Terms */
.signup-terms {
    font-size: 0.75rem;
    color: var(--mid);
}

.signup-terms a {
    color: var(--sun);
    text-decoration: none;
    font-weight: 600;
}

.signup-terms a:hover {
    text-decoration: underline;
}

/* Success Message */
.success-message {
    background: rgba(42, 133, 153, 0.1);
    color: var(--teal-mid);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--teal-mid);
}

/* Responsive */
@media (max-width: 768px) {
    .auth-card {
        padding: 1.5rem;
    }
    .auth-tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    .btn-social {
        padding: 10px;
        font-size: 0.85rem;
    }
}

/* ===== LIST YOUR PROPERTY PAGE SPECIFIC STYLES ===== */
/* Hero Section */
.list-hero {
    background: var(--deep);
    background-image: radial-gradient(ellipse 70% 55% at 85% 40%, rgba(26, 95, 110, 0.45), transparent),
                      radial-gradient(ellipse 50% 65% at 10% 85%, rgba(232, 82, 26, 0.2), transparent);
    padding: 4rem 0 5rem;
    position: relative;
}

/* Earnings Card */
.earnings-card {
    background: var(--white);
    border-radius: 28px;
    padding: 1.8rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
}

.earnings-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 82, 26, 0.2);
}

.earnings-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-sun);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Steps Card */
.step-card-host {
    background: var(--white);
    border-radius: 24px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-card-host:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number-host {
    width: 50px;
    height: 50px;
    background: var(--gradient-sun);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.step-icon-host {
    font-size: 2rem;
    color: var(--sun);
    margin-bottom: 1rem;
}

/* Multi-Step Form */
.form-container {
    background: var(--white);
    border-radius: 32px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.form-progress {
    margin-bottom: 2rem;
}

.progress-step {
    text-align: center;
    position: relative;
}

.progress-step .step-circle {
    width: 40px;
    height: 40px;
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: 700;
    color: var(--mid);
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: var(--gradient-sun);
    border-color: var(--sun);
    color: white;
}

.progress-step.completed .step-circle {
    background: var(--teal-mid);
    border-color: var(--teal-mid);
    color: white;
}

.progress-step .step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--mid);
}

.progress-step.active .step-label {
    color: var(--sun);
}

.progress-connector {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.progress-connector.active {
    background: var(--gradient-sun);
}

/* Form Sections */
.form-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-section.active-section {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-label-custom {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.form-input-custom {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s;
    outline: none;
}

.form-input-custom:focus {
    border-color: var(--sun);
    box-shadow: 0 0 0 3px rgba(232, 82, 26, 0.1);
}

.form-textarea-custom {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s;
    outline: none;
    resize: vertical;
    font-family: inherit;
}

.form-textarea-custom:focus {
    border-color: var(--sun);
    box-shadow: 0 0 0 3px rgba(232, 82, 26, 0.1);
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.amenity-item:hover {
    border-color: var(--sun);
    background: rgba(232, 82, 26, 0.05);
}

.amenity-item.selected {
    background: var(--gradient-sun);
    border-color: var(--sun);
    color: white;
}

.amenity-item.selected i {
    color: white;
}

.amenity-item i {
    width: 24px;
    color: var(--teal-mid);
}

/* Photo Upload */
.photo-upload-area {
    border: 2px dashed var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.photo-upload-area:hover {
    border-color: var(--sun);
    background: rgba(232, 82, 26, 0.02);
}

.photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.preview-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    position: relative;
}

.preview-image .remove-photo {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    cursor: pointer;
}

/* Pricing Slider */
.pricing-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border);
    outline: none;
    -webkit-appearance: none;
}

.pricing-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-sun);
    cursor: pointer;
}

/* Success Modal */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    background: var(--white);
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.success-modal-overlay.active .success-modal {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-sun);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

@media (max-width: 768px) {
    .list-hero h1 {
        font-size: 2rem;
    }
    .form-container {
        padding: 1.5rem;
    }
    .amenities-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    .progress-step .step-label {
        font-size: 0.65rem;
    }
}

/* ===== PROPERTY LIST PAGE SPECIFIC STYLES ===== */
/* Hero Section */
.properties-hero {
    background: var(--deep);
    background-image: radial-gradient(ellipse 70% 55% at 85% 40%, rgba(26, 95, 110, 0.45), transparent),
                      radial-gradient(ellipse 50% 65% at 10% 85%, rgba(232, 82, 26, 0.2), transparent);
    padding: 3rem 0 4rem;
    position: relative;
}

/* Search Sidebar */
.search-sidebar {
    background: var(--white);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.filter-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.filter-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.filter-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.price-range {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    width: 100%;
}

.price-input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.85rem;
    outline: none;
    background: var(--white);
    width: 100%;
    box-sizing: border-box;
}

.price-input:focus {
    border-color: var(--sun);
    box-shadow: 0 0 0 3px rgba(232, 82, 26, 0.1);
}

.price-slider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    outline: none;
    -webkit-appearance: none;
    margin: 1rem 0 0.5rem;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-sun);
    cursor: pointer;
    border: none;
}

/* Checkbox & Radio Filters */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--sun);
}

.filter-checkbox span {
    font-size: 0.85rem;
    color: var(--ink);
}

.filter-checkbox .count {
    color: var(--mid);
    font-size: 0.75rem;
    margin-left: auto;
}

/* Property Card */
.property-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 82, 26, 0.2);
}

.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-sun);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
}

.property-save {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.property-save:hover {
    background: var(--sun);
    color: white;
}

.property-save.saved {
    background: var(--sun);
    color: white;
}

.property-content {
    padding: 1rem;
}

.property-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.property-location {
    font-size: 0.75rem;
    color: var(--mid);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.property-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
}

.property-rating i {
    color: #FFB800;
}

.property-price {
    font-weight: 800;
    color: var(--sun);
    font-size: 1.1rem;
}

.property-price span {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--mid);
}

/* Sort Bar */
.sort-bar {
    background: var(--white);
    border-radius: 16px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sort-select {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--white);
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s;
}

.view-btn.active {
    background: var(--gradient-sun);
    border-color: var(--sun);
    color: white;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-btn.active {
    background: var(--gradient-sun);
    border-color: var(--sun);
    color: white;
}

.pagination-btn:hover:not(.active) {
    border-color: var(--sun);
}

/* Map View (Modal) */
.map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.map-modal.active {
    opacity: 1;
    visibility: visible;
}

.map-modal-content {
    background: var(--white);
    border-radius: 24px;
    width: 90%;
    max-width: 1200px;
    height: 80%;
    position: relative;
    overflow: hidden;
}

.map-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.map-placeholder-large {
    width: 100%;
    height: 100%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Load More / Skeleton */
.skeleton-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.skeleton-image {
    height: 220px;
    background: linear-gradient(90deg, var(--border) 25%, var(--light) 50%, var(--border) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-content {
    padding: 1rem;
}

.skeleton-title {
    height: 20px;
    background: var(--border);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    width: 70%;
}

.skeleton-location {
    height: 14px;
    background: var(--border);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    width: 50%;
}

.skeleton-price {
    height: 18px;
    background: var(--border);
    border-radius: 8px;
    width: 40%;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    background: var(--light);
    border-radius: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .properties-hero h1 {
        font-size: 1.8rem;
    }
    .search-sidebar {
        position: static;
        margin-bottom: 1.5rem;
    }
    .sort-bar {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ===== PROPERTY LIST PAGE ADDITIONAL STYLES ===== */
/* Complete Amenities Grid */
.amenities-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.amenities-grid-full::-webkit-scrollbar {
    width: 4px;
}

.amenities-grid-full::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 4px;
}

.amenities-grid-full::-webkit-scrollbar-thumb {
    background: var(--sun);
    border-radius: 4px;
}

/* Property Type Icons */
.type-icon {
    width: 32px;
    text-align: center;
}

/* Price Range Display */
.price-range-display {
    font-size: 0.75rem;
    color: var(--mid);
    margin-top: 0.5rem;
    text-align: center;
}

/* Active Filter Tags */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.filter-tag {
    background: var(--light);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-tag i {
    cursor: pointer;
    color: var(--mid);
}

.filter-tag i:hover {
    color: var(--sun);
}

/* View toggle active state */
.view-btn.active {
    background: var(--gradient-sun);
    border-color: var(--sun);
    color: white;
}

/* Property Card List View */
.property-card.list-view {
    display: flex;
    flex-direction: row;
    height: auto;
}

.property-card.list-view .property-image {
    width: 280px;
    height: auto;
    flex-shrink: 0;
}

.property-card.list-view .property-content {
    flex: 1;
}

@media (max-width: 768px) {
    .property-card.list-view {
        flex-direction: column;
    }
    .property-card.list-view .property-image {
        width: 100%;
        height: 200px;
    }
}

/* ===== PROPERTY DETAIL PAGE SPECIFIC STYLES ===== */
/* Property Hero */
.property-detail-hero {
    background: var(--deep);
    padding: 2rem 0 0;
    position: relative;
}

/* Gallery */
.gallery-container {
    display: flex;
    gap: 0.5rem;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
}

.gallery-main {
    flex: 2;
    cursor: pointer;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.gallery-grid-item {
    cursor: pointer;
    overflow: hidden;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.05);
}

.gallery-show-all {
    position: relative;
}

.gallery-show-all::after {
    content: 'View All Photos';
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: 0.2s;
}

.lightbox-close:hover {
    background: var(--sun);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: 0.2s;
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--sun);
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
}

/* Property Info Section */
.property-info-card {
    background: var(--white);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.host-card {
    background: var(--white);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    text-align: center;
}

.host-avatar-detail {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--gradient-sun);
    padding: 3px;
}

/* Amenities List */
.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.amenity-item-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: var(--light);
    border-radius: 12px;
}

.amenity-item-detail i {
    width: 24px;
    color: var(--sun);
}

/* Booking Card */
.booking-card {
    background: var(--white);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.booking-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--sun);
}

.booking-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--mid);
}

.date-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.9rem;
    outline: none;
}

.date-input:focus {
    border-color: var(--sun);
}

.guest-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.9rem;
    outline: none;
    background: white;
}

.price-breakdown {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.price-total {
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    font-weight: 800;
    font-size: 1.1rem;
}

/* Review Section */
.review-card-detail {
    background: var(--white);
    border-radius: 20px;
    padding: 1.2rem;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* Map Section */
.map-placeholder-detail {
    height: 300px;
    background: var(--light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Similar Properties */
.similar-property-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.similar-property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.similar-property-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.similar-property-info {
    padding: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column;
        height: auto;
    }
    .gallery-main {
        height: 250px;
    }
    .gallery-grid {
        height: 150px;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .booking-card {
        position: static;
        margin-top: 1.5rem;
    }
}

