/*=====================================================================
  SUPREME PROJECTS
  Production Stylesheet
  Website : https://century21acres.com
  Page    : /punawale-project
  Project : Supreme Rivana Punawale
  Version : 1.0 Production
  Author  : Century21Acres

  NOTE
  ----
  This stylesheet follows:
  ✔ Mobile First
  ✔ CSS Variables
  ✔ Performance Optimized
  ✔ SEO Friendly
  ✔ Future Ready
======================================================================*/



/*==================================================
= ROOT VARIABLES
==================================================*/

:root{

    /* Brand Colours */

    --primary:#0f172a;
    --primary-light:#1e293b;
    --secondary:#d4af37;
    --secondary-dark:#b68b1e;

    --white:#ffffff;
    --black:#000000;

    --text:#374151;
    --heading:#111827;

    --light:#f8fafc;
    --lighter:#fcfcfc;

    --border:#e5e7eb;

    --success:#22c55e;
    --danger:#ef4444;

    /* Luxury Gradients */

    --gold-gradient:
    linear-gradient(
        135deg,
        #fff3b0 0%,
        #f7d774 25%,
        #d4af37 50%,
        #b8860b 75%,
        #fff3b0 100%
    );

    --hero-overlay:
    linear-gradient(
        rgba(8,12,18,.80),
        rgba(8,12,18,.72)
    );

    --glass:
    rgba(255,255,255,.08);

    /* Shadow */

    --shadow-sm:
    0 8px 20px rgba(0,0,0,.08);

    --shadow:
    0 18px 45px rgba(0,0,0,.12);

    --shadow-lg:
    0 25px 60px rgba(0,0,0,.20);

    /* Radius */

    --radius-sm:8px;
    --radius:14px;
    --radius-lg:22px;
    --radius-xl:32px;
    --radius-round:999px;

    /* Transition */

    --transition:.35s ease;

    /* Container */

    --container:1320px;

    /* Header */

    --header-height:82px;

}


/*==================================================
= CSS RESET
==================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;

}


body{

    font-family:
    "Poppins",
    sans-serif;

    font-size:16px;

    line-height:1.7;

    color:var(--text);

    background:#ffffff;

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

}


/*==================================================
= IMAGES
==================================================*/

img{

    max-width:100%;

    display:block;

    height:auto;

}


/*==================================================
= LINKS
==================================================*/

a{

    color:inherit;

    text-decoration:none;

    transition:var(--transition);

}


/*==================================================
= LISTS
==================================================*/

ul,
ol{

    list-style:none;

}


/*==================================================
= BUTTONS
==================================================*/

button{

    font-family:inherit;

    border:none;

    cursor:pointer;

    background:none;

}


/*==================================================
= FORM ELEMENTS
==================================================*/

input,
textarea,
select{

    font:inherit;

}


/*==================================================
= SECTION SPACING
==================================================*/

section{

    position:relative;

    padding:60px 0;

}


/*==================================================
= CONTAINER
==================================================*/

.container{

    width:min(
        100% - 32px,
        var(--container)
    );

    margin-inline:auto;

}


/*==================================================
= GRID
==================================================*/

.grid{

    display:grid;

    gap:30px;

}


/*==================================================
= FLEX
==================================================*/

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    justify-content:center;

    align-items:center;

}

.flex-between{

    display:flex;

    justify-content:space-between;

    align-items:center;

}


/*==================================================
= HEADINGS
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--heading);

    line-height:1.1;

    font-weight:700;
    
    white-space:nowrap;

}


h1{

    font-size:clamp(2rem,4vw,3.4rem);

}

h2{

    font-size:clamp(1.7rem,3vw,2.5rem);

}

h3{

    font-size:clamp(1.35rem,2.8vw,2rem);

}


p{

    margin-bottom:18px;

}


/*==================================================
= UTILITIES
==================================================*/

.text-center{

    text-align:center;

}

.text-white{

    color:#fff;

}

.bg-light{

    background:var(--light);

}

.shadow{

    box-shadow:var(--shadow);

}

.radius{

    border-radius:var(--radius);

}

.radius-lg{

    border-radius:var(--radius-lg);

}

.overflow-hidden{

    overflow:hidden;

}

/*==================================================
= PART 1B.1
= HERO LAYOUT
= CAROUSEL
= OVERLAY
= GLASS PANEL
==================================================*/


/*--------------------------------------------------
MAIN HERO
--------------------------------------------------*/

.main-slider{

    position:relative;

    width:100%;

    min-height:100svh;

    overflow:hidden;

    background:var(--primary);

}


/*--------------------------------------------------
CAROUSEL
--------------------------------------------------*/

.main-slider .carousel-inner{

    position:relative;

    min-height:100svh;

}


.main-slider .carousel-item{

    position:relative;

    min-height:100svh;

    transition:transform .9s ease-in-out;

}


/*--------------------------------------------------
HERO IMAGES
--------------------------------------------------*/

.main-slider-img{

    width:100%;

    height:860px;

    object-fit:cover;

    object-position:center center;

}


/*--------------------------------------------------
LUXURY OVERLAY
--------------------------------------------------*/

.main-slider .carousel-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:var(--hero-overlay);

    z-index:1;

}


/* subtle bottom fade */

.main-slider .carousel-item::after{

    content:"";

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    height:180px;

    background:

    linear-gradient(

        transparent,

        rgba(15,23,42,.92)

    );

    z-index:2;

}


/*--------------------------------------------------
INDICATORS
--------------------------------------------------*/

/*----------------------------------
SLIDER INDICATORS
----------------------------------*/

/*----------------------------------
SLIDER INDICATORS
----------------------------------*/

.carousel-indicators{

    bottom:18px;

}

.carousel-indicators li{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#d4af37;

    opacity:.45;

}

.carousel-indicators .active{

    opacity:1;

}


/*--------------------------------------------------
INFO PANEL
--------------------------------------------------*/

.info-box{

    position:absolute;

    top:85px;

    left:40px;

    transform:none;

    width:470px;

    max-width:470px;

    padding:34px 30px;

    text-align:left;

    color:var(--white);

    background:rgba(10,18,35,.72);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:var(--radius-xl);

    box-shadow:var(--shadow-lg);

    overflow:hidden;

}


/* premium glow */

.info-box::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:inherit;

    padding:1px;

    background:linear-gradient(

        135deg,

        rgba(212,175,55,.55),

        rgba(255,255,255,.15),

        rgba(212,175,55,.35)

    );

    -webkit-mask:

        linear-gradient(#fff 0 0) content-box,

        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

            mask-composite:exclude;

    pointer-events:none;

}


/* soft light */

.info-box::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    top:-120px;

    right:-120px;

    border-radius:50%;

    background:

    radial-gradient(

        rgba(212,175,55,.22),

        transparent 70%

    );

    pointer-events:none;

}


/*--------------------------------------------------
STACKING
--------------------------------------------------*/

.info-box>*{

    position:relative;

    z-index:2;

}


/*--------------------------------------------------
SECTION SPACING
--------------------------------------------------*/

.info-box>*+*{

    margin-top:8px;

}


/*--------------------------------------------------
REMOVE EXTRA BOOTSTRAP SPACING
--------------------------------------------------*/

.info-box ul,

.info-box p{

    margin-bottom:0;

}


/*--------------------------------------------------
PREVENT IMAGE DRAG
--------------------------------------------------*/

.main-slider img{

    user-select:none;

    -webkit-user-drag:none;

}


/*--------------------------------------------------
FOCUS ACCESSIBILITY
--------------------------------------------------*/

.main-slider a:focus-visible,

.main-slider button:focus-visible{

    outline:3px solid var(--secondary);

    outline-offset:4px;

    border-radius:8px;

}


/*==================================================
= PART 1B.2A
= HERO TYPOGRAPHY
= STATUS
= TITLE
= DESCRIPTION
==================================================*/


/*--------------------------------------------------
BOOKING STATUS
--------------------------------------------------*/

.pro-status{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 24px;

    margin-bottom:24px;

    border-radius:var(--radius-round);

    background:var(--gold-gradient);

    color:var(--primary);

    font-size:.82rem;

    font-weight:800;

    letter-spacing:2px;

    text-transform:uppercase;

    box-shadow:
        0 10px 25px rgba(0,0,0,.18),
        0 0 18px rgba(212,175,55,.25);

}


/*--------------------------------------------------
MAIN TITLE
--------------------------------------------------*/

.pro-title{

    display:block;

    margin:0;

    color:var(--white);

    font-weight:800;

    font-size:clamp(2.20rem,4vw,3.50rem);

    line-height:1.05;

    letter-spacing:2px;

    text-transform:uppercase;

    text-wrap:balance;

    text-shadow:

        0 3px 15px rgba(0,0,0,.35);

}


/*--------------------------------------------------
LOCATION
--------------------------------------------------*/

.pro-add{

    display:block;

    margin-top:14px;

    margin-bottom:20px;

    color:#ffd33b !important;

    font-size:clamp(1.10rem,2vw,1.7rem);

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}


/*--------------------------------------------------
DESCRIPTION
--------------------------------------------------*/

.pro-desc{

    display:block;

    width:min(100%,640px);

    margin:0 auto;

    color:rgba(255,255,255,.94);

    font-size:1.05rem;

    line-height:1.90;

    font-weight:400;

    letter-spacing:.20px;

}


/*--------------------------------------------------
DEVELOPER
--------------------------------------------------*/

.pro-dev{

    display:inline-block;

    margin-top:26px;

    padding-top:16px;

    border-top:1px solid rgba(255,255,255,.12);

    color:rgba(255,255,255,.82);

    font-size:.95rem;

    font-style:italic;

    letter-spacing:.60px;

}


/*--------------------------------------------------
TEXT SELECTION
--------------------------------------------------*/

