@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Dancing+Script:wght@400..700&family=Dosis:wght@200..800&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100..900&display=swap');

/* =========================================================
   SAI SANSKRUTI — GLOBAL CSS
   Bootstrap 5 is used for layout & responsive utilities
   ========================================================= */


/* =========================================================
   1. BRAND VARIABLES
   ========================================================= */

:root {

    /* Brand Colours */
    --sai-blue: #174A78;
    --sai-gold: #D2AA3A;

    /* Basic Colours */
    --white: #ffffff;
    --black: #222222;
    --text-dark: #333333;
    --text-grey: #666666;
    --light-bg: #faf9f5;

    /* Borders */
    --border-light: rgba(210, 170, 58, 0.25);

    /* Shadows */
    --shadow-light: 0 10px 35px rgba(23, 74, 120, 0.08);

    /* Transitions */
    --transition: all 0.3s ease;

    /* Section Spacing */
    --section-padding: 50px;

}


/* =========================================================
   2. RESET / BASIC
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Montserrat", sans-serif;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.7;

    color: var(--text-dark);
    background: var(--white);

    overflow-x: hidden;
}
/* =========================================================
   MOBILE HORIZONTAL OVERFLOW FIX
   ========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   3. CONTAINER
   ========================================================= */

/*
   Bootstrap .container will be used throughout the website.

   Do NOT create separate containers for every section.

   Example:

   <div class="container">
       ...
   </div>
*/


/* =========================================================
   4. COMMON SECTION SPACING
   ========================================================= */

.section-padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}


/* =========================================================
   5. SECTION HEADING
   ========================================================= */

.section-heading {
    margin-bottom: 55px;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--sai-gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    line-height: 1.4;

    text-transform: uppercase;
}
.small-text{
  margin: 0;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    color: white !important;
}

.section-title {
    margin: 0;

    color: var(--sai-blue);

     font-family: "Outfit", sans-serif;

    font-size: clamp(38px, 4vw, 56px);

    font-weight: 600;

    line-height: 1.08;
}


.section-subtitle {
    max-width: 680px;

    margin: 15px auto 0;

    color: #4f5b66;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;
}


.section-text {
    margin: 0;

    color: #4f5b66;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.8;
}


/* =========================================================
   6. TEXT ALIGNMENT HELPERS
   ========================================================= */

.section-heading.text-start .section-subtitle {
    margin-left: 0;
    margin-right: 0;
}


/* =========================================================
   7. COMMON BUTTONS
   ========================================================= */

.btn-sai {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 28px;

    border: 1px solid var(--sai-blue);
    border-radius: 0;

    background: var(--sai-blue);
    color: var(--white);

    font-size: 13px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: 0.8px;
    text-transform: uppercase;

    white-space: nowrap;

    transition: var(--transition);
}


.btn-sai:hover {
    border-color: var(--sai-gold);

    background: var(--sai-gold);
    color: var(--white);

    transform: translateY(-2px);
}


/* Secondary Button */

.btn-sai-outline {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 28px;

    border: 1px solid var(--sai-gold);
    border-radius: 0;

    background: transparent;
    color: var(--sai-blue);

    font-size: 13px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: 0.8px;
    text-transform: uppercase;

    white-space: nowrap;

    transition: var(--transition);
}


.btn-sai-outline:hover {
    border-color: var(--sai-gold);

    background: var(--sai-gold);
    color: var(--white);

    transform: translateY(-2px);
}


/* =========================================================
   8. COMMON IMAGE CLASSES
   ========================================================= */

.img-cover {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.img-contain {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================================
   9. COMMON CARD
   ========================================================= */

.sai-card {
    height: 100%;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border-light);

    transition: var(--transition);
}


.sai-card:hover {
    border-color: var(--sai-gold);

    box-shadow: var(--shadow-light);

    transform: translateY(-5px);
}


/* =========================================================
   10. COMMON GOLD LINE
   ========================================================= */

.gold-line {
    display: block;

    width: 55px;
    height: 2px;

    margin-top: 18px;

    background: var(--sai-gold);
}


/* Centered version */

.text-center .gold-line {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   11. COMMON ICON
   ========================================================= */

.sai-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    color: var(--sai-gold);

    border: 1px solid var(--border-light);

    font-size: 22px;

    transition: var(--transition);
}


.sai-card:hover .sai-icon {
    background: var(--sai-gold);
    color: var(--white);

    border-color: var(--sai-gold);
}


/* =========================================================
   12. COMMON SECTION BACKGROUNDS
   ========================================================= */

.bg-light-sai {
    background: var(--light-bg);
}


.bg-blue-sai {
    background: var(--sai-blue);
    color: var(--white);
}


.bg-gold-sai {
    background: var(--sai-gold);
    color: var(--white);
}


/* =========================================================
   13. FORM ELEMENTS
   ========================================================= */

.form-control,
.form-select {
    min-height: 50px;

    border: 1px solid #dddddd;
    border-radius: 0;

    background: var(--white);

    color: var(--text-dark);

    font-size: 14px;

    box-shadow: none;

    transition: var(--transition);
}


.form-control:focus,
.form-select:focus {
    border-color: var(--sai-gold);

    box-shadow: 0 0 0 0.15rem rgba(210, 170, 58, 0.12);
}


/* =========================================================
   14. RESPONSIVE GLOBAL SETTINGS
   ========================================================= */

@media (max-width: 991.98px) {

    :root {
        --section-padding: 80px;
    }

}


@media (max-width: 767.98px) {

    :root {
        --section-padding: 70px;
    }

    html {
        scroll-padding-top: 75px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 40px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .section-text {
        font-size: 14px;
    }

    .btn-sai,
    .btn-sai-outline {
        min-height: 46px;

        padding: 0 22px;

        font-size: 12px;
    }

}


@media (max-width: 575.98px) {

    .section-title {
        font-size: 36px;
    }

}
/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid var(--border-light);

    transition:
        transform 0.4s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* Header hides when scrolling down */

.site-header.header-hidden {
    transform: translateY(-100%);
}


/* Header appearance after scrolling */

.site-header.header-scrolled {
    background: rgba(255, 255, 255, 0.98);

    box-shadow: var(--shadow-light);
}


/* =========================================================
   HEADER INNER
   ========================================================= */

.header-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 92px;

    gap: 30px;

    transition: min-height 0.3s ease;
}


.site-header.header-scrolled .header-inner {
    min-height: 76px;
}


/* =========================================================
   LOGO
   ========================================================= */

.site-logo {
    display: flex;

    align-items: center;

    flex-shrink: 0;
}


.site-logo img {
    display: block;

    width: auto;
    height: 64px;

    object-fit: contain;

    transition: height 0.3s ease;
}


.site-header.header-scrolled .site-logo img {
    height: 54px;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.main-navigation {
    display: flex;

    align-items: center;

    gap: 28px;

    margin-left: auto;
}


.main-navigation a {
    position: relative;

    padding: 8px 0;

    color: var(--sai-blue);

    font-size: 13px;
    font-weight: 500;

    line-height: 1.3;

    white-space: nowrap;

    transition: color 0.3s ease;
}


/* Gold hover underline */

.main-navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--sai-gold);

    transition: width 0.3s ease;
}


