/**
 * Barbados Properties - Frontend Styles
 * Version: 1.0.0
 */

/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary-color: #426d84;
    --primary-dark: #263723;
    --primary-light: #e2f3f8;
    --secondary-color: #426d84;
    --secondary-dark: #426d84;
    --accent-color: #ff9800;
    --text-primary: #212121;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* ============================================
   Property List Grid
   ============================================ */
.barbados-property-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.barbados-property-list.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.barbados-property-list.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.barbados-property-list.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   Property Card
   ============================================ */
.property-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.property-card .property-image {
    position: relative;
    overflow: hidden;
}

.property-card .property-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

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

.property-card .property-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
}

.property-card .property-content {
    padding: 20px;
}

.property-card .property-type {
    display: inline-block;
    background: #e3f2fd;
    color: var(--secondary-color);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8em;
    margin-bottom: 10px;
}

.property-card .property-title {
    margin: 0 0 10px 0;
    font-size: 1.3em;
    color: var(--text-primary);
}

.property-card .property-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.property-card .property-title a:hover {
    color: var(--primary-color);
}

.property-card .property-price {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.property-card .property-price .price-label {
    display: block;
    font-size: 0.6em;
    font-weight: normal;
    color: var(--text-secondary);
    margin-top: 5px;
}

.property-card .property-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    justify-content: space-between;
}

.property-card .property-details span {
    color: var(--text-secondary);
    font-size: 0.9em;
    text-align: center;
}

.property-card .property-details .bedrooms::before {
    content: "🛏";
}

.property-card .property-details .bathrooms::before {
    content: "🛁";
}

.property-card .property-details .sqft::before {
    content: "📐";
}

.property-card .property-excerpt {
    color: var(--text-secondary);
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 15px;
}

.property-card .view-property-btn {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: #fff;
    padding: 12px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.property-card .view-property-btn:hover {
    background: var(--primary-dark);
}

/* ============================================
   Property Detail Page - Hero Section
   ============================================ */
.barbados-property-detail {
    max-width: 1400px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.property-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.property-hero-image {
    width: 100%;
    height: 100%;
}

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

.property-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 60px 40px 40px;
}

.property-hero-no-image {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-hero-no-image .property-hero-content {
    text-align: center;
    padding: 40px;
}

.property-hero-content {
    color: #fff;
}

.property-hero-content .property-title {
    font-size: 2.8em;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.property-hero-content .property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2em;
    margin: 0;
    opacity: 0.95;
}

.property-hero-content .location-icon {
    flex-shrink: 0;
}

/* ============================================
   Property Detail Page - Content Layout
   ============================================ */
.property-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

/* Quick Facts Bar - Below Hero */
.property-quick-facts-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 20px 0;
    margin-bottom: 40px;
}

.quick-facts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.quick-fact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
}

.quick-fact-icon {
    opacity: 0.9;
    flex-shrink: 0;
}

.quick-fact-value {
    white-space: nowrap;
}

/* ============================================
   Property Sections
   ============================================ */
.property-section {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    /*box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);*/
}

/* Property Description */
.property-description .description-content {
    font-size: 1.05em;
    line-height: 1.8;
    color: var(--text-primary);
}

.property-description .description-content p {
    margin-bottom: 1em;
}

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

.property-description .description-content ul,
.property-description .description-content ol {
    margin: 1em 0;
    padding-left: 1.5em;
}

.property-description .description-content li {
    margin-bottom: 0.5em;
}

.property-description .description-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.property-description .description-content a:hover {
    color: var(--primary-dark);
}

.section-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

/* ============================================
   Property Highlights
   ============================================ */