.pro-title::selection,
.pro-add::selection,
.pro-desc::selection,
.pro-dev::selection{

    background:var(--secondary);

    color:var(--primary);

}


/*--------------------------------------------------
SUBTLE FADE ANIMATION
--------------------------------------------------*/

.pro-status,
.pro-title,
.pro-add,
.pro-desc,
.pro-dev{

    animation:heroFadeUp .9s ease both;

}


.pro-title{

    animation-delay:.15s;

}

.pro-add{

    animation-delay:.30s;

}

.pro-desc{

    animation-delay:.45s;

}

.pro-dev{

    animation-delay:.60s;

}


/*--------------------------------------------------
KEYFRAME
--------------------------------------------------*/

@keyframes heroFadeUp{

    from{

        opacity:0;

        transform:translateY(26px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*--------------------------------------------------
LARGE DESKTOP
--------------------------------------------------*/

@media (min-width:1200px){

    .info-box{

    top:72px;
    left:28px;
    width:390px;
    max-width:390px;
    max-height:calc(100% - 145px);
    padding:24px 26px;
    overflow-y:auto;
    overflow-x:hidden;

    }

}


/*--------------------------------------------------
TABLET
--------------------------------------------------*/

@media (max-width:991px){

    .pro-title{

        letter-spacing:1px;

    }

    .pro-desc{

        font-size:1rem;

    }

}


/*--------------------------------------------------
MOBILE
--------------------------------------------------*/

@media (max-width:767px){

    .info-box{

        width:calc(100% - 24px);

        padding:28px 22px;

        border-radius:20px;

    }

    .pro-status{

        padding:8px 18px;

        font-size:.72rem;

        letter-spacing:1px;

        margin-bottom:18px;

    }

    .pro-title{

        font-size:clamp(2.5rem,3.6vw,4rem);

        line-height:1.05;
        
        letter-spacing:1px;

    }

    .pro-add{

        margin-top:10px;

        margin-bottom:16px;

        font-size:1.05rem;

    }

    .pro-desc{

        font-size:.95rem;

        line-height:1.75;

    }

    .pro-dev{

        margin-top:20px;

        font-size:.82rem;

    }

}

/*==================================================
= PART 1B.2B
= PRICE
= FEATURED BOX
= SPECIFICATIONS
= CTA BUTTON
==================================================*/


/*--------------------------------------------------
SPECIFICATION CARD
--------------------------------------------------*/

.pro-spec{

    width:min(100%,560px);

    margin:28px auto;

    padding:24px 28px;

    list-style:none;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(212,175,55,.22);

    border-left:4px solid var(--secondary);

    border-radius:var(--radius-lg);

    backdrop-filter:blur(10px);

    -webkit-backdrop-filter:blur(10px);

    box-shadow:0 16px 40px rgba(0,0,0,.18);

}


.pro-spec li{

    display:flex;

    align-items:center;

    gap:12px;

    color:rgba(255,255,255,.95);

    font-size:1rem;

    font-weight:500;

    line-height:1.75;

}


.pro-spec li+li{

    margin-top:14px;

}


.pro-spec .list-icon{

    width:28px;

    height:28px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    border-radius:50%;

    background:rgba(212,175,55,.18);

    color:var(--secondary);

    font-size:.95rem;

    box-shadow:0 0 10px rgba(212,175,55,.18);

}


/*--------------------------------------------------
FEATURED PROJECT
--------------------------------------------------*/

.info-box > div{

    width:min(100%,460px);

    margin:28px auto 0;

    padding:18px 22px;

    border-radius:18px;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(212,175,55,.22);

    box-shadow:0 18px 45px rgba(0,0,0,.18);

}


.info-box > div strong{

    display:block;

    color:var(--secondary);

    font-size:1.05rem;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:8px;

    text-transform:uppercase;

}


.info-box > div{

    color:#ffffff;

    font-size:1.30rem;

    font-weight:700;

}


/*--------------------------------------------------
PRICE LABEL
--------------------------------------------------*/

.pro-tag-line{

    display:block;

    margin-top:26px;

    color:rgba(255,255,255,.78);

    font-size:.95rem;

    font-weight:500;

    letter-spacing:2px;

    text-transform:uppercase;

}


/*--------------------------------------------------
PRICE
--------------------------------------------------*/

/*----------------------------------------------
HERO PRICE
----------------------------------------------*/

.hero-price{

    display:block;

    margin:18px auto 26px;

    text-align:center;

    font-size:clamp(1.60rem,2.5vw,2.20rem);

    font-weight:800;

    color:#ffd66b;

    letter-spacing:.5px;

    white-space:nowrap;

    text-shadow:0 2px 10px rgba(0,0,0,.35);

}


.pro-price::after{

    content:" Onwards";

    font-size:.30em;

    font-weight:500;

    color:var(--secondary);

    margin-left:6px;

    vertical-align:middle;

}


/*--------------------------------------------------
CTA WRAPPER
--------------------------------------------------*/

.micro-form-btn{

    width:min(100%,340px);

    margin:32px auto 0;
    
    padding:16px 40px;

    border-radius:50px;

    font-weight:800;

    letter-spacing:1px;

    text-transform:uppercase;

}


/*--------------------------------------------------
CTA BUTTON
--------------------------------------------------*/

.btn-info{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    width:100%;

    min-height:58px;

    padding:16px 28px;

    border-radius:999px !important;

    border:2px solid var(--secondary) !important;

    background:var(--gold-gradient) !important;

    color:var(--primary) !important;

    font-size:1rem;

    font-weight:800;

    letter-spacing:1px;

    text-transform:uppercase;

    transition:all .35s ease;

    overflow:hidden;

    box-shadow:
        0 18px 40px rgba(0,0,0,.18),
        0 0 24px rgba(212,175,55,.18);

}


/*--------------------------------------------------
BUTTON SHINE
--------------------------------------------------*/

.btn-info::before{

    content:"";

    position:absolute;

    top:0;

    left:-140%;

    width:60%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.55),
        transparent
    );

    transition:left .75s ease;

}


.btn-info:hover::before{

    left:150%;

}


/*--------------------------------------------------
BUTTON HOVER
--------------------------------------------------*/

.btn-info:hover{

    transform:translateY(-4px);

    box-shadow:
        0 24px 50px rgba(0,0,0,.24),
        0 0 30px rgba(212,175,55,.28);

}


.btn-info:active{

    transform:translateY(-1px);

}


.btn-info:focus-visible{

    outline:3px solid rgba(255,255,255,.60);

    outline-offset:4px;

}


/*--------------------------------------------------
MOBILE
--------------------------------------------------*/

@media (max-width:767px){

    .pro-spec{

        padding:20px;

    }

    .pro-spec li{

        font-size:.92rem;

    }

    .pro-price{

        font-size:2.45rem;

    }

    .micro-form-btn{

        width:100%;

    }

}


/*==================================================
 PART 1B.3
 HOVER STATES
 RESPONSIVE HERO
 TABLET
 MOBILE
 POLISH
==================================================*/


/*------------------------------------
 HERO BUTTON
------------------------------------*/

.main-slider .btn-info{

    transition:all .35s ease;

}

.main-slider .btn-info:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(0,0,0,.30);

}


/*------------------------------------
 FEATURE BOX
------------------------------------*/

.featured-box{

    transition:all .35s ease;

}

.featured-box:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 50px rgba(0,0,0,.28);

}


/*------------------------------------
 INFO PANEL
------------------------------------*/

.info-box{

    transition:all .45s ease;

}

    .main-slider:hover .info-box{

    transform:scale(1.01);

}


/*------------------------------------
 IMAGE ZOOM
------------------------------------*/

.main-slider img{

    transition:transform 8s ease;

}

.main-slider:hover img{

    transform:scale(1.05);

}


/*------------------------------------
 BETTER TEXT
------------------------------------*/

.pro-title{

    text-wrap:balance;

}

.pro-desc{

    text-wrap:pretty;

}


/*------------------------------------
 TABLET
------------------------------------*/

@media (max-width:991px){

.main-slider{

    min-height:860px;

}

.info-box{

    width:min(92%,620px);

    padding:34px;

}

.pro-title{

    font-size:clamp(2.3rem,6vw,3.5rem);

}

.pro-desc{

    font-size:1rem;

}

}


/*------------------------------------
 MOBILE
------------------------------------*/

@media (max-width:767px){

.main-slider{

    min-height:640px;

}

.info-box{

    top:82px;

    left:16px;

    right:16px;

    width:auto;

    max-width:none;

    max-height:none;

    transform:none;

    padding:18px;

    border-radius:18px;

    overflow:visible;

}

.pro-status{

    font-size:.72rem;

}

.pro-title{

    font-size:2rem;

    line-height:1.1;

    letter-spacing:1px;

    white-space:normal;

    word-break:normal;

}

.pro-add{

    font-size:1rem;

}

.pro-desc{

    font-size:.95rem;

    line-height:1.7;

}

.pro-dev{

    font-size:.82rem;

}

.featured-box{

    padding:14px 18px;

    margin:18px auto;

    max-width:430px;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(212,175,55,.35);

    backdrop-filter:blur(8px);

}

.pro-price{

    font-size:2.4rem;

}

}


/*------------------------------------
 SMALL MOBILE
------------------------------------*/

@media (max-width:480px){

.main-slider{

    min-height:600px;

}

.info-box{

    padding:20px;

}

.pro-title{

    font-size:1.7rem;

}

.pro-price{

    font-size:2rem;

}

.pro-desc{

    font-size:.90rem;

}

}


/*------------------------------------
 REDUCE MOTION
------------------------------------*/

@media (prefers-reduced-motion:reduce){

*{

animation:none!important;

transition:none!important;

scroll-behavior:auto!important;

}

}


/*------------------------------------
 SMOOTH FOCUS
------------------------------------*/