.main-navigation a:hover {
    color: var(--sai-gold);
}


.main-navigation a:hover::after {
    width: 100%;
}


/* =========================================================
   HEADER CTA
   ========================================================= */

.header-cta {
    flex-shrink: 0;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-toggle {
    display: none;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 44px;
    height: 44px;

    padding: 0;

    background: var(--white);

    border: 1px solid var(--sai-gold);

    gap: 5px;
}


.mobile-menu-toggle span {
    display: block;

    width: 21px;
    height: 2px;

    background: var(--sai-blue);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* Hamburger → X */

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}


.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}


.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-navigation {
    display: none;

    background: var(--white);

    border-top: 1px solid var(--border-light);

    box-shadow: var(--shadow-light);
}


.mobile-navigation nav {
    display: flex;

    flex-direction: column;

    padding: 10px 0 25px;
}


.mobile-navigation nav > a:not(.btn-sai) {
    padding: 13px 5px;

    color: var(--sai-blue);

    font-size: 14px;
    font-weight: 500;

    border-bottom: 1px solid var(--border-light);

    transition: color 0.3s ease;
}


.mobile-navigation nav > a:not(.btn-sai):hover {
    color: var(--sai-gold);
}


/*
   The global .btn-sai is reused.
   Only spacing specific to this navigation is added.
*/

.mobile-navigation .btn-sai {
    margin-top: 18px;
}


/* Mobile menu open */

.mobile-navigation.active {
    display: block;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199.98px) {

    .header-inner {
        gap: 20px;
    }

    .main-navigation {
        gap: 20px;
    }

    .main-navigation a {
        font-size: 12px;
    }

    .header-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991.98px) {

    .header-inner {
        min-height: 78px;
    }

    .site-header.header-scrolled .header-inner {
        min-height: 70px;
    }

    .site-logo img {
        height: 56px;
    }

    .site-header.header-scrolled .site-logo img {
        height: 50px;
    }

    /* Hide desktop navigation */

    .main-navigation,
    .header-cta {
        display: none;
    }

    /* Show hamburger */

    .mobile-menu-toggle {
        display: flex;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .header-inner {
        min-height: 70px;
    }

    .site-header.header-scrolled .header-inner {
        min-height: 64px;
    }

    .site-logo img {
        height: 50px;

        max-width: 190px;
    }

    .site-header.header-scrolled .site-logo img {
        height: 46px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }

}
/* =========================================================
   HERO BANNER
   ========================================================= */

.hero-banner {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    background-image: url("../images/home.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(23, 74, 120, 0.82) 0%,
            rgba(23, 74, 120, 0.55) 40%,
            rgba(23, 74, 120, 0.12) 75%,
            rgba(23, 74, 120, 0.05) 100%
        );
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 700px;

    padding-top: 90px;
}


/* Hero eyebrow */

.hero-content .eyebrow {
    color: var(--sai-gold);
}


/* Hero main heading */

.hero-content h1 {
    margin: 0;

     font-family: "Outfit", sans-serif;

    font-size: clamp(50px, 7vw, 80px);
    font-weight: 500;

    line-height: 0.95;

    color: var(--white);

    text-transform: uppercase;
}


/* Hero secondary heading */

.hero-content h2 {
    margin: 18px 0 0;

     font-family: "Outfit", sans-serif;

    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;

    line-height: 1.15;

    color: var(--sai-gold);
}


/* Hero tagline */

.hero-content p {
    margin: 20px 0 0;

    font-size: 17px;
    font-weight: 400;

    line-height: 1.7;

    color: var(--white);
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;
}


/*
   Override only the colour behaviour needed over
   the photographic hero.
*/

.hero-buttons .btn-sai-outline {
    color: var(--white);

    border-color: var(--sai-gold);
}


.hero-buttons .btn-sai-outline:hover {
    color: var(--white);

    background: var(--sai-gold);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .hero-banner {
        min-height: 90vh;
    }

    .hero-content {
        max-width: 650px;

        padding-top: 80px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .hero-banner {
        min-height: 85vh;

        background-position: 65% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(23, 74, 120, 0.85) 0%,
                rgba(23, 74, 120, 0.60) 70%,
                rgba(23, 74, 120, 0.35) 100%
            );
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero-content h1 {
        font-size: clamp(50px, 15vw, 75px);
    }

    .hero-content h2 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-wrap: wrap;

        margin-top: 28px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .hero-banner {
        min-height: 82vh;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

}
/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding-top: var(--section-padding);
    padding-bottom: 25px;

    background: var(--sai-blue);

    color: var(--white);
}


/* =========================================================
   FOOTER MAIN
   ========================================================= */

.footer-main {
    padding-bottom: 70px;
}


/* =========================================================
   FOOTER LOGO
   ========================================================= */

.footer-logo {
    display: inline-flex;

    align-items: center;

    margin-bottom: 20px;
}


.footer-logo img {
    display: block;

    width: auto;
    height: 70px;

    object-fit: contain;
}


/* =========================================================
   FOOTER DESCRIPTION
   ========================================================= */

.footer-description {
    max-width: 380px;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.78);
}


/* =========================================================
   FOOTER TITLE
   ========================================================= */

.footer-title {
    margin: 5px 0 25px;

     font-family: "Outfit", sans-serif;

    font-size: 25px;
    font-weight: 500;

    line-height: 1.2;

    color: var(--white);
}


.footer-title::after {
    content: "";

    display: block;

    width: 40px;
    height: 2px;

    margin-top: 10px;

    background: var(--sai-gold);
}


/* =========================================================
   FOOTER LINKS
   ========================================================= */

.footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}


