/* =========================================
   SHAPOORJI ONE HILLS
   GLOBAL STYLES
========================================= */


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;

    margin: 0;
    padding: 0;

    font-family: Arial, sans-serif;

    color: #222;
    background: #fff;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================
   COMMON SECTION
========================================= */

.section {
    position: relative;
    width: 100%;
}


/* =========================================
   HEADER
========================================= */

.shapoorji-header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100px;

    z-index: 20;
}


.shapoorji-header-inner {
    width: 100%;
    height: 100%;

    padding: 24px 72px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    overflow: visible;
}


/* =========================================
   LOGO
========================================= */

.shapoorji-logo {
    display: flex;
    align-items: center;

    width: 250px;
    height: 60px;

    flex-shrink: 0;

    text-decoration: none;
}


.shapoorji-logo img {
    display: block;

    width: 250px;
    height: auto;

    max-width: 100%;

    object-fit: contain;
}


/* =========================================
   CONTACT BUTTON
========================================= */

.shapoorji-contact-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 135px;
    height: 48px;

    flex-shrink: 0;

    margin-right: 0;

    background: #ffffff;

    border-radius: 11px;

    color: #222222;

    font-family: Arial, sans-serif;

    font-size: 16px;
    font-weight: 500;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.shapoorji-contact-btn:hover {
    background: #f5f5f5;

    transform: translateY(-2px);
}


/* =========================================
   HERO SECTION
========================================= */

.shapoorji-hero {
    position: relative;

    width: 100%;
    height: 100vh;

    min-height: 780px;

    background-image: url("assets/hero.png");

    background-size: cover;

    /*
        Keep the upper part of the image visible.
    */
    background-position: center top;

    background-repeat: no-repeat;

    overflow: hidden;
}


/* =========================================
   HERO CONTENT
========================================= */

.shapoorji-hero-content {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: flex-start;

    padding-left: 6.8%;
    padding-top: 295px;

    z-index: 5;
}


/* =========================================
   PROJECT TITLE
========================================= */

.shapoorji-project-title {
    color: #292727;
}


.shapoorji-project-title h1 {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 53px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: -1.8px;

    color: #292727;
}


.shapoorji-project-name {
    margin-top: 24px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 39px;
    font-weight: 400;

    line-height: 1;

    letter-spacing: 11px;

    color: #111111;
}


/* =========================================
   INFORMATION CARD
========================================= */

.shapoorji-info-card {
    position: absolute;

    left: 5%;
    right: 5%;

    bottom: 82px;

    width: auto;

    height: 175px;

    padding: 0 70px;

    display: grid;

    /*
        minmax(0, 1fr) prevents the middle
        content from pushing the button outside.
    */
    grid-template-columns:
        225px
        minmax(0, 1fr)
        300px;

    align-items: center;

    column-gap: 30px;

    background: rgba(255, 255, 255, 0.78);

    border: 1px solid rgba(255, 255, 255, 0.9);

    border-radius: 8px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    z-index: 10;
}


/* =========================================
   PRICE
========================================= */

.shapoorji-price {
    display: flex;

    flex-direction: column;

    justify-content: center;
}


.shapoorji-label {
    display: block;

    margin-bottom: 6px;

    font-family: Arial, sans-serif;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.2;

    color: #222222;
}


.shapoorji-price strong {
    display: block;

    font-family: Arial, sans-serif;

    font-size: 31px;
    font-weight: 700;

    line-height: 1.1;

    color: #111111;
}


/* =========================================
   PROJECT DETAILS
========================================= */

.shapoorji-details {
    display: flex;

    flex-direction: column;

    justify-content: center;

    min-width: 0;
}


.shapoorji-detail-line {
    font-family: Arial, sans-serif;

    font-size: 23px;
    font-weight: 400;

    line-height: 1.45;

    color: #222222;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: clip;
}


.shapoorji-config {
    margin-top: 5px;
}


/* =========================================
   BROCHURE BUTTON
========================================= */

.shapoorji-brochure-wrapper {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    min-width: 0;
}


.shapoorji-brochure-btn {
    width: 300px;
    height: 56px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    background: #303030;

    border-radius: 10px;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.shapoorji-brochure-btn:hover {
    background: #222222;

    transform: translateY(-2px);
}


.shapoorji-download-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 25px;

    line-height: 1;
}


/* =========================================
   FUTURE FOOTER
========================================= */

.site-footer {
    position: relative;

    width: 100%;
}


/* =========================================
   LAPTOP
   993px - 1440px
========================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    /* HEADER */

    .shapoorji-header-inner {
        padding: 22px 45px;
    }


    .shapoorji-logo {
        width: 225px;
    }


    .shapoorji-logo img {
        width: 225px;
    }


    .shapoorji-contact-btn {
        width: 135px;
    }


    /* HERO */

    .shapoorji-hero-content {
        padding-left: 6.8%;

        padding-top: 270px;
    }


    /* TITLE */

    .shapoorji-project-title h1 {
        font-size: 48px;
    }


    .shapoorji-project-name {
        font-size: 34px;

        letter-spacing: 9px;
    }


    /* INFO CARD */

    .shapoorji-info-card {
        left: 5%;
        right: 5%;

        width: auto;

        bottom: 65px;

        height: 160px;

        padding: 0 50px;

        grid-template-columns:
            205px
            minmax(0, 1fr)
            280px;

        column-gap: 25px;
    }


    /* DETAILS */

    .shapoorji-detail-line {
        font-size: 20px;
    }


    /* PRICE */

    .shapoorji-price strong {
        font-size: 29px;
    }


    /* BROCHURE */

    .shapoorji-brochure-btn {
        width: 280px;
    }
}


/* =========================================
   TABLET
   992px AND BELOW
========================================= */