.property-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.highlight-item:hover {
    background: #e8f5e9;
    transform: translateY(-2px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.highlight-content {
    display: flex;
    flex-direction: column;
}

.highlight-value {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.highlight-label {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ============================================
   Features Grid
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-size: 0.95em;
    color: var(--text-primary);
    transition: var(--transition);
}

.feature-item:hover {
    background: #e8f5e9;
    transform: translateX(5px);
}

.feature-check {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* ============================================
   Shares Grid
   ============================================ */
.shares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.share-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.share-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.share-header {
    margin-bottom: 20px;
}

.share-name {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.share-price {
    margin-bottom: 20px;
}

.price-amount {
    display: block;
    font-size: 1em;
}

.price-label {
    font-size: 0.9em;
    color: var(--text-secondary);
}

.share-cta {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.share-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   Availability Table
   ============================================ */
.availability-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.availability-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95em;
}

.availability-table thead {
    background: var(--primary-color);
    color: #fff;
}

.availability-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

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

.availability-table tbody tr:hover {
    background: var(--bg-secondary);
}

.availability-table .group-number {
    font-weight: 700;
    color: var(--primary-color);
}

.availability-table .date-range {
    font-size: 0.9em;
    color: var(--text-secondary);
}

.availability-table .gold-column {
    text-align: center;
}

.availability-table .gold-cell {
    background: #FFD700;
}

.availability-table .gold-cell .gold-indicator {
    display: block;
    color: #ffc107;
    font-size: 1.2em;
    margin-bottom: 3px;
}

.availability-table .price-value {
    display: inline-block;
    padding: 5px 12px;
    background: #e8f5e9;
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: capitalize;
}

.status-available .status-badge {
    background: #e8f5e9;
    color: var(--primary-color);
}

.status-sold .status-badge {
    background: #ffebee;
    color: #c62828;
}

.status-reserved .status-badge {
    background: #fff3e0;
    color: #e65100;
}

.status-rented .status-badge {
    background: #e3f2fd;
    color: var(--secondary-color);
}

/* Availability Legend */
.availability-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    color: var(--text-secondary);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.legend-color.available {
    background: var(--primary-color);
}

.legend-color.gold {
    background: #ffc107;
}

.legend-color.sold {
    background: #c62828;
}

.legend-color.reserved {
    background: #e65100;
}

.legend-color.rented {
    background: var(--secondary-color);
}

/* ============================================
   Contact Owner Section
   ============================================ */
.contact-owner-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
}

.contact-owner-section .section-title {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.contact-owner-section .section-title::after {
    background: #fff;
}

.contact-owner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.contact-owner-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-owner-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-owner-icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.contact-owner-content {
    display: flex;
    flex-direction: column;
}

.contact-owner-label {
    font-size: 0.85em;
    opacity: 0.8;
    margin-bottom: 3px;
}

.contact-owner-value {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
}

.contact-owner-value:hover {
    text-decoration: underline;
}

.contact-owner-cta {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 14px 40px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.contact-owner-cta:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .property-hero {
        height: 400px;
    }

    .property-hero-content .property-title {
        font-size: 2.2em;
    }

    .quick-facts-container {
        gap: 20px;
    }

    .quick-fact-item {
        font-size: 0.95em;
    }
}

@media (max-width: 768px) {
    .barbados-property-list {
        grid-template-columns: 1fr;
    }

    .barbados-property-list.columns-2,
    .barbados-property-list.columns-3,
    .barbados-property-list.columns-4 {
        grid-template-columns: 1fr;
    }

    .property-hero {
        height: 350px;
        border-radius: 0;
        margin-bottom: 30px;
    }

    .property-hero-content .property-title {
        font-size: 1.8em;
    }

    .property-hero-content .property-location {
        font-size: 1em;
    }

    .property-quick-facts-bar {
        padding: 15px 0;
        margin-bottom: 30px;
    }

    .quick-facts-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .quick-fact-item {
        font-size: 0.9em;
    }

    .property-main-content {
        padding: 0 15px;
    }

    .property-section {
        padding: 20px;
    }

    .section-title {
        font-size: 1.3em;
    }

    .property-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .highlight-item {
        padding: 15px;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
    }

    .highlight-value {
        font-size: 1.2em;
    }

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

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

    .availability-table {
        font-size: 0.85em;
    }

    .availability-table th,
    .availability-table td {
        padding: 10px;
    }

    .availability-legend {
        flex-direction: column;
        gap: 10px;
    }

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

@media (min-width: 769px) and (max-width: 1024px) {
    .barbados-property-list.columns-3,
    .barbados-property-list.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.property-section {
    animation: fadeInUp 0.5s ease-out;
}

.property-section:nth-child(1) { animation-delay: 0.1s; }
.property-section:nth-child(2) { animation-delay: 0.2s; }
.property-section:nth-child(3) { animation-delay: 0.3s; }
.property-section:nth-child(4) { animation-delay: 0.4s; }

.sidebar-card {
    animation: fadeInUp 0.5s ease-out;
}

.sidebar-card:nth-child(1) { animation-delay: 0.2s; }
.sidebar-card:nth-child(2) { animation-delay: 0.3s; }

/* ============================================
   Property Slider (Listing Page)
   ============================================ */
.property-slider {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.property-slider .slider-container {
    display: flex;
    transition: transform 0.4s ease;
    height: 100%;
}

.property-slider .slider-slide {
    min-width: 100%;
    height: 100%;
}

.property-slider .slider-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.property-slider .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.property-card:hover .property-slider .slider-nav {
    opacity: 1;
}


.property-slider .slider-prev {
    left: 10px;
}

.property-slider .slider-next {
    right: 10px;
}

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

.property-slider .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.3s ease;
}

.property-slider .slider-dot.active {
    background: #fff;
}

/* ============================================
   Hero Slider (Detail Page)
   ============================================ */
.property-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.property-hero.has-slider {
    background: #000;
}

.property-hero-slider .hero-slider-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.property-hero-slider .hero-slide {
    min-width: 100%;
    height: 100%;
}

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

.property-hero-slider .hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 20;
}

.property-hero:hover .hero-slider-nav {
    opacity: 1;
}

.property-hero-slider .hero-slider-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.property-hero-slider .hero-prev {
    left: 20px;
}

.property-hero-slider .hero-next {
    right: 20px;
}

.property-hero-slider .hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.property-hero-slider .hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-hero-slider .hero-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* ============================================
   Lightbox
   ============================================ */
.property-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
}

.property-lightbox .lightbox-image-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.property-lightbox .lightbox-image-container img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    display: block;
}

.property-lightbox .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.property-lightbox .lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.property-lightbox .lightbox-prev {
    left: 20px;
}

.property-lightbox .lightbox-next {
    right: 20px;
}

.property-lightbox .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.property-lightbox .lightbox-close:hover {
    transform: rotate(90deg);
}

.property-lightbox .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 20px;
    border-radius: 20px;
}

.property-lightbox .lightbox-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.property-lightbox .lightbox-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.property-lightbox .lightbox-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Responsive Slider Styles
   ============================================ */
@media (max-width: 768px) {
    .property-slider {
        height: 180px;
    }

    .property-hero-slider .hero-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .property-hero-slider .hero-prev {
        left: 10px;
    }

    .property-hero-slider .hero-next {
        right: 10px;
    }

    .property-lightbox .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .property-lightbox .lightbox-nav.lightbox-prev {
        left: 10px;
    }

    .property-lightbox .lightbox-nav.lightbox-next {
        right: 10px;
    }
}

/* ============================================
   Property Location Section
   ============================================ */
.property-location {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.property-section.property-details-pricing {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.property-details-pricing .property-address {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    color: var(--text-primary);
}

.property-details-pricing .address-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.property-address-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--text-primary);
}

.property-address-display .address-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.property-map-container {
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.property-map-container iframe {
    display: block;
}

.property-map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.property-map-button:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.property-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.property-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   Property Gallery Slider View - Carousel
   ============================================ */
.barbados-property-slider {
    position: relative;
    margin: 30px 0;
}

.property-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.property-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.property-slider-track::-webkit-scrollbar {
    display: none;
}

.property-slider-track .property-card {
    flex: 0 0 auto;
    width: calc((100% - 40px) / 3);
}

.property-slider-track .property-card .property-image img {
    height: 200px;
}

.property-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.property-slider-dots .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.property-slider-dots .slider-dot:hover {
    background: var(--text-light);
}

.property-slider-dots .slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .property-slider-track .property-card {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 600px) {
    .property-slider-track .property-card {
        width: 100%;
    }

    .property-slider-track .property-card .property-image img {
        height: 180px;
    }
}