.footer-links li {
    margin-bottom: 10px;
}


.footer-links a {
    color: rgba(255, 255, 255, 0.78);

    font-size: 14px;

    transition: color 0.3s ease;
}


.footer-links a:hover {
    color: var(--sai-gold);
}


/* =========================================================
   FOOTER CONTACT
   ========================================================= */

.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 20px;
}


.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;
}


.footer-contact-item .sai-icon {
    flex-shrink: 0;
}


/* Contact text */

.footer-contact-item p {
    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 14px;

    line-height: 1.7;
}


/* Contact links */

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.78);

    transition: color 0.3s ease;
}


.footer-contact-item a:hover {
    color: var(--sai-gold);
}

/* =========================================================
   DEVELOPER
   ========================================================= */

.footer-developer {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}


/* =========================================================
   SAI RACHANA LOGO
   ========================================================= */

.footer-developer-logo {
    display: flex;

    align-items: center;

    margin-bottom: 2px;
        background: white;
}


.footer-developer-logo img {
    display: block;
    width: auto;
    max-width: 217px;
    height: 77px;
    object-fit: contain;
}


/* =========================================================
   DEVELOPER TAGLINE
   ========================================================= */

.developer-tagline {
    display: block;

    color: var(--sai-gold);

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.8px;

    line-height: 1.4;
}


/* =========================================================
   RERA
   ========================================================= */

.footer-rera {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 12px;

    padding-top: 15px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


.footer-rera-content {
    display: flex;

    flex-direction: column;

    gap: 3px;

    max-width: 170px;
}


.footer-rera-label {
    color: rgba(255, 255, 255, 0.7);

    font-size: 11px;

    line-height: 1.5;
}


.footer-rera-number {
    color: var(--white);

    font-size: 12px;

    font-weight: 600;

    line-height: 1.4;
}


/* =========================================================
   RERA QR
   ========================================================= */

.footer-rera-qr {
    display: block;

    width: 70px;
    height: 70px;

    padding: 4px;

    background: var(--white);

    object-fit: contain;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .footer-developer-logo img {
        max-width: 150px;

        height: 50px;
    }

    .footer-rera {
        gap: 15px;
    }

    .footer-rera-qr {
        width: 65px;
        height: 65px;
    }

}
/* =========================================================
   COMMON FOOTER ICON
   ========================================================= */

.footer-contact-item .sai-icon,
.footer-developer .sai-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    color: var(--sai-gold);

    border: 1px solid rgba(210, 170, 58, 0.45);

    font-size: 18px;

    transition: var(--transition);
}


.footer-contact-item:hover .sai-icon,
.footer-developer:hover .sai-icon {
    background: var(--sai-gold);

    color: var(--white);

    border-color: var(--sai-gold);
}


.footer-contact-item .sai-icon i,
.footer-developer .sai-icon i {
    line-height: 1;
}


/* =========================================================
   DEVELOPER
   ========================================================= */

.footer-developer {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-developer .sai-icon {
    margin-bottom: 18px;
}


.footer-developer .section-text {
    margin-bottom: 4px;

    color: var(--white);

     font-family: "Outfit", sans-serif;

    font-size: 30px;
    font-weight: 500;

    line-height: 1.2;
}


.developer-tagline {
    color: var(--sai-gold);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.6);

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .footer-main {
        padding-bottom: 45px;
    }


    .footer-logo img {
        height: 60px;
    }


    .footer-title {
        margin-top: 15px;

        margin-bottom: 20px;
    }


    .footer-bottom {
        text-align: center;
    }


    .footer-bottom .text-md-end {
        text-align: center !important;
    }

}
/* =========================================================
   ABOUT SECTION
   ========================================================= */

.about-image {
    position: relative;

    height: 620px;

    overflow: hidden;
}


.about-image::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 80px;
    height: 80px;

    background: var(--sai-gold);
}


.about-image img {
    transition: transform 0.6s ease;
}


.about-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   ABOUT HIGHLIGHTS
   ========================================================= */