.main-slider button:focus{

outline:none;

box-shadow:0 0 0 4px rgba(255,211,59,.35);

}


/*------------------------------------
 POLISH
------------------------------------*/

.info-box{

backface-visibility:hidden;

-webkit-font-smoothing:antialiased;

}

.main-slider{

isolation:isolate;

}


/*--------------------------------------------------
LUXURY SECTION NAVIGATION
--------------------------------------------------*/

.pro-nav{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
    margin:40px auto 0;

}

.pro-nav a{

    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 26px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(201,169,97,.35);

    border-radius:40px;

    color:rgba(255,255,255,.88);

    font-weight:700;

    letter-spacing:1.2px;

    text-transform:uppercase;

    font-size:.88rem;

    transition:.35s ease;

    overflow:hidden;

    backdrop-filter:blur(10px);

}

.pro-nav a::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );

    transform:translateX(-120%);

    transition:.6s;

}

.pro-nav a:hover::before{

    transform:translateX(120%);

}

.pro-nav a:hover{

    color:#111;

    background:linear-gradient(
        135deg,
        #c9a961,
        #e7c98a
    );

    border-color:#e7c98a;

    transform:translateY(-3px);

    box-shadow:
        0 15px 35px rgba(201,169,97,.35);

}

.pro-nav a.active{

    color:#111;

    background:#c9a961;

    border-color:#c9a961;

}


/* ===========================================
   SPACING OPTIMISATION
=========================================== */

.pro-section{

    padding:80px 0;

}

.pro-container{

    margin-bottom:0;

}


/*==================================================
SUPREME PROJECTS OVERVIEW
==================================================*/

.project-section{

    padding:38px 0;

    margin:0;

}

.project-section+.project-section{

    margin-top:8px;

}

.project-divider{

    width:80px;

    height:3px;

    background:#d4af37;

    margin:12px 0 22px;

}

.project-subtitle{

    margin-bottom:18px;

}


.overview-title{

    font-size:clamp(2.2rem,3vw,3.4rem);

    line-height:1.15;

    white-space:nowrap;

    letter-spacing:.5px;

    text-align:center;

}

.overview-nav{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

    margin:40px 0;

}

.project-title{

    margin:0;

}

.project-title a{

    display:flex;

    align-items:center;

    justify-content:center;

    min-width:240px;

    padding:16px 30px;

    border-radius:50px;

    background:#071528;

    border:1px solid rgba(212,175,55,.35);

    color:#ffffff;

    font-size:1.05rem;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.project-title a:hover{

    background:#d4af37;

    color:#071528;

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(212,175,55,.30);

}


.launch-tag{

    display:inline-block;

    margin-left:8px;

    padding:4px 10px;

    border-radius:30px;

    background:#d4af37;

    color:#071528;

    font-size:.70rem;

    font-weight:700;

}

@media(max-width:767px){

.overview-title{

    white-space:normal;

    font-size:2rem;

}

.overview-nav{

    flex-direction:column;

    gap:12px;

}

.project-title a{

    width:100%;

    text-align:center;

}

.project-section{

    padding:30px 0;

}

}


/*------------------------------------------
OVERVIEW CONTAINER
------------------------------------------*/

.supreme-overview{

    padding:55px 0 35px;

    background:#fff;

}

.overview-heading{

    max-width:980px;

    margin:0 auto 35px;

    text-align:center;

}

.overview-subtitle{

    display:block;

    margin-bottom:12px;

    color:#c9a43c;

    font-size:.90rem;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

}

.overview-intro{

    max-width:900px;

    margin:auto;

    font-size:1.05rem;

    line-height:1.9;

    color:#555;

}


/*==================================================
PRICE & PLAN SELECTOR CARDS
==================================================*/

.project-selector{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:24px;

    margin:35px auto 50px;

    max-width:1200px;

}

/* First Row */

.selector-card:nth-child(1){

    grid-column:1 / span 2;

}

.selector-card:nth-child(2){

    grid-column:3 / span 2;

}

.selector-card:nth-child(3){

    grid-column:5 / span 2;

}


/* Second Row - Center */

.selector-card:nth-child(4){

    grid-column:2 / span 2;

}

.selector-card:nth-child(5){

    grid-column:4 / span 2;

}

.selector-card{

    display:flex;

    flex-direction:column;

    justify-content:center;

    min-height:180px;

    background:#ffffff;

    border:1px solid rgba(212,175,55,.18);

    border-radius:18px;

    padding:28px;

    text-align:center;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.selector-card:hover{

    transform:translateY(-6px);

    border-color:#d4af37;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.selector-icon{

    display:block;

    font-size:2rem;

    margin-bottom:14px;

}

.selector-card h4{

    font-size:1.08rem;

    font-weight:700;

    color:#071528;

    margin-bottom:12px;

}

.selector-card p{

    margin:0;

    font-size:.98rem;

    line-height:1.7;

}

.selector-card a{

    color:#0b1e3c;

    text-decoration:none;

    font-weight:700;

}

.selector-card a:hover{

    color:#c9a43c;

}

@media (max-width:991px){

.project-selector{

    grid-template-columns:repeat(2,1fr);

}

.selector-card{

    grid-column:auto !important;

}

}

@media (max-width:767px){

.project-selector{

    grid-template-columns:1fr;

}

}



/*==================================================
PRICE TABLE BUTTONS
==================================================*/

.table-pricing .premium-btn{

    min-width:210px;

    border-radius:50px !important;

    color:#ffffff !important;

    font-weight:700;

}

.table-pricing .premium-btn:hover{

    color:#071528 !important;

}


/*==================================================
LOCATION SECTION
==================================================*/

.project-location-row{

margin-top:35px;

margin-bottom:45px;

}

.location-card{

height:100%;

padding:35px 28px;

background:#fff;

border-radius:20px;

text-align:center;

border:1px solid rgba(212,175,55,.18);

box-shadow:0 15px 35px rgba(0,0,0,.06);

transition:.35s;

}

.location-card:hover{

transform:translateY(-8px);

border-color:#d4af37;

box-shadow:0 20px 45px rgba(0,0,0,.14);

}

.location-icon{

font-size:2.2rem;

margin-bottom:18px;

}

.location-card h4{

font-size:1.20rem;

font-weight:800;

letter-spacing:1px;

color:#071528;

margin-bottom:18px;

}

.location-card p{

line-height:1.9;

margin-bottom:18px;

color:#555;

}

.location-contact{

font-size:1.05rem;

font-weight:700;

margin-bottom:20px;

color:#071528;

}

.location-btn{

display:inline-block;

padding:12px 26px;

border-radius:40px;

background:#071528;

color:#fff;

font-weight:700;

text-decoration:none;

transition:.35s;

border:1px solid #071528;

}

.location-btn:hover{

background:#d4af37;

color:#071528;

border-color:#d4af37;

text-decoration:none;

}

@media(max-width:767px){

.location-card{

padding:28px 22px;

}

}


.connectivity-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:18px;

margin:35px 0 45px;

}

.connectivity-grid div{

padding:18px;

text-align:center;

background:#fafafa;

border-radius:14px;

font-weight:700;

border:1px solid rgba(212,175,55,.18);

transition:.3s;

}

.connectivity-grid div:hover{

background:#071528;

color:#d4af37;

}

@media(max-width:768px){

.connectivity-grid{

grid-template-columns:1fr;

}

}

/*==================================================
LUXURY GALLERY
==================================================*/

.gallery-thumb{

    width:100%;

    display:block;

    border-radius:18px;

    overflow:hidden;

    transition:.45s ease;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

}

.gallery-thumb:hover{

    transform:translateY(-8px) scale(1.03);

    box-shadow:0 22px 50px rgba(0,0,0,.22);

}

#gallery .col-lg-3,
#gallery .col-md-3,
#gallery .col-sm-6{

    margin-bottom:22px;

}

#gallery a{

    display:block;

    overflow:hidden;

    border-radius:18px;

}

#gallery a:hover{

    text-decoration:none;

}

/*==================================================
LUXURY FAQ
==================================================*/

.luxury-faq{

max-width:980px;

margin:50px auto;

}

.faq-item{

margin-bottom:18px;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

border:1px solid rgba(212,175,55,.25);

}

.faq-question{

width:100%;

background:#08172f;

color:#fff;

border:none;

padding:22px 28px;

display:flex;

justify-content:space-between;

align-items:center;

cursor:pointer;

font-size:1.08rem;

font-weight:700;

transition:.35s;

text-align:left;

}

.faq-question:hover{

background:#10264a;

}

.faq-icon{

font-size:28px;

font-weight:700;

color:#d4af37;

transition:.35s;

}

.faq-answer{

background:#fff;

max-height:0;

overflow:hidden;

transition:max-height .45s ease;

}

.faq-answer p{

padding:24px 28px;

margin:0;

line-height:1.9;

color:#444;

}

.faq-item.active .faq-answer{

max-height:500px;

}

.faq-item.active .faq-icon{

transform:rotate(45deg);

}

/*==================================================
ABOUT SECTION
==================================================*/

