/* ==============================================================================
   PROPERTY PAGES — Unified Styles
   Shared across all property detail pages.
   Variant classes:
     .stats-light        on .property-stats   → light flex stats (Homeapple Lodge)
     .amenities-dark     on .amenities-section → dark amenities  (Hudson House)
     .booking-natural    on .booking-form-wrapper → natural HTML order (summary LEFT, form RIGHT)
   ============================================================================== */

/* ===========================================
   HERO CAROUSEL
   =========================================== */

.property-hero {
    background: var(--bg-dark);
    position: relative;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.hero-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Arrows */
.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel-btn svg {
    color: var(--brand-primary);
}

.hero-carousel-prev {
    left: 2rem;
}

.hero-carousel-next {
    right: 2rem;
}

/* Dots Indicator */
.hero-carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.hero-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.hero-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Counter */
.hero-carousel-counter {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10;
}

/* ===========================================
   PROPERTY CONTENT SECTION
   =========================================== */

.property-content-section {
    padding: 0;
    background: var(--bg-primary);
}

.property-layout {
    display: block;
    max-width: 1100px;
    margin: 0 auto;
}

/* Main Content Area */
.property-main {
    padding: 2rem 3rem 3.5rem;
}

/* Property Header */
.property-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.property-header:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.property-header h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.property-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

.weekday-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #4ade80;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.weekday-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ===========================================
   PROPERTY STATS — Default (Dark Grid)
   =========================================== */

.property-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    padding: 0;
    margin: 0 0 3rem 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1e3a5f 100%);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.5rem;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.2s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.08);
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-value {
    font-weight: 800;
    font-size: 2.25rem;
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

/* ===========================================
   PROPERTY STATS — Light Flex Variant
   Usage: <div class="property-stats stats-light">
   =========================================== */

.property-stats.stats-light {
    display: flex;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    box-shadow: none;
}

.property-stats.stats-light .stat {
    background: transparent;
    padding: 2rem 3rem;
    flex: 1;
}

.property-stats.stats-light .stat:hover {
    background: rgba(255, 255, 255, 0.7);
}

.property-stats.stats-light .stat:not(:last-child)::after {
    height: 50%;
    background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}

.property-stats.stats-light .stat-value {
    color: var(--brand-primary);
    font-size: 2.5rem;
}

.property-stats.stats-light .stat-label {
    color: var(--text-muted);
    letter-spacing: 0.15em;
}

/* ===========================================
   PROPERTY SECTIONS
   =========================================== */

.property-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.property-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.property-section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: block;
    letter-spacing: -0.02em;
}

.property-section p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.property-section p:last-child {
    margin-bottom: 0;
}

/* ===========================================
   AMENITIES SECTION — Default (Light)
   =========================================== */

.amenities-section {
    text-align: left;
    padding: 4rem 0 !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
    margin-top: 1rem;
}

.amenities-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1.5rem;
    overflow: hidden;
    margin: 0 -3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.amenities-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.amenities-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.amenities-lead {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: none;
}

/* Hero Amenity */
.hero-amenity {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1e293b 100%);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.hero-amenity-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-amenity-icon svg {
    color: white;
}

.hero-amenity-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.15rem 0;
    color: white;
}

.hero-amenity-text p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: none;
}

/* Highlight Amenities Grid */
.highlight-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.highlight-icon {
    font-size: 1.25rem;
}

