/* ========================================
   Page-Specific Styles - Elan The Statement
   Styles for inner pages and sections
   ======================================== */

/* ===== Page Hero Section ===== */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 140px 0 60px;
    overflow: hidden;
}

.page-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

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

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

/* ===== Breadcrumb - Optimized Spacing ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.88rem;
    padding: 1.25rem 0;
    color: var(--color-text-muted, #666);
}

.breadcrumb a {
    color: var(--color-gold, #DABC74);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    color: var(--color-text-muted, #666);
}

.breadcrumb span.separator {
    margin: 0 0.35rem;
    opacity: 0.5;
}

.breadcrumb span:last-child {
    color: var(--color-text-secondary, #B3B3B3);
}

/* Breadcrumb in Page Hero */
.page-hero-content .breadcrumb {
    padding: 0;
    margin-bottom: 1.5rem;
    gap: 0.6rem;
    justify-content: flex-start;
}

.page-hero-content .breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.page-hero-content .breadcrumb a:hover {
    color: #DABC74;
    opacity: 1;
}

.page-hero-content .breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.page-hero-content .breadcrumb span:last-child {
    color: #DABC74;
}

/* Standalone Breadcrumb (below hero) */
.breadcrumb-wrapper {
    background: var(--color-bg-secondary, #111);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.breadcrumb-wrapper .breadcrumb {
    padding: 1rem 0;
    margin: 0;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: #999;
    max-width: 600px;
}

/* ===== Content Section ===== */
.content-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.content-section.alt-bg,
section.alt-bg {
    background: #111;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text {
    max-width: 560px;
}

.content-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.content-text h3 {
    font-size: 1.1rem;
    color: #DABC74;
    margin: 25px 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-text p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(218, 188, 116, 0.2);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #ccc;
    font-size: 0.95rem;
}

.feature-list li i {
    color: #DABC74;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===== Distance Grid ===== */
.distance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.distance-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.distance-category h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #DABC74;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.distance-category h3 i {
    font-size: 1.2rem;
}

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

.distance-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.distance-list li:last-child {
    border-bottom: none;
}

.distance-list .place {
    color: #ccc;
    font-size: 0.9rem;
}

.distance-list .time {
    color: #DABC74;
    font-weight: 600;
    font-size: 0.85rem;
    background: rgba(218, 188, 116, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* ===== Map Container ===== */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(218, 188, 116, 0.2);
}

.map-address {
    display: flex;
    justify-content: center;
}

.address-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(218, 188, 116, 0.2);
    border-radius: 12px;
    padding: 30px 40px;
    text-align: center;
}

.address-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #DABC74;
    font-size: 1rem;
    margin-bottom: 15px;
}

.address-card p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.address-card .btn {
    display: inline-flex;
}

/* ===== Future Grid ===== */
.future-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.future-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.future-card:hover {
    border-color: rgba(218, 188, 116, 0.3);
    transform: translateY(-5px);
}

.future-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(152, 114, 59, 0.2) 0%, rgba(218, 188, 116, 0.1) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.future-icon i {
    font-size: 1.5rem;
    color: #DABC74;
}

.future-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
}

.future-card p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 15px;
}

