/* ========================================
   CONTAINER
======================================== */
html {
    scroll-behavior: smooth;
}
.toggle-panel-btn,
.about-enquire-btn,
.floorplan-btn-primary,
.floorplan-btn-secondary,
.why-choose-btn-primary,
.why-choose-btn-secondary ,
.floorplan-show-all{
    text-decoration: none !important;
}
a#floorplan-toggle-features:hover {
    color: #707f6a;
}
a.floorplan-btn.floorplan-btn-primary:hover {
    background: #000;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   SINGLE PROPERTY PAGE STYLES
======================================== */

/* Property Hero */
.property-hero {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.hero-overlay .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.property-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.property-hero .price {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
    color: white;
}

.property-hero .specs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 18px;
    margin: 2rem 0;
}

.property-hero .lot-dimensions {
    margin-top: 1rem;
    font-size: 16px;
    opacity: 0.9;
}

.property-hero .feature-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.property-hero .feature-tags .tag {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    backdrop-filter: blur(10px);
}
.slick-dots li button:before{
    font-size: 0px;
}

/* Single Property Content */
.property-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.property-content .container {
    max-width: 900px;
}

.property-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.property-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #333;
}

.property-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Property CTA Section */
.property-cta {
    background: linear-gradient(135deg, #5d6f5a 0%, #4a5a47 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.property-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
}

.property-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #5d6f5a;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f5f5f3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
    /* Property Hero Slider */
        .property-hero-slider {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            background: #1a1a1a;
            padding: 0;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Slick Slider */
        .property-slick-slider {
            width: 100%;
            height: 100%;
        }

        .slide-item {
            width: 100%;
            height: 100vh;
            min-height: 600px;
            outline: none;
        }

        .slide-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Slick Arrows */
        .property-slick-slider .slick-prev,
        .property-slick-slider .slick-next {
            width: 56px;
            height: 56px;
            background: #707f6a !important;
            border-radius: 50%;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .property-slick-slider .slick-prev:hover,
        .property-slick-slider .slick-next:hover {
            background: #707f6a !important;
            transform: scale(1.05);
        }

        .property-slick-slider .slick-prev {
            left: 40px;
        }

        .property-slick-slider .slick-next {
            right: 40px;
        }

        .property-slick-slider .slick-prev:before,
        .property-slick-slider .slick-next:before {
            font-size: 24px;
            color: white;
            opacity: 1;
        }

        .property-slick-slider .slick-disabled {
            opacity: 0.5;
        }

        /* Property Info Card */
        .property-info-card {
            position: absolute;
            top: 50%;
            right: 178px;
            transform: translateY(-50%);
            background: #fffffe;
            border-radius: 12px;
            padding: 40px;
            max-width: 400px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
            z-index: 15;
            transition: all 0.4s ease;
        }

        .property-info-card.hidden {
            transform: translateY(-50%) translateX(120%);
            opacity: 0;
        }

        /* Property Title */
        .property-title {
            font-size: 48px;
            font-weight: 700;
            color: #707f6a;
            margin: 0 0 32px 0;
            line-height: 1.2;
        }

        /* Property Specs */
        .property-specs {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 32px;
            padding-bottom: 32px;
            border-bottom: 1px solid #e5e5e5;
        }

        .spec-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: flex-start;
        }

        .spec-item svg {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .spec-item span {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.4;
        }

        /* Property Dimensions */
        .property-dimensions {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 32px;
        }

        .dimension-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .dimension-item svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .dimension-item span {
            font-size: 14px;
            font-weight: 500;
            color: #1a1a1a;
            line-height: 1.4;
        }

        /* Toggle Button */
        .toggle-panel-btn {
            width: 100%;
            padding: 16px 24px;
            background: #000;
            border: none;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .toggle-panel-btn:hover {
            background: #707f6a;
            transform: translateY(-2px);
        }

        .toggle-panel-btn:active {
            transform: translateY(0);
        }

        .toggle-text {
            font-size: 16px;
            font-weight: 600;
            color: #fffffe;
        }
.floorplan-section {
    padding: 60px 20px;
    background-color: #fffffe;
}

.floorplan-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Column Styles */
.floorplan-left-column {
    padding-right: 20px;
}

.floorplan-header {
    margin-bottom: 40px;
}

.floorplan-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.floorplan-title {
    font-size: 56px;
    font-weight: 700;
    color: #707f6a;
    line-height: 1.1;
    margin: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.floorplan-specifications {
    margin-bottom: 35px;
}

.floorplan-spec-row {
    display: flex;
    gap: 30px;
    margin-bottom: 18px;
}

.floorplan-spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #1a1a1a;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.floorplan-icon {
    width: 20px;
    height: 20px;
    color: #1a1a1a;
    flex-shrink: 0;
}

.floorplan-spec-text {
    font-weight: 400;
}

.floorplan-spec-text strong {
    font-weight: 600;
}

/* Buttons */
.floorplan-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.floorplan-btn {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floorplan-btn-secondary {
    background-color: #707f6a;
    color: #fffffe;
}

.floorplan-btn-secondary:hover {
    background-color: #5a1d47;
}

.floorplan-btn-primary {
    background-color: #707f6a;
    color: #fffffe;
}

.floorplan-btn-primary:hover {
    background-color: #000;
}

.floorplan-btn-icon {
    width: 18px;
    height: 18px;
}

/* Features Section */
.floorplan-features {
    margin-top: 50px;
}

.floorplan-features-title {
    font-size: 28px;
    font-weight: 700;
    color: #707f6a;
    margin-bottom: 25px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.floorplan-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.floorplan-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #1a1a1a;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.floorplan-feature-hidden {
    display: none;
}

.floorplan-check-icon {
    width: 24px;
    height: 24px;
    color: #707f6a;
    flex-shrink: 0;
}

.floorplan-show-all {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    display: inline-block;
    transition: opacity 0.3s ease;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
}

.floorplan-show-all:hover {
    opacity: 0.7;
}

/* Right Column Styles */
.floorplan-right-column {
    position: relative;
}

.floorplan-image-container {
    position: relative;
    background-color: #fffffe;
    border-radius: 12px;
    padding: 20px;
}

.floorplan-enlarge-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: #707f6a;
    color: #fffffe;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: background-color 0.3s ease;
}

.floorplan-enlarge-btn:hover {
    background-color: #000;
}

.floorplan-enlarge-icon {
    width: 16px;
    height: 16px;
}

.floorplan-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    border-radius: 8px;
    object-fit: contain;
}

.floorplan-logo-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.floorplan-logo {
    background-color: #d62839;
    color: #fffffe;
    font-size: 48px;
    font-weight: 900;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Image Popup Modal */
.floorplan-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.floorplan-modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 600px;
    animation: floorplan-zoom 0.3s;
}

@keyframes floorplan-zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.floorplan-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fffffe;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
}

.floorplan-modal-close:hover,
.floorplan-modal-close:focus {
    color: #d62839;
}
/* FAQ Section Styles */
.faq-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5ebe0 0%, #f8f0e8 50%, #f2e8dd 100%);
    position: relative;
    overflow: hidden;
}

.faq-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* Left Column - Title and Image */
.faq-left-column {
    position: sticky;
    top: 100px;
}

.faq-title {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 60px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 460px;
}

.faq-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.faq-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-decorative-star {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    animation: faq-rotate 20s linear infinite;
}

.faq-decorative-star svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

@keyframes faq-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Right Column - FAQ Accordion */
.faq-right-column {
    padding-top: 20px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 2px solid #1a1a1a;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #707f6a;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #707f6a;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-active .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-active .faq-answer {
    max-height: 500px;
    padding-bottom: 25px;
}

.faq-answer p {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0;
    opacity: 0.85;
}


/* About Section Styles */
.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e8ebe7 0%, #f0f2ef 50%, #e5e9e3 100%);
    position: relative;
    overflow: hidden;
}