.about-highlights {
    margin-top: 5px;
}


.about-highlight {
    display: flex;

    align-items: center;

    gap: 14px;

    height: 100%;

    padding: 15px;

    border: 1px solid var(--border-light);

    background: var(--white);
}


.about-highlight .sai-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    font-size: 19px;
}


.about-highlight h3 {
    margin: 0 0 3px;

    color: var(--sai-blue);

     font-family: "Outfit", sans-serif;

    font-size: 21px;
    font-weight: 600;

    line-height: 1.2;
}


.about-highlight p {
    margin: 0;

    color: var(--text-grey);

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991.98px) {

    .about-image {
        height: 500px;
    }

}


@media (max-width: 575.98px) {

    .about-image {
        height: 400px;
    }


    .about-image::after {
        width: 55px;
        height: 55px;
    }

}
/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.why-choose-section {
    background: #f7f4ec;
}


/* =========================================================
   ROW — EQUAL HEIGHT COLUMNS
   ========================================================= */

.why-choose-section .row {
    display: flex;
    flex-wrap: wrap;
}

.why-choose-section .row > [class*="col-"] {
    display: flex;
}


/* =========================================================
   WHY CHOOSE ITEM
   ========================================================= */

.why-choose-item {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 270px;

    padding: 40px 30px;

    overflow: hidden;

    background: transparent;
}


/* =========================================================
   FADED BACKGROUND ICON
   ========================================================= */

.why-choose-bg-icon {
    position: absolute;

    right: 5px;
    bottom: 0;

    z-index: 0;

    color: var(--sai-blue);

    font-size: 150px;

    line-height: 1;

    opacity: 0.07;

    pointer-events: none;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}


/* =========================================================
   CONTENT
   ========================================================= */

.why-choose-content {
    position: relative;

    z-index: 2;

    max-width: 340px;
}


/* =========================================================
   GOLD ICON
   ========================================================= */

.why-choose-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    color: var(--sai-gold);

    font-size: 32px;

    line-height: 1;

    transition: transform 0.3s ease;
}


/* =========================================================
   TITLE
   ========================================================= */

.why-choose-content h3 {
    margin: 0 0 10px;

    color: var(--sai-blue);

    font-family: "Outfit", sans-serif;

    font-size: 28px;

    font-weight: 600;

    line-height: 1.15;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.why-choose-content .section-text {
    max-width: 330px;

    margin: 0;

    color: var(--text-grey);
}


/* =========================================================
   LOCATION LIST
   ========================================================= */

.location-list {
    margin: 0;

    padding: 0;

    list-style: none;
}

.location-list li {
    position: relative;

    margin-bottom: 7px;

    padding-left: 18px;

    color: var(--text-grey);

    font-family: "Outfit", sans-serif;

    font-size: 14px;

    line-height: 1.5;
}

.location-list li::before {
    content: "•";

    position: absolute;

    left: 0;
    top: 0;

    color: var(--sai-gold);

    font-size: 16px;
}


/* =========================================================
   TOP GOLD ACCENT
   ========================================================= */

/*
.why-choose-item::before {
    content: "";

    position: absolute;

    top: 0;
    left: 30px;

    width: 45px;
    height: 2px;

    background: var(--sai-gold);

    opacity: 0.75;

    transition: width 0.4s ease;
}
*/


/* =========================================================
   HOVER
   ========================================================= */

.why-choose-item:hover::before {
    width: 75px;
}

.why-choose-item:hover .why-choose-bg-icon {
    opacity: 0.11;

    transform: scale(1.05);
}

.why-choose-item:hover .why-choose-icon {
    transform: translateY(-3px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .why-choose-item {
        min-height: 250px;

        padding: 35px 25px;
    }

    .why-choose-bg-icon {
        font-size: 135px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    /*
       On mobile the items become one column,
       so we allow natural content height.
    */

    .why-choose-section .row > [class*="col-"] {
        display: block;
    }

    .why-choose-item {
        height: auto;

        min-height: auto;

        padding: 30px 20px 35px;
    }

    .why-choose-bg-icon {
        right: 0;
        bottom: 0px;

        font-size: 120px;

        opacity: 0.06;
    }

    .why-choose-icon {
        margin-bottom: 18px;

        font-size: 29px;
    }

    .why-choose-content h3 {
        font-size: 25px;
    }

    .why-choose-item::before {
        left: 20px;
    }

}
/* =========================================================
   AMENITIES — NEW EDGE-TO-EDGE DESIGN
   ========================================================= */

.amenities-section-new {
    width: 100%;
    padding: 0;
    background: var(--white);
}


/* =========================================================
   MAIN TWO-COLUMN LAYOUT
   ========================================================= */

.amenities-layout {
    display: flex;
    width: 100%;
    min-height: 650px;
}


/* =========================================================
   LEFT IMAGE CAROUSEL
   ========================================================= */

.amenities-carousel {
    position: relative;
    width: 50%;
    min-height: 650px;
    overflow: hidden;
}

.amenities-carousel .carousel,
.amenities-carousel .carousel-inner,
.amenities-carousel .carousel-item {
    width: 100%;
    height: 100%;
}

.amenities-carousel .carousel-item {
    min-height: 650px;
}

.amenities-carousel .carousel-item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}


/* Subtle image overlay */

.amenities-carousel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(23, 74, 120, 0.08) 0%,
            rgba(23, 74, 120, 0.02) 100%
        );
}


/* Keep carousel controls above overlay */

.amenities-carousel .carousel-control-prev,
.amenities-carousel .carousel-control-next,
.amenities-carousel .carousel-indicators {
    z-index: 3;
}