.about-cta{

    margin-top:35px;

    padding:28px;

    border-radius:18px;

    text-align:center;

    background:#08172f;

    color:#fff;

    border:1px solid rgba(212,175,55,.30);

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.about-cta h3{

    color:#d4af37;

    font-size:1.4rem;

    margin-bottom:12px;

}

.about-cta p{

    color:#f5f5f5;

    margin-bottom:18px;

    line-height:1.8;

}

.about-call{

    display:inline-block;

    padding:14px 34px;

    border-radius:40px;

    background:#d4af37;

    color:#08172f;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.about-call:hover{

    background:#fff;

    color:#08172f;

    text-decoration:none;

}

.form-heading{

    background:linear-gradient(135deg,#071528,#0d274d);

    color:#d4af37;

    padding:12px;

    border-radius:10px;

    border:1px solid rgba(212,175,55,.35);

    font-size:1rem;

    letter-spacing:.5px;

    text-transform:uppercase;

}

.form-row{

display:flex;

gap:8px;

}

.enquiry-location{

width:42%;

}

.form-row input{

flex:1;

}

@media(max-width:767px){

.form-row{

flex-direction:column;

}

.enquiry-location{

width:100%;

}

}

.privacy-line{

display:block;

margin-top:14px;

color:#777;

font-size:.82rem;

line-height:1.6;

}

.modal{
    z-index:99999 !important;
}

.modal-dialog{
    z-index:100000 !important;
    pointer-events:auto !important;
}

.modal-content{
    pointer-events:auto !important;
}

.modal-backdrop{
    z-index:99998 !important;
}

.micro-form-btn{

white-space:nowrap;

padding:14px 18px;

font-size:.95rem;

}

.form-group{

margin-bottom:10px;

}

.form-heading{

white-space:nowrap;

font-size:.92rem;

padding:10px 8px;

}

.privacy-line{

margin-top:8px;

}

.og-block .nav-item{

background:#071528;

color:#fff;

border:1px solid rgba(212,175,55,.35);

border-radius:10px;

margin-bottom:8px;

padding:12px;

transition:.35s;

cursor:pointer;

}

.og-block .nav-item:hover{

background:#d4af37;

color:#071528;

transform:translateY(-2px);

}


/*========================================
LUXURY POPUP
========================================*/

/*==================================================
COMPACT CENTRED SUPREME ENQUIRY POPUP
==================================================*/

body.lux-popup-open {
    overflow: hidden !important;
}


.lux-popup {
    position: fixed !important;
    inset: 0 !important;

    z-index: 999999 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 100% !important;

    padding: 16px !important;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.26s ease,
        visibility 0.26s ease;
}


.lux-popup.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.lux-overlay {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background: rgba(3, 11, 24, 0.76);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}


.lux-box {
    position: relative !important;
    inset: auto !important;

    z-index: 2;

    width: min(100%, 410px) !important;
    max-height: calc(100svh - 30px);

    margin: auto !important;
    padding: 21px 24px 20px !important;

    overflow-x: hidden;
    overflow-y: auto;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #d4af37 0%,
            #b88716 100%
        ) !important;

    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 21px !important;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.54),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);

    transform: translateY(14px) scale(0.98);

    transition: transform 0.28s ease;
}


.lux-popup.show .lux-box {
    transform: translateY(0) scale(1);
}


.lux-close {
    position: absolute;
    top: 7px;
    right: 10px;

    z-index: 5;

    width: 36px;
    height: 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: #ffffff;
    background: rgba(7, 21, 40, 0.28);

    border: 0;
    border-radius: 50%;

    font-size: 1.8rem;
    line-height: 1;

    cursor: pointer;
}


.lux-close:hover,
.lux-close:focus {
    color: #d4af37;
    background: #071528;
    outline: none;
}


.lux-head {
    margin: 0 0 15px;
    text-align: center;
}


.lux-popup-logo {
    display: block;

    width: min(190px, 68%);
    height: 62px;

    margin: 0 auto 8px;

    object-fit: contain;

    background: transparent !important;
}


.lux-head h2 {
    margin: 0;

    color: #071528 !important;

    font-size: 1.48rem;
    font-weight: 800;
    line-height: 1.2;

    white-space: normal !important;
}


.lux-head p {
    margin: 5px 0 0;

    color: rgba(7, 21, 40, 0.88);

    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
}


.lux-box form {
    margin: 0;
}


.lux-box input,
.lux-box select,
.lux-box textarea {
    display: block;

    width: 100% !important;

    margin: 0 0 10px !important;
    padding: 11px 13px !important;

    color: #ffffff !important;

    background: #071528 !important;

    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 9px !important;

    font-family: inherit;
    font-size: 0.88rem;
    line-height: 1.35;

    outline: none;

    box-shadow: none;

    transition:
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}


.lux-box select {
    min-height: 44px;
    cursor: pointer;
}


.lux-box select option {
    color: #071528;
    background: #ffffff;
}


.lux-box textarea {
    min-height: 62px;
    max-height: 100px;

    resize: vertical;
}


.lux-box input::placeholder,
.lux-box textarea::placeholder {
    color: rgba(255, 255, 255, 0.72) !important;
    opacity: 1;
}


.lux-box input:focus,
.lux-box select:focus,
.lux-box textarea:focus {
    border-color: #ffffff !important;

    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.16) !important;
}


.lux-submit {
    width: 100% !important;

    margin: 2px 0 0 !important;
    padding: 12px 17px !important;

    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #071528,
            #12345c
        ) !important;

    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50px !important;

    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.55px;
    text-transform: uppercase;

    cursor: pointer;

    box-shadow:
        0 10px 24px rgba(7, 21, 40, 0.30);

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}


.lux-submit:hover,
.lux-submit:focus {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(7, 21, 40, 0.40),
        0 0 15px rgba(255, 255, 255, 0.17);

    outline: none;
}


.lux-direct-call {
    display: block;

    margin-top: 10px;

    color: #071528 !important;

    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
}


.lux-direct-call:hover {
    color: #ffffff !important;
    text-decoration: none;
}


@media (max-width: 575px) {

    .lux-popup {
        padding: 11px !important;
    }

    .lux-box {
        width: min(100%, 390px) !important;
        max-height: calc(100svh - 22px);

        padding: 19px 17px 17px !important;

        border-radius: 18px !important;
    }

    .lux-popup-logo {
        width: min(175px, 65%);
        height: 55px;

        margin-bottom: 5px;
    }

    .lux-head {
        margin-bottom: 12px;
    }

    .lux-head h2 {
        font-size: 1.34rem;
    }

    .lux-head p {
        font-size: 0.76rem;
    }

    .lux-box input,
    .lux-box select,
    .lux-box textarea {
        margin-bottom: 8px !important;
        padding: 10px 12px !important;
    }

    .lux-box textarea {
        min-height: 56px;
    }

}


/*==================================================
 FINAL HERO CORRECTION
 Dynamic height + background-only carousel
 July 2026
==================================================*/

/*------------------------------------------
1. HERO HEIGHT FOLLOWS CONTENT
------------------------------------------*/

.main-slider {
    position: relative !important;
    width: 100% !important;

    height: auto !important;
    min-height: 0 !important;

    padding: clamp(28px, 5vw, 58px) 16px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
    isolation: isolate;

    background: #071528;
}


/*------------------------------------------
2. BACKGROUND CAROUSEL SEPARATE FROM CONTENT
------------------------------------------*/

.main-slider .hero-background-slider,
.main-slider > .carousel-inner {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;

    z-index: 0 !important;
}


.main-slider .carousel-item {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;

    display: block !important;

    opacity: 0;
    transition: opacity 1.4s ease-in-out !important;
    transform: none !important;
}


.main-slider .carousel-item.active {
    position: absolute !important;
    opacity: 1;
    z-index: 1;
}


/* Bootstrap cross-fade correction */

.main-slider.carousel-fade .carousel-item {
    opacity: 0;
}


.main-slider.carousel-fade .carousel-item.active,
.main-slider.carousel-fade .carousel-item-next.carousel-item-left,
.main-slider.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}


.main-slider.carousel-fade .active.carousel-item-left,
.main-slider.carousel-fade .active.carousel-item-right {
    opacity: 0;
}


/*------------------------------------------
3. BACKGROUND IMAGE BRIGHTNESS + KEN BURNS
------------------------------------------*/

.main-slider .main-slider-img {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;

    object-fit: cover !important;
    object-position: center center !important;

    opacity: 1 !important;
    filter: brightness(0.94) contrast(1.03) saturate(1.04);

    transform: scale(1);
    transition: none !important;

    user-select: none;
    -webkit-user-drag: none;
}


.main-slider .carousel-item.active .main-slider-img {
    animation: supremeKenBurns 8s ease-out both;
}


@keyframes supremeKenBurns {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.075);
    }

}


/* Remove old hover-only image zoom */

.main-slider:hover .main-slider-img,
.main-slider:hover img {
    transform: none;
}


/*------------------------------------------
4. LIGHT READABILITY OVERLAY
------------------------------------------*/

.main-slider .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(4, 13, 28, 0.30),
            rgba(4, 13, 28, 0.12),
            rgba(4, 13, 28, 0.20)
        ) !important;

    pointer-events: none;
}


.main-slider .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;

    width: auto !important;
    height: auto !important;

    z-index: 3;

    background:
        linear-gradient(
            180deg,
            rgba(4, 13, 28, 0.08),
            rgba(4, 13, 28, 0.20)
        ) !important;

    pointer-events: none;
}


/*------------------------------------------
5. PERMANENT CONTENT LAYER
------------------------------------------*/

.hero-content-layer {
    position: relative;
    z-index: 10;

    width: min(100%, 760px);

    margin: 0 auto;
}

.section p{
    padding-left:18px;
    padding-right:18px;
}

/*------------------------------------------
6. PERMANENTLY BRIGHT CONTENT PANEL
------------------------------------------*/

.main-slider .info-box {
    position: relative !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    width: 100% !important;
    max-width: 760px !important;

    margin: 0 auto !important;
    padding: clamp(25px, 4vw, 42px) !important;

    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;

    text-align: center;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            rgba(7, 21, 40, 0.93),
            rgba(10, 29, 52, 0.89)
        ) !important;

    border: 1px solid rgba(212, 175, 55, 0.52) !important;
    border-radius: 28px !important;

    box-shadow:
        0 24px 65px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

    overflow: hidden;

    transition: none !important;
}


/* Never scale or fade content panel */

.main-slider:hover .info-box,
.main-slider .info-box:hover {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
}


/* Keep every content element fully visible */

