* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Lora, sans-serif;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}
/*start*/

    /* =========================================
   Property Image Gallery
========================================= */

.property-gallery-section {
    width: 100%;
    padding: 8px 10px;
    background: #ffffff;
}

.property-gallery-wrapper {
    width: 100%;
    height: 695px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Common image style */

.property-gallery-item {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #eeeeee;
    cursor: pointer;
}

.property-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.5s ease,
        filter 0.4s ease;
}

.property-gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.9);
}

/* Main left image */

.property-gallery-main {
    height: 100%;
}

/* Right side four-image grid */

.property-gallery-grid {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

/* View photos button */

.property-view-photos,
.property-mobile-photos {
    border: 0;
    color: #111111;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.14);
    font-family: Arial, sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.property-view-photos {
    position: absolute;
    left: 26px;
    bottom: 12px;
    min-height: 53px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    font-size: 17px;
}

.property-view-photos i,
.property-mobile-photos i {
    color: #174c84;
    font-size: 19px;
}

.property-view-photos:hover,
.property-mobile-photos:hover {
    color: #ffffff;
    background: #174c84;
    transform: translateY(-2px);
}

.property-view-photos:hover i,
.property-mobile-photos:hover i {
    color: #ffffff;
}

.property-mobile-photos {
    display: none;
}

/* =========================================
   Laptop
========================================= */

@media (max-width: 1200px) {
    .property-gallery-wrapper {
        height: 570px;
    }
}

/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {
    .property-gallery-wrapper {
        height: auto;
        grid-template-columns: 1fr;
    }

    .property-gallery-main {
        height: 470px;
    }

    .property-gallery-grid {
        height: 460px;
    }
}

/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {
    .property-gallery-section {
        padding: 8px;
    }

    .property-gallery-wrapper {
        gap: 7px;
    }

    .property-gallery-item {
        border-radius: 9px;
    }

    .property-gallery-main {
        height: 285px;
    }

    .property-gallery-grid {
        height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, 155px);
        gap: 7px;
    }

    /* Desktop वाला button mobile पर hide */
    .property-view-photos {
        display: none;
    }

    /* Last image पर mobile button */
    .property-mobile-photos {
        position: absolute;
        right: 10px;
        bottom: 10px;
        min-height: 39px;
        padding: 0 12px;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        border-radius: 5px;
        font-size: 13px;
    }

    .property-mobile-photos i {
        font-size: 15px;
    }
}

/* =========================================
   Small Mobile
========================================= */

@media (max-width: 420px) {
    .property-gallery-main {
        height: 245px;
    }

    .property-gallery-grid {
        grid-template-rows: repeat(2, 125px);
    }
}


/* ========================================
   Property Details Section
======================================== */

.pd-property-section {
    width: 100%;
    padding: 0 8px 60px;
    background: #ffffff;
}

.pd-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

/* Breadcrumb */

.pd-breadcrumb {
    padding: 15px 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: #5f6879;
    font-family: Arial, sans-serif;
    font-size: 15px;
}

.pd-breadcrumb a {
    color: #5f6879;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pd-breadcrumb a:hover {
    color: #285e98;
}

.pd-breadcrumb span {
    color: #6e7786;
    font-size: 18px;
}

.pd-breadcrumb strong {
    color: #515b6c;
    font-weight: 700;
}

/* Main layout */

.pd-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.08fr) minmax(330px, 1fr);
    gap: 28px;
    align-items: start;
}

.pd-main-content,
.pd-sidebar {
    min-width: 0;
}

.pd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Common cards */

.pd-summary-card,
.pd-description-card,
.pd-action-card,
.pd-enquiry-card {
    border: 1px solid #dfe3e8;
    border-radius: 30px;
    background: #ffffff;
}

.pd-summary-card {
    padding: 50px 45px 0;
}

.pd-category-badge {
    display: inline-flex;
    align-items: center;
    min-height: 37px;
    padding: 0 17px;
    border-radius: 50px;
    color: #347cff;
    background: #d9e5ff;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.pd-summary-card h1 {
    margin: 23px 0 18px;
    color: #070707;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.2;
}

/* Property meta */

.pd-property-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 28px;
    color: #647084;
    font-family: Arial, sans-serif;
    font-size: 17px;
}

.pd-property-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.pd-property-meta i {
    color: #727e90;
}

.pd-property-meta .pd-rating,
.pd-property-meta .pd-rating i,
.pd-property-meta .pd-rating strong {
    color: #ff9800;
}

/* Property features */

.pd-property-features {
    margin-top: 43px;
    padding: 24px 15px;
    border-top: 1px solid #d6d9dd;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.pd-feature-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #5f6d81;
    font-family: Arial, sans-serif;
}

.pd-feature-item > i {
    width: 33px;
    flex-shrink: 0;
    color: #173e68;
    font-size: 28px;
    text-align: center;
}

.pd-feature-item div {
    min-width: 0;
}