/* =========================================================
   CAROUSEL CONTROLS
   ========================================================= */

.amenities-carousel-control {
    width: 55px;
    height: 55px;

    top: auto;
    bottom: 35px;

    opacity: 1;

    background: rgba(23, 74, 120, 0.85);

    transition: var(--transition);
}

.amenities-carousel-control:hover {
    background: var(--sai-gold);
}

.amenities-carousel .carousel-control-prev {
    left: 30px;
}

.amenities-carousel .carousel-control-next {
    left: 95px;
    right: auto;
}


/* =========================================================
   CAROUSEL INDICATORS
   ========================================================= */

.amenities-carousel-indicators {
    justify-content: flex-start;

    margin: 0;

    left: auto;
    right: 30px;
    bottom: 50px;

    width: auto;
    height: 8px;

    gap: 7px;
}

.amenities-carousel-indicators button {
    width: 28px;
    height: 2px;

    margin: 0;

    border: 0;

    background-color: rgba(255, 255, 255, 0.6);

    opacity: 1;

    transition: var(--transition);
}

.amenities-carousel-indicators button.active {
    width: 45px;
    background-color: var(--sai-gold);
}


/* =========================================================
   RIGHT CONTENT
   ========================================================= */

.amenities-content-side {
    width: 50%;

    display: flex;
    align-items: center;

    background: var(--light-bg);
}


.amenities-content-inner {
    width: 100%;
    max-width: 720px;

    margin: 0 auto;

    padding: 75px 70px;
}


/* Heading */

.amenities-content-inner .section-heading {
    margin-bottom: 45px;
}

.amenities-content-inner .section-title {
    max-width: 600px;
}

.amenities-content-inner .section-subtitle {
    margin-left: 0;
    margin-right: 0;
}


/* =========================================================
   AMENITIES 6 + 6 LIST
   ========================================================= */

.amenities-list {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 55px;
}


.amenities-list-column {
    display: flex;
    flex-direction: column;
}


/* =========================================================
   INDIVIDUAL AMENITY
   ========================================================= */

.amenity-list-item {
    display: flex;

    align-items: center;

    min-height: 65px;

    padding: 12px 0;

    border-bottom: 1px solid rgba(210, 170, 58, 0.25);

    transition: var(--transition);
}


/* Remove last unnecessary border */

.amenities-list-column .amenity-list-item:last-child {
    border-bottom: 0;
}


/* Number */

.amenity-number {
    flex-shrink: 0;

    width: 42px;

    color: var(--sai-gold);

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1px;
}


/* Name */

.amenity-name {
    color: var(--sai-blue);

    font-family: "Outfit", sans-serif;

    font-size: 18px;

    font-weight: 500;

    line-height: 1.3;

    transition: var(--transition);
}


/* Hover */

.amenity-list-item:hover .amenity-number {
    transform: translateX(4px);
}