/* Other Amenities Tags */
.other-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.amenity-tag {
    display: inline-block;
    padding: 0.5rem 0.875rem;
    background: var(--bg-secondary);
    border-radius: 2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.amenities-image {
    position: relative;
    min-height: 500px;
}

.amenities-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================================
   AMENITIES — Dark Variant (Hudson House)
   Usage: <section class="amenities-section amenities-dark">
   =========================================== */

.amenities-dark .amenities-split {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.amenities-dark .amenities-content {
    padding: 2.5rem;
}

.amenities-dark .amenities-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.amenities-dark .hero-amenity {
    display: block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.amenities-dark .hero-amenity-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
    color: white;
}

.amenities-dark .hero-amenity-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.amenities-dark .highlight-amenities {
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amenities-dark .highlight-item {
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: none;
}

.amenities-dark .other-amenities {
    gap: 0.4rem;
}

.amenities-dark .amenity-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.35rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ===========================================
   ABOUT SECTION — Renovated Layout
   =========================================== */

.about-section {
    text-align: left !important;
}

.about-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.about-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--brand-primary);
    background: rgba(15, 23, 42, 0.06);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.about-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.about-header .about-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-block-reverse {
    direction: rtl;
}

.about-block-reverse>* {
    direction: ltr;
}

.about-block-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.about-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-block:hover .about-block-image img {
    transform: scale(1.03);
}

.about-block-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    pointer-events: none;
}

.about-block-text {
    padding: 1rem 0;
}

.about-block-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand-primary);
    opacity: 0.25;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    font-variant-numeric: tabular-nums;
}

.about-block-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-block-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin: 0;
    max-width: none;
}

.about-block-text p strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Map embedded in about block */
.about-block-map-embed {
    min-height: 320px;
}

.about-block-map-embed iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
}

.about-block-map-embed::after {
    display: none;
}

/* About — Mobile */
@media (max-width: 768px) {
    .about-header {
        margin-bottom: 2.5rem;
    }

    .about-header h2 {
        font-size: 2rem;
    }

    .about-header .about-intro {
        font-size: 1rem;
    }

    .about-blocks {
        gap: 2.5rem;
    }

    .about-block {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-block-reverse {
        direction: ltr;
    }

    .about-block-image {
        aspect-ratio: 16 / 10;
        border-radius: 16px;
    }

    .about-block-map-embed {
        min-height: 250px;
    }

    .about-block-map-embed iframe {
        border-radius: 16px;
    }

    .about-block-text {
        padding: 0;
        text-align: center;
    }

    .about-block-text h3 {
        font-size: 1.25rem;
    }

    .about-block-text p {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .about-block-number {
        display: none;
    }
}

/* Location Map */
.location-map {
    margin-top: 1rem;
}

/* ===========================================
   BOOKING SECTION
   =========================================== */

.booking-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 5rem 0;
}

.booking-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

/* Default: form LEFT (col 1), summary RIGHT (col 2) */
.booking-summary {
    grid-column: 2;
    grid-row: 1;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-self: start;
}

.booking-form-card {
    grid-column: 1;
    grid-row: 1;
}

/* Natural order variant: summary LEFT, form RIGHT
   Usage: <div class="booking-form-wrapper booking-natural"> */
.booking-form-wrapper.booking-natural {
    grid-template-columns: 1fr 480px;
}

.booking-form-wrapper.booking-natural .booking-summary {
    grid-column: auto;
    grid-row: auto;
}

.booking-form-wrapper.booking-natural .booking-form-card {
    grid-column: auto;
    grid-row: auto;
}

/* ===========================================
   BOOKING — Price Card Variant (Default)
   Used by: Homeapple, Twin Cabins, Hudson Weekday, Chelwood
   =========================================== */

.booking-summary h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Price Card */
.price-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.75rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}

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

.price-display .price-from {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.price-display .price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
}

.price-display .price-period {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.6);
}

.price-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    margin: 1.25rem 0;
}

.price-card .price-per-person {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1rem 0;
}

.price-card .price-per-person svg {
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.price-card .price-per-person strong {
    color: #4ade80;
    font-weight: 700;
}

/* Features */
.booking-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.booking-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-features .feature::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact */
.booking-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
}

.contact-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.contact-avatar span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

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