.main-slider .info-box > * {
    position: relative;
    z-index: 2;

    opacity: 1 !important;
    filter: none !important;
}


/* Remove previous full-content entrance animation */

.main-slider .pro-title,
.main-slider .pro-add,
.main-slider .featured-box,
.main-slider .hero-price {
    animation: none !important;
}


/*------------------------------------------
7. BOOKING OPEN — ONLY BADGE PULSES
------------------------------------------*/

.main-slider .pro-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0 0 22px !important;
    padding: 10px 25px;

    color: #071528;
    background:
        linear-gradient(
            135deg,
            #fff2a8,
            #d4af37,
            #f7dc76
        );

    border-radius: 50px;

    font-size: clamp(0.72rem, 2vw, 0.84rem);
    font-weight: 800;
    letter-spacing: 1.8px;
    line-height: 1.2;
    text-transform: uppercase;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.22),
        0 0 16px rgba(212, 175, 55, 0.30);

    animation: bookingOpenPulse 2.8s ease-in-out infinite !important;
}


@keyframes bookingOpenPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 8px 24px rgba(0, 0, 0, 0.22),
            0 0 12px rgba(212, 175, 55, 0.25);
    }

    50% {
        transform: scale(1.035);
        box-shadow:
            0 10px 28px rgba(0, 0, 0, 0.25),
            0 0 24px rgba(212, 175, 55, 0.48);
    }

}


/*------------------------------------------
8. HERO TYPOGRAPHY
------------------------------------------*/

.main-slider .pro-title {
    display: block;

    margin: 0 !important;

    color: #ffffff;

    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    white-space: normal !important;
    overflow-wrap: normal;
    word-break: normal;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.38);
}


.main-slider .pro-add {
    display: block;

    margin: 13px 0 23px !important;

    color: #d4af37 !important;

    font-size: clamp(1.05rem, 2.4vw, 1.55rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    white-space: normal !important;
}


/*------------------------------------------
9. COMPACT PREMIUM DEVELOPMENTS AREA
------------------------------------------*/

.main-slider .featured-box,
.main-slider .info-box > .featured-box {
    width: min(100%, 560px) !important;

    margin: 0 auto !important;
    padding: 20px 20px !important;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;

    color: #ffffff;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.035)
        ) !important;

    border: 1px solid rgba(212, 175, 55, 0.26) !important;
    border-radius: 18px !important;

    box-shadow: none !important;

    transform: none !important;
    transition: none !important;
}


.main-slider .featured-box:hover {
    transform: none !important;
    box-shadow: none !important;
}


.main-slider .featured-box small {
    display: block;

    margin: 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: clamp(0.82rem, 2vw, 0.98rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.main-slider .featured-box strong {
    display: block;

    margin: 0;

    color: #d4af37;

    font-size: clamp(0.88rem, 2.1vw, 1.08rem);
    font-weight: 800;
    line-height: 1.6;
    letter-spacing: 0.35px;

    white-space: normal !important;
    overflow-wrap: normal;
    word-break: normal;
}


.main-slider .featured-box span {
    display: block;

    color: rgba(255, 255, 255, 0.82);

    font-size: clamp(0.82rem, 2vw, 0.96rem);
    font-style: italic;
    line-height: 1.4;
}


/*------------------------------------------
10. HERO PRICE
------------------------------------------*/

.main-slider .hero-price {
    width: auto !important;

    margin: 22px auto 0 !important;
    padding: 0 !important;

    color: #ffffff;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;

    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.25px;

    white-space: normal !important;

    box-shadow: none !important;
}


/*------------------------------------------
11. PRIMARY CTA — SUBTLE IDLE GLOW
------------------------------------------*/

.main-slider .hero-primary-cta,
.main-slider .micro-form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto !important;
    min-width: min(100%, 270px);

    margin: 22px auto 0 !important;
    padding: 14px 28px !important;

    color: #071528 !important;

    background:
        linear-gradient(
            135deg,
            #f8e38a,
            #d4af37,
            #f5d76e
        ) !important;

    border: 0 !important;
    border-radius: 50px !important;

    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.65px;
    text-transform: uppercase;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.26),
        0 0 0 rgba(212, 175, 55, 0);

    animation: heroCtaGlow 3.4s ease-in-out infinite;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease !important;
}


.main-slider .hero-primary-cta:hover,
.main-slider .micro-form-btn:hover {
    color: #071528 !important;

    transform: translateY(-3px) !important;

    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.32),
        0 0 22px rgba(212, 175, 55, 0.40) !important;
}


@keyframes heroCtaGlow {

    0%,
    100% {
        box-shadow:
            0 12px 28px rgba(0, 0, 0, 0.26),
            0 0 8px rgba(212, 175, 55, 0.10);
    }

    50% {
        box-shadow:
            0 14px 32px rgba(0, 0, 0, 0.29),
            0 0 20px rgba(212, 175, 55, 0.33);
    }

}


/*------------------------------------------
12. INDICATORS
------------------------------------------*/

.main-slider .hero-indicators,
.main-slider .carousel-indicators {
    position: absolute;

    right: 0;
    bottom: 10px;
    left: 0;

    z-index: 20;

    margin: 0;
}


.main-slider .carousel-indicators li {
    width: 9px;
    height: 9px;

    margin: 0 5px;

    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.35);

    cursor: pointer;
}


.main-slider .carousel-indicators li.active {
    background: #d4af37;
    border-color: #d4af37;

    transform: scale(1.18);
}


/*------------------------------------------
13. TABLET
------------------------------------------*/

/*------------------------------------------
14. MOBILE
------------------------------------------*/

@media (max-width: 767px) {

    .main-slider {
        height: auto !important;
        min-height: 0 !important;

        padding: 22px 14px 34px !important;

        align-items: flex-start !important;
    }

    .hero-content-layer {
        width: 100%;
    }

    .main-slider .info-box {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 26px 20px !important;

        transform: none !important;

        border-radius: 22px !important;
    }

    .main-slider .pro-status {
        margin-bottom: 20px !important;
        padding: 9px 20px;
    }

    .main-slider .pro-title {
        font-size: clamp(1.85rem, 8.6vw, 2.55rem);
        line-height: 1.12;
        letter-spacing: 0.6px;
    }

    .main-slider .pro-add {
        margin: 12px 0 20px !important;
        font-size: 1.08rem;
    }

    .main-slider .featured-box,
    .main-slider .info-box > .featured-box {
        padding: 17px 14px !important;
        gap: 8px;
    }

    .main-slider .featured-box strong {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .main-slider .hero-price {
        margin-top: 20px !important;
        font-size: 1.28rem;
    }

    .main-slider .hero-primary-cta,
    .main-slider .micro-form-btn {
        width: 100% !important;
        min-width: 0;

        margin-top: 20px !important;
    }

}


/*------------------------------------------
15. SMALL MOBILE
------------------------------------------*/

@media (max-width: 380px) {

    .main-slider {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .main-slider .info-box {
        padding: 23px 16px !important;
    }

    .main-slider .pro-title {
        font-size: 1.7rem;
    }

    .main-slider .featured-box strong {
        font-size: 0.84rem;
    }

}


/*------------------------------------------
16. ACCESSIBILITY — REDUCED MOTION
------------------------------------------*/

@media (prefers-reduced-motion: reduce) {

    .main-slider .carousel-item {
        transition-duration: 0.01ms !important;
    }

    .main-slider .carousel-item.active .main-slider-img,
    .main-slider .pro-status,
    .main-slider .hero-primary-cta,
    .main-slider .micro-form-btn {
        animation: none !important;
    }

}

/*==================================================
 OVERVIEW ALIGNMENT + HEADING WRAPPING CORRECTION
==================================================*/

/* Proper left and right breathing space */

.supreme-overview {
    padding-top: 50px;
    padding-bottom: 38px;
}


.supreme-overview > .container {
    width: 100%;
    max-width: 1200px;

    margin-right: auto;
    margin-left: auto;

    padding-right: clamp(18px, 4vw, 42px) !important;
    padding-left: clamp(18px, 4vw, 42px) !important;
}


/*
The project sections are presently outside the first .container
but remain inside .supreme-overview.
Therefore, they require their own side spacing.
*/

.supreme-overview > .project-section {
    width: 100%;
    max-width: 1200px;

    margin-right: auto;
    margin-left: auto;

    padding-right: clamp(18px, 4vw, 42px) !important;
    padding-left: clamp(18px, 4vw, 42px) !important;
}


/* Paragraph alignment */

.supreme-overview p,
.supreme-overview .overview-intro,
.supreme-overview .project-section p {
    max-width: 100%;

    padding-right: 0;
    padding-left: 0;

    overflow-wrap: break-word;
}


/* Correct title and subheading wrapping */

.overview-title,
.project-title,
.project-subtitle,
.section-h2,
.section-h3,
.about-cta h3 {
    max-width:900px;

    margin-left:auto;
    margin-right:auto;

    line-height:1.22;

    text-wrap:balance;
}


/* Prevent links inside headings from forcing one line */

.project-title a,
.overview-nav a {
    white-space: normal !important;

    overflow-wrap: break-word;
    word-break: normal;

    text-align: center;
}


/* Section subheading line-height */

.section-h3,
.project-subtitle {
    line-height: 1.5 !important;
}


/* Mobile alignment */

@media (max-width: 767px) {

    .supreme-overview {
        padding-top: 38px;
        padding-bottom: 28px;
    }

    .supreme-overview > .container,
    .supreme-overview > .project-section {
        padding-right: 18px !important;
        padding-left: 18px !important;
    }

    .overview-intro,
    .supreme-overview .project-section p {
        font-size: 0.96rem;
        line-height: 1.78;

        text-align: left !important;
    }

    .overview-title {
        font-size: clamp(1.75rem, 8vw, 2.1rem);
        line-height: 1.25;
    }

    .project-subtitle,
    .section-h3 {
        font-size: 0.95rem;
        line-height: 1.55 !important;
    }

}

/*==================================================
 FINAL CENTRED ENQUIRY POPUP
==================================================*/

body.lux-popup-open {
    overflow: hidden;
}


.lux-popup {
    position: fixed;
    inset: 0;

    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.28s ease,
        visibility 0.28s ease;
}


.lux-popup.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.lux-overlay {
    position: absolute;
    inset: 0;

    width: auto;
    height: auto;

    background: rgba(3, 10, 22, 0.78);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}


.lux-box {
    position: relative;
    z-index: 2;

    width: min(100%, 480px);
    max-height: calc(100svh - 36px);

    padding: 28px 30px;

    overflow-y: auto;
    overscroll-behavior: contain;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #071528,
            #0d2340
        );

    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 23px;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.58),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    transform: translateY(18px) scale(0.98);

    transition: transform 0.3s ease;
}