.amenity-list-item:hover .amenity-name {
    color: var(--sai-gold);

    transform: translateX(4px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199.98px) {

    .amenities-content-inner {
        padding: 60px 45px;
    }

    .amenities-list {
        column-gap: 30px;
    }

    .amenity-name {
        font-size: 16px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 991.98px) {

    .amenities-layout {
        flex-direction: column;
    }

    .amenities-carousel,
    .amenities-content-side {
        width: 100%;
    }

    .amenities-carousel {
        min-height: 500px;
    }

    .amenities-carousel .carousel-item,
    .amenities-carousel .carousel-item img {
        min-height: 500px;
    }

    .amenities-content-inner {
        max-width: 100%;
        padding: 65px 40px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .amenities-carousel {
        min-height: 420px;
    }

    .amenities-carousel .carousel-item,
    .amenities-carousel .carousel-item img {
        min-height: 420px;
    }

    .amenities-carousel-control {
        width: 45px;
        height: 45px;

        bottom: 25px;
    }

    .amenities-carousel .carousel-control-prev {
        left: 20px;
    }

    .amenities-carousel .carousel-control-next {
        left: 75px;
    }

    .amenities-carousel-indicators {
        right: 20px;
        bottom: 43px;
    }

    .amenities-content-inner {
        padding: 55px 25px;
    }

    .amenities-content-inner .section-heading {
        margin-bottom: 35px;
    }

    .amenities-list {
        column-gap: 25px;
    }

    .amenity-list-item {
        min-height: 60px;
    }

    .amenity-number {
        width: 34px;
        font-size: 10px;
    }

    .amenity-name {
        font-size: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .amenities-carousel {
        min-height: 350px;
    }

    .amenities-carousel .carousel-item,
    .amenities-carousel .carousel-item img {
        min-height: 350px;
    }

    .amenities-content-inner {
        padding: 50px 20px;
    }

    /*
       Keep 6 + 6 on two columns,
       but make them tighter on small screens.
    */

    .amenities-list {
        column-gap: 18px;
    }

    .amenity-list-item {
        min-height: 58px;
        padding: 10px 0;
    }

    .amenity-number {
        width: 29px;
        font-size: 9px;
    }

    .amenity-name {
        font-size: 14px;
    }

    .amenities-carousel-indicators {
        display: none;
    }

}
/* =========================================================
   FLOOR PLANS
   ========================================================= */

.floor-plan-card {
    height: 100%;

    background: var(--white);

    border: 1px solid var(--border-light);

    transition: var(--transition);
}


.floor-plan-card:hover {
    border-color: var(--sai-gold);

    box-shadow: var(--shadow-light);

    transform: translateY(-5px);
}


/* =========================================================
   FLOOR PLAN IMAGE
   ========================================================= */

.floor-plan-image {
    height: 500px;

    padding: 30px;

    background: var(--light-bg);

    overflow: hidden;
}


.floor-plan-image img {
    transition: transform 0.4s ease;
}


.floor-plan-card:hover .floor-plan-image img {
    transform: scale(1.02);
}


/* =========================================================
   FLOOR PLAN CONTENT
   ========================================================= */

.floor-plan-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 25px 30px;
}


.floor-plan-content .eyebrow {
    margin-bottom: 5px;

    font-size: 10px;
}


.floor-plan-content h3 {
    margin: 0;

    color: var(--sai-blue);

     font-family: "Outfit", sans-serif;

    font-size: 32px;
    font-weight: 600;

    line-height: 1.1;
}


/* =========================================================
   FLOOR PLAN MODAL
   ========================================================= */

.floor-plan-modal {
    border: 0;

    border-radius: 0;

    overflow: hidden;
}


.floor-plan-modal .modal-header {
    padding: 18px 25px;

    background: var(--sai-blue);

    border: 0;
}


.floor-plan-modal .modal-title {
    color: var(--white);

     font-family: "Outfit", sans-serif;

    font-size: 26px;
    font-weight: 500;
}


.floor-plan-modal .btn-close {
    filter: brightness(0) invert(1);

    opacity: 1;
}


.floor-plan-modal .modal-body {
    padding: 25px;

    background: var(--light-bg);

    text-align: center;
}


.floor-plan-modal-image {
    display: block;

    width: 100%;
    max-height: 75vh;

    margin: 0 auto;

    object-fit: contain;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .floor-plan-image {
        height: 400px;

        padding: 20px;
    }

    .floor-plan-content {
        padding: 20px;
    }

    .floor-plan-content h3 {
        font-size: 28px;
    }

}


@media (max-width: 575.98px) {

    .floor-plan-image {
        height: 330px;
    }

    .floor-plan-content {
        align-items: flex-start;

        flex-direction: column;
    }

    .floor-plan-view {
        width: 100%;
    }

}
/* =========================================================
   SPECIFICATIONS
   ========================================================= */

.specifications-section {
    position: relative;

    background-image: url("../images/specification.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* =========================================================
   BLUE OVERLAY
   ========================================================= */

.specifications-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(18, 59, 96, 0.94) 0%,
            rgba(18, 59, 96, 0.88) 45%,
            rgba(18, 59, 96, 0.78) 100%
        );
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.specifications-intro {
    max-width: 360px;
}


.specifications-intro .section-title {
    color: var(--white);
}


.specifications-intro .section-text {
    margin-top: 25px;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   SPECIFICATIONS GRID
   ========================================================= */

.specifications-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);
}


/* =========================================================
   SPECIFICATION ITEM
   ========================================================= */

.specification-item {
    min-height: 150px;

    padding: 25px 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.2);
}


.specification-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}


.specification-item:nth-child(7),
.specification-item:nth-child(8) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}


.specification-item h3 {
    margin: 0 0 10px;

    color: var(--sai-gold);

     font-family: "Outfit", sans-serif;

    font-size: 25px;
    font-weight: 500;

    line-height: 1.2;
}