.contact-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.booking-contact .phone-number {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.booking-contact .phone-number:hover {
    color: #4ade80;
}

/* ===========================================
   BOOKING — Summary Card Variant (Hudson House)
   Unique class names — no conflict with Price Card.
   =========================================== */

.booking-summary .summary-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    padding: 2rem 1.75rem;
    backdrop-filter: blur(10px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.summary-header {
    text-align: center;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.summary-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.summary-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
}

.summary-price .price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
}

.summary-price .price-period {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

.price-subtext {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0.65rem 0 0 0;
    font-weight: 500;
}

/* Summary Stats */
.summary-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0.5rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 0.75rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.summary-stats .stat-label {
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    flex-shrink: 0;
}

/* Summary Perks */
.summary-perks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 0.25rem;
    margin-top: 0.5rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.perk-icon {
    width: 26px;
    height: 26px;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perk-icon svg {
    color: #4ade80;
}

.perk-item span {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Summary Contact Card */
.summary-contact-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-top: 1.25rem;
}

.summary-contact-card .contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.summary-contact-card .contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.summary-contact-card .contact-icon svg {
    color: white;
}

.summary-contact-card .contact-info {
    gap: 0.15rem;
}

.contact-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.contact-role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.contact-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.9rem 1.25rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.contact-link-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.contact-link-btn svg {
    color: white;
    flex-shrink: 0;
}

/* ===========================================
   BOOKING — Summary Card V2 (Redesigned)
   Used by: Hudson House
   =========================================== */

.summary-card-v2 {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Price Header */
.summary-header-v2 {
    text-align: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.45);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.summary-price-v2 {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1rem;
}

.summary-price-v2 .price-amount {
    font-size: 3.25rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
}

.summary-price-v2 .price-period {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.price-subtext-v2 {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0.5rem 0 0 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Stats V2 — horizontal row with icons */
.summary-stats-v2 {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0;
}

.stat-item-v2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    position: relative;
}

.stat-item-v2:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
}

.stat-icon-v2 {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
}

.stat-text-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.stat-number-v2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.stat-label-v2 {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.06em;
    font-weight: 500;
    text-transform: uppercase;
}

/* Perks V2 */
.summary-perks-v2 {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 0;
}

.perk-item-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.65rem 1.75rem;
}

.perk-item-v2 svg {
    color: #4ade80;
    flex-shrink: 0;
}

.perk-item-v2 span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.005em;
}

/* Payment Explainer */
.payment-explainer {
    padding: 0.85rem 1.5rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.payment-explainer-title {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 0.7rem;
}

.payment-explainer-items {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
}

.payment-explainer-line {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.4;
}

.payment-explainer-line strong {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-right: 0.25rem;
}

.refundable-label {
    color: #4ade80;
    font-size: 0.82rem;
}

.payment-explainer-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.5;
    margin: 0;
}

/* Contact V2 */
.summary-contact-v2 {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
}

.contact-v2-inner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.contact-v2-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.6);
}

.contact-v2-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-v2-title {
    font-size: 0.925rem;
    font-weight: 600;
    color: white;
}

.contact-v2-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.contact-v2-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.contact-v2-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
}

.contact-v2-btn svg {
    transition: transform 0.25s ease;
}

.contact-v2-btn:hover svg {
    transform: translateX(3px);
}

/* Promo Code Card */
.promo-card {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem 1.5rem;
    margin-top: 1rem;
}