.lux-popup.show .lux-box {
    transform: translateY(0) scale(1);
}


.lux-close {
    position: absolute;
    top: 9px;
    right: 14px;

    z-index: 5;

    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: #ffffff;
    background: transparent;
    border: 0;
    border-radius: 50%;

    font-size: 2rem;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;
}


.lux-close:hover,
.lux-close:focus {
    color: #d4af37;
    background: rgba(255, 255, 255, 0.06);
    outline: none;
}


.lux-head {
    margin-bottom: 21px;
    text-align: center;
}


.lux-popup-logo {
    display: block;

    width: min(230px, 75%);
    height: auto;

    margin: 0 auto 13px;

    padding: 8px 12px;

    background: #ffffff;
    border-radius: 10px;

    object-fit: contain;
}


.lux-head h2 {
    margin: 0;

    color: #d4af37;

    font-size: clamp(1.28rem, 4vw, 1.65rem);
    font-weight: 800;
    line-height: 1.25;

    white-space: normal;
    text-wrap: balance;
}


.lux-head p {
    margin: 8px auto 0;

    max-width: 390px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.88rem;
    line-height: 1.55;
}


.lux-form-group {
    margin-bottom: 13px;
}


.lux-form-group label {
    display: block;

    margin: 0 0 6px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 0.79rem;
    font-weight: 700;
    line-height: 1.3;
}


.lux-box input,
.lux-box select,
.lux-box textarea {
    display: block;

    width: 100%;

    margin: 0;
    padding: 12px 13px;

    color: #ffffff;
    background: #102846;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;

    font-family: inherit;
    font-size: 0.93rem;
    line-height: 1.4;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.lux-box select {
    min-height: 47px;
    cursor: pointer;
}


.lux-box select option {
    color: #071528;
    background: #ffffff;
}


.lux-box textarea {
    min-height: 72px;
    resize: vertical;
}


.lux-box input::placeholder,
.lux-box textarea::placeholder {
    color: rgba(255, 255, 255, 0.52);
}


.lux-box input:focus,
.lux-box select:focus,
.lux-box textarea:focus {
    background: #132f52;

    border-color: #d4af37;

    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}


.lux-mobile-help {
    display: block;

    margin-top: 5px;

    color: rgba(255, 255, 255, 0.59);

    font-size: 0.71rem;
    line-height: 1.4;
}


.lux-submit {
    width: 100%;

    margin-top: 4px;
    padding: 14px 20px;

    color: #071528;

    background:
        linear-gradient(
            135deg,
            #f5df7a,
            #d4af37,
            #f3d66a
        );

    border: 0;
    border-radius: 50px;

    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.45px;
    text-transform: uppercase;

    cursor: pointer;

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.lux-submit:hover,
.lux-submit:focus {
    transform: translateY(-2px);

    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.32),
        0 0 18px rgba(212, 175, 55, 0.28);

    outline: none;
}


.lux-privacy {
    margin: 11px 0 0;

    color: rgba(255, 255, 255, 0.56);

    font-size: 0.69rem;
    line-height: 1.45;
    text-align: center;
}


@media (max-width: 575px) {

    .lux-popup {
        align-items: center;
        padding: 12px;
    }

    .lux-box {
        max-height: calc(100svh - 24px);

        padding: 24px 18px 20px;

        border-radius: 19px;
    }

    .lux-popup-logo {
        width: min(205px, 72%);
    }

    .lux-head {
        margin-bottom: 17px;
    }

    .lux-form-group {
        margin-bottom: 11px;
    }

    .lux-box input,
    .lux-box select,
    .lux-box textarea {
        padding: 11px 12px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .lux-popup,
    .lux-box,
    .lux-submit {
        transition: none;
    }

}

/*==================================================
HERO MOBILE POSITION + BOOKING BADGE CORRECTION
==================================================*/

/*
Prevents the Booking Open badge from being hidden
under the fixed/sticky website header.
*/

.main-slider {
    box-sizing: border-box !important;
    padding-top: clamp(38px, 6vw, 58px) !important;
}


.hero-content-layer {
    position: relative !important;
    z-index: 20 !important;
}


.main-slider .info-box {
    margin-top: 0 !important;
    overflow: visible !important;
}


/* Booking Open — gold background and white text */

.main-slider .pro-status {
    position: relative !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    margin: 0 auto 22px !important;
    padding: 10px 25px !important;

    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #a87808 0%,
            #d4af37 45%,
            #b9850c 100%
        ) !important;

    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50px !important;

    font-weight: 800;
    letter-spacing: 1.7px;

    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.42);

    box-shadow:
        0 9px 24px rgba(0, 0, 0, 0.28),
        0 0 16px rgba(212, 175, 55, 0.32);

    transform-origin: center;
    animation: supremeBookingPulse 2.8s ease-in-out infinite !important;
}


@keyframes supremeBookingPulse {

    0%,
    100% {
        transform: scale(1);

        box-shadow:
            0 9px 24px rgba(0, 0, 0, 0.28),
            0 0 12px rgba(212, 175, 55, 0.24);
    }

    50% {
        transform: scale(1.035);

        box-shadow:
            0 11px 28px rgba(0, 0, 0, 0.30),
            0 0 22px rgba(212, 175, 55, 0.44);
    }

}


/* Mobile correction */

@media (max-width: 767px) {

    .main-slider {
        padding-top: 32px !important;
        padding-right: 14px !important;
        padding-bottom: 35px !important;
        padding-left: 14px !important;
    }

    .main-slider .info-box {
        margin-top: 0 !important;
        padding-top: 27px !important;
    }

    .main-slider .pro-status {
        margin-top: 0 !important;
    }

}

/*==================================================
HERO PROJECT LOCATION LIST
==================================================*/

.hero-project-list {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 8px 20px;

    margin: 4px auto 2px;
}


.hero-project-list strong {
    display: inline-flex !important;
    align-items: baseline;
    justify-content: center;

    margin: 0 !important;

    color: #d4af37 !important;

    font-size: clamp(0.82rem, 1.8vw, 1rem) !important;
    font-weight: 800;
    line-height: 1.5 !important;
    letter-spacing: 0.25px;

    white-space: nowrap !important;
}


.hero-project-list strong span {
    margin-left: 5px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 0.82em;
    font-weight: 600;
    text-transform: none;
}


.hero-developer {
    display: block !important;

    margin-top: 9px !important;

    color: rgba(255, 255, 255, 0.86) !important;

    font-size: 0.91rem !important;
    font-style: italic;
    font-weight: 600;
}


@media (max-width: 767px) {

    .hero-project-list {
        flex-direction: column;
        gap: 5px;

        margin-top: 2px;
    }

    .hero-project-list strong {
        width: 100%;

        font-size: 0.91rem !important;
        line-height: 1.45 !important;
    }

}

/*==================================================
CTA ANIMATION — PREMIUM AND LIMITED
==================================================*/

.main-slider .hero-primary-cta,
.main-slider .micro-form-btn {
    animation: supremeHeroButtonGlow 3.2s ease-in-out infinite !important;
}


@keyframes supremeHeroButtonGlow {

    0%,
    100% {
        box-shadow:
            0 12px 28px rgba(0, 0, 0, 0.28),
            0 0 7px rgba(212, 175, 55, 0.12);
    }

    50% {
        box-shadow:
            0 15px 32px rgba(0, 0, 0, 0.31),
            0 0 20px rgba(212, 175, 55, 0.36);
    }

}


/* View Layout: animate only during interaction */

.price-click,
[data-fancybox].btn {
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease !important;
}


.price-click:hover,
.price-click:focus,
[data-fancybox].btn:hover,
[data-fancybox].btn:focus {
    transform: translateY(-2px) !important;

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.20),
        0 0 13px rgba(212, 175, 55, 0.24);
}


/* Touch feedback */

.price-click:active,
[data-fancybox].btn:active {
    transform: scale(0.98) !important;
}


/*==================================================
MICRO SIDE ACTION BUTTON CORRECTION
==================================================*/

.micro-side .og-block {
    align-items: stretch;
}


.micro-side .og-block .nav-item {
    display: flex;
    align-items: stretch;
    justify-content: center;
}


.micro-side .og-action-btn {
    width: 100%;
    min-height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 12px 8px;

    color: inherit;
    background: transparent;
    border: 0;

    font: inherit;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}


.micro-side .og-action-btn:hover,
.micro-side .og-action-btn:focus {
    color: #b68d40;
    background: rgba(182, 141, 64, 0.06);

    transform: translateY(-2px);

    outline: none;
    text-decoration: none;
}


.micro-side .og-action-btn strong {
    display: block;

    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
}


.micro-side .og-whatsapp-btn {
    color: inherit;
}


.micro-side .og-whatsapp-btn:hover,
.micro-side .og-whatsapp-btn:focus {
    color: #128c4a;
}


.micro-side .action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 1.35rem;
}


@media (max-width: 575px) {

    .micro-side .og-action-btn {
        padding: 10px 5px;
    }

    .micro-side .og-action-btn strong {
        font-size: 0.76rem;
    }

}

/*==================================================
COMPACT DESKTOP RIGHT-SIDE PANEL
==================================================*/

.micro-side {
    width: 100%;

    padding: 8px 10px 12px !important;

    background: #ffffff;
}


/* Allow the complete panel to remain usable */

.micro-side,
.micro-side * {
    box-sizing: border-box;
}


/*------------------------------------------
TOP ACTIONS — SINGLE HORIZONTAL ROW
------------------------------------------*/

.side-action-list {
    display: flex;
    flex-direction: column;
    gap: 7px;

    width: 100%;

    margin: 0 0 7px;
}


.side-action-item {
    width: 100%;
    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 8px 12px;

    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #071528,
            #102a49
        ) !important;

    border: 1px solid rgba(212, 175, 55, 0.65);
    border-radius: 10px;

    font: inherit;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.side-action-item:hover,
.side-action-item:focus {
    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #102d50,
            #19416f
        ) !important;

    border-color: #d4af37;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(7, 21, 40, 0.23),
        0 0 10px rgba(212, 175, 55, 0.24);

    outline: none;
}


.side-action-item .action-icon {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 1.15rem;
    line-height: 1;
}


.side-action-item strong {
    margin: 0;

    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.2;

    white-space: nowrap;
}


.side-whatsapp-item .action-icon {
    color: #25d366;
}


/*------------------------------------------
COMPACT CALLBACK BUTTON
------------------------------------------*/

.side-callback-btn {
    width: 100%;
    min-height: 39px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin: 0;
    padding: 8px 12px;

    color: #071528;

    background:
        linear-gradient(
            135deg,
            #fff0a6,
            #d4af37,
            #f3d96d
        );

    border: 1px solid #c79513;
    border-radius: 50px;

    font: inherit;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.35px;
    text-transform: uppercase;

    cursor: pointer;

    box-shadow: 0 7px 16px rgba(7, 21, 40, 0.17);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.side-callback-btn:hover,
.side-callback-btn:focus {
    color: #071528;

    transform: translateY(-2px);

    box-shadow:
        0 10px 22px rgba(7, 21, 40, 0.24),
        0 0 12px rgba(212, 175, 55, 0.23);

    outline: none;
}


/*------------------------------------------
RIGHT-SIDE ENQUIRY FORM
------------------------------------------*/

.side-form-area {
    margin-top: 10px;
    padding: 12px 11px 10px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f7f8fa
        );

    border: 1px solid rgba(7, 21, 40, 0.11);
    border-radius: 12px;

    box-shadow: 0 8px 22px rgba(7, 21, 40, 0.08);
}


.side-form-area .form-heading{

display:block;

text-align:center;

font-size:20px;

font-weight:700;

color:#071528;

margin-bottom:8px;

}


.side-form-subheading {
    display: block;

    margin: 3px 0 9px;

    color: #6a7280;

    font-size: 0.68rem;
    line-height: 1.3;
    text-align: center;
}


.side-form-area .side_frm {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;
}


.side-form-area .form-group {
    margin-bottom: 7px !important;
}


.side-form-area .form-control {
    width: 100% !important;
    min-height: 36px !important;

    margin: 0 !important;
    padding: 8px 9px !important;

    color: #071528;

    background: #ffffff;

    border: 1px solid #d8dde5;
    border-radius: 7px !important;

    font-size: 0.76rem;
    line-height: 1.3;

    box-shadow: none;
}


.side-form-area textarea.form-control {
    min-height: 50px !important;
    max-height: 75px;

    resize: vertical;
}


.side-form-area .form-control:focus {
    border-color: #d4af37;

    box-shadow:
        0 0 0 3px rgba(212, 175, 55, 0.13);
}


.side-form-submit {
    width: 100% !important;
    min-height: 38px;

    margin: 1px 0 0 !important;
    padding: 9px 12px !important;

    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #071528,
            #12345c
        ) !important;

    border: 0 !important;
    border-radius: 50px !important;

    font-size: 0.76rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    box-shadow: 0 7px 17px rgba(7, 21, 40, 0.21);
}


.side-form-submit:hover,
.side-form-submit:focus {
    color: #ffffff !important;

    transform: translateY(-1px);

    box-shadow:
        0 10px 22px rgba(7, 21, 40, 0.29);
}


.side-form-area .privacy-line {
    display: block;

    margin-top: 7px;

    color: #757d89;

    font-size: 0.61rem;
    line-height: 1.3;
    text-align: center;
}


/*==================================================
DESKTOP / 14-INCH LAPTOP OPTIMISATION
==================================================*/

@media (min-width:992px) and (max-height:820px){

    /* Right side panel */

 .hero-side-column {
    width: 300px;
    min-width: 300px;

    padding: 5px;
}


.hero-desktop-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
}


.hero-side-column .micro-side {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;

    margin: 0 !important;

    overflow: visible !important;
}

    .side-action-list{
        gap:5px;
    }

    .side-action-item{
        min-height:40px;
        padding:6px 12px;
    }

    .side-action-item strong{
        font-size:.71rem;
    }

    .side-callback-btn{
        min-height:36px;
        padding:7px 12px;
    }

    .side-form-area{
        margin-top:7px;
        padding:9px 11px 8px;
    }

    .side-form-area .form-group{
        margin-bottom:6px !important;
    }

    .side-form-area .form-control{
        min-height:33px !important;
        padding:7px 9px !important;
    }

    .side-form-area textarea.form-control{
        min-height:43px !important;
    }

    /* Hero section */

    .main-slider{
        padding-top:18px !important;
        padding-bottom:18px !important;
    }

    .hero-content-layer{
        width:min(100%,720px) !important;
    }

    .main-slider .info-box{
        padding:20px clamp(28px,3.2vw,42px) 22px !important;
        border-radius:22px !important;
    }

    .main-slider .pro-status{
        margin-bottom:14px !important;
        padding:8px 22px !important;
        font-size:.72rem !important;
    }

    .main-slider .pro-title{
        font-size:clamp(2.55rem,4.25vw,3.55rem) !important;
        line-height:1.02 !important;
        letter-spacing:1px !important;
    }

    .main-slider .pro-add{
        margin-top:13px !important;
        margin-bottom:17px !important;
        font-size:1.17rem !important;
        line-height:1.15 !important;
    }

    .main-slider .featured-box,
    .main-slider .info-box>.featured-box{
        width:min(100%,560px) !important;
        padding:14px 18px !important;
        gap:5px !important;
        border-radius:15px !important;
    }

    .main-slider .featured-box small{
        font-size:.77rem !important;
        line-height:1.25 !important;
    }

    .hero-project-list{
        gap:3px 14px !important;
        margin:1px auto !important;
    }

    .hero-project-list strong{
        font-size:.78rem !important;
        line-height:1.35 !important;
    }

    .hero-developer{
        margin-top:4px !important;
        font-size:.76rem !important;
        line-height:1.25 !important;
    }

    .main-slider .hero-price{
        margin-top:15px !important;
        font-size:1.35rem !important;
        line-height:1.2 !important;
    }

    .main-slider .hero-primary-cta,
    .main-slider .micro-form-btn{
        min-height:44px;
        margin-top:15px !important;
        padding:11px 25px !important;
        font-size:.81rem !important;
    }

    .main-slider .carousel-indicators{
        bottom:5px !important;
    }

}

/* Hide desktop right-side panel on tablets and mobiles */

@media (max-width:991px){

    .micro-side{
        display:none !important;
    }

}

/*==================================================
HERO + RIGHT-SIDE ENQUIRY DESKTOP GRID
==================================================*/

.hero-desktop-layout {
    width: 100%;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: stretch;

    gap: 0;

    background: #ffffff;
}


.hero-main-column {
    min-width: 0;
    width: 100%;
}


.hero-main-column .main-slider {
    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
}


/* Right panel column */

.hero-side-column {
    width: 310px;
    min-width: 310px;

    padding: 7px 7px 10px;

    background: #ffffff;

    border-left: 1px solid rgba(7, 21, 40, 0.09);
}


.hero-side-column .micro-side {
    position: relative !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    display: block !important;

    width: 100% !important;
    height: auto !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;

    transform: none !important;
}


/* Centre all right-side components */

.hero-side-column .og-section,
.hero-side-column .side-form-area {
    width: 100% !important;
    max-width: none !important;

    margin-right: 0 !important;
    margin-left: 0 !important;
}


/* Tablet and mobile: hero becomes full width */

@media (max-width: 991px) {

    .hero-desktop-layout {
        display: block;
    }

    .hero-main-column {
        width: 100%;
    }

    .hero-side-column {
        display: none !important;
    }

}

/* Right-side form heading */

.hero-side-column .form-heading {
    display: block !important;

    margin: 0 0 8px !important;
    padding: 10px 8px !important;

    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #071528,
            #12345c
        ) !important;

    border-radius: 10px;

    font-size: 0.86rem !important;
    font-weight: 800 !important;
    line-height: 1.25;
    letter-spacing: 0.4px;
    text-align: center;
    text-transform: uppercase;
}

/*==================================================
OVERVIEW VERTICAL TEXT CORRECTION
==================================================*/

.supreme-overview .vertical-title,
.supreme-overview .overview-side-title,
.supreme-overview .section-side-title,
.supreme-overview .project-vertical-title {
    display: none !important;
}


/* Keep normal Overview headings horizontal */

.supreme-overview .overview-title,
.supreme-overview .section-h2,
.supreme-overview .section-h3 {
    position: relative !important;

    width: auto !important;
    max-width: 100% !important;

   writing-mode: horizontal-tb !important;
    transform:none !important;
    text-orientation:mixed !important;

    white-space: normal !important;
    overflow-wrap: break-word;

    text-align: center;
}