.specification-item p {
    max-width: 280px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   HOVER
   ========================================================= */

.specification-item h3 {
    transition: transform 0.3s ease;
}


.specification-item:hover h3 {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .specifications-intro {
        max-width: 100%;
    }

    .specifications-grid {
        margin-top: 10px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .specifications-section {
        background-position: center;
    }

    .specifications-grid {
        grid-template-columns: 1fr;
    }

    .specification-item {
        min-height: auto;

        padding: 22px 0;
    }

    .specification-item:nth-child(odd) {
        border-right: 0;
    }

    .specification-item:nth-child(7) {
        border-bottom: 0;
    }

    .specification-item:nth-child(8) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

}
/* =========================================================
   CONTACT SECTION
   ========================================================= */

.contact-section {
    background: var(--light-bg);
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.contact-content {
    height: 100%;

    padding: 70px 55px;

    background: var(--sai-blue);
}


.contact-content .section-title {
    color: var(--white);
}


.contact-content .section-text {
    max-width: 420px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 22px;

    margin-top: 40px;
}


.contact-detail {
    display: flex;

    align-items: center;

    gap: 15px;

    text-decoration: none;
}


.contact-detail .sai-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-color: rgba(210, 170, 58, 0.5);

    color: var(--sai-gold);
}


.contact-detail small {
    display: block;

    margin-bottom: 3px;

    color: var(--sai-gold);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;
}


.contact-detail strong {
    display: block;

    color: var(--white);

    font-size: 14px;
    font-weight: 500;

    line-height: 1.5;
}


.contact-detail:hover .sai-icon {
    background: var(--sai-gold);

    color: var(--white);

    border-color: var(--sai-gold);
}


/* =========================================================
   FORM WRAPPER
   ========================================================= */

.contact-form-wrapper {
    height: 100%;

    padding: 70px 55px;

    background: var(--white);
}


.contact-form-wrapper .section-heading {
    margin-bottom: 35px;
}


.contact-form-wrapper .section-title {
    font-size: clamp(32px, 3vw, 46px);
}


/* =========================================================
   FORM LABELS
   ========================================================= */

.contact-form .form-label {
    display: block;

    margin-bottom: 8px;

    color: var(--sai-blue);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.5px;
}


/* =========================================================
   FORM
   ========================================================= */

.contact-form .form-control,
.contact-form .form-select {
    min-height: 52px;
}


.contact-form textarea.form-control {
    min-height: 120px;

    padding-top: 14px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991.98px) {

    .contact-content,
    .contact-form-wrapper {
        padding: 55px 40px;
    }

}


@media (max-width: 575.98px) {

    .contact-content,
    .contact-form-wrapper {
        padding: 45px 25px;
    }

    .contact-form .btn-sai {
        width: 100%;
    }

}
/* =========================================================
   FLOATING CTA
   ========================================================= */

.floating-cta {
    position: fixed;

    top: 50%;
    right: 0;

    z-index: 999;

    display: flex;

    flex-direction: column;

    gap: 2px;

    transform: translateY(-50%);
}


/* =========================================================
   CTA BUTTON
   ========================================================= */

.floating-cta-btn {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    width: 52px;
    height: 52px;

    padding: 0;

    overflow: hidden;

    border: 0;

    color: var(--white);

    text-decoration: none;

    cursor: pointer;

    transition:
        width 0.35s ease,
        background 0.3s ease;
}


.floating-cta-btn i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    min-width: 52px;

    font-size: 20px;
}


.floating-cta-btn span {
    padding-right: 17px;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    opacity: 0;

    transition: opacity 0.2s ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.floating-cta-btn:hover {
    width: 125px;

    color: var(--white);
}


.floating-cta-btn:hover span {
    opacity: 1;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.floating-whatsapp {
    background: #25D366;
}


.floating-whatsapp:hover {
    background: #1faa52;
}


/* =========================================================
   CALL
   ========================================================= */

.floating-call {
    background: var(--sai-blue);
}


.floating-call:hover {
    background: #123d62;
}


/* =========================================================
   ENQUIRE
   ========================================================= */

.floating-enquire {
    background: var(--sai-gold);
}


.floating-enquire:hover {
    background: #b99732;
}


/* =========================================================
   ENQUIRY MODAL
   ========================================================= */

.enquiry-modal {
    border: 0;

    border-radius: 0;

    overflow: hidden;
}


.enquiry-modal .modal-header {
    padding: 30px 35px 20px;

    border-bottom: 1px solid var(--border-light);

    background: var(--white);
}


.enquiry-modal .modal-title {
    margin-top: 5px;

    color: var(--sai-blue);

     font-family: "Outfit", sans-serif;

    font-size: 34px;
    font-weight: 600;
}


.enquiry-modal .btn-close {
    margin-top: -25px;
}


.enquiry-modal .modal-body {
    padding: 20px 35px 35px;
}


.enquiry-modal-text {
    margin-bottom: 25px;

    color: var(--text-grey);

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   MODAL FORM
   ========================================================= */

.enquiry-form .form-label {
    margin-bottom: 7px;

    color: var(--sai-blue);

    font-size: 12px;
    font-weight: 600;
}


.enquiry-form .form-control,
.enquiry-form .form-select {
    min-height: 50px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .floating-cta {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        flex-direction: row;

        width: 100%;

        transform: none;
    }


    .floating-cta-btn {
        width: 33.333%;

        height: 52px;

        justify-content: center;
    }


    .floating-cta-btn span {
        padding-right: 0;

        opacity: 1;
    }


    .floating-cta-btn i {
        width: auto;
        min-width: auto;

        margin-right: 7px;

        font-size: 17px;
    }


    .floating-cta-btn:hover {
        width: 33.333%;
    }


    .enquiry-modal .modal-header {
        padding: 25px 25px 15px;
    }


    .enquiry-modal .modal-body {
        padding: 15px 25px 25px;
    }

}
/* =========================================================
   LOCATION MAP
   ========================================================= */

.location-map-section {
    width: 100%;

    margin: 0;

    padding: 0;

    background: var(--white);
}


.location-map {
    position: relative;

    width: 100%;

    height: 450px;

    overflow: hidden;
}


.location-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .location-map {
        height: 350px;
    }

}


@media (max-width: 575.98px) {

    .location-map {
        height: 300px;
    }

}
/* =========================================================
   CTA SEPARATOR
   ========================================================= */

.cta-separator {
    position: relative;

    padding: 85px 0;

    background: var(--sai-blue);

    overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND ELEMENT
   ========================================================= */

.cta-separator::before {
    content: "";

    position: absolute;

    top: -180px;
    right: -100px;

    width: 450px;
    height: 450px;

    border: 1px solid rgba(210, 170, 58, 0.15);

    border-radius: 50%;
}


.cta-separator::after {
    content: "";

    position: absolute;

    bottom: -220px;
    left: -120px;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}


/* =========================================================
   CONTENT
   ========================================================= */

.cta-separator-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}


.cta-separator .eyebrow {
    margin-bottom: 12px;
}


.cta-separator h2 {
    margin: 0;

    color: var(--white);

    font-family: "Outfit", sans-serif;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 500;

    line-height: 1.2;
}


.cta-separator h2 span {
    color: var(--sai-gold);
}


.cta-separator p {
    max-width: 650px;

    margin: 20px auto 0;

    color: rgba(255, 255, 255, 0.78);

    font-family: "Montserrat", sans-serif;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.cta-separator-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-top: 32px;
}


.cta-separator .btn-sai {
    min-width: 155px;
}


.btn-sai-outline {
    background: transparent;

    border: 1px solid var(--sai-gold);

    color: var(--sai-gold);
}


.btn-sai-outline:hover {
    background: var(--sai-gold);

    color: var(--white);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .cta-separator {
        padding: 65px 20px;
    }

    .cta-separator h2 {
        font-size: 34px;
    }

    .cta-separator p {
        font-size: 15px;
    }

    .cta-separator-buttons {
        flex-direction: column;

        width: 100%;
    }

    .cta-separator .btn-sai {
        width: 100%;
        max-width: 260px;
    }

}
/* =========================================================
   THANK YOU PAGE
   ========================================================= */

.thankyou-section {
    min-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 80px 20px;

    background: #f7f5ef;

    position: relative;

    overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND CIRCLES
   ========================================================= */

.thankyou-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -250px;
    right: -180px;

    border: 1px solid rgba(184, 145, 45, 0.12);

    border-radius: 50%;
}


.thankyou-section::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    bottom: -250px;
    left: -180px;

    border: 1px solid rgba(15, 55, 86, 0.08);

    border-radius: 50%;
}


/* =========================================================
   CARD
   ========================================================= */

.thankyou-card {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 680px;

    margin: 0 auto;

    padding: 65px 55px;

    text-align: center;

    background: var(--white);

    border: 1px solid rgba(184, 145, 45, 0.25);

    box-shadow: 0 20px 55px rgba(20, 40, 55, 0.10);
}


/* =========================================================
   SUCCESS ICON
   ========================================================= */

.thankyou-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--sai-gold);

    border-radius: 50%;

    color: var(--sai-gold);

    font-size: 34px;

    background: rgba(184, 145, 45, 0.04);
}