.promo-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.promo-header span {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.promo-input-group {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.promo-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.6rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    outline: none;
    min-width: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.promo-input:focus {
    border-color: rgba(74, 222, 128, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.promo-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

.promo-apply-btn {
    padding: 0.75rem 1.4rem;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border: none;
    border-radius: 0.6rem;
    color: #0f172a;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.promo-apply-btn:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.25);
}

.promo-message {
    margin: 0.6rem 0 0 0;
    font-size: 0.8rem;
    font-weight: 500;
    display: none;
}

.promo-message.promo-success {
    display: block;
    color: #4ade80;
}

.promo-message.promo-error {
    display: block;
    color: #f87171;
}

/* Price with discount applied */
.price-amount.has-discount {
    color: #4ade80;
}

.price-original {
    font-size: 1.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    margin-right: 0.4rem;
}

/* ===========================================
   BOOKING FORM CARD & FORM ELEMENTS
   =========================================== */

.booking-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.booking-form {
    position: relative;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row-dates {
    margin-bottom: 1rem;
    position: relative;
}

.date-selection-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

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

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

.booking-form .form-group input,
.booking-form .form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-primary);
    background: white;
    transition: all 0.15s ease;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

.booking-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

/* Date Input Wrapper */
.date-input-wrapper {
    position: relative;
}

.date-input-wrapper input {
    padding-right: 2.5rem;
    cursor: pointer;
}

.date-input-wrapper .calendar-icon {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* ===========================================
   CALENDAR POPUP
   =========================================== */

.calendar-popup {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.calendar-popup.active {
    display: block;
}

.calendar-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-popup-header .cal-nav-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-light);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.calendar-popup-header .cal-nav-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--brand-primary);
}

.cal-month-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 0.5rem;
}

.cal-weekdays span {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 0.5rem 0;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    font-weight: 500;
}

.cal-day:hover:not(.empty):not(.past):not(.booked) {
    background: var(--brand-primary);
    color: white;
}

.cal-day.empty {
    cursor: default;
}

.cal-day.past {
    color: var(--text-muted);
    opacity: 0.4;
    cursor: not-allowed;
}

.cal-day.booked {
    background: #fee2e2;
    color: #dc2626;
    cursor: not-allowed;
    text-decoration: line-through;
}

.cal-day.blocked {
    background: #f1f5f9;
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.5;
}

.cal-day.selected {
    background: var(--brand-primary);
    color: white;
}

.cal-day.in-range {
    background: rgba(15, 23, 42, 0.1);
}

.calendar-popup-legend {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-light);
}

.calendar-popup-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.calendar-popup-legend .dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.calendar-popup-legend .dot.available {
    background: var(--brand-primary);
}

.calendar-popup-legend .dot.booked {
    background: #fee2e2;
    border: 1px solid #fecaca;
}

.calendar-popup-legend .dot.selected {
    background: var(--brand-primary);
}

/* ===========================================
   PRICE SUMMARY (in-form)
   =========================================== */

.price-summary {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.price-line:last-child {
    margin-bottom: 0;
}

.price-line.total {
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
}

/* Submit Button */
.btn-book-submit {
    display: block;
    width: 100%;
    padding: 1.125rem 2rem;
    background: #16a34a;
    color: white;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-book-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

/* ===========================================
   PRICE BREAKDOWN CARD (split-payment)
   =========================================== */

.price-breakdown-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.price-breakdown-card .breakdown-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1e3a5f;
    margin-bottom: 0.75rem;
}

.price-breakdown-card .breakdown-icon {
    flex-shrink: 0;
    opacity: 0.6;
}

.price-breakdown-card .breakdown-title {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #94a3b8);
    margin-bottom: 0.75rem;
}

.price-breakdown-card .breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.92rem;
    color: #475569;
}

.price-breakdown-card .breakdown-row span:last-child {
    font-weight: 600;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
}

.price-breakdown-card .breakdown-subtext {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: -0.3rem;
    padding-bottom: 0.15rem;
}

.price-breakdown-card .breakdown-total {
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    padding-top: 0.5rem;
    border-top: 1px dashed #e2e8f0;
    margin-top: 0.25rem;
}

.price-breakdown-card .breakdown-total span:last-child {
    color: #0f172a;
    font-weight: 700;
}

.price-breakdown-card .breakdown-discount {
    color: #16a34a;
}

.price-breakdown-card .breakdown-discount span:last-child {
    font-weight: 600;
    color: #16a34a;
}

.price-breakdown-card .breakdown-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 1rem 0;
}