.future-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #DABC74;
    background: rgba(218, 188, 116, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(152, 114, 59, 0.15) 0%, rgba(0, 0, 0, 0.95) 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Related Section ===== */
.related-section {
    padding: 60px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.related-section h3 {
    font-size: 1.2rem;
    color: #DABC74;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.related-card:hover {
    background: rgba(218, 188, 116, 0.05);
    border-color: rgba(218, 188, 116, 0.3);
}

.related-card i {
    font-size: 1.5rem;
    color: #DABC74;
}

.related-card span {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== Info Table / Glance Table ===== */
.glance-table {
    max-width: 900px;
    margin: 0 auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.info-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 18px 25px;
    color: #ccc;
    font-size: 0.95rem;
}

.info-table td:first-child {
    color: #888;
    width: 40%;
}

.info-table td:first-child i {
    color: #DABC74;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.info-table strong {
    color: #DABC74;
}

/* ===== Configuration Summary Grid (Overview Page) ===== */
.config-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.config-summary-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.config-summary-card:hover {
    border-color: rgba(218, 188, 116, 0.3);
    transform: translateY(-5px);
}

.config-summary-card.featured {
    border-color: rgba(218, 188, 116, 0.4);
    background: linear-gradient(135deg, rgba(152, 114, 59, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.config-summary-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.config-summary-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
}

.config-summary-card .config-size {
    font-size: 1.8rem;
    font-weight: 600;
    color: #DABC74;
    margin-bottom: 20px;
}

.config-summary-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.config-summary-card ul li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.config-summary-card ul li:last-child {
    border-bottom: none;
}

.config-summary-card .config-price {
    font-size: 1rem;
    font-weight: 600;
    color: #DABC74;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(218, 188, 116, 0.1);
    border-radius: 8px;
}

.config-summary-card .btn {
    width: 100%;
}

/* ===== Timeline (Overview Page) ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #888;
    font-size: 0.8rem;
}

.timeline-item.completed .timeline-marker {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: transparent;
    color: #fff;
}

.timeline-item.active .timeline-marker {
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    border-color: transparent;
    color: #000;
    animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(218, 188, 116, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(218, 188, 116, 0);
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 25px;
}

.timeline-item.active .timeline-content {
    border-color: rgba(218, 188, 116, 0.3);
    background: linear-gradient(135deg, rgba(152, 114, 59, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.timeline-content h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.timeline-date {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #DABC74;
    background: rgba(218, 188, 116, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
}

/* ===== Feature List (Overview Page) ===== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
    color: #ccc;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #DABC74;
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-list li strong {
    color: #fff;
}

/* ===== Returns Grid (Overview Page) ===== */
.returns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.return-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.return-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #DABC74;
    margin-bottom: 8px;
}

.return-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Overview Page Responsive ===== */
@media (max-width: 1199px) {
    .config-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .config-summary-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-marker {
        left: -30px;
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
}

@media (max-width: 767px) {
    .returns-grid {
        grid-template-columns: 1fr;
    }

    .return-value {
        font-size: 1.6rem;
    }

    .config-summary-card .config-size {
        font-size: 1.5rem;
    }
}

/* ===== Virtual Tour CTA ===== */
.virtual-tour-cta {
    background: linear-gradient(135deg, rgba(152, 114, 59, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 1px solid rgba(218, 188, 116, 0.2);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.vt-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.vt-content h2 i {
    color: #DABC74;
    margin-right: 15px;
}

.vt-content p {
    color: #999;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

/* ===== Video CTA Section ===== */
.video-cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(152, 114, 59, 0.15) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.video-cta-overlay {
    text-align: center;
}

.video-cta-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.video-cta-description {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Gallery Filter Tabs ===== */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter button {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: #888;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter button:hover,
.gallery-filter button.active {
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    color: #000;
    border-color: transparent;
}

/* ===== Video Gallery ===== */
.video-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.video-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.video-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    border-radius: 50%;
    color: #000;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.video-thumb:hover,
.video-thumb.active {
    border-color: #DABC74;
}

.video-thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    color: #DABC74;
}

/* ===== Responsive - Pages ===== */
@media (max-width: 1199px) {
    .distance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 991px) {
    .page-hero {
        min-height: 40vh;
        padding: 120px 0 50px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-text {
        max-width: 100%;
    }

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

    .video-gallery-grid {
        grid-template-columns: 1fr;
    }

    .video-thumbnails {
        flex-direction: row;
    }

    .video-thumb img {
        height: 80px;
    }
}

@media (max-width: 767px) {
    .page-hero {
        min-height: 35vh;
        padding: 100px 0 40px;
    }

    .content-section {
        padding: 60px 0;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .virtual-tour-cta {
        padding: 30px 20px;
    }

    .address-card {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .page-hero h1 {
        font-size: 1.5rem;
    }

    .distance-category {
        padding: 20px;
    }

    .future-card {
        padding: 20px;
    }

    .info-table td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}

/* ========================================
   Floor Plans Page Styles
   ======================================== */

/* ===== Floor Plans Section ===== */
.floor-plans-section {
    padding: 80px 0;
    background: #0a0a0a;
}

/* ===== Floor Plan Tabs ===== */
.floor-plan-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.fp-tab {
    padding: 15px 35px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: #888;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fp-tab:hover {
    border-color: rgba(218, 188, 116, 0.5);
    color: #ccc;
}

.fp-tab.active {
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    color: #000;
    border-color: transparent;
    font-weight: 600;
}

/* ===== Floor Plan Panels ===== */
.fp-panel {
    display: none;
}

.fp-panel.active {
    display: block;
}

.fp-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.fp-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.fp-intro p {
    color: #999;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===== Floor Plan Cards ===== */
.floor-plan-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.floor-plan-card:hover {
    border-color: rgba(218, 188, 116, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.floor-plan-card.featured {
    border-color: rgba(218, 188, 116, 0.4);
    background: linear-gradient(135deg, rgba(152, 114, 59, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* ===== Floor Plan Image ===== */
.fp-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 350px;
}

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

.floor-plan-card:hover .fp-image img {
    transform: scale(1.05);
}

.fp-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fp-image:hover .fp-image-overlay {
    opacity: 1;
}

.fp-zoom {
    padding: 12px 25px;
    font-size: 0.9rem;
}

.fp-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    color: #000;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    z-index: 2;
}

.fp-badge.premium {
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
}

.fp-badge.exclusive {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #DABC74;
    border: 1px solid rgba(218, 188, 116, 0.5);
}

/* ===== Floor Plan Details ===== */
.fp-details {
    display: flex;
    flex-direction: column;
}

.fp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fp-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fff;
    margin: 0;
}

.fp-size {
    font-size: 1.1rem;
    font-weight: 600;
    color: #DABC74;
    background: rgba(218, 188, 116, 0.1);
    padding: 8px 18px;
    border-radius: 20px;
}

/* ===== Area Breakdown Table ===== */
.fp-breakdown {
    margin-bottom: 25px;
}

.fp-breakdown h4,
.fp-rooms h4 {
    font-size: 0.85rem;
    color: #DABC74;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.fp-table {
    width: 100%;
    border-collapse: collapse;
}

.fp-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fp-table tr:last-child {
    border-bottom: none;
}

.fp-table td {
    padding: 12px 0;
    font-size: 0.9rem;
}

.fp-table td:first-child {
    color: #888;
}

.fp-table td:last-child {
    text-align: right;
}

.fp-table strong {
    color: #fff;
    font-weight: 500;
}

/* ===== Room Configuration ===== */
.fp-rooms {
    margin-bottom: 25px;
}

.fp-room-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.fp-room-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
    padding: 8px 0;
}

.fp-room-list li i {
    color: #DABC74;
    width: 20px;
    font-size: 0.85rem;
}

/* ===== Floor Plan Highlight ===== */
.fp-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(218, 188, 116, 0.15) 0%, rgba(152, 114, 59, 0.1) 100%);
    border: 1px solid rgba(218, 188, 116, 0.3);
    border-radius: 12px;
    margin-bottom: 25px;
}

.fp-highlight i {
    color: #DABC74;
    font-size: 1.2rem;
}

.fp-highlight span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== Floor Plan Price ===== */
.fp-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-top: auto;
}

.fp-price .price-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fp-price .price-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #DABC74;
    font-weight: 600;
}

/* ===== Floor Plan Actions ===== */
.fp-actions {
    display: flex;
    gap: 15px;
}

.fp-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 14px 20px;
}

.fp-actions .btn i {
    margin-right: 8px;
}

/* ===== Comparison Table ===== */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(152, 114, 59, 0.2) 0%, rgba(218, 188, 116, 0.1) 100%);
}

.comparison-table th {
    padding: 18px 20px;
    text-align: left;
    color: #DABC74;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(218, 188, 116, 0.2);
}

.comparison-table td {
    padding: 18px 20px;
    color: #ccc;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr.highlight {
    background: linear-gradient(135deg, rgba(152, 114, 59, 0.1) 0%, rgba(218, 188, 116, 0.05) 100%);
}

.comparison-table tbody tr.highlight td {
    color: #fff;
    font-weight: 500;
}

.comparison-table tbody tr.highlight td:first-child {
    color: #DABC74;
}

/* ===== Floor Plans Responsive ===== */
@media (max-width: 991px) {
    .floor-plan-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fp-image {
        min-height: 280px;
    }

    .fp-room-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .floor-plans-section {
        padding: 60px 0;
    }

    .floor-plan-tabs {
        gap: 10px;
        margin-bottom: 40px;
    }

    .fp-tab {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .fp-intro h2 {
        font-size: 1.5rem;
    }

    .floor-plan-card {
        padding: 20px;
        margin-bottom: 30px;
    }

    .fp-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .fp-size {
        font-size: 1rem;
    }

    .fp-actions {
        flex-direction: column;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .fp-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }

    .fp-header h3 {
        font-size: 1.3rem;
    }

    .fp-price .price-value {
        font-size: 1.3rem;
    }
}

/* ========================================
   Pricing Page Styles
   ======================================== */

/* ===== Pricing Table ===== */
.pricing-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.pricing-table thead {
    background: linear-gradient(135deg, rgba(152, 114, 59, 0.2) 0%, rgba(218, 188, 116, 0.1) 100%);
}

.pricing-table th {
    padding: 18px 20px;
    text-align: left;
    color: #DABC74;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(218, 188, 116, 0.2);
}

.pricing-table td {
    padding: 20px;
    color: #ccc;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: middle;
}

.pricing-table tbody tr {
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr.highlight {
    background: linear-gradient(135deg, rgba(152, 114, 59, 0.1) 0%, rgba(218, 188, 116, 0.05) 100%);
}

.pricing-table .config-note {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

.pricing-table .price-cell strong {
    color: #DABC74;
    font-size: 1.1rem;
}

.table-note {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-top: 15px;
}

/* ===== Payment Plan Visual ===== */
.payment-plan-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.payment-step {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.payment-step:hover {
    border-color: rgba(218, 188, 116, 0.3);
}

.step-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    color: #000;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.payment-step h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.payment-step p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.payment-step ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-step ul li {
    font-size: 0.9rem;
    color: #DABC74;
    padding: 5px 0;
}

.payment-arrow {
    color: #DABC74;
    font-size: 1.5rem;
}

/* ===== Payment Benefits ===== */
.payment-benefits {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.payment-benefits h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.benefit-item i {
    font-size: 2rem;
    color: #DABC74;
}

.benefit-item span {
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
}

/* ===== Costs Grid ===== */
.costs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.cost-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.cost-card:hover {
    border-color: rgba(218, 188, 116, 0.3);
}

.cost-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 15px;
}

.cost-card h3 i {
    color: #DABC74;
}

.cost-card p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    line-height: 1.6;
}

.cost-value {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(218, 188, 116, 0.1);
    color: #DABC74;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 20px;
}

/* ===== EMI Calculator ===== */
.emi-calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.emi-inputs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.emi-field label {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
}

.emi-field input[type="number"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px;
}

.emi-field input[type="number"]:focus {
    outline: none;
    border-color: #DABC74;
}

.emi-field input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
}

.emi-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    border-radius: 50%;
    cursor: pointer;
}

.emi-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.emi-value {
    text-align: center;
    margin-bottom: 30px;
}

.emi-value .label {
    display: block;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.emi-value .value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #DABC74;
    font-weight: 600;
}

.emi-breakdown {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 25px;
}

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

.breakdown-item span:first-child {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.breakdown-item span:last-child {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

/* ===== Bank Partners ===== */
.bank-partners {
    text-align: center;
}

.bank-partners h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.bank-partners p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

.banks-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.banks-list span {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========================================
   Amenities Page Styles
   ======================================== */

/* ===== Amenity Stats ===== */
.amenity-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.amenity-stat {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.amenity-stat .stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.amenity-stat .stat-label {
    font-size: 0.9rem;
    color: #888;
}

/* ===== Amenities Grid ===== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.amenities-grid .amenity-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.amenities-grid .amenity-card:hover {
    border-color: rgba(218, 188, 116, 0.3);
    transform: translateY(-5px);
}

.amenities-grid .amenity-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(152, 114, 59, 0.2) 0%, rgba(218, 188, 116, 0.1) 100%);
    border-radius: 50%;
    margin-bottom: 20px;
}

.amenities-grid .amenity-icon i {
    font-size: 1.5rem;
    color: #DABC74;
}

.amenities-grid .amenity-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
}

.amenities-grid .amenity-card p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

/* ========================================
   Gallery Page Styles
   ======================================== */

/* ===== Gallery Section ===== */
.gallery-section {
    padding: 80px 0;
    background: #0a0a0a;
}

/* ===== Gallery Filters ===== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: rgba(218, 188, 116, 0.5);
    color: #ccc;
}

.filter-btn.active {
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    color: #000;
    border-color: transparent;
}

/* ===== Gallery Masonry ===== */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-masonry .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-masonry .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-masonry .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-masonry .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-masonry .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-masonry .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}

.gallery-expand {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-expand:hover {
    background: #DABC74;
    color: #000;
}

/* ===== Video Gallery ===== */
.video-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.video-item {
    position: relative;
}

.video-item.main {
    grid-row: span 2;
}

.video-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-item.main .video-placeholder {
    aspect-ratio: auto;
    height: 100%;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    border-radius: 50%;
    color: #000;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item h3,
.video-item h4 {
    margin-top: 15px;
    font-size: 1rem;
    color: #fff;
}

.video-item h4 {
    font-size: 0.9rem;
}

.video-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== Download Section ===== */
.download-section {
    text-align: center;
}

.download-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.download-section p {
    font-size: 1rem;
    color: #888;
    margin-bottom: 40px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: rgba(218, 188, 116, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.download-card i {
    font-size: 2.5rem;
    color: #DABC74;
}

.download-card span {
    font-size: 1rem;
    color: #ccc;
    font-weight: 500;
}

/* ===== Lightbox Modal ===== */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 40px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #DABC74;
    color: #000;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #DABC74;
    color: #000;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
}

.lightbox-caption {
    margin-top: 20px;
    color: #ccc;
    font-size: 1rem;
}

/* ===== Pricing/Gallery/Amenities Responsive ===== */
@media (max-width: 1199px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .payment-plan-visual {
        flex-direction: column;
    }

    .payment-arrow {
        transform: rotate(90deg);
    }

    .emi-calculator {
        grid-template-columns: 1fr;
    }

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

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

    .video-gallery {
        grid-template-columns: 1fr;
    }

    .video-thumbnails {
        flex-direction: row;
    }

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

@media (max-width: 767px) {
    .pricing-table th,
    .pricing-table td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

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

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

    .amenity-stats {
        grid-template-columns: 1fr;
    }

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

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-masonry .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .emi-value .value {
        font-size: 1.8rem;
    }

    .amenity-stat .stat-number {
        font-size: 2rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
}