.thankyou-icon i {
    line-height: 1;
}


/* =========================================================
   HEADING
   ========================================================= */

.thankyou-card .eyebrow {
    display: block;

    margin-bottom: 10px;
}


.thankyou-card h1 {
    margin: 0;

    color: var(--sai-blue);

    font-family: "Outfit", sans-serif;

    font-size: clamp(42px, 5vw, 58px);

    font-weight: 500;

    line-height: 1.15;
}


/* =========================================================
   MESSAGE
   ========================================================= */

.thankyou-message {
    max-width: 500px;

    margin: 20px auto 0;

    color: var(--text-grey);

    font-family: "Montserrat", sans-serif;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   GOLD LINE
   ========================================================= */

.thankyou-card .gold-line {
    display: block;

    margin: 25px auto;
}


/* =========================================================
   ACTION BUTTONS
   ========================================================= */

.thankyou-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-top: 10px;
}


.thankyou-actions .btn-sai {
    min-width: 150px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .thankyou-section {
        padding: 50px 15px;
    }


    .thankyou-card {
        padding: 50px 25px;
    }


    .thankyou-icon {
        width: 65px;
        height: 65px;

        font-size: 30px;
    }


    .thankyou-message {
        font-size: 14px;

        line-height: 1.7;
    }


    .thankyou-actions {
        flex-direction: column;

        width: 100%;
    }


    .thankyou-actions .btn-sai {
        width: 100%;
        max-width: 260px;
    }

}
 /* =========================================================
    FLOOR PLANS — IMAGE ONLY CAROUSEL
    ========================================================= */

.sr-floorplans-section {
    width: 100%;
    padding: var(--section-padding) 0 0;
    background: var(--white);
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.sr-floorplans-heading {
    width: 100%;
    max-width: 900px;

    margin: 0 auto 45px;
    padding: 0 25px;

    text-align: center;
}

.sr-floorplans-heading .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   FULL WIDTH CAROUSEL
   ========================================================= */

.sr-floorplans-carousel {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* =========================================================
   SLIDE
   ========================================================= */

.sr-floorplan-slide {
    width: 100%;
    margin: 0;
    padding: 0;

    background: var(--white);

    overflow: hidden;
}


/* =========================================================
   FLOOR PLAN IMAGE
   ========================================================= */

.sr-floorplan-image {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;
    padding: 0;

    object-fit: contain;
}


/* =========================================================
   CAROUSEL ARROWS
   ========================================================= */

.sr-floorplan-arrow {
    width: 55px;
    height: 55px;

    top: 50%;
    bottom: auto;

    transform: translateY(-50%);

    opacity: 1;

    z-index: 10;
}


.sr-floorplan-prev {
    left: 25px;
}


.sr-floorplan-next {
    right: 25px;
}


.sr-floorplan-arrow-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    background: rgba(23, 74, 120, 0.9);

    color: var(--white);

    font-size: 20px;

    transition: var(--transition);
}


.sr-floorplan-arrow:hover .sr-floorplan-arrow-icon {
    background: var(--sai-gold);
}


/* =========================================================
   INDICATORS
   ========================================================= */

.sr-floorplan-dots {
    bottom: 18px;

    margin: 0;

    gap: 7px;
}


.sr-floorplan-dots button {
    width: 28px;
    height: 2px;

    margin: 0;

    border: 0;

    background: var(--sai-blue);

    opacity: 0.35;

    transition: var(--transition);
}


.sr-floorplan-dots button.active {
    width: 45px;

    background: var(--sai-gold);

    opacity: 1;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .sr-floorplans-heading {
        margin-bottom: 35px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .sr-floorplans-section {
        padding-top: 60px;
    }

    .sr-floorplans-heading {
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .sr-floorplan-prev {
        left: 12px;
    }

    .sr-floorplan-next {
        right: 12px;
    }

    .sr-floorplan-arrow {
        width: 42px;
        height: 42px;
    }

    .sr-floorplan-arrow-icon {
        width: 42px;
        height: 42px;

        font-size: 16px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .sr-floorplans-section {
        padding-top: 50px;
    }

    .sr-floorplan-arrow {
        width: 36px;
        height: 36px;
    }

    .sr-floorplan-arrow-icon {
        width: 36px;
        height: 36px;

        font-size: 13px;
    }

    .sr-floorplan-prev {
        left: 8px;
    }

    .sr-floorplan-next {
        right: 8px;
    }

}