.price-breakdown-card .breakdown-section-label {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #94a3b8);
    margin-bottom: 0.35rem;
}

.price-breakdown-card .breakdown-pay-now {
    background: #16a34a;
    color: #fff !important;
    border-radius: 0.625rem;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.price-breakdown-card .breakdown-pay-now span {
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.price-breakdown-card .breakdown-check {
    flex-shrink: 0;
}

.price-breakdown-card .breakdown-remaining-section {
    background: #f8fafc;
    border-radius: 0.625rem;
    padding: 0.85rem 1rem;
    border: 1px dashed #cbd5e1;
}

.price-breakdown-card .breakdown-remaining-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.15rem;
}

.price-breakdown-card .breakdown-remaining-detail {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.price-breakdown-card .breakdown-remaining-section .breakdown-row {
    font-size: 0.88rem;
    padding: 0;
}

.price-breakdown-card .breakdown-remaining-section .breakdown-row span:last-child {
    color: #64748b;
}

.price-breakdown-card .breakdown-remaining-note {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.5rem;
    font-style: italic;
}

.price-breakdown-card .breakdown-remaining {
    color: var(--text-muted, #94a3b8);
    font-style: italic;
    font-size: 0.88rem;
}

.price-breakdown-card .breakdown-remaining span:last-child {
    color: var(--text-muted, #94a3b8);
}

.price-breakdown-card .refundable-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    vertical-align: middle;
    margin-left: 0.3rem;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.form-note svg {
    color: var(--text-muted);
}

/* ===========================================
   OTHER PROPERTIES SECTION
   =========================================== */

.other-properties {
    background: var(--bg-primary);
    padding: var(--spacing-xl) 0;
}

.other-properties .section-header {
    margin-bottom: 48px;
    text-align: center;
}

.other-properties .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
}

.properties-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Property Cards */
.other-properties .property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.other-properties .property-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.other-properties .property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Property Carousel */
.other-properties .property-carousel {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.other-properties .carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.other-properties .carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.other-properties .carousel-slide.active {
    opacity: 1;
}

.other-properties .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.other-properties .carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.other-properties .carousel-btn svg {
    color: var(--text-primary);
}

.other-properties .carousel-prev {
    left: 12px;
}

.other-properties .carousel-next {
    right: 12px;
}

.other-properties .property-card:hover .carousel-btn {
    opacity: 1;
}

.other-properties .carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.other-properties .carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.other-properties .carousel-dot.active {
    background: white;
    width: 18px;
    border-radius: 3px;
}

/* Property Content */
.other-properties .property-content {
    padding: 1.5rem;
    text-align: center;
}

.other-properties .property-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.other-properties .property-tagline {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.other-properties .property-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.other-properties .property-meta span {
    display: inline-flex;
    align-items: center;
}

.other-properties .property-meta span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--brand-primary);
    border-radius: 50%;
    margin-right: 0.5rem;
}

.other-properties .property-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.other-properties .feature-tag {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.2s ease;
}

.other-properties .feature-tag:hover {
    background-color: #e2e8f0;
    border-color: #cbd5e1;
}

/* ===========================================
   RESPONSIVE STYLES
   =========================================== */

@media (max-width: 1024px) {
    .booking-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Single column: summary first (price + promo), then form */
    .booking-form-card {
        grid-column: 1;
        grid-row: 2;
    }

    .booking-summary {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
        width: 100%;
    }

    .price-display {
        justify-content: center;
    }

    .price-card {
        text-align: center;
    }

    .price-card .price-per-person {
        justify-content: center;
    }

    .booking-features {
        align-items: center;
    }

    .booking-contact {
        justify-content: center;
        text-align: left;
    }

    /* Summary Card variant */
    .summary-card {
        text-align: center;
    }

    .summary-perks {
        align-items: center;
    }

    .perk-item {
        justify-content: center;
    }

    .summary-contact-card .contact-header {
        justify-content: center;
    }

    /* Summary Card V2 responsive */
    .summary-card-v2 {
        width: 100%;
    }

    .summary-header-v2 {
        padding: 1.75rem 1.5rem 1.25rem;
    }

    .summary-price-v2 .price-amount {
        font-size: 3.75rem;
    }

    .summary-price-v2 .price-period {
        font-size: 1.3rem;
    }

    .summary-stats-v2 {
        padding: 1.25rem 1.5rem;
    }

    .stat-number-v2 {
        font-size: 1.75rem;
    }

    .stat-label-v2 {
        font-size: 0.75rem;
    }

    .summary-perks-v2 {
        padding: 0.5rem 0;
    }

    .perk-item-v2 {
        padding: 0.6rem 2rem;
    }

    .perk-item-v2 span {
        font-size: 1rem;
    }

    .summary-contact-v2 {
        width: 100%;
        margin-top: 1rem;
    }

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

@media (max-width: 968px) {
    .property-main {
        padding: 2rem 1.5rem;
    }

    .hero-carousel {
        height: 50vh;
        min-height: 350px;
    }

    .hero-carousel-btn {
        width: 44px;
        height: 44px;
    }

    .hero-carousel-prev {
        left: 1rem;
    }

    .hero-carousel-next {
        right: 1rem;
    }

    .property-header h1 {
        font-size: 2.25rem;
    }

    /* Dark grid stats responsive */
    .property-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2)::after {
        display: none;
    }

    .stat:not(:last-child)::after {
        height: 50%;
    }

    /* Light flex stats responsive */
    .property-stats.stats-light {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .property-stats.stats-light .stat:not(:last-child)::after {
        display: none;
    }

    .amenities-split {
        grid-template-columns: 1fr;
        margin: 0 -1.5rem;
    }

    .amenities-content {
        padding: 2rem;
    }

    .highlight-amenities {
        grid-template-columns: 1fr;
    }

    .amenities-image {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .hero-carousel {
        height: 40vh;
        min-height: 280px;
    }

    .hero-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .hero-carousel-btn svg {
        width: 24px;
        height: 24px;
    }

    .hero-carousel-dots {
        display: none;
    }

    .hero-carousel-counter {
        bottom: 1rem;
        right: 1rem;
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .properties-grid-small {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .property-main {
        padding: 1.5rem 1rem;
    }

    .property-header h1 {
        font-size: 1.85rem;
    }

    .property-tagline {
        font-size: 1rem;
    }

    /* Dark grid stats responsive */
    .property-stats {
        grid-template-columns: repeat(2, 1fr);
        border-radius: var(--radius-md);
    }

    .stat {
        padding: 1.25rem 1rem;
    }

    .stat:nth-child(2)::after,
    .stat:nth-child(4)::after {
        display: none;
    }

    .stat:not(:last-child)::after {
        height: 50%;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    /* Light flex stats responsive */
    .property-stats.stats-light {
        flex-wrap: wrap;
        border-radius: var(--radius-md);
    }

    .property-stats.stats-light .stat {
        padding: 1.25rem 1rem;
        min-width: 45%;
        flex: 1 1 45%;
    }

    .property-stats.stats-light .stat:not(:last-child)::after {
        display: none;
    }

    .property-stats.stats-light .stat-value {
        font-size: 2rem;
    }

    .property-stats.stats-light .stat-label {
        font-size: 0.65rem;
    }

    .property-section h2 {
        font-size: 1.25rem;
    }

    .booking-section {
        padding: 2.5rem 0;
    }

    .booking-summary h2 {
        font-size: 2rem;
    }

    .price-card {
        padding: 1.25rem;
    }

    .price-display .price-amount {
        font-size: 3rem;
    }

    .booking-contact {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }

    .booking-form-card {
        padding: 1.5rem;
    }

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

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

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

    .price-display .price-amount {
        font-size: 2.5rem;
    }
}