@media screen and (max-width: 992px) {

    /* HERO */

    .shapoorji-hero {
        min-height: 850px;
    }


    /* HEADER */

    .shapoorji-header {
        height: 85px;
    }


    .shapoorji-header-inner {
        padding: 20px 35px;
    }


    .shapoorji-logo {
        width: 210px;

        height: 50px;
    }


    .shapoorji-logo img {
        width: 210px;
    }


    .shapoorji-contact-btn {
        width: 120px;

        height: 44px;

        font-size: 15px;
    }


    /* HERO CONTENT */

    .shapoorji-hero-content {
        padding-left: 6%;

        padding-top: 250px;
    }


    /* TITLE */

    .shapoorji-project-title h1 {
        font-size: 42px;
    }


    .shapoorji-project-name {
        font-size: 30px;

        letter-spacing: 7px;
    }


    /* INFO CARD */

    .shapoorji-info-card {
        left: 4%;
        right: 4%;

        width: auto;

        bottom: 35px;

        height: auto;

        min-height: 170px;

        padding: 25px 30px;

        grid-template-columns:
            170px
            minmax(0, 1fr);

        row-gap: 20px;

        column-gap: 20px;
    }


    /* BROCHURE */

    .shapoorji-brochure-wrapper {
        grid-column: 1 / -1;

        justify-content: flex-start;
    }


    .shapoorji-brochure-btn {
        width: 240px;
    }


    /* DETAILS */

    .shapoorji-detail-line {
        font-size: 18px;

        white-space: normal;

        overflow: visible;
    }
}


/* =========================================
   MOBILE
   768px AND BELOW
========================================= */

@media screen and (max-width: 768px) {

    /* HERO */

    .shapoorji-hero {
        height: 900px;

        min-height: 900px;

        background-position: 58% top;
    }


    /* HEADER */

    .shapoorji-header {
        height: 80px;
    }


    .shapoorji-header-inner {
        padding: 16px 20px;
    }


    .shapoorji-logo {
        width: 165px;

        height: 45px;
    }


    .shapoorji-logo img {
        width: 165px;
    }


    .shapoorji-contact-btn {
        width: 105px;

        height: 40px;

        border-radius: 8px;

        font-size: 14px;
    }


    /* HERO CONTENT */

    .shapoorji-hero-content {
        height: auto;

        padding-left: 25px;

        padding-top: 270px;
    }


    /* TITLE */

    .shapoorji-project-title h1 {
        font-size: 34px;

        letter-spacing: -1px;
    }


    .shapoorji-project-name {
        margin-top: 14px;

        font-size: 25px;

        letter-spacing: 6px;
    }


    /* INFO CARD */

    .shapoorji-info-card {
        left: 18px;
        right: 18px;

        bottom: 20px;

        width: auto;

        height: auto;

        min-height: 0;

        padding: 22px 20px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 17px;
    }


    /* PRICE */

    .shapoorji-price {
        width: 100%;
    }


    .shapoorji-label {
        font-size: 13px;
    }


    .shapoorji-price strong {
        font-size: 27px;
    }


    /* DETAILS */

    .shapoorji-details {
        width: 100%;
    }


    .shapoorji-detail-line {
        font-size: 16px;

        line-height: 1.45;

        white-space: normal;

        overflow: visible;
    }


    .shapoorji-config {
        margin-top: 5px;
    }


    /* BROCHURE */

    .shapoorji-brochure-wrapper {
        width: 100%;

        justify-content: flex-start;
    }


    .shapoorji-brochure-btn {
        width: 100%;

        height: 50px;

        font-size: 15px;
    }

}

/* =========================================
   OVERVIEW SECTION
========================================= */

.shapoorji-overview {
    width: 100%;

    background: #ffffff;

    padding: 55px 0 75px;

    position: relative;
}


.shapoorji-overview-container {
    width: 90.5%;

    max-width: 1440px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 55px;

    align-items: center;
}


/* =========================================
   OVERVIEW CONTENT
========================================= */

.shapoorji-overview-content {
    width: 100%;

    padding-right: 15px;
}


.shapoorji-overview-content h2 {
    margin: 0 0 39px;

    font-family: Arial, sans-serif;

    font-size: 36px;

    font-weight: 500;

    line-height: 1.1;

    letter-spacing: -1.2px;

    color: #202020;
}


.shapoorji-overview-text {
    width: 100%;
}


.shapoorji-overview-text p {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.58;

    color: #343434;
}


.shapoorji-overview-text p + p {
    margin-top: 0;
}


/* =========================================
   OVERVIEW IMAGE
========================================= */

.shapoorji-overview-image {
    width: 100%;

    height: 435px;

    overflow: hidden;

    border-radius: 22px;
}


.shapoorji-overview-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.5s ease;
}


.shapoorji-overview-image:hover img {
    transform: scale(1.02);
}


/* =========================================
   LAPTOP
   993px - 1440px
========================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .shapoorji-overview {
        padding: 50px 0 70px;
    }


    .shapoorji-overview-container {
        width: 90%;

        column-gap: 45px;
    }


    .shapoorji-overview-content h2 {
        margin-bottom: 32px;

        font-size: 34px;
    }


    .shapoorji-overview-text p {
        font-size: 16px;

        line-height: 1.55;
    }


    .shapoorji-overview-image {
        height: 400px;

        border-radius: 20px;
    }

}


/* =========================================
   TABLET
   992px AND BELOW
========================================= */

@media screen and (max-width: 992px) {

    .shapoorji-overview {
        padding: 55px 0 65px;
    }


    .shapoorji-overview-container {
        width: 88%;

        grid-template-columns: 1fr;

        row-gap: 40px;
    }


    .shapoorji-overview-content {
        padding-right: 0;
    }


    .shapoorji-overview-content h2 {
        margin-bottom: 25px;

        font-size: 32px;
    }


    .shapoorji-overview-text p {
        font-size: 16px;

        line-height: 1.6;
    }


    .shapoorji-overview-image {
        height: 420px;

        border-radius: 20px;
    }

}