.pd-feature-item small {
    margin-bottom: 4px;
    display: none;
    color: #8a93a2;
    font-size: 12px;
}

.pd-feature-item span {
    display: block;
    font-size: 17px;
    line-height: 1.4;
}

/* Action card */

.pd-action-card {
    padding: 43px;
}

.pd-brochure-btn {
    width: 100%;
    min-height: 60px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-radius: 10px;
    color: #ffffff;
    background: #2c5f98;
    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.pd-brochure-btn i {
    color: #ffffff;
}

.pd-brochure-btn:hover {
    color: #ffffff;
    background: #174c84;
    transform: translateY(-2px);
}

.pd-contact-buttons {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.pd-call-btn,
.pd-whatsapp-btn {
    min-height: 60px;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 2px solid;
    border-radius: 10px;
    background: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pd-call-btn {
    border-color: #285e98;
    color: #285e98;
}

.pd-call-btn:hover {
    color: #ffffff;
    background: #285e98;
}

.pd-whatsapp-btn {
    border-color: #079b83;
    color: #079b83;
}

.pd-whatsapp-btn:hover {
    color: #ffffff;
    background: #079b83;
}

/* Enquiry form */

.pd-enquiry-card {
    padding: 30px 40px 40px;
}

.pd-enquiry-card h2 {
    margin: 0 0 20px;
    color: #080808;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    text-align: center;
}

.pd-form-group {
    margin-bottom: 16px;
}

.pd-form-group input,
.pd-form-group textarea {
    width: 100%;
    border: 1px solid #cfd5dd;
    border-radius: 13px;
    outline: none;
    color: #252525;
    background: #fafbfc;
    font-family: Arial, sans-serif;
    font-size: 17px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.pd-form-group input {
    height: 58px;
    padding: 0 15px;
}

.pd-form-group textarea {
    min-height: 85px;
    padding: 15px;
    resize: vertical;
    line-height: 1.5;
}

.pd-form-group input:focus,
.pd-form-group textarea:focus {
    border-color: #285e98;
    box-shadow: 0 0 0 3px rgba(40, 94, 152, 0.1);
}

.pd-form-group input::placeholder,
.pd-form-group textarea::placeholder {
    color: #6d7582;
}

.pd-submit-btn {
    width: 100%;
    min-height: 57px;
    border: 0;
    border-radius: 10px;
    color: #ffffff;
    background: #285e98;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pd-submit-btn:hover {
    background: #f7b800;
}

/* Description */

.pd-description-card {
    margin-top: 28px;
    padding: 45px;
}

.pd-description-card h2 {
    margin: 0;
    color: #070707;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.25;
}

.pd-title-line {
    width: 100%;
    height: 1px;
    margin: 20px 0;
    background: #d4d7db;
}

.pd-description-card p {
    margin: 0 0 15px;
    color: #687487;
    font-family: lora, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-align: justify;
}

/* Mobile-only elements hidden on desktop */

.pd-mobile-actions,
.pd-mobile-form {
    display: none;
}

/* ========================================
   Laptop Responsive
======================================== */

@media (max-width: 1200px) {
    .pd-summary-card {
        padding: 40px 30px 0;
    }

    .pd-summary-card h1 {
        font-size: 40px;
    }

    .pd-property-features {
        padding-right: 0;
        padding-left: 0;
    }

    .pd-action-card {
        padding: 30px;
    }

    .pd-enquiry-card {
        padding: 28px;
    }
}

/* ========================================
   Tablet Responsive
======================================== */

@media (max-width: 991px) {
    .pd-property-section {
        padding-right: 15px;
        padding-left: 15px;
    }

    .pd-layout {
        grid-template-columns: 1fr;
    }

    /* Desktop sidebar hide */
    .pd-sidebar {
        display: none;
    }

    /* Buttons and form summary के बाद show */
    .pd-mobile-actions,
    .pd-mobile-form {
        display: block;
    }

    .pd-mobile-actions {
        margin-top: 22px;
        padding: 28px;
        border: 1px solid #dfe3e8;
        border-radius: 22px;
        background: #ffffff;
    }

    .pd-mobile-form {
        margin-top: 22px;
    }

    .pd-description-card {
        margin-top: 22px;
    }
}

/* ========================================
   Mobile Responsive
======================================== */

@media (max-width: 767px) {
    .pd-property-section {
        padding: 0 12px 40px;
    }

    .pd-breadcrumb {
        padding: 12px 0 17px;
        gap: 7px;
        font-size: 13px;
        line-height: 1.5;
    }

    .pd-breadcrumb span {
        font-size: 15px;
    }

    .pd-summary-card,
    .pd-description-card,
    .pd-enquiry-card {
        border-radius: 18px;
    }

    .pd-summary-card {
        padding: 25px 18px 0;
    }

    .pd-category-badge {
        min-height: 32px;
        padding: 0 14px;
        font-size: 14px;
    }

    .pd-summary-card h1 {
        margin: 18px 0 15px;
        font-size: 31px;
    }

    .pd-property-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        font-size: 15px;
    }

    .pd-property-features {
        margin-top: 25px;
        padding: 20px 0;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pd-feature-item {
        gap: 13px;
    }

    .pd-feature-item > i {
        font-size: 24px;
    }

    .pd-feature-item small {
        display: block;
    }

    .pd-feature-item span {
        font-size: 16px;
    }

    .pd-mobile-actions {
        padding: 18px;
        border-radius: 18px;
    }

    .pd-brochure-btn {
        min-height: 53px;
        font-size: 16px;
    }

    .pd-call-btn,
    .pd-whatsapp-btn {
        min-height: 51px;
        font-size: 15px;
    }

    .pd-enquiry-card {
        padding: 25px 18px;
    }

    .pd-enquiry-card h2 {
        font-size: 26px;
    }

    .pd-form-group input {
        height: 54px;
    }

    .pd-form-group input,
    .pd-form-group textarea {
        font-size: 15px;
    }

    .pd-description-card {
        padding: 27px 20px;
    }

    .pd-description-card h2 {
        font-size: 28px;
    }

    .pd-description-card p {
        font-size: 16px;
        line-height: 1.65;
    }
}

/* Small mobiles */

@media (max-width: 390px) {
    .pd-contact-buttons {
        grid-template-columns: 1fr;
    }

    .pd-summary-card h1 {
        font-size: 28px;
    }

    .pd-description-card h2 {
        font-size: 25px;
    }
}

/* =========================================
   Highlights and Specifications
========================================= */

.ps-highlights-section {
    width: 100%;
    padding: 0;
    background: #ffffff;
}

.ps-highlights-card {
    width: 100%;
    padding: 48px 45px 32px;
    border: 1px solid #dfe3e8;
    border-radius: 30px;
    background: #ffffff;
}

/* Heading */

.ps-highlights-heading {
    margin-bottom: 24px;
    padding-bottom: 21px;
    border-bottom: 1px solid #d5d9df;
}

.ps-highlights-heading h2 {
    margin: 0;
    color: #070707;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 37px;
    font-weight: 600;
    line-height: 1.3;
}

/* Two-column layout */

.ps-specification-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 80px;
}

.ps-specification-column {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Individual specification */

.ps-specification-item {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    color: #111111;
    font-family: Arial, sans-serif;
}

.ps-specification-item > i {
    width: 23px;
    margin-top: 2px;
    flex: 0 0 23px;
    color: #175895;
    font-size: 20px;
    text-align: center;
}

.ps-specification-item p {
    min-width: 0;
    margin: 0;
    color: #151515;
    font-size: 19px;
    line-height: 1.45;
}

.ps-specification-item strong {
    font-weight: 500;
}

.ps-specification-item span {
    color: #667286;
    overflow-wrap: anywhere;
}

/* Phone link */

.ps-specification-item a {
    color: #1d5791;
    font-weight: 700;
    text-decoration: none;
}

.ps-specification-item a:hover {
    text-decoration: underline;
}

/* WhatsApp link */

.ps-specification-item .ps-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #039a81;
    font-size: 16px;
    font-weight: 700;
}

.ps-whatsapp-link i {
    font-size: 13px;
}

/* =========================================
   Tablet Responsive
========================================= */

@media (max-width: 991px) {
    .ps-highlights-card {
        padding: 38px 30px 30px;
    }

    .ps-highlights-heading h2 {
        font-size: 32px;
    }

    .ps-specification-grid {
        column-gap: 35px;
    }

    .ps-specification-item p {
        font-size: 17px;
    }
}

/* =========================================
   Mobile Responsive
========================================= */

@media (max-width: 767px) {
    .ps-highlights-card {
        padding: 27px 18px 25px;
        border-radius: 18px;
    }

    .ps-highlights-heading {
        margin-bottom: 22px;
        padding-bottom: 16px;
    }

    .ps-highlights-heading h2 {
        font-size: 27px;
        line-height: 1.35;
    }

    .ps-specification-grid {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }

    .ps-specification-column {
        gap: 18px;
    }

    /*
      First column के बाद mobile पर separator line
    */
    .ps-specification-column:first-child {
        padding-bottom: 18px;
        border-bottom: 1px solid #e0e3e7;
    }

    .ps-specification-item {
        gap: 11px;
    }

    .ps-specification-item > i {
        width: 21px;
        flex-basis: 21px;
        font-size: 18px;
    }

    .ps-specification-item p {
        font-size: 16px;
        line-height: 1.5;
    }

    .ps-specification-item .ps-whatsapp-link {
        font-size: 15px;
    }
}

/* Small Mobile */

@media (max-width: 390px) {
    .ps-highlights-card {
        padding-right: 15px;
        padding-left: 15px;
    }

    .ps-highlights-heading h2 {
        font-size: 24px;
    }

    .ps-specification-item p {
        font-size: 15px;
    }
}