/* Extracted from sections/property-styles.php and sections/property-styles-2.php */
/* Page padding for sticky booking bar */
body {
    padding-bottom: 120px; /* Account for sticky booking bar */
}

.footer {
    padding: 4rem 0 2rem;
    margin-bottom: 80px; /* Extra space for sticky booking bar */
}

/* Date Picker Styles for Property Page */
.date-picker-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.date-picker-overlay.active { display: flex; }

.date-picker-modal {
    background: white;
    border-radius: 8px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.date-picker-header { padding: 1.5rem; border-bottom: 1px solid #e0e0e0; position: relative; text-align: center; }
.date-picker-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 400; color: #333; margin: 0; }
.date-picker-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 2rem; cursor: pointer; color: #666; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s; }
.date-picker-close:hover { background: #f5f5f5; color: #333; }
.date-picker-body { padding: 2rem; overflow-y: auto; flex: 1; }
.date-picker-months { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.date-picker-month { min-height: 320px; }
.month-header { display: flex; justify-content: center; align-items: center; margin-bottom: 1.5rem; position: relative; min-height: 36px; }
.month-title { font-family: 'Work Sans', sans-serif; font-size: 1.125rem; font-weight: 500; color: #333; margin: 0; text-align: center; flex: 1; }
.month-nav { position: absolute; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #666; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s; }
.month-nav:hover { background: #f5f5f5; color: #333; }
.month-nav.prev { left: 0; } .month-nav.next { right: 0; }
.weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; margin-bottom: 0.5rem; }
.weekdays span { text-align: center; font-family: 'Work Sans', sans-serif; font-size: 0.75rem; font-weight: 600; color: #999; padding: 0.5rem; text-transform: uppercase; }
.days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; }
.day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-family: 'Work Sans', sans-serif; font-size: 0.875rem; cursor: pointer; color: #333; background: white; border: 1px solid transparent; transition: all 0.2s; }
.day:hover:not(.empty):not(.past) { background: #f5f5f5; border-radius: 4px; }
.day.empty { cursor: default; }
.day.past { color: #ccc; cursor: not-allowed; }
.day.today { font-weight: 600; color: #0066CC; }
.day.check-in, .day.check-out { background: #333 !important; color: white !important; border-radius: 4px; font-weight: 600; }
.day.in-range { background: #f0f0f0; color: #333; }
.date-picker-footer { border-top: 1px solid #e0e0e0; padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.selected-dates { display: flex; gap: 2rem; }
.selected-date { display: flex; flex-direction: column; gap: 0.25rem; }
.selected-date label { font-family: 'Work Sans', sans-serif; font-size: 0.75rem; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: 0.1em; }
.selected-date span { font-family: 'Work Sans', sans-serif; font-size: 1rem; color: #333; }
.date-picker-actions { display: flex; gap: 1rem; }
.date-picker-clear { padding: 0.625rem 1.25rem; background: transparent; color: #666; border: 1px solid #e0e0e0; font-family: 'Work Sans', sans-serif; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.date-picker-clear:hover { border-color: #999; background: white; }
.date-picker-apply { padding: 0.625rem 1.5rem; background: #333; color: white; border: none; font-family: 'Work Sans', sans-serif; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.date-picker-apply:hover { background: #000; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
.date-picker-apply:disabled { opacity: 0.5; cursor: not-allowed; }
@media (max-width: 768px) {
  .date-picker-months { grid-template-columns: 1fr; gap: 2rem; }
  .date-picker-footer { flex-direction: column; gap: 1.5rem; }
  .selected-dates { width: 100%; justify-content: space-between; }
  .date-picker-actions { width: 100%; display: grid; grid-template-columns: 1fr 2fr; gap: 1rem; }
  .date-picker-clear, .date-picker-apply { width: 100%; padding: 0.875rem; }
  .guest-selector-dropdown { bottom: auto; top: calc(100% + 4px); max-height: 200px; overflow-y: auto; }
}

/* Property Page Styles (from property-styles-2.php) */
.property-page { padding-top: 0; }
.property-hero { position: relative; height: 70vh; min-height: 500px; overflow: hidden; }
.property-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.property-hero-picture { width: 100%; height: 100%; }
.property-hero-picture img, .property-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.property-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.6) 100%); }
.property-hero-content { position: relative; height: 100%; display: flex; align-items: flex-end; padding-bottom: 4rem; z-index: 2; }
.property-title { font-family: 'Work Sans', sans-serif; font-size: 3rem; font-weight: 300; letter-spacing: 0.2em; color: white; margin: 0; }
.property-location { font-family: 'Work Sans', sans-serif; font-size: 1rem; font-weight: 400; letter-spacing: 0.3em; color: white; margin-top: 1rem; }
.property-hero-cta { margin-top: 2rem; }
.hero-photos-btn { display: inline-block; padding: 0.75rem 2rem; background: white; color: #333; font-family: 'Work Sans', sans-serif; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em; text-decoration: none; border: 1px solid white; transition: all 0.3s ease; }
.hero-photos-btn:hover { background: transparent; color: white; }
.property-nav { background: white; border-bottom: 1px solid #e0e0e0; z-index: 100; }
.property-nav.sticky { position: fixed; top: 0; left: 0; right: 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.property-nav-list { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; gap: 2rem; }
.property-nav-list a { display: block; padding: 1.5rem 0; color: #333; text-decoration: none; font-family: 'Work Sans', sans-serif; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em; border-bottom: 2px solid transparent; transition: all 0.3s ease; }
.property-nav-list a:hover, .property-nav-list a.active { color: #0066CC; border-bottom-color: #0066CC; }
.property-overview { padding: 6rem 0; background: #ffffff; position: relative; }
.property-overview::after { content: ''; position: absolute; bottom: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, #e0ddd8, transparent); }
.overview-header { text-align: center; margin-bottom: 3rem; }
.overview-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 400; margin-bottom: 2rem; }
.overview-title em { font-style: italic; font-size: 0.875em; }
.overview-specs { display: flex; justify-content: center; gap: 4rem; }
.spec-item { text-align: center; }
.spec-value { display: block; font-family: 'Work Sans', sans-serif; font-size: 2rem; font-weight: 300; margin-bottom: 0.5rem; }
.spec-label { font-family: 'Work Sans', sans-serif; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: #666; }
.overview-content { max-width: 800px; margin: 0 auto; }
.overview-text { font-family: 'Crimson Text', serif; font-size: 1.125rem; line-height: 1.8; color: #333; margin-bottom: 1.5rem; text-align: center; }
.special-offer { background: #e6f2ff; padding: 3rem; text-align: center; margin: 4rem 0; }
.offer-title { font-family: 'Work Sans', sans-serif; font-size: 1.5rem; font-weight: 500; letter-spacing: 0.1em; margin-bottom: 1rem; }
.offer-text { font-family: 'Crimson Text', serif; font-size: 1.125rem; line-height: 1.6; margin-bottom: 2rem; }
.offer-buttons { display: flex; justify-content: center; gap: 1rem; }
.btn-enquire, .btn-schedule { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 2rem; font-family: 'Work Sans', sans-serif; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.3s ease; }
.btn-enquire { background: #001F3F; color: white; }
.btn-schedule { background: transparent; color: #001F3F; border: 1px solid #001F3F; }
.btn-enquire:hover { background: #001429; }
.btn-schedule:hover { background: #001F3F; color: white; }
.key-highlights { margin-top: 4rem; }
.highlights-title { font-family: 'Work Sans', sans-serif; font-size: 1.25rem; font-weight: 500; letter-spacing: 0.1em; margin-bottom: 2rem; }
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; align-items: start; }
.highlight-item { display: flex; align-items: flex-start; gap: 0.75rem; min-height: 3rem; padding: 0.5rem 0; }
.highlight-icon { color: #0066CC; flex-shrink: 0; margin-top: 0.125rem; }
.highlight-item span { line-height: 1.5; flex: 1; }
.property-gallery-preview { padding: 6rem 0 7rem; background: #E8E4E0; position: relative; }
/* (Remaining gallery, included, and responsive rules kept intact from property-styles-2.php) */
/* Property Page Styles */
.property-page {
    padding-top: 0;
}

.property-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.property-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

.property-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0.4) 0%, 
        rgba(0,0,0,0.15) 40%, 
        rgba(0,0,0,0.6) 100%
    );
}

.property-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
    z-index: 2;
}

.property-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: white;
    margin: 0;
}

.property-location {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: white;
    margin-top: 1rem;
}

.property-hero-cta {
    margin-top: 2rem;
}

.hero-photos-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: white;
    color: #333;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 1px solid white;
    transition: all 0.3s ease;
}

.hero-photos-btn:hover {
    background: transparent;
    color: white;
}

/* Property Navigation */
.property-nav {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    z-index: 100;
}

.property-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.property-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.property-nav-list a {
    display: block;
    padding: 1.5rem 0;
    color: #333;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.property-nav-list a:hover,
.property-nav-list a.active {
    color: #0066CC;
    border-bottom-color: #0066CC;
}


/* Overview Section */
.property-overview {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
}

.property-overview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0ddd8, transparent);
}

.overview-header {
    text-align: center;
    margin-bottom: 3rem;
}

.overview-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.overview-title em {
    font-style: italic;
    font-size: 0.875em;
}

.overview-specs {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.spec-item {
    text-align: center;
}

.spec-value {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.spec-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
}

.overview-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Special Offer */
.special-offer {
    background: #e6f2ff;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
}

.offer-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.offer-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.offer-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-enquire,
.btn-schedule {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enquire {
    background: #001F3F;
    color: white;
}

.btn-schedule {
    background: transparent;
    color: #001F3F;
    border: 1px solid #001F3F;
}

.btn-enquire:hover {
    background: #001429;
}

.btn-schedule:hover {
    background: #001F3F;
    color: white;
}

/* Key Highlights */
.key-highlights {
    margin-top: 4rem;
}

.highlights-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    align-items: start; /* Align all grid items to the top */
}

.highlight-item {
    display: flex;
    align-items: flex-start; /* Align icon and text to the top */
    gap: 0.75rem;
    min-height: 3rem; /* Ensure consistent minimum height for all items */
    padding: 0.5rem 0; /* Add vertical padding for better spacing */
}

.highlight-icon {
    color: #0066CC;
    flex-shrink: 0; /* Prevent icon from shrinking */
    margin-top: 0.125rem; /* Slight adjustment to align with text baseline */
}

.highlight-item span {
    line-height: 1.5; /* Consistent line height for wrapped text */
    flex: 1; /* Allow text to take remaining space */
}

/* Gallery Preview */
.property-gallery-preview {
    padding: 6rem 0 7rem;
    background: #E8E4E0;
    position: relative;
}

.property-gallery-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4cfc8, transparent);
}

.property-gallery-preview .section-title {
    color: #2c2c2c;
    margin-bottom: 3.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.property-gallery-preview .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #8a8580;
}

.gallery-wrapper {
    position: relative;
}

.gallery-wrapper.collapsed {
    max-height: 800px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.gallery-wrapper.expanded {
    max-height: 3000px;
    transition: max-height 0.2s ease-out;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(232,228,224,0) 0%, rgba(232,228,224,0.8) 50%, rgba(232,228,224,0.95) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-wrapper.collapsed .gallery-fade-overlay {
    opacity: 1;
    pointer-events: auto;
}

.gallery-show-more {
    background: transparent;
    border: 1px solid #8a8580;
    color: #2c2c2c;
    padding: 0.875rem 2.5rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.gallery-show-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #8a8580;
    transition: left 0.3s ease;
    z-index: -1;
}

.gallery-show-more:hover {
    color: white;
    border-color: #8a8580;
    transform: translateY(-2px);
}

.gallery-show-more:hover::before {
    left: 0;
}

.gallery-show-more svg {
    width: 20px;
    height: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-overlay {
    display: none;
}

.gallery-picture {
    width: 100%;
    height: 100%;
}

.gallery-picture img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-picture img,
.gallery-item:hover img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.gallery-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Make first image larger */
.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}


/* Responsive gallery */
@media (max-width: 768px) {
    .gallery-grid-full {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.5rem;
    }
    
    .gallery-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* What's Included */
.property-included {
    padding: 5rem 0;
    background: white;
}

.included-section {
    margin-bottom: 3rem;
}

.included-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 1.5rem;
    cursor: pointer;
    border-bottom: 2px solid #e0e0e0;
}

.included-header h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #222;
    margin: 0;
    transition: color 0.3s ease;
}

.included-header:hover h2 {
    color: #0066CC;
}

.chevron {
    transition: transform 0.3s ease;
}

details[open] .chevron {
    transform: rotate(180deg);
}

.included-content {
    padding: 2.5rem 0;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography improvements for description sections */
.description-content {
    padding: 2.5rem 0;
}

.description-content p {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 1.75rem;
    text-align: left;
    max-width: 850px;
}

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

.considerations-content {
    padding: 2.5rem 0;
}

.considerations-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.considerations-content li {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    padding: 1rem 0;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.considerations-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066CC;
    font-weight: bold;
    font-size: 1.2rem;
}

.considerations-content li:last-child {
    border-bottom: none;
}

.rooms-content {
    padding: 2.5rem 0;
}

.room-item {
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.room-item h4 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.room-item p {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

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

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
    border-bottom: 1px solid #f5f5f5;
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444;
}

.included-list li:first-child {
    padding-top: 0;
}

.included-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.included-list svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: #0066CC;
}

.excludes-section {
    margin-top: 3rem;
}

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

.exclude-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.exclude-item svg {
    color: #999;
    flex-shrink: 0;
}

/* Amenities */
.amenities-content {
    padding: 2.5rem 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    row-gap: 3rem;
}

.amenity-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.amenity-item h4 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #333;
}

.amenity-item p {
    font-family: 'Crimson Text', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

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

.room-item h4 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.room-item p {
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    color: #666;
}

/* Testimonials Awards */
.testimonials-header-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonials-awards {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 3rem;
    justify-content: flex-start;
}

.testimonial-award {
    width: 140px;
    height: auto;
    opacity: 0.95;
    filter: saturate(0.9) brightness(1) contrast(1);
    transition: all 0.3s ease;
}

.testimonial-award:hover {
    opacity: 1;
    filter: saturate(1) brightness(1) contrast(1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .testimonials-awards {
        justify-content: center;
        padding-top: 2rem;
    }
    
    .testimonial-award {
        width: 100px;
    }
}

/* Reviews - Using default testimonials styles from homepage */
/* All property-reviews specific styles removed to match homepage exactly */

/* Map */
.property-map-section {
    padding: 0;
}

.property-map {
    height: 500px;
    width: 100%;
    position: relative;
}

/* Commenting out all property-reviews overrides
.property-reviews .testimonials-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.property-reviews .testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.property-reviews .testimonials-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.property-reviews .testimonials-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.property-reviews .testimonials-carousel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    padding-bottom: 80px; /* Space for navigation controls */
}

.property-reviews .testimonials-slider {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
}

.property-reviews .testimonial-card {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.property-reviews .testimonial-card.active {
    opacity: 1;
    visibility: visible;
}

.property-reviews .testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.property-reviews .star {
    color: #FFD700;
    font-size: 1.25rem;
}

.property-reviews .testimonial-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.375rem;
    font-weight: 300;
    font-style: normal;
    line-height: 1.7;
    color: #333;
    margin: 0 auto 1.5rem;
    letter-spacing: 0.01em;
    max-width: 700px;
}

.property-reviews .testimonial-text::before {
    content: '"';
    font-size: 3rem;
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 0.1em;
    color: #001F3F;
    opacity: 0.3;
}

.property-reviews .testimonial-text::after {
    content: '"';
    font-size: 3rem;
    line-height: 0;
    vertical-align: -0.4em;
    margin-left: 0.05em;
    color: #001F3F;
    opacity: 0.3;
}

.property-reviews .testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Work Sans', sans-serif;
}

.property-reviews .author-name {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #333;
}

.property-reviews .author-location {
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 0.05em;
}

.property-reviews .author-property {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
}

/* Navigation - Fixed Position at Bottom */
.property-reviews .testimonials-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.property-reviews .testimonial-prev,
.property-reviews .testimonial-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-reviews .testimonial-prev:hover,
.property-reviews .testimonial-next:hover {
    background: #001F3F;
    border-color: #001F3F;
    color: white;
}

/* Dots - Fixed Position and Visible */
.property-reviews .testimonials-dots {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.property-reviews .testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.property-reviews .testimonial-dot:hover {
    opacity: 1;
    background: #999;
}

.property-reviews .testimonial-dot.active {
    background: #001F3F;
    width: 24px;
    border-radius: 4px;
    opacity: 1;
}

End of commented property-reviews styles */

/* The Area */
.property-area {
    padding: 7rem 0 8rem;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    margin-bottom: 5rem;
    position: relative;
}

.property-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(248,246,244,0.3), transparent);
    pointer-events: none;
}

.property-area .section-title {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.area-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.area-intro {
    font-family: 'Crimson Text', serif;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.area-description p {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.area-description a {
    color: #0066CC;
    text-decoration: underline;
}

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

.distance-group h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.distance-group p {
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    color: #666;
}

/* Location Links */
.location-link {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, transparent 60%, #B8D4E3 60%, #B8D4E3 90%, transparent 90%);
    padding: 0 2px;
    border-radius: 2px;
}

.location-link:hover {
    background: linear-gradient(to bottom, transparent 50%, #91C4E0 50%, #91C4E0 95%, transparent 95%);
    color: #0066CC;
}

/* Guide Section */
.guide {
    padding: 0;
    background: white;
}

.guide-header {
    text-align: center;
    padding: 4rem 0 3rem;
    background: #E8E4E0;
}

.guide-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
    display: block;
    margin-bottom: 1rem;
}

.guide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1;
    color: #1a1a1a;
    margin: 0;
}

.guide-hero {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.guide-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #1a1a1a;
    max-width: 500px;
}

.guide-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    color: #1a1a1a;
    display: inline-block;
}

.guide-link:hover {
    text-decoration-thickness: 2px;
}

.guide-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.guide-section h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.guide-section p {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.guide-facts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0;
}

.guide-facts li {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #1a1a1a;
    padding-left: 1.5rem;
    position: relative;
}

.guide-facts li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.guide-learn {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    color: #1a1a1a;
    display: inline-block;
}

.guide-learn:hover {
    text-decoration-thickness: 2px;
}

@media (max-width: 768px) {
    .guide-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 1.5rem;
    }
    
    .guide-hero {
        height: 300px;
    }
    
    .guide-title {
        font-size: 2.5rem;
    }
    
    .guide-intro {
        font-size: 1.25rem;
    }
}

/* Booking Bar */
.booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.booking-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.booking-price {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
}

.booking-availability {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    color: #0066CC;
}

.climate-levy-notice {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
}

.booking-bar-search {
    flex: 1;
    max-width: 600px;
}

.search-form-compact {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.search-input-compact,
.search-select-compact {
    padding: 0.75rem 1rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.875rem;
    border: 1px solid #e0e0e0;
    background: white;
    transition: all 0.3s ease;
}

.search-input-compact {
    flex: 1;
    min-width: 180px;
}

.search-select-compact {
    min-width: 100px;
}

.search-input-compact:focus,
.search-select-compact:focus {
    outline: none;
    border-color: #0066CC;
}

.search-button-compact {
    padding: 0.75rem 1.5rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #001F3F;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button-compact:hover {
    background: #001429;
}

/* Custom Guest Selector */
.guest-selector-wrapper {
    position: relative;
}

.guest-selector-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    min-width: 120px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.875rem;
    background: white;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guest-selector-trigger:hover,
.guest-selector-trigger.active {
    border-color: #0066CC;
}

.guest-selector-dropdown {
    position: absolute;
    bottom: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    display: none;
    z-index: 1001;
}

.guest-selector-dropdown.active {
    display: block;
}

.guest-option {
    padding: 0.75rem 1rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guest-option:hover {
    background: #f5f5f5;
    color: #0066CC;
}

.guest-option.selected {
    background: #f5f5f5;
    color: #0066CC;
    font-weight: 500;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
}

.lightbox-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10002;
    padding: 1.5rem;
}

.lightbox-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem;
}

.lightbox-image-container {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

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

.lightbox-nav.lightbox-prev {
    left: 2rem !important;
    right: auto !important;
}

.lightbox-nav.lightbox-next {
    right: 2rem !important;
    left: auto !important;
}

.lightbox-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    text-align: center;
    color: white;
}

.lightbox-counter {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.lightbox-caption {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
    }
    
    .lightbox-nav.lightbox-prev {
        left: 1rem !important;
    }
    
    .lightbox-nav.lightbox-next {
        right: 1rem !important;
    }
    
    .lightbox-content {
        padding: 2rem 1rem;
    }
}

/* Apartment Selection - Matching property.php design */
.apartment-selection {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
}

.apartment-selection::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0ddd8, transparent);
}

.apartment-selection .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.apartment-selection .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #333;
}

.apartment-selection .section-header p {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

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

.apartment-card {
    transition: all 0.3s ease;
    position: relative;
    padding: 3rem 2rem;
    border-radius: 8px;
}

/* Alternating soft pastel backgrounds */
.apartment-card:nth-child(odd) {
    background: #fafafa;
}

.apartment-card:nth-child(even) {
    background: #f8f6f4;
}

.apartment-card:hover {
    transform: translateY(-2px);
}

.apartment-gallery {
    position: relative;
    height: 280px;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 4px;
    border: 1px solid rgba(224, 221, 216, 0.3);
    background: #f5f5f5;
}

.apartment-gallery .gallery-slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
    width: 800%; /* 8 slides × 100% each */
}

.apartment-gallery .gallery-slide {
    min-width: 12.5%; /* Each slide takes 12.5% of the 800% width */
    height: 100%;
    position: relative;
}

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

.apartment-gallery .gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.apartment-gallery .gallery-prev,
.apartment-gallery .gallery-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(224, 221, 216, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    color: #333;
    font-size: 14px;
    opacity: 0;
}

.apartment-gallery:hover .gallery-prev,
.apartment-gallery:hover .gallery-next {
    opacity: 1;
}

.apartment-gallery .gallery-prev:hover,
.apartment-gallery .gallery-next:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.apartment-gallery .gallery-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

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

.apartment-gallery .gallery-dot.active {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.apartment-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 0.4rem 0.8rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(224, 221, 216, 0.4);
    border-radius: 2px;
}

.apartment-content {
    padding: 0;
}

.apartment-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #333;
}

.apartment-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

.apartment-specs {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.apartment-specs .spec {
    text-align: center;
}

.apartment-specs .spec-value {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #333;
}

.apartment-specs .spec-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
}

.apartment-features {
    margin-bottom: 3rem;
}

.apartment-features h4 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-align: center;
    color: #333;
}

.apartment-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.apartment-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.apartment-features svg {
    color: #0066CC;
    flex-shrink: 0;
}

.apartment-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.apartment-actions .btn-secondary,
.apartment-actions .btn-primary {
    padding: 1rem 2rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.apartment-actions .btn-secondary {
    background: transparent;
    color: #333;
    border: 1px solid #e0e0e0;
}

.apartment-actions .btn-secondary:hover {
    background: #f5f5f5;
}

.apartment-actions .btn-primary {
    background: #001F3F;
    color: white;
}

.apartment-actions .btn-primary:hover {
    background: #001429;
}

.apartment-actions .btn-primary.selected {
    background: #0066CC;
}

@media (max-width: 768px) {
    .apartment-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .apartment-selection {
        padding: 4rem 0;
    }
    
    .apartment-selection .section-header h2 {
        font-size: 2rem;
    }
    
    .apartment-specs {
        gap: 2rem;
    }
    
    .apartment-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .apartment-actions .btn-secondary,
    .apartment-actions .btn-primary {
        width: 200px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .property-title {
        font-size: 2rem;
    }
    
    .property-nav-list {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .overview-specs {
        gap: 2rem;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .area-content {
        grid-template-columns: 1fr;
    }
    
    .booking-bar-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .booking-bar-info {
        width: 100%;
        justify-content: space-between;
    }
    
    .booking-bar-actions {
        width: 100%;
    }
    
    .btn-check-dates,
    .btn-enquire-now {
        flex: 1;
    }
}