/* =========================================
   MOBILE
   768px AND BELOW
========================================= */

@media screen and (max-width: 768px) {

    .shapoorji-overview {
        padding: 45px 0 55px;
    }


    .shapoorji-overview-container {
        width: calc(100% - 40px);

        row-gap: 30px;
    }


    .shapoorji-overview-content h2 {
        margin-bottom: 22px;

        font-size: 29px;

        letter-spacing: -0.8px;
    }


    .shapoorji-overview-text p {
        font-size: 15px;

        line-height: 1.6;
    }


    .shapoorji-overview-image {
        width: 100%;

        height: 270px;

        border-radius: 16px;
    }

}

/* =========================================
   WHAT'S ON OFFER SECTION
========================================= */

.shapoorji-offer {
    width: 100%;

    background: #f4ede1;

    padding: 55px 0 58px;

    position: relative;
}


.shapoorji-offer-container {
    width: 90.5%;
    max-width: 1440px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 60px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.shapoorji-offer-content {
    flex: 1;

    min-width: 0;
}


/* =========================================
   EYEBROW
========================================= */

.shapoorji-offer-label {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 22px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.2;

    color: #315848;
}


.shapoorji-offer-line {
    display: block;

    width: 45px;

    height: 1px;

    background: #315848;
}


/* =========================================
   MAIN HEADING
========================================= */

.shapoorji-offer-content h2 {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 28px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.5px;

    color: #101717;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.shapoorji-offer-highlights {
    margin-top: 28px;

    display: flex;

    align-items: center;

    gap: 55px;
}


.shapoorji-offer-item {
    display: flex;

    align-items: center;

    gap: 12px;

    white-space: nowrap;

    font-family: Arial, sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.3;

    color: #171717;
}


/* =========================================
   ICON BOX
========================================= */

.shapoorji-offer-icon {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #cf9289;

    border-radius: 4px;
}


.shapoorji-offer-icon svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: #ffffff;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================
   BROCHURE ACTION
========================================= */

.shapoorji-offer-action {
    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: flex-end;
}


.shapoorji-offer-btn {
    width: 220px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    background: #303030;

    border-radius: 6px;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.shapoorji-offer-btn:hover {
    background: #202020;

    transform: translateY(-2px);
}


.shapoorji-offer-btn svg {
    width: 15px;
    height: 15px;

    fill: none;

    stroke: #ffffff;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================
   LAPTOP
   993px - 1440px
========================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .shapoorji-offer {
        padding: 50px 0 54px;
    }


    .shapoorji-offer-container {
        width: 90%;

        gap: 45px;
    }


    .shapoorji-offer-label {
        font-size: 12px;

        margin-bottom: 20px;
    }


    .shapoorji-offer-content h2 {
        font-size: 27px;
    }


    .shapoorji-offer-highlights {
        margin-top: 25px;

        gap: 38px;
    }


    .shapoorji-offer-item {
        font-size: 15px;

        gap: 10px;
    }


    .shapoorji-offer-icon {
        width: 28px;
        height: 28px;
    }


    .shapoorji-offer-btn {
        width: 210px;

        height: 40px;

        font-size: 12px;
    }

}


/* =========================================
   TABLET
   992px AND BELOW
========================================= */

@media screen and (max-width: 992px) {

    .shapoorji-offer {
        padding: 50px 0 55px;
    }


    .shapoorji-offer-container {
        width: 88%;

        flex-direction: column;

        align-items: flex-start;

        gap: 32px;
    }


    .shapoorji-offer-label {
        font-size: 13px;

        margin-bottom: 20px;
    }


    .shapoorji-offer-content h2 {
        font-size: 27px;
    }


    .shapoorji-offer-highlights {
        gap: 30px;

        flex-wrap: wrap;
    }


    .shapoorji-offer-item {
        font-size: 15px;
    }


    .shapoorji-offer-action {
        width: 100%;

        justify-content: flex-start;
    }


    .shapoorji-offer-btn {
        width: 220px;

        height: 42px;

        font-size: 12px;
    }

}


/* =========================================
   MOBILE
   768px AND BELOW
========================================= */

@media screen and (max-width: 768px) {

    .shapoorji-offer {
        padding: 45px 0 48px;
    }


    .shapoorji-offer-container {
        width: calc(100% - 40px);

        gap: 28px;
    }


    .shapoorji-offer-label {
        margin-bottom: 18px;

        font-size: 12px;

        gap: 11px;
    }


    .shapoorji-offer-line {
        width: 35px;
    }


    .shapoorji-offer-content h2 {
        font-size: 25px;

        letter-spacing: -0.3px;
    }


    .shapoorji-offer-highlights {
        width: 100%;

        margin-top: 24px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 16px;
    }


    .shapoorji-offer-item {
        font-size: 15px;

        gap: 11px;
    }


    .shapoorji-offer-icon {
        width: 29px;
        height: 29px;
    }


    .shapoorji-offer-action {
        width: 100%;
    }


    .shapoorji-offer-btn {
        width: 100%;

        height: 44px;

        font-size: 13px;

        border-radius: 6px;
    }

}

/* =========================================
   AMENITIES SECTION
========================================= */

/* =========================================
   AMENITIES SECTION - HEIGHT FIX
========================================= */

.shapoorji-amenities {
    position: relative;

    width: 100%;

    /*
        REMOVE aspect-ratio.
        Let the content determine the height.
    */
    min-height: 0;

    padding: 55px 0 75px;

    background-image: url("assets/amenities.png");

    /*
        Keep the original image proportions.
        This prevents stretching.
    */
    background-size: 100% auto;

    background-position: center top;

    background-repeat: no-repeat;

    /*
        Important:
        Don't clip the content if the security
        panel extends slightly further down.
    */
    overflow: visible;
}


/* =========================================
   BACKGROUND OVERLAY
========================================= */

.shapoorji-amenities-overlay {
    position: absolute;

    inset: 0;

    background: transparent;

    pointer-events: none;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.shapoorji-amenities-container {
    position: relative;

    z-index: 2;

    width: 92%;

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================
   AMENITIES TITLE
========================================= */

.shapoorji-amenities-title {
    display: block;

    margin: 0 0 38px;

    padding: 4px 14px 5px;

    font-family: Arial, sans-serif;

    font-size: 36px;

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -1px;

    color: #171717;

    /*
        Gives the heading a clean separation
        from the architectural background.
    */

    border-radius: 4px;
}


/* =========================================
   AMENITIES GRID
========================================= */

.shapoorji-amenities-grid {
    width: 100%;

    max-width: 1080px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px 22px;
}


/* =========================================
   AMENITY CARD
========================================= */

.shapoorji-amenity-card {
    width: 100%;

    height: 155px;

    padding: 18px 10px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: #ffffff;

    border-radius: 6px;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.shapoorji-amenity-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 9px 24px rgba(0, 0, 0, 0.15);
}


/* =========================================
   AMENITY ICON
========================================= */

.shapoorji-amenity-icon {
    width: 72px;

    height: 72px;

    margin-bottom: 10px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.shapoorji-amenity-icon svg {
    width: 65px;

    height: 65px;

    display: block;

    fill: none;

    stroke: #111111;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================
   AMENITY TEXT
========================================= */

.shapoorji-amenity-card span {
    display: block;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.35;

    color: #111111;
}


/* =========================================
   SECURITY PANEL
========================================= */

.shapoorji-security {
    width: 92%;

    max-width: 1200px;

    margin: 45px auto 0;

    padding: 25px 45px 28px;

    box-sizing: border-box;

    background: rgba(255, 255, 255, 0.84);

    text-align: center;

    backdrop-filter: blur(4px);

    -webkit-backdrop-filter: blur(4px);
}


.shapoorji-security h3 {
    margin: 0 0 18px;

    font-family: Arial, sans-serif;

    font-size: 20px;

    font-weight: 700;

    line-height: 1.2;

    color: #222222;
}


.shapoorji-security p {
    max-width: 1050px;

    margin: 0 auto;

    font-family: Arial, sans-serif;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.5;

    color: #282828;
}


/* =========================================
   LAPTOP
   993px - 1440px
========================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .shapoorji-amenities {
        padding: 50px 0 60px;

        /*
            Continue preserving image ratio.
        */    }


    .shapoorji-amenities-container {
        width: 90%;
    }


    .shapoorji-amenities-title {
        margin-bottom: 35px;

        font-size: 34px;
    }


    .shapoorji-amenities-grid {
        max-width: 1000px;

        gap: 18px 20px;
    }


    .shapoorji-amenity-card {
        height: 145px;
    }


    .shapoorji-amenity-icon {
        width: 65px;

        height: 65px;

        margin-bottom: 8px;
    }


    .shapoorji-amenity-icon svg {
        width: 58px;

        height: 58px;
    }


    .shapoorji-amenity-card span {
        font-size: 12px;
    }


    .shapoorji-security {
        margin-top: 40px;

        padding: 23px 35px 25px;
    }

}


/* =========================================
   TABLET
   992px AND BELOW
========================================= */

@media screen and (max-width: 992px) {

    .shapoorji-amenities {
        aspect-ratio: auto;

        min-height: auto;

        padding: 50px 0 60px;

        /*
            On smaller screens the background
            needs to cover the content area.
        */
        background-size: cover;

        background-position: center center;
    }


    .shapoorji-amenities-container {
        width: 88%;
    }


    .shapoorji-amenities-title {
        margin-bottom: 30px;

        font-size: 32px;
    }


    .shapoorji-amenities-grid {
        max-width: 100%;

        grid-template-columns: repeat(3, 1fr);

        gap: 16px;
    }


    .shapoorji-amenity-card {
        height: 145px;
    }


    .shapoorji-amenity-icon {
        width: 62px;

        height: 62px;
    }


    .shapoorji-amenity-icon svg {
        width: 55px;

        height: 55px;
    }


    .shapoorji-amenity-card span {
        font-size: 12px;
    }


    .shapoorji-security {
        width: 100%;

        margin-top: 38px;

        padding: 25px 30px;
    }


    .shapoorji-security h3 {
        font-size: 19px;
    }


    .shapoorji-security p {
        font-size: 14px;
    }

}


/* =========================================
   MOBILE
   768px AND BELOW
========================================= */

@media screen and (max-width: 768px) {

    .shapoorji-amenities {
        padding: 45px 0 50px;

        background-size: cover;

        background-position: center center;
    }


    .shapoorji-amenities-container {
        width: calc(100% - 30px);
    }


    .shapoorji-amenities-title {
        margin-bottom: 25px;

        padding: 3px 10px 4px;

        font-size: 29px;

        letter-spacing: -0.5px;
    }


    .shapoorji-amenities-grid {
        width: 100%;

        grid-template-columns: repeat(2, 1fr);

        gap: 13px;
    }


    .shapoorji-amenity-card {
        height: 145px;

        padding: 12px 5px;
    }


    .shapoorji-amenity-icon {
        width: 58px;

        height: 58px;

        margin-bottom: 7px;
    }


    .shapoorji-amenity-icon svg {
        width: 52px;

        height: 52px;

        stroke-width: 2.1;
    }


    .shapoorji-amenity-card span {
        font-size: 11px;

        line-height: 1.35;
    }


    .shapoorji-security {
        width: 100%;

        margin-top: 30px;

        padding: 22px 17px;
    }


    .shapoorji-security h3 {
        margin-bottom: 13px;

        font-size: 18px;
    }


    .shapoorji-security p {
        font-size: 13px;

        line-height: 1.5;
    }

}

/* =========================================
   50PX WHITE SPACE BETWEEN SECTIONS
========================================= */

.shapoorji-offer {
    margin-bottom: 60px;
}

.shapoorji-amenities {
    margin-top: 0;
}

/* =========================================
   FLOOR PLAN SECTION
========================================= */

.shapoorji-floorplan {
    width: 100%;

    background: #ffffff;

    padding: 55px 0 70px;

    position: relative;

    box-sizing: border-box;
}


.shapoorji-floorplan-container {
    width: 90.5%;

    max-width: 1440px;

    margin: 0 auto;
}


/* =========================================
   TITLE
========================================= */

.shapoorji-floorplan-title {
    margin: 0 0 48px;

    font-family: Arial, sans-serif;

    font-size: 36px;

    font-weight: 500;

    line-height: 1.1;

    letter-spacing: -1px;

    color: #171717;
}


/* =========================================
   FLOOR PLAN GRID
========================================= */

.shapoorji-floorplan-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 55px;

    align-items: center;
}


/* =========================================
   FLOOR PLAN CARD
========================================= */

.shapoorji-floorplan-card {
    width: 100%;

    height: 280px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #ffffff;

    border-radius: 4px;

    position: relative;
    cursor: pointer;
}


.shapoorji-floorplan-card img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center;

    /*
        Slight blur to reproduce the
        locked floor-plan appearance.
    */
    filter: blur(2.5px);

    transform: scale(1.015);
}


/* =========================================
   UNLOCK BUTTON
========================================= */

.shapoorji-floorplan-action {
    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-top: 35px;
}


.shapoorji-floorplan-btn {
    width: 175px;

    height: 42px;

    padding: 0 16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    box-sizing: border-box;

    background: #303030;

    border-radius: 5px;

    color: #ffffff;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 600;

    line-height: 1;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.shapoorji-floorplan-btn:hover {
    background: #202020;

    transform: translateY(-2px);
}


.shapoorji-floorplan-arrow {
    font-size: 20px;

    font-weight: 300;

    line-height: 1;
}


/* =========================================
   LAPTOP
   993px - 1440px
========================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .shapoorji-floorplan {
        padding: 50px 0 65px;
    }


    .shapoorji-floorplan-container {
        width: 90%;
    }


    .shapoorji-floorplan-title {
        margin-bottom: 40px;

        font-size: 34px;
    }


    .shapoorji-floorplan-grid {
        gap: 45px;
    }


    .shapoorji-floorplan-card {
        height: 260px;
    }


    .shapoorji-floorplan-action {
        margin-top: 32px;
    }

}


/* =========================================
   TABLET
   992px AND BELOW
========================================= */

@media screen and (max-width: 992px) {

    .shapoorji-floorplan {
        padding: 50px 0 60px;
    }


    .shapoorji-floorplan-container {
        width: 88%;
    }


    .shapoorji-floorplan-title {
        margin-bottom: 35px;

        font-size: 32px;
    }


    .shapoorji-floorplan-grid {
        gap: 25px;
    }


    .shapoorji-floorplan-card {
        height: 230px;
    }


    .shapoorji-floorplan-action {
        margin-top: 30px;
    }

}


/* =========================================
   MOBILE
   768px AND BELOW
========================================= */

@media screen and (max-width: 768px) {

    .shapoorji-floorplan {
        padding: 45px 0 55px;
    }


    .shapoorji-floorplan-container {
        width: calc(100% - 40px);
    }


    .shapoorji-floorplan-title {
        margin-bottom: 28px;

        font-size: 29px;

        letter-spacing: -0.5px;
    }


    .shapoorji-floorplan-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .shapoorji-floorplan-card {
        height: 220px;
    }


    .shapoorji-floorplan-action {
        margin-top: 28px;
    }


    .shapoorji-floorplan-btn {
        width: 175px;

        height: 42px;
    }

}

/* =========================================
   GALLERY SECTION
========================================= */

.shapoorji-gallery {
    width: 100%;

    background: #f5f5f7;

    padding: 55px 0 55px;

    box-sizing: border-box;
}


.shapoorji-gallery-container {
    width: 90.5%;

    max-width: 1440px;

    margin: 0 auto;
}


/* =========================================
   TITLE
========================================= */

.shapoorji-gallery-title {
    margin: 0 0 40px;

    font-family: Arial, sans-serif;

    font-size: 36px;

    font-weight: 500;

    line-height: 1.1;

    letter-spacing: -1px;

    color: #171717;
}


/* =========================================
   GALLERY GRID
========================================= */

.shapoorji-gallery-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}


/* =========================================
   GALLERY IMAGE
========================================= */

.shapoorji-gallery-item {
    width: 100%;

    height: 260px;

    overflow: hidden;

    border-radius: 5px;

    background: #ddd;
    cursor: pointer;
}


.shapoorji-gallery-item img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.5s ease;
}


.shapoorji-gallery-item:hover img {
    transform: scale(1.03);
}


/* =========================================
   BOTTOM CONTENT
========================================= */

.shapoorji-gallery-bottom {
    width: 100%;

    margin-top: 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================
   DESCRIPTION
========================================= */

.shapoorji-gallery-bottom p {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.5;

    color: #858585;
}


/* =========================================
   BOOK BUTTON
========================================= */

.shapoorji-gallery-btn {
    width: 157px;

    height: 36px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 14px;

    box-sizing: border-box;

    background: #303030;

    border-radius: 5px;

    color: #ffffff;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.shapoorji-gallery-btn:hover {
    background: #202020;

    transform: translateY(-2px);
}


.shapoorji-gallery-arrow {
    font-size: 19px;

    font-weight: 300;

    line-height: 1;
}


/* =========================================
   LAPTOP
   993px - 1440px
========================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .shapoorji-gallery {
        padding: 50px 0 52px;
    }


    .shapoorji-gallery-container {
        width: 90%;
    }


    .shapoorji-gallery-title {
        margin-bottom: 35px;

        font-size: 34px;
    }


    .shapoorji-gallery-grid {
        gap: 14px;
    }


    .shapoorji-gallery-item {
        height: 240px;
    }


    .shapoorji-gallery-bottom {
        margin-top: 35px;
    }

}


/* =========================================
   TABLET
   992px AND BELOW
========================================= */

@media screen and (max-width: 992px) {

    .shapoorji-gallery {
        padding: 50px 0 55px;
    }


    .shapoorji-gallery-container {
        width: 88%;
    }


    .shapoorji-gallery-title {
        margin-bottom: 30px;

        font-size: 32px;
    }


    .shapoorji-gallery-grid {
        gap: 12px;
    }


    .shapoorji-gallery-item {
        height: 210px;
    }


    .shapoorji-gallery-bottom {
        margin-top: 30px;
    }


    .shapoorji-gallery-bottom p {
        font-size: 14px;
    }

}


/* =========================================
   MOBILE
   768px AND BELOW
========================================= */

@media screen and (max-width: 768px) {

    .shapoorji-gallery {
        padding: 45px 0 50px;
    }


    .shapoorji-gallery-container {
        width: calc(100% - 40px);
    }


    .shapoorji-gallery-title {
        margin-bottom: 25px;

        font-size: 29px;

        letter-spacing: -0.5px;
    }


    .shapoorji-gallery-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .shapoorji-gallery-item {
        height: 220px;

        border-radius: 6px;
    }


    .shapoorji-gallery-bottom {
        margin-top: 25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .shapoorji-gallery-bottom p {
        font-size: 14px;
    }


    .shapoorji-gallery-btn {
        width: 100%;

        height: 42px;

        font-size: 13px;
    }

}

/* =========================================
   LOCATION SECTION
========================================= */

.shapoorji-location {
    width: 100%;

    background: #ffffff;

    padding: 55px 0 75px;

    box-sizing: border-box;
}


.shapoorji-location-container {
    width: 90.5%;

    max-width: 1440px;

    margin: 0 auto;
}


/* =========================================
   TITLE
========================================= */

.shapoorji-location-title {
    margin: 0 0 42px;

    font-family: Arial, sans-serif;

    font-size: 36px;

    font-weight: 500;

    line-height: 1.1;

    letter-spacing: -1px;

    color: #171717;
}


/* =========================================
   LOCATION GRID
========================================= */

.shapoorji-location-grid {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1.08fr;

    gap: 16px;

    align-items: stretch;
}


/* =========================================
   MAP
========================================= */

.shapoorji-location-map {
    width: 100%;

    height: 260px;

    overflow: hidden;

    border-radius: 3px;

    background: #eeeeee;
}


.shapoorji-location-map iframe {
    width: 100%;

    height: 100%;

    display: block;

    border: 0;
}


/* =========================================
   CONNECTIVITY CARD
========================================= */

.shapoorji-location-connectivity {
    width: 100%;

    min-height: 260px;

    padding: 25px 26px 22px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    background: #f4f4f6;

    border-radius: 5px;
}


/* =========================================
   CONNECTIVITY HEADING
========================================= */

.shapoorji-location-connectivity h3 {
    margin: 0 0 26px;

    font-family: Arial, sans-serif;

    font-size: 23px;

    font-weight: 500;

    line-height: 1.2;

    color: #171717;
}


/* =========================================
   DETAILS
========================================= */

.shapoorji-location-details {
    width: 100%;
}


.shapoorji-location-details strong {
    display: block;

    margin: 0 0 4px;

    font-family: Arial, sans-serif;

    font-size: 17px;

    font-weight: 500;

    line-height: 1.35;

    color: #202020;
}


.shapoorji-location-details p {
    max-width: 580px;

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.4;

    color: #353535;
}


/* =========================================
   VIEW ON MAP BUTTON
========================================= */

.shapoorji-location-btn {
    width: 134px;

    height: 40px;

    margin-top: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #075da5;

    border-radius: 5px;

    color: #ffffff;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.shapoorji-location-btn:hover {
    background: #064b85;

    transform: translateY(-2px);
}


/* =========================================
   LAPTOP
   993px - 1440px
========================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .shapoorji-location {
        padding: 50px 0 65px;
    }


    .shapoorji-location-container {
        width: 90%;
    }


    .shapoorji-location-title {
        margin-bottom: 37px;

        font-size: 34px;
    }


    .shapoorji-location-map {
        height: 245px;
    }


    .shapoorji-location-connectivity {
        min-height: 245px;

        padding: 23px 25px 20px;
    }


    .shapoorji-location-connectivity h3 {
        font-size: 22px;

        margin-bottom: 23px;
    }


    .shapoorji-location-details strong,
    .shapoorji-location-details p {
        font-size: 16px;
    }

}


/* =========================================
   TABLET
   992px AND BELOW
========================================= */

@media screen and (max-width: 992px) {

    .shapoorji-location {
        padding: 50px 0 60px;
    }


    .shapoorji-location-container {
        width: 88%;
    }


    .shapoorji-location-title {
        margin-bottom: 30px;

        font-size: 32px;
    }


    .shapoorji-location-grid {
        grid-template-columns: 1fr 1fr;

        gap: 14px;
    }


    .shapoorji-location-map {
        height: 260px;
    }


    .shapoorji-location-connectivity {
        min-height: 260px;

        padding: 23px 22px;
    }


    .shapoorji-location-connectivity h3 {
        font-size: 21px;

        margin-bottom: 20px;
    }


    .shapoorji-location-details strong,
    .shapoorji-location-details p {
        font-size: 15px;
    }

}


/* =========================================
   MOBILE
   768px AND BELOW
========================================= */

@media screen and (max-width: 768px) {

    .shapoorji-location {
        padding: 45px 0 55px;
    }


    .shapoorji-location-container {
        width: calc(100% - 40px);
    }


    .shapoorji-location-title {
        margin-bottom: 25px;

        font-size: 29px;

        letter-spacing: -0.5px;
    }


    .shapoorji-location-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .shapoorji-location-map {
        height: 260px;

        order: 1;
    }


    .shapoorji-location-connectivity {
        min-height: 260px;

        padding: 23px 20px;

        order: 2;
    }


    .shapoorji-location-connectivity h3 {
        margin-bottom: 20px;

        font-size: 22px;
    }


    .shapoorji-location-details strong {
        font-size: 16px;
    }


    .shapoorji-location-details p {
        font-size: 15px;

        line-height: 1.5;
    }


    .shapoorji-location-btn {
        width: 145px;

        height: 42px;

        margin-top: 25px;

        font-size: 13px;
    }

}

/* =========================================
   FINAL CTA SECTION
========================================= */

.shapoorji-final-cta {
    position: relative;

    width: 100%;

    height: 320px;

    background-image: url("assets/cta.png");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
    margin-bottom: 40px;
}


/* =========================================
   DARK OVERLAY
========================================= */

.shapoorji-final-cta-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.25);

    z-index: 1;
}


/* =========================================
   CTA CARD
========================================= */

.shapoorji-final-cta-card {
    position: relative;

    z-index: 2;

    width: 430px;

    min-height: 165px;

    padding: 32px 35px 25px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.15);
}


/* =========================================
   CTA HEADING
========================================= */

.shapoorji-final-cta-card h2 {
    margin: 0 0 10px;

    font-family: Arial, sans-serif;

    font-size: 25px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.4px;

    color: #101717;
}


/* =========================================
   CTA DESCRIPTION
========================================= */

.shapoorji-final-cta-card p {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 400;

    line-height: 1.4;

    color: #555555;
}


/* =========================================
   CTA BUTTON
========================================= */

.shapoorji-final-cta-btn {
    width: 178px;

    height: 35px;

    margin-top: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #303030;

    border-radius: 5px;

    color: #ffffff;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.shapoorji-final-cta-btn:hover {
    background: #1e1e1e;

    transform: translateY(-2px);
}


/* =========================================
   LAPTOP
   993px - 1440px
========================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .shapoorji-final-cta {
        height: 300px;
    }


    .shapoorji-final-cta-card {
        width: 425px;

        min-height: 160px;
    }


    .shapoorji-final-cta-card h2 {
        font-size: 24px;
    }

}


/* =========================================
   TABLET
   992px AND BELOW
========================================= */

@media screen and (max-width: 992px) {

    .shapoorji-final-cta {
        height: 300px;
    }


    .shapoorji-final-cta-card {
        width: 430px;

        max-width: calc(100% - 50px);
    }

}