.read-more-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 26px;

    border-radius:40px;

    background:
    linear-gradient(135deg,#f7df73,#d4af37);

    color:#071528 !important;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.read-more-btn:hover{

    transform:translateY(-2px);

    box-shadow:
    0 8px 18px rgba(212,175,55,.35);

}


/*=====================================================================
  JULY 2026 FINAL PAGE CORRECTIONS
  Static desktop enquiry panel, responsive Overview text,
  inline WhatsApp CTA and four-image gallery scroller
=====================================================================*/

/* Desktop right enquiry panel remains visible while page scrolls */
@media (min-width: 992px) {
    .hero-desktop-layout {
        align-items: start;
    }

    .hero-side-column {
        position: fixed;
        top: var(--header-height, 82px);
        right: 0;
        bottom: 0;
        width: 310px;
        min-width: 310px;
        height: auto;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1020;
        background: #ffffff;
        border-left: 1px solid rgba(7, 21, 40, 0.09);
        scrollbar-width: thin;
    }

    .hero-side-column .micro-side {
        min-height: 100%;
    }
}

/* Project selector inside the desktop enquiry form */
.hero-side-column .side-project-select {
    min-height: 39px !important;
    padding-right: 32px !important;
    color: #374151;
    background-color: #ffffff;
    cursor: pointer;
}

/* WhatsApp icon and CTA copy stay on one line */
.inline-whatsapp-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 7px;
    max-width: 100%;
    line-height: 1.45;
    vertical-align: middle;
}

.inline-whatsapp-link img {
    display: inline-block !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px;
    object-fit: contain;
    flex: 0 0 24px;
    margin: 0 !important;
}

/* Overview paragraphs: justified on desktop, natural left alignment on mobile */
@media (min-width: 768px) {
    .supreme-overview .overview-intro,
    .supreme-overview .project-section p {
        text-align: justify !important;
        text-justify: inter-word;
    }
}

@media (max-width: 767px) {
    .supreme-overview .overview-intro,
    .supreme-overview .project-section p {
        text-align: left !important;
        text-justify: auto;
    }

    .inline-whatsapp-link {
        white-space: normal;
        text-align: center;
    }
}

/* Four visible images on desktop; remaining images accessible by arrows/swipe */
.gallery-carousel-shell {
    position: relative;
    width: 100%;
    padding: 0 42px;
}

#gallery .gallery-scroll-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    margin: 0;
    padding: 8px 0 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

#gallery .gallery-scroll-track::-webkit-scrollbar {
    display: none;
}

#gallery .gallery-scroll-track > [class*="col-"] {
    flex: 0 0 calc((100% - 42px) / 4);
    width: calc((100% - 42px) / 4);
    max-width: calc((100% - 42px) / 4);
    margin-bottom: 0 !important;
    padding: 0;
    scroll-snap-align: start;
}

.gallery-scroll-btn {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.65);
    border-radius: 50%;
    background: #071528;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    transform: translateY(-50%);
    z-index: 5;
}

.gallery-scroll-btn:hover,
.gallery-scroll-btn:focus-visible {
    background: #d4af37;
    color: #071528;
}

.gallery-prev { left: 0; }
.gallery-next { right: 0; }

@media (max-width: 767px) {
    .gallery-carousel-shell {
        padding: 0 32px;
    }

    #gallery .gallery-scroll-track > [class*="col-"] {
        flex-basis: calc((100% - 12px) / 2);
        width: calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
    }

    .gallery-scroll-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

/* =========================================
12. Project Explorer Accordion
========================================= */

.project-explorer {
    width: min(100%, 1080px);
    margin: 30px auto 8px;
    padding: 0 15px;
}

.project-explorer-item {
    margin-bottom: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(12, 39, 77, 0.13);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(7, 21, 40, 0.07);
    scroll-margin-top: 100px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.project-explorer-item:hover,
.project-explorer-item.is-open {
    border-color: rgba(212, 175, 55, 0.62);
    box-shadow: 0 12px 30px rgba(7, 21, 40, 0.11);
}

.project-explorer-heading {
    margin: 0;
}

.project-explorer-toggle {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 20px 22px;
    border: 0;
    background: linear-gradient(135deg, #ffffff 0%, #fbfcfe 100%);
    color: #0c274d;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.project-explorer-toggle:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.45);
    outline-offset: -3px;
}

.project-explorer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.13);
    font-size: 23px;
    line-height: 1;
}

.project-explorer-label {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.project-explorer-name {
    color: #0c274d;
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 750;
    line-height: 1.25;
}

.project-explorer-tagline {
    color: #5f6b7a;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.project-explorer-name .launch-tag {
    display: inline-block;
    margin-left: 8px;
    vertical-align: 2px;
}

.project-explorer-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #c59a20;
    font-size: 24px;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.project-explorer-item.is-open .project-explorer-chevron {
    transform: rotate(90deg);
}

.project-explorer-content[hidden] {
    display: none !important;
}

.project-explorer-content {
    border-top: 1px solid rgba(12, 39, 77, 0.09);
    background: #ffffff;
}

.project-explorer-inner {
    padding: 22px 24px 25px 81px;
}

.project-highlight-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.project-highlight-list li {
    position: relative;
    padding-left: 25px;
    color: #23364f;
    font-size: 15px;
    line-height: 1.55;
}

.project-highlight-list li::before {
    content: "✔";
    position: absolute;
    top: 0;
    left: 0;
    color: #c59a20;
    font-weight: 800;
}

.project-explorer-inner p {
    margin: 0 0 20px;
    color: #4c596b;
    font-size: 15px;
    line-height: 1.75;
    text-align: justify;
    text-justify: inter-word;
}

.project-explorer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 22px;
    border: 1px solid #d4af37;
    border-radius: 999px;
    background: linear-gradient(135deg, #f7df73, #d4af37);
    color: #071528 !important;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-explorer-cta:hover,
.project-explorer-cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.30);
}

@media (max-width: 767px) {
    .project-explorer {
        margin-top: 22px;
        padding: 0 10px;
    }

    .project-explorer-toggle {
        gap: 11px;
        padding: 16px 14px;
    }

    .project-explorer-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .project-explorer-name {
        font-size: 16px;
    }

    .project-explorer-tagline {
        font-size: 12.5px;
    }

    .project-explorer-name .launch-tag {
        display: table;
        margin: 6px 0 0;
    }

    .project-explorer-chevron {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }

    .project-explorer-inner {
        padding: 18px 16px 21px;
    }

    .project-highlight-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .project-explorer-inner p {
        font-size: 14px;
        text-align: left;
        text-justify: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .project-explorer-item,
    .project-explorer-chevron,
    .project-explorer-cta {
        transition: none;
    }
}


/* =========================================
13. Project Explorer Detailed Description
========================================= */

.project-description-wrap {
    margin-top: 20px;
}

.project-description-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 22px;
    border: 1px solid #d3a71d;
    border-radius: 30px;
    background: linear-gradient(135deg, #f8dd78, #dfb72e);
    color: #071d3a;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.project-description-toggle:hover {
    background: #0b294b;
    color: #ffffff;
    border-color: #0b294b;
    box-shadow: 0 7px 18px rgba(7, 29, 58, 0.18);
    transform: translateY(-1px);
}

.project-description-toggle:focus-visible {
    outline: 3px solid rgba(211, 167, 29, 0.35);
    outline-offset: 3px;
}

.project-description-toggle .description-arrow {
    display: inline-block;
    font-size: 15px;
    transition: transform 0.3s ease;
}

.project-description-toggle[aria-expanded="true"] .description-arrow {
    transform: rotate(90deg);
}

.project-full-description {
    margin-top: 18px;
    padding: 20px 22px;
    border-left: 3px solid #d3a71d;
    border-radius: 0 12px 12px 0;
    background: #f9fafc;
}

.project-full-description[hidden] {
    display: none !important;
}

.project-full-description.is-visible {
    animation: projectDescriptionReveal 0.35s ease;
}

.project-full-description p {
    margin: 0 0 14px;
    color: #344054;
    font-size: 15px;
    line-height: 1.85;
    text-align: justify;
}

.project-full-description p:last-child {
    margin-bottom: 0;
}

.project-full-description a {
    color: #0b4f87;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.project-full-description a:hover {
    color: #c3940c;
}

@keyframes projectDescriptionReveal {
    from {
        opacity: 0;
        transform: translateY(-7px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .project-description-toggle {
        width: 100%;
        padding: 11px 16px;
    }

    .project-full-description {
        padding: 16px;
    }

    .project-full-description p {
        font-size: 14px;
        line-height: 1.75;
        text-align: left;
    }
}

/*==================================================
NEXUS HERO PANEL — LEFT DESKTOP PLACEMENT
Applied only when the hero uses .hero-content-left.
Other project pages remain unchanged.
==================================================*/

@media (min-width: 992px) {

    .main-slider .hero-content-layer.hero-content-left {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding-right: clamp(20px, 2.5vw, 38px) !important;
        padding-left: clamp(24px, 3.5vw, 54px) !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .main-slider .hero-content-layer.hero-content-left .info-box {
        width: min(48vw, 500px) !important;
        max-width: 500px !important;
        margin: 0 !important;
        padding: clamp(24px, 2.5vw, 34px) clamp(22px, 2.4vw, 30px) !important;

        text-align: center !important;
        border-radius: 24px !important;
    }

    .main-slider .hero-content-layer.hero-content-left .featured-box,
    .main-slider .hero-content-layer.hero-content-left .info-box > .featured-box {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Mobile keeps the existing full-width centred card for readability. */
@media (max-width: 991px) {
    .main-slider .hero-content-layer.hero-content-left {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
}