.about-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Left Column - Text Content */
.about-left-column {
    padding-right: 40px;
}

.about-title {
    font-size: 64px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-title-highlight {
    color: #707f6a;
}

.about-description {
    font-size: 20px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-features-list {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.about-feature-item {
    font-size: 18px;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-feature-item::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-size: 24px;
    line-height: 1.4;
}

.about-tagline {
    font-size: 20px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-top: 30px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Right Column - Image */
.about-right-column {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.about-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-heart-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #707f6a;
    color: #fffffe;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(112, 127, 106, 0.4);
    animation: about-pulse 2s ease-in-out infinite;
}

.about-heart-icon svg {
    width: 35px;
    height: 35px;
}

@keyframes about-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.about-enquire-btn {
    margin-top: 30px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: #707f6a;
    color: #fffffe;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(112, 127, 106, 0.3);
    /*transform: rotate(-90deg);*/
    transform-origin: center;
    white-space: nowrap;
    /*position: absolute;*/
    right: -80px;
    top: 50%;
}

.about-enquire-btn:hover {
    background-color: #5a6755;
    box-shadow: 0 15px 40px rgba(112, 127, 106, 0.4);
    /*transform: rotate(-90deg) translateX(-5px);*/
}

/* Why Choose Section Styles */
.why-choose-section {
    padding: 100px 20px;
    background-color: #fffffe;
    position: relative;
    overflow: hidden;
}

.why-choose-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.why-choose-header {
    text-align: center;
    margin-bottom: 70px;
}

.why-choose-title {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.why-choose-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #1a1a1a;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Features Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.why-choose-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    background-color: #fffffe;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-choose-item:hover {
    border-color: #707f6a;
    box-shadow: 0 10px 40px rgba(112, 127, 106, 0.15);
    transform: translateY(-5px);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background-color: #707f6a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
    background-color: #5a6755;
    transform: scale(1.1);
}

.why-choose-icon svg {
    width: 32px;
    height: 32px;
    color: #fffffe;
}

.why-choose-item-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.3;
}

.why-choose-item-description {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    opacity: 0.75;
    margin: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Call to Action */
.why-choose-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.why-choose-btn-primary,
.why-choose-btn-secondary {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease;
}

.why-choose-btn-primary {
    background-color: #707f6a;
    color: #fffffe;
    box-shadow: 0 10px 30px rgba(112, 127, 106, 0.3);
}

.why-choose-btn-primary:hover {
    background-color: #5a6755;
    box-shadow: 0 15px 40px rgba(112, 127, 106, 0.4);
    transform: translateY(-2px);
}

.why-choose-btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.why-choose-btn-secondary:hover {
    background-color: #1a1a1a;
    color: #fffffe;
    transform: translateY(-2px);
}

/* Stunning Facade Options Slider Styles */
.facade-slider-section {
    padding: 80px 20px;
    background-color: #fffffe;
    position: relative;
}

.facade-slider-container {
    max-width: 1400px;
    margin: 0 auto;
}

.facade-slider-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Slider Wrapper */
.facade-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

/* Individual Slide */
.facade-slide-item {
    padding: 0 10px;
    outline: none;
}

.facade-slide-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Slide Label */
.facade-slide-label {
    position: absolute;
    top: 20px;
    left: 30px;
    background-color: #707f6a;
    color: #fffffe;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    z-index: 10;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Slick Arrows */
.facade-slick-prev,
.facade-slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #707f6a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 40, 57, 0.3);
}

.facade-slick-prev:hover,
.facade-slick-next:hover {
    background-color: #0000;
    box-shadow: 0 6px 20px rgba(214, 40, 57, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.facade-slick-prev {
    left: 0;
}

.facade-slick-next {
    right: 0;
}

.facade-slick-prev svg,
.facade-slick-next svg {
    width: 24px;
    height: 24px;
    color: #fffffe;
}

/* Slick Dots */
.facade-slider .slick-dots {
    bottom: -50px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.facade-slider .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

.facade-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #d1d1d1;
    cursor: pointer;
    font-size: 0;
    transition: all 0.3s ease;
}

.facade-slider .slick-dots li button:hover {
    background-color: #707f6a;
}

.facade-slider .slick-dots li.slick-active button {
    background-color: #707f6a;
    width: 30px;
    border-radius: 6px;
}

/* Slick Track */
.facade-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.facade-slider .slick-slide {
    height: auto;
}

.facade-slider .slick-slide > div {
    height: 100%;
}

/* ========================================
   RESPONSIVE - SINGLE PROPERTY
======================================== */

@media (max-width: 1200px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}
/* Mobile: reorder floorplan columns — image first, specs second */
@media (max-width: 768px) {

    .floorplan-content-wrapper {
        display: flex;
        flex-direction: column;
    }

    /* Image column moves to top */
    .floorplan-right-column {
        order: 1;
    }

    /* Specs/features column goes below */
    .floorplan-left-column {
        order: 2;
    }

}
@media (max-width: 1024px) {
    .property-info-card {
        right: 40px;
        max-width: 360px;
        padding: 32px;
    }

    .property-title {
        font-size: 42px;
    }
        .floorplan-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .floorplan-left-column {
        padding-right: 0;
    }

    .floorplan-title {
        font-size: 48px;
    }

    .faq-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-left-column {
        position: relative;
        top: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .faq-title {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .faq-image-container {
        max-width: 350px;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-left-column {
        padding-right: 0;
    }

    .about-right-column {
        align-items: center;
    }

    .about-enquire-btn {
        position: static;
        transform: rotate(0deg);
        margin-top: 30px;
    }

    .about-enquire-btn:hover {
        transform: translateY(-2px);
    }

    .about-image-container {
        max-width: 450px;
    }

    .why-choose-section {
        padding: 80px 20px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .why-choose-title {
        font-size: 48px;
    }

    .why-choose-subtitle {
        font-size: 18px;
    }

    .facade-slider-wrapper {
        padding: 0 50px;
    }

    .facade-slider-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .facade-slide-item img {
        height: 250px;
    }

    .facade-slide-label {
        font-size: 14px;
        padding: 8px 16px;
        left: 25px;
    }

    .facade-slick-prev,
    .facade-slick-next {
        width: 45px;
        height: 45px;
    }

    .facade-slick-prev svg,
    .facade-slick-next svg {
        width: 20px;
        height: 20px;
    }
}
 @media (max-width: 992px) {
            .property-hero-slider {
                height: auto;
                min-height: 100vh;
            }

            .slide-item {
                height: 70vh;
                min-height: 500px;
            }

            .property-slick-slider .slick-prev {
                left: 20px;
            }
            
            .property-slick-slider .slick-next {
                right: 20px;
            }
            
            .property-info-card {
                position: relative;
                top: auto;
                right: auto;
                transform: none;
                margin: -60px 20px 40px;
                max-width: 100%;
            }
            
            .property-info-card.hidden {
                transform: translateY(-100%);
                margin-bottom: -200px;
            }

            .property-title {
                font-size: 36px;
                margin-bottom: 28px;
            }

            .property-specs {
                gap: 20px;
                margin-bottom: 28px;
                padding-bottom: 28px;
            }

            .property-dimensions {
                gap: 18px;
                margin-bottom: 28px;
            }
                        .property-hero-slider {
                height: auto;
            }

            .slide-item {
                height: 100vh;
                min-height: 400px;
            }

            .property-info-card {
                margin: -40px 20px 30px;
            }
        }

@media (max-width: 768px) {
    .property-hero {
        min-height: 500px;
    }
    
    .property-hero h1 {
        font-size: 32px;
    }
    
    .property-hero .price {
        font-size: 24px;
    }

    .property-hero .specs {
        flex-direction: column;
        gap: 10px;
        font-size: 16px;
    }
    
    .property-content {
        padding: 60px 0;
    }
    
    .property-content h2 {
        font-size: 28px;
    }
    
    .property-cta {
        padding: 60px 20px;
    }
    
    .property-cta h2 {
        font-size: 28px;
    }

          .slide-item {
                height: 60vh;
                min-height: 400px;
            }

            .property-info-card {
                padding: 28px;
                margin: -50px 16px 30px;
            }

            .property-title {
                font-size: 32px;
                margin-bottom: 24px;
            }
            
            .property-specs {
                gap: 16px;
                margin-bottom: 24px;
                padding-bottom: 24px;
            }
            
            .spec-item span {
                font-size: 13px;
            }
            
            .property-dimensions {
                gap: 16px;
                margin-bottom: 24px;
            }
            
            .dimension-item span {
                font-size: 13px;
            }
            
            .property-slick-slider .slick-prev,
            .property-slick-slider .slick-next {
                width: 48px;
                height: 48px;
            }

            .property-slick-slider .slick-prev:before,
            .property-slick-slider .slick-next:before {
                font-size: 20px;
            }


    .floorplan-section {
        padding: 40px 15px;
    }

    .floorplan-title {
        font-size: 40px;
    }

    .floorplan-subtitle {
        font-size: 20px;
    }

    .floorplan-spec-row {
        flex-direction: column;
        gap: 15px;
    }

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

    .floorplan-btn {
        width: 100%;
        justify-content: center;
    }

    .floorplan-enlarge-btn {
        top: 20px;
        left: 20px;
    }

    .floorplan-logo {
        width: 60px;
        height: 60px;
        font-size: 40px;
    }

    .floorplan-modal-content {
        width: 95%;
    }

    .floorplan-modal-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .faq-question {
        font-size: 18px;
        padding: 20px 0;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-image-container {
        max-width: 300px;
    }

    .faq-decorative-star {
        width: 120px;
        height: 120px;
        bottom: -25px;
        right: -25px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-title {
        font-size: 48px;
    }

    .about-description,
    .about-tagline {
        font-size: 18px;
    }

    .about-feature-item {
        font-size: 16px;
    }

    .about-image-container {
        max-width: 400px;
    }

    .about-heart-icon {
        width: 60px;
        height: 60px;
    }

    .about-heart-icon svg {
        width: 30px;
        height: 30px;
    }

    .about-enquire-btn {
        font-size: 16px;
        padding: 14px 35px;
    }

    .why-choose-section {
        padding: 60px 20px;
    }

    .why-choose-header {
        margin-bottom: 50px;
    }

    .why-choose-title {
        font-size: 40px;
    }

    .why-choose-subtitle {
        font-size: 16px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-choose-item {
        padding: 25px;
    }

    .why-choose-item-title {
        font-size: 20px;
    }

    .why-choose-item-description {
        font-size: 15px;
    }

    .why-choose-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .why-choose-btn-primary,
    .why-choose-btn-secondary {
        width: 100%;
    }

    .facade-slider-section {
        padding: 60px 15px;
    }

    .facade-slider-wrapper {
        padding: 0 40px;
    }

    .facade-slider-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .facade-slide-item img {
        height: 220px;
    }

    .facade-slide-label {
        font-size: 13px;
        padding: 8px 14px;
        left: 20px;
        top: 15px;
    }

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

    .facade-slick-prev svg,
    .facade-slick-next svg {
        width: 18px;
        height: 18px;
    }

    .floorplan-section {
        padding: 40px 15px;
    }

    .floorplan-title {
        font-size: 40px;
    }

    .floorplan-subtitle {
        font-size: 20px;
    }

    .floorplan-spec-row {
        flex-direction: column;
        gap: 15px;
    }

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

    .floorplan-btn {
        width: 100%;
        justify-content: center;
    }

    .floorplan-enlarge-btn {
        top: 20px;
        left: 20px;
    }

    .floorplan-logo {
        width: 60px;
        height: 60px;
        font-size: 40px;
    }

    .floorplan-modal-content {
        width: 95%;
    }

    .floorplan-modal-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}
        @media (max-width: 576px) {
            .slide-item {
                height: 50vh;
                min-height: 350px;
            }

            .property-info-card {
                padding: 24px;
                margin: -40px 12px 24px;
            }
            
            .property-title {
                font-size: 28px;
                margin-bottom: 20px;
            }
            
            .property-specs {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-bottom: 20px;
                padding-bottom: 20px;
            }
            
            .spec-item {
                flex-direction: row;
                align-items: center;
                gap: 12px;
            }

            .spec-item span {
                font-size: 14px;
            }
            
            .property-dimensions {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-bottom: 20px;
            }

            .dimension-item span {
                font-size: 13px;
            }
            
            .property-slick-slider .slick-prev {
                left: 12px;
            }
            
            .property-slick-slider .slick-next {
                right: 12px;
            }

            .property-slick-slider .slick-prev,
            .property-slick-slider .slick-next {
                width: 44px;
                height: 44px;
            }

            .toggle-panel-btn {
                padding: 14px 20px;
            }

            .toggle-text {
                font-size: 15px;
            }
        }
@media (max-width: 480px) {
    .property-hero h1 {
        font-size: 28px;
    }
    
    .property-hero .price {
        font-size: 20px;
    }
    
    .property-content h2 {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .floorplan-title {
        font-size: 36px;
    }

    .floorplan-features-title {
        font-size: 24px;
    }

    .floorplan-spec-item {
        font-size: 14px;
    }

    .floorplan-btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    .faq-section {
        padding: 40px 15px;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 0;
    }

    .faq-question span {
        padding-right: 15px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.6;
    }

    .faq-active .faq-answer {
        padding-bottom: 20px;
    }

    .faq-image-container {
        max-width: 250px;
    }

    .faq-decorative-star {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: -20px;
    }

    .why-choose-section {
        padding: 40px 15px;
    }

    .why-choose-title {
        font-size: 32px;
    }

    .why-choose-subtitle {
        font-size: 15px;
    }

    .why-choose-item {
        padding: 20px;
    }

    .why-choose-icon {
        width: 50px;
        height: 50px;
    }

    .why-choose-icon svg {
        width: 26px;
        height: 26px;
    }

    .why-choose-item-title {
        font-size: 18px;
    }

    .why-choose-item-description {
        font-size: 14px;
    }

    .why-choose-btn-primary,
    .why-choose-btn-secondary {
        font-size: 16px;
        padding: 14px 30px;
    }
       .facade-slider-wrapper {
        padding: 0 35px;
    }

    .facade-slider-title {
        font-size: 28px;
    }

    .facade-slide-item img {
        height: 200px;
    }

    .facade-slide-label {
        font-size: 12px;
        padding: 6px 12px;
        left: 18px;
    }

    .facade-slick-prev,
    .facade-slick-next {
        width: 35px;
        height: 35px;
    }

    .facade-slick-prev svg,
    .facade-slick-next svg {
        width: 16px;
        height: 16px;
    }
     .about-section {
        padding: 40px 15px;
    }

    .about-title {
        font-size: 36px;
    }

    .about-description,
    .about-tagline {
        font-size: 16px;
    }

    .about-feature-item {
        font-size: 15px;
    }

    .about-image-container {
        max-width: 300px;
    }

    .about-heart-icon {
        width: 50px;
        height: 50px;
        top: 15px;
        right: 15px;
    }

    .about-heart-icon svg {
        width: 25px;
        height: 25px;
    }
}
        @media (max-width: 375px) {
            .slide-item {
                height: 45vh;
                min-height: 300px;
            }

            .property-info-card {
                padding: 20px;
                margin: -30px 10px 20px;
            }

            .property-title {
                font-size: 24px;
            }

            .spec-item svg {
                width: 20px;
                height: 20px;
            }

            .dimension-item svg {
                width: 18px;
                height: 18px;
            }

            .property-slick-slider .slick-prev,
            .property-slick-slider .slick-next {
                width: 40px;
                height: 40px;
            }

            .property-slick-slider .slick-prev:before,
            .property-slick-slider .slick-next:before {
                font-size: 18px;
            }
        }

/*Custom css*/
.property-slick-slider .slick-prev,
.property-slick-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.property-slick-slider .slick-prev:hover,
.property-slick-slider .slick-next:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.property-slick-slider .slick-prev {
    left: 30px;
}

.property-slick-slider .slick-next {
    right: 30px;
}

/* SVG Icons inside arrows */
.property-slick-slider .slick-prev svg,
.property-slick-slider .slick-next svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Remove default Slick arrow text */
.property-slick-slider .slick-prev:before,
.property-slick-slider .slick-next:before {
    content: '' !important;
    display: none !important;
}

/* Disabled state */
.property-slick-slider .slick-prev.slick-disabled,
.property-slick-slider .slick-next.slick-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .property-slick-slider .slick-prev,
    .property-slick-slider .slick-next {
        width: 40px;
        height: 40px;
    }
    
    .property-slick-slider .slick-prev {
        left: 15px;
    }
    
    .property-slick-slider .slick-next {
        right: 15px;
    }
    
    .property-slick-slider .slick-prev svg,
    .property-slick-slider .slick-next svg {
        width: 20px;
        height: 20px;
    }
}


/*Fullwidth page css*/

/* ══════════════════════════════════════════════════════
   MAP + CONTACT SECTION — Custom CSS
   ══════════════════════════════════════════════════════ */

.prop-map-contact-section {
    padding: 60px 0;
    background: #f8f7f5;
}

.prop-map-contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

/* ── Map column ─────────────────────────────────────── */
.prop-map-col {
    flex: 1 1 0;
    min-width: 0;
}

.prop-map-container {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    background: #e8e4dc;
    position: relative;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

.prop-map-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #5d6f5a;
    font-size: 14px;
}

.prop-map-directions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    color: #5d6f5a;
}
.prop-map-directions svg {
    flex-shrink: 0;
    stroke: #5d6f5a;
}
.prop-map-directions a {
    color: #5d6f5a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(93,111,90,0.3);
    transition: border-color 0.2s;
}
.prop-map-directions a:hover {
    border-color: #5d6f5a;
}

/* ── Contact card column ────────────────────────────── */
.prop-contact-col {
    flex: 0 0 320px;
    width: 320px;
}

.prop-contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border: 1px solid #ede9e2;
}

.prop-contact-heading {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 22px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0ece6;
}

/* Consultant row */
.prop-consultant-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.prop-consultant-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8e4dc;
    border: 2px solid #f0ece6;
}
.prop-consultant-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.prop-consultant-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #5d6f5a;
    background: #e8f0e7;
}

.prop-consultant-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.prop-consultant-name {
    font-size: 16px;
    font-weight: 700;
    color: #5d6f5a;
}
.prop-consultant-role {
    font-size: 13px;
    color: #888;
}

/* Action buttons */
.prop-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prop-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    text-decoration: none;
    border: none;
    letter-spacing: 0.3px;
}
.prop-contact-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}
.prop-contact-btn:active {
    transform: translateY(0);
}
.prop-contact-btn-call {
    background: #5d6f5a;
    color: #fff;
}
.prop-contact-btn-enquire {
    background: #5d6f5a;
    color: #fff;
}

/* Fix Leaflet pin */
.prop-leaflet-pin {
    background: none !important;
    border: none !important;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

/* Tablet: 768px – 900px */
@media (max-width: 900px) {
    .prop-map-contact-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .prop-contact-col {
        flex: none;
        width: 100%;
    }
    .prop-map-container {
        height: 320px;
    }
}

/* Mobile: below 768px */
@media (max-width: 768px) {
    .prop-map-contact-section {
        padding: 40px 0;
    }
    .prop-map-contact-wrapper {
        padding: 0 16px;
        gap: 20px;
    }
    .prop-map-container {
        height: 280px;
    }
    .prop-contact-card {
        padding: 20px 16px;
    }
    .prop-contact-heading {
        font-size: 18px;
        margin-bottom: 16px;
        padding-bottom: 14px;
    }
    .prop-consultant-avatar {
        width: 52px;
        height: 52px;
    }
    .prop-consultant-name {
        font-size: 14px;
    }
    .prop-contact-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    /* Side by side on mobile */
    .prop-contact-actions {
        flex-direction: row;
        gap: 10px;
    }
    .prop-map-directions {
        font-size: 12px;
    }
}

/* Small phones: below 480px */
@media (max-width: 480px) {
    .prop-map-container {
        height: 240px;
    }
    .prop-map-directions a {
        word-break: break-word;
    }
    /* Back to stacked — easier to tap */
    .prop-contact-actions {
        flex-direction: column;
    }
}