/* =========================================
   MOBILE
   768px AND BELOW
========================================= */

@media screen and (max-width: 768px) {

    .shapoorji-final-cta {
        height: 300px;

        padding: 25px 0;
    }


    .shapoorji-final-cta-card {
        width: calc(100% - 40px);

        min-height: 175px;

        padding: 28px 20px 24px;

        border-radius: 14px;
    }


    .shapoorji-final-cta-card h2 {
        font-size: 23px;

        line-height: 1.25;
    }


    .shapoorji-final-cta-card p {
        font-size: 12px;
    }


    .shapoorji-final-cta-btn {
        width: 180px;

        height: 40px;

        margin-top: 23px;

        font-size: 12px;
    }

}

/* =========================================
   DISCLAIMER / FOOTER
========================================= */

.shapoorji-disclaimer {
    width: 100%;

    background: #191919;

    padding: 52px 0 45px;

    box-sizing: border-box;
}


.shapoorji-disclaimer-container {
    width: 90%;

    max-width: 1400px;

    margin: 0 auto;

    text-align: center;
}


/* =========================================
   DISCLAIMER HEADING
========================================= */

.shapoorji-disclaimer-container h2 {
    margin: 0 0 25px;

    font-family: Arial, sans-serif;

    font-size: 24px;

    font-weight: 400;

    line-height: 1.2;

    color: #ffffff;
}


/* =========================================
   DISCLAIMER TEXT
========================================= */

.shapoorji-disclaimer-text {
    width: 100%;

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 400;

    line-height: 1.55;

    text-align: left;

    color: #dddddd;
}


/* =========================================
   DIVIDER
========================================= */

.shapoorji-disclaimer-divider {
    width: 100%;

    height: 1px;

    margin: 55px 0 30px;

    background: #666666;
}


/* =========================================
   COPYRIGHT
========================================= */

.shapoorji-copyright {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 400;

    line-height: 1.4;

    color: #707070;

    text-align: center;
}


/* =========================================
   LAPTOP
   993px - 1440px
========================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .shapoorji-disclaimer {
        padding: 48px 0 42px;
    }


    .shapoorji-disclaimer-container {
        width: 90%;
    }


    .shapoorji-disclaimer-container h2 {
        font-size: 23px;

        margin-bottom: 23px;
    }


    .shapoorji-disclaimer-text {
        font-size: 11.5px;
    }


    .shapoorji-disclaimer-divider {
        margin: 50px 0 28px;
    }

}


/* =========================================
   TABLET
   992px AND BELOW
========================================= */

@media screen and (max-width: 992px) {

    .shapoorji-disclaimer {
        padding: 45px 0 40px;
    }


    .shapoorji-disclaimer-container {
        width: 88%;
    }


    .shapoorji-disclaimer-container h2 {
        font-size: 23px;

        margin-bottom: 22px;
    }


    .shapoorji-disclaimer-text {
        font-size: 12px;

        line-height: 1.6;
    }


    .shapoorji-disclaimer-divider {
        margin: 40px 0 25px;
    }

}


/* =========================================
   MOBILE
   768px AND BELOW
========================================= */

@media screen and (max-width: 768px) {

    .shapoorji-disclaimer {
        padding: 40px 0 35px;
    }


    .shapoorji-disclaimer-container {
        width: calc(100% - 40px);
    }


    .shapoorji-disclaimer-container h2 {
        font-size: 22px;

        margin-bottom: 20px;
    }


    .shapoorji-disclaimer-text {
        font-size: 11px;

        line-height: 1.65;

        text-align: left;
    }


    .shapoorji-disclaimer-divider {
        margin: 35px 0 23px;
    }


    .shapoorji-copyright {
        font-size: 10px;

        line-height: 1.5;
    }

}

/* =========================================
   LEAD FORM POPUP
========================================= */

.shapoorji-popup {
    position: fixed;

    inset: 0;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    box-sizing: border-box;

    visibility: hidden;

    opacity: 0;

    z-index: 99999;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* =========================================
   ACTIVE POPUP
========================================= */

.shapoorji-popup.active {
    visibility: visible;

    opacity: 1;
}


/* =========================================
   OVERLAY
========================================= */

.shapoorji-popup-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    backdrop-filter: blur(3px);

    -webkit-backdrop-filter: blur(3px);

    cursor: pointer;
}


/* =========================================
   POPUP BOX
========================================= */

.shapoorji-popup-box {
    position: relative;

    z-index: 2;

    width: 440px;

    max-width: 100%;

    padding: 35px 38px 38px;

    box-sizing: border-box;

    background: #ffffff;

    border-radius: 14px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25);

    transform: translateY(20px) scale(0.97);

    transition: transform 0.3s ease;
}


.shapoorji-popup.active .shapoorji-popup-box {
    transform: translateY(0) scale(1);
}


/* =========================================
   CLOSE BUTTON
========================================= */

.shapoorji-popup-close {
    position: absolute;

    top: 13px;

    right: 15px;

    width: 32px;

    height: 32px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #222222;

    font-family: Arial, sans-serif;

    font-size: 28px;

    font-weight: 300;

    line-height: 32px;

    cursor: pointer;

    transition: transform 0.2s ease;
}


.shapoorji-popup-close:hover {
    transform: rotate(90deg);
}


/* =========================================
   POPUP CONTENT
========================================= */

.shapoorji-popup-content {
    width: 100%;

    text-align: center;
}


.shapoorji-popup-content h2 {
    margin: 0 0 8px;

    font-family: Arial, sans-serif;

    font-size: 27px;

    font-weight: 700;

    line-height: 1.2;

    color: #151515;
}


.shapoorji-popup-content > p {
    margin: 0 0 25px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.5;

    color: #777777;
}


/* =========================================
   FORM
========================================= */

.shapoorji-popup form {
    width: 100%;

    text-align: left;
}


.shapoorji-form-group {
    width: 100%;

    margin-bottom: 17px;
}


.shapoorji-form-group label {
    display: block;

    margin-bottom: 7px;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.3;

    color: #222222;
}


.shapoorji-form-group input {
    width: 100%;

    height: 46px;

    padding: 0 14px;

    box-sizing: border-box;

    border: 1px solid #d7d7d7;

    border-radius: 5px;

    outline: none;

    background: #ffffff;

    color: #222222;

    font-family: Arial, sans-serif;

    font-size: 13px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.shapoorji-form-group input::placeholder {
    color: #999999;
}


.shapoorji-form-group input:focus {
    border-color: #333333;

    box-shadow:
        0 0 0 2px rgba(0, 0, 0, 0.05);
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.shapoorji-form-submit {
    width: 100%;

    height: 46px;

    margin-top: 5px;

    border: 0;

    border-radius: 5px;

    background: #303030;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.2s ease;
}


.shapoorji-form-submit:hover {
    background: #202020;

    transform: translateY(-1px);
}


.shapoorji-form-submit:disabled {
    opacity: 0.7;

    cursor: not-allowed;

    transform: none;
}


/* =========================================
   LOADING STATE
========================================= */

.submit-loading {
    display: none;
}


.shapoorji-form-submit.loading .submit-text {
    display: none;
}


.shapoorji-form-submit.loading .submit-loading {
    display: inline;
}


/* =========================================
   PREVENT PAGE SCROLL
========================================= */

body.shapoorji-popup-open {
    overflow: hidden;
}


/* =========================================
   LAPTOP
========================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .shapoorji-popup-box {
        width: 430px;

        padding: 33px 35px 36px;
    }

}


/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 992px) {

    .shapoorji-popup-box {
        width: 430px;

        padding: 32px 32px 35px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 768px) {

    .shapoorji-popup {
        padding: 15px;
    }


    .shapoorji-popup-box {
        width: 100%;

        padding: 30px 22px 28px;

        border-radius: 12px;
    }


    .shapoorji-popup-content h2 {
        font-size: 24px;
    }


    .shapoorji-popup-content > p {
        font-size: 12px;

        margin-bottom: 22px;
    }


    .shapoorji-form-group {
        margin-bottom: 14px;
    }


    .shapoorji-form-group input {
        height: 45px;
    }


    .shapoorji-form-submit {
        height: 45px;
    }

}

/* =========================================
   POPUP PROJECT LOGO
========================================= */

.shapoorji-popup-logo {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;
}


.shapoorji-popup-logo img {
    display: block;

    width: auto;

    height: 150px;

    max-width: 210px;

    object-fit: contain;
}

