/* ── RAGHAVA HALO BRAND DESIGN SYSTEM & PALETTE ── */
:root {
    --cream: #F1E1C2;
    --cream2: #E9CFA0;
    --warm: #E7CB9E;
    --dark: #2B1B12;      /* Dark chocolate luxury background & typography */
    --mid: #4A3423;       /* Medium warm brown */
    --soft: #A9875F;      /* Soft warm taupe */
    --terra: #B8702F;     /* Terracotta amber primary accent */
    --terra2: #D08C4C;    /* Lighter terracotta hover accent */
    --white: #FFFFFF;
    --off: #F7ECD8;       /* Off-white warm cream section background */
    --glow: radial-gradient(circle at 15% 50%, #D08C4C 0%, #B8702F 28%, #2B1B12 70%);
}

html, body {
    overflow-x: hidden;
    width: 100%;
    background-color: var(--cream);
    color: var(--dark);
}

@font-face {
    font-family: 'Collapse Italic';
    src: url('../fonts/Collapse-Italic.otf');
    font-style: italic;
}

@font-face {
    font-family: 'Collapse';
    src: url('../fonts/Collapse-Regular.otf');
    font-style: normal;
}

@font-face {
    font-family: 'Greenwich Regular';
    font-weight: 400;
    font-style: Regular;
    src: url('../fonts/Greenwich-Regular.otf');
}

@font-face {
    font-family: 'Greenwich Bold';
    font-weight: 700;
    font-style: Regular;
    src: url('../fonts/Greenwich-Bold.otf');
}

@media (max-width: 575px) {
    .more {
        min-width: 170px !important;
    }
    .vision{
        display: none !important;
    }
}

.sell_do_form_container .form-group:has(select)::after {
    content: "⌵";
    position: absolute;
    right: 26px;
    top: 20px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--terra);
    font-size: 18px;
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 80px 0;
}

.banner-sec {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: var(--dark);
}

.banner-sec .navbar-brand {
    position: absolute;
    top: 28px;
    left: 40px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
}

.logo {
    max-width: 250px;
    height: auto;
    max-height: 75px;
    object-fit: contain;
}

.logo-secondary {
    max-width: 180px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.logo-divider {
    display: inline-block;
    width: 1px;
    height: 24px;
    background-color: rgba(231, 203, 158, 0.6);
    margin: 0 12px;
    flex-shrink: 0;
}

.authorised-partner-tag {
    font-size: 14px;
    font-weight: 600;
    color: rgba(241, 225, 194, 0.95);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
    flex-shrink: 0;
}

.banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(43, 27, 18, 0.15) 0%,
            rgba(43, 27, 18, 0.25) 45%,
            rgba(43, 27, 18, 0.75) 100%);
    z-index: 2;
}

.banner-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: flex-end;
}

.banner-text {
    width: auto;
    max-width: fit-content;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    margin-bottom: 35px;
}

.banner-title {
    font-family: 'Collapse', serif;
    font-size: 66px;
    line-height: 1.1;
    font-weight: 400;
    color: var(--white);
    margin: 0 0 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.65);
}

.banner-title .title-line {
    display: block;
}

.banner-title .halo-dots {
    letter-spacing: 6px;
    word-spacing: 4px;
}

.banner-subtitle {
    font-family: 'Greenwich Regular';
    color: rgba(241, 225, 194, 0.9);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.pricing {
    position: relative;
    margin-top: 0;
    margin-left: 0;
    z-index: 4;
}

.discover_more_btn {
    text-decoration: none;
    display: inline-block;
}

.pricing p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 172px;
    height: 45px;
    margin: 0;
    padding: 0 20px;
    border-radius: 50px;
    background: var(--terra);
    color: var(--white);
    font-family: 'Greenwich Regular';
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(184, 112, 47, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing p:hover {
    background: var(--terra2);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(184, 112, 47, 0.45);
}

.banner-form {
    width: 460px;
    padding: 24px 28px;
    background: rgba(241, 225, 194, 0.94);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    margin-bottom: 35px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(231, 203, 158, 0.35);
}

.banner-form form {
    display: flex;
    flex-direction: column;
}

.banner-form .form-control {
    height: 49px;
    border: 1px solid rgba(43, 27, 18, 0.15);
    border-radius: 7px;
    background: rgba(43, 27, 18, 0.04);
    color: var(--dark);
    padding: 0 18px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    box-shadow: none;
    font-family: 'Greenwich Regular';
}

.banner-form .form-control::placeholder {
    color: rgba(43, 27, 18, 0.45);
    opacity: 1;
}

.btn-submit {
    height: 49px;
    border: 0;
    border-radius: 6px;
    background: var(--terra);
    color: var(--white);
    font-family: 'Greenwich Regular';
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.btn-submit:hover {
    background: var(--terra2);
}

/* Responsive Banner */
@media (max-width: 991px) {
    .banner-sec {
        min-height: auto;
        padding: 130px 0 40px;
    }

    .banner-video {
        position: absolute;
    }

    .banner-content {
        position: relative;
        padding-bottom: 0;
    }

    .banner-text,
    .banner-form {
        width: 100%;
    }

    .banner-form {
        margin-bottom: 0;
    }

    .pricing {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .banner-sec .navbar-brand {
        top: 16px;
        left: 20px;
        width: auto;
    }

    .logo {
        max-width: 140px;
        max-height: 44px;
    }

    .banner-sec .navbar-brand .logo {
        padding: 4px 8px;
        border-radius: 6px;
        max-height: 42px;
    }

    .logo-secondary {
        max-width: 110px;
        max-height: 36px;
    }

    .logo-divider {
        height: 18px;
        margin: 0 6px;
    }

    .authorised-partner-tag {
        font-size: 9.5px;
        letter-spacing: 0.2px;
        font-weight: 600;
        text-transform: capitalize;
    }

    .banner-sec {
        min-height: auto;
        height: auto;
        padding: 0;
        overflow: hidden;
        background-color: var(--dark);
    }

    .banner-video {
        position: relative;
        width: 100%;
        height: 100vw;
        max-height: 480px;
        min-height: 350px;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

    .banner-overlay {
        position: absolute;
        inset: 0;
        height: 100%;
    }

    .banner-content {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-end;
        padding: 0 14px 28px;
    }

    .banner-content .container-xl {
        padding: 0;
    }

    .banner-text {
        width: 100%;
        padding: 0;
        text-align: center;
        background: transparent;
        border: none;
        backdrop-filter: none;
        border-radius: 0;
    }
    
    .banner-title {
        font-size: 38px;
        line-height: 1.15;
        margin-bottom: 18px;
        color: var(--white);
    }

    .banner-title .halo-dots {
        letter-spacing: 4px;
    }

    .pricing {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 0;
    }

    .mobile-banner-form {
        background: var(--dark);
        padding: 18px 12px 24px;
    }

    .mobile-banner-form .banner-form {
        width: 100%;
        margin: 0;
        padding: 18px;
        border-radius: 16px;
    }
}

/* RERA Ticker Strip */
.ticker-section {
    background: #1e130c;
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(231, 203, 158, 0.15);
    border-top: 1px solid rgba(231, 203, 158, 0.15);
    z-index: 10;
}

.ticker-wrap {
    display: flex;
    width: 100%;
    overflow: hidden;
    user-select: none;
}

.ticker-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    gap: 40px;
    animation: ticker-scroll 25s linear infinite;
}

.ticker-content span {
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--warm);
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* HALO Acronym Feature Section - Full Width Banner Image */
.halo_acronym_sec {
    background: var(--dark);
    padding: 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
    border-bottom: 1px solid rgba(231, 203, 158, 0.12);
    width: 100%;
}

.halo_full_banner_img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* About Project Landmark Section */
.about_landmark_sec {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
    border-bottom: 1px solid rgba(231, 203, 158, 0.12);
}

.about_landmark_content {
    max-width: 540px;
}

.about_eyebrow {
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--terra);
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.eyebrow_dash {
    font-size: 16px;
}

.about_title {
    font-family: 'Collapse', serif;
    font-size: clamp(34px, 4.5vw, 54px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: var(--white);
    margin: 0 0 28px;
    text-transform: uppercase;
}

.about_title em {
    font-style: italic;
    color: var(--warm);
    font-family: 'Collapse', serif !important;
    text-transform: none;
    display: block;
    margin-top: 4px;
}

.about_divider {
    width: 60px;
    height: 1px;
    background: rgba(231, 203, 158, 0.35);
    margin: 0 0 28px;
}

.about_desc {
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(241, 225, 194, 0.85);
    margin-bottom: 35px;
    font-weight: 300;
}

.about_cta_link {
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(231, 203, 158, 0.4);
    transition: all 0.3s ease;
}

.about_cta_link:hover {
    color: var(--terra2);
    border-bottom-color: var(--terra2);
    transform: translateX(4px);
}

.about_landmark_card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(231, 203, 158, 0.25);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    background: #1a100a;
}

.about_landmark_card img {
    width: 100%;
    height: 100%;
    max-height: 620px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.about_landmark_card:hover img {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .about_landmark_sec {
        padding: 70px 0;
    }
    
    .about_title {
        font-size: 36px;
        line-height: 1.1;
    }
    
    .about_desc {
        font-size: 15px;
    }
    
    .about_landmark_card img {
        max-height: 480px;
    }
}

@media (max-width: 575px) {
    .about_landmark_sec {
        padding: 50px 0;
    }
    
    .about_title {
        font-size: 30px;
    }
}

/* 3 BHK Configuration & Unit Matrix Section */
.unit_config_sec {
    background: var(--dark);
    padding: 90px 0;
    position: relative;
    color: var(--white);
    border-bottom: 1px solid rgba(231, 203, 158, 0.12);
}

.config_render_card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(231, 203, 158, 0.22);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    background: #1a100a;
}

.config_render_card img {
    width: 100%;
    height: 100%;
    max-height: 620px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.config_render_card:hover img {
    transform: scale(1.03);
}

.config_details_wrap {
    padding-left: 15px;
}

.config_title {
    font-family: 'Collapse', serif;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1.0;
    color: var(--warm);
    font-weight: 400;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
}

.config_subtitle {
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--terra2);
    font-weight: 600;
    margin-bottom: 30px;
}

.config_features_list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.config_features_list li {
    font-family: 'Greenwich Regular', serif;
    font-size: 16px;
    line-height: 2.1;
    color: rgba(241, 225, 194, 0.9);
    position: relative;
    padding-left: 22px;
    font-weight: 300;
}

.config_features_list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--warm);
    font-size: 18px;
    line-height: 1.8;
}

/* Unit Matrix Cream Grid Table */
.unit_matrix_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(43, 27, 18, 0.2);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(231, 203, 158, 0.25);
}

.unit_matrix_cell {
    background: #F1E1C2;
    padding: 18px 22px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unit_matrix_cell:hover {
    background: #E9CFA0;
}

.unit_matrix_cell.active {
    background: #F1E1C2;
}

.cell_sqft {
    font-family: 'Collapse', serif;
    font-size: 26px;
    line-height: 1.1;
    color: #2B1B12;
    font-weight: 400;
    margin-bottom: 4px;
}

.cell_type {
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 9px;
    letter-spacing: 1.8px;
    color: rgba(43, 27, 18, 0.65);
    text-transform: uppercase;
    font-weight: 600;
}



@media (max-width: 991px) {
    .unit_config_sec {
        padding: 60px 0;
    }
    
    .config_details_wrap {
        padding-left: 0;
    }
    
    .config_title {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .unit_config_sec {
        padding: 45px 0;
    }
    
    .unit_matrix_cell {
        padding: 14px 12px;
    }
    
    .cell_sqft {
        font-size: 20px;
    }
    
    .cell_type {
        font-size: 8px;
    }
}

/* Sell.Do Form UI */
.sell_do_form_container .title,
.sell_do_form_container label {
  display: none !important;
}

.sell_do_form_container .selldof_row {
  margin-bottom: 16px;
}

.sell_do_form_container .form-group {
  margin-bottom: 0 !important;
}

.selldof {
    display: flex;
    flex-direction: column;
}

.selldof_row {
    width: 100%;
    margin: 0 !important;
}

.sell_do_form_container .form-group {
    margin: 0 0 16px !important;
}

.sell_do_form_container .form-control,
.sell_do_form_container input[type="text"],
.sell_do_form_container input[type="email"],
.sell_do_form_container input[type="tel"] {
  width: 100% !important;
  height: 48px !important;
  background: rgba(43, 27, 18, 0.04) !important;
  border: 1px solid rgba(43, 27, 18, 0.14) !important;
  border-radius: 7px !important;
  padding: 0 18px !important;
  font-size: 15px !important;
  color: var(--dark) !important;
  box-shadow: none !important;
  outline: none !important;
}

.selldo-intl-tel-input {
    width: 100% !important;
}

.sell_do_form_container .selldo-intl-tel-input .form-control {
    padding-right: 6px !important;
    padding-left: 52px !important;
}

.sell_do_form_container input::placeholder {
  color: rgba(43, 27, 18, 0.5) !important;
  opacity: 1;
}

.sell_do_form_container button,
.sell_do_form_container input[type="submit"],
.sell_do_form_container .btn {
  width: 100% !important;
  height: 48px !important;
  background: var(--terra) !important;
  color: var(--white) !important;
  border: 0 !important;
  border-radius: 6px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-family: inherit !important;
  cursor: pointer;
  transition: background 0.3s ease !important;
}

.sell_do_form_container button:hover,
.sell_do_form_container input[type="submit"]:hover {
  background: var(--terra2) !important;
}

@media (max-width: 575px) {
  .sell_do_form_container .form-control,
  .sell_do_form_container input {
    height: 48px !important;
  }
}

/* Ticker Section */
.ticker-section {
    background: var(--dark);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid rgba(231, 203, 158, 0.15);
    border-bottom: 1px solid rgba(231, 203, 158, 0.15);
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    padding: 20px 0;
    animation: tickerScroll 35s linear infinite;
}

.ticker-content span {
    color: var(--warm);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

.ticker-section:hover .ticker-content {
    animation-play-state: paused;
}

/* Massive Section */
.massive_sec {
    position: relative;
    overflow: hidden;
    background: var(--off);
    padding: 80px 0 85px;
    min-height: 475px;
}

.massive_sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/bg.jpg") center center repeat;
    background-size: 1100px 1100px;
    opacity: 0.08;
    z-index: 1;
}

.massive_sec .container-xl {
    position: relative;
    z-index: 5;
}

.massive_sec .curve-left {
    position: absolute;
    left: -55px;
    width: 385px;
    height: 520px;
    border: 2px solid var(--terra);
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 120px 0 0;
    z-index: 3;
}

.massive_sec .curve-left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50px;
    width: 280px;
    height: 470px;
    border: 2px solid var(--terra);
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 110px 0 0;
}

.massive_sec .curve-right {
    position: absolute;
    right: -55px;
    width: 385px;
    height: 520px;
    border: 2px solid var(--terra);
    border-right: 0;
    border-bottom: 0;
    border-radius: 120px 0 0 0;
    z-index: 3;
}

.massive_sec .curve-right::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50px;
    width: 280px;
    height: 470px;
    border: 2px solid var(--terra);
    border-right: 0;
    border-bottom: 0;
    border-radius: 110px 0 0 0;
}

.price_area {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 6;
    padding-top: 38px;
}

.price_title {
    font-family: 'Collapse';
    color: var(--dark);
    font-size: 40px;
    line-height: 1.65;
    font-weight: 400;
    margin: 0 0 50px;
}

.price_row {
    max-width: 570px;
    margin: 0 auto 58px;
}

.price_box h3 {
    font-family: 'Collapse';
    color: var(--terra);
    font-size: 60px;
    line-height: 1;
    font-weight: 400;
    margin: 0 0 12px;
}

.price_box p {
    color: var(--mid);
    font-family: 'Greenwich Regular';
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    margin: 0;
}

.enquire_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 238px;
    height: 55px;
    background: var(--terra);
    color: var(--white);
    border-radius: 16px 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 28px;
    font-family: 'Greenwich Regular';
    transition: background 0.3s ease;
}

.enquire_btn:hover {
    background: var(--terra2);
    color: var(--white);
}

@media (max-width: 991px) {
    .massive_sec {
        padding: 75px 0 70px;
    }

    .curve-left,
    .curve-right {
        opacity: 0.35;
    }

    .price_title {
        font-size: 36px;
        margin-bottom: 38px;
    }

    .price_box h3 {
        font-size: 54px;
    }
}

@media (max-width: 575px) {
    .curve-left,
    .curve-right {
        display: none;
    }

    .price_area {
        padding-top: 0;
    }

    .price_row {
        gap: 28px;
        margin-bottom: 42px;
    }

    .price_box h3 {
        font-size: 46px;
    }

    .enquire_btn {
        min-width: 210px;
    }
}

/* Project Overview Section */
.project_overview_sec {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 760px;
    background: var(--cream);
    overflow: hidden;
}

.overview_left {
    position: relative;
    display: flex;
    align-items: center;
    padding: 70px 80px;
    overflow: hidden;
}

.overview_content {
    position: relative;
    z-index: 2;
    max-width: 570px;
}

.overview_content h2 {
    font-family: 'Collapse';
    color: var(--dark);
    font-size: 25px;
    line-height: 36px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0 0 35px;
    max-width: 460px;
}

.overview_stats {
    display: grid;
    grid-template-columns: repeat(2, 195px);
    column-gap: 45px;
    row-gap: 32px;
}

.stat_item {
    border-bottom: 1px solid rgba(43, 27, 18, 0.12);
    padding-bottom: 18px;
}

.stat_item h3 {
    font-family: 'Collapse';
    color: var(--terra);
    font-size: 36px;
    line-height: 44px;
    font-weight: 400;
    margin: 0 0 12px;
    white-space: nowrap;
}

.stat_item p {
    color: var(--dark);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
    font-family: 'Greenwich Regular';
}

.overview_pattern {
    position: absolute;
    right: -7px;
    bottom: -30px;
    width: 310px;
    z-index: 1;
    opacity: 0.25;
}

.overview_right {
    position: relative;
    height: 760px;
    overflow: hidden;
    border-top-left-radius: 48px;
    border-bottom-left-radius: 48px;
    box-shadow: -15px 0 35px rgba(43, 27, 18, 0.12);
}

.overview_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.overview_right:hover img {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .project_overview_sec {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding: 50px 24px;
        position: relative;
        background: var(--cream);
    }

    .overview_left {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        overflow: visible;
        width: 100%;
    }

    .overview_content {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .overview_content h2 {
        font-size: 24px;
        line-height: 36px;
        text-align: center;
        max-width: 640px;
        margin: 0 auto 30px;
    }

    .overview_right {
        width: 100%;
        max-width: 720px;
        height: 480px;
        margin: 0 auto 35px;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(43, 27, 18, 0.1);
    }

    .overview_right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .overview_stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        width: 100%;
        max-width: 720px;
        margin: 0 auto 10px;
    }

    .stat_item {
        text-align: center;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(43, 27, 18, 0.12);
    }

    .stat_item h3 {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 8px;
    }

    .stat_item p {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .project_overview_sec {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding: 34px 0 45px;
        position: relative;
    }

    .overview_left {
        display: contents;
        padding: 0;
        overflow: visible;
    }

    .overview_content {
        display: contents;
    }

    .overview_content h2 {
        order: 1;
        font-size: 22px;
        line-height: 32px;
        text-align: center;
        max-width: 340px;
        margin: 0 auto 22px;
        padding: 10px 20px;
    }

    .overview_right {
        order: 2;
        width: calc(100% - 28px);
        height: 515px;
        margin: 0 auto 48px;
        border-bottom-left-radius: 42px;
        border-top-right-radius: 42px;
        overflow: hidden;
    }

    .overview_right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .overview_stats {
        order: 3;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 28px;
        width: calc(100% - 58px);
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .stat_item {
        text-align: center;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(43, 27, 18, 0.12);
    }

    .stat_item h3 {
        font-size: 42px;
        line-height: 1;
        margin-bottom: 10px;
    }

    .stat_item p {
        font-size: 16px;
        line-height: 1.2;
    }

    .overview_pattern {
        display: block;
        position: absolute;
        right: 26px;
        bottom: 50px;
        width: 250px;
        opacity: 0.10;
        z-index: 1;
    }

    .project_overview_sec::before {
        content: "";
        position: absolute;
        top: 20px;
        right: 14px;
        width: calc(100% - 28px);
        height: 265px;
        border-top: 2px solid var(--terra);
        border-right: 2px solid var(--terra);
        border-radius: 0 55px 0 0;
        z-index: 1;
    }
    
    .overview_content .text-center {
        order: 4;
        margin-top: 28px !important;
        position: relative;
        z-index: 3;
    }

    .vision {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-width: 210px;
        height: 52px;
        background: var(--terra);
        color: var(--white) !important;
        border-radius: 0 0 18px 0;
        text-decoration: none;
        font-size: 18px;
    }
}

/* Life Expands Section */
.life_expands_sec {
    position: relative;
    background: var(--dark);
    padding: 78px 0 82px;
    overflow: hidden;
    color: var(--white);
}

.life_expands_sec .container-xl {
    position: relative;
    z-index: 2;
}

.life_curve {
    position: absolute;
    top: 46px;
    left: 26px;
    width: calc(100% + 40px);
    height: 740px;
    border-top: 3px solid var(--terra);
    border-left: 3px solid var(--terra);
    border-radius: 125px 0 0 0;
    z-index: 1;
    opacity: 0.6;
}

.life_head {
    text-align: center;
    margin-bottom: 26px;
}

.life_head h2 {
    font-family: 'Collapse';
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0.8%;
    font-weight: 400;
    color: var(--warm);
    margin: 0 0 14px;
}

.life_head p {
    color: rgba(241, 225, 194, 0.85);
    font-family: 'Greenwich Regular';
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 20px;
}

.life_slider {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-right: -80px;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
}

.life_slider::-webkit-scrollbar {
    display: none;
}

.life_slider.active {
    cursor: grabbing;
}

.life_track {
    display: flex;
    gap: 18px;
    width: max-content;
}

.life_card {
    position: relative;
    flex: 0 0 360px;
    border-radius: 14px;
    overflow: hidden;
    background: #1a100a;
    border: 1px solid rgba(231, 203, 158, 0.18);
    user-select: none;
}

.life_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.life_card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 55%;
    background: linear-gradient(to top, rgba(43,27,18,0.92), rgba(43,27,18,0));
    z-index: 1;
}

.life_card_content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 24px;
    z-index: 2;
}

.life_card_content h3 {
    font-family: 'Collapse';
    color: var(--warm);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin: 0 0 14px;
}

.life_card_content p {
    color: rgba(241, 225, 194, 0.9);
    font-size: 16px;
    font-family: 'Greenwich Regular';
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

@media (max-width: 991px) {
    .life_curve {
        display: none;
    }

    .life_slider {
        margin-right: 0;
        padding: 0 15px;
    }

    .life_card {
        min-width: 300px;
        height: 420px;
    }

    .life_head h2 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .life_expands_sec {
        padding: 55px 0 65px;
    }

    .life_curve {
        display: none;
    }

    .life_slider {
        margin-right: 0;
        padding: 0 12px;
    }

    .life_card {
        flex: 0 0 82vw;
        min-width: 270px;
        max-width: 310px;
        height: 370px;
        border-radius: 16px;
    }

    .life_head h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .life_expands_sec .text-center {
        margin-bottom: 25px;
        position: relative;
        z-index: 5;
    }
}

/* Network / Location Section */
.network_sec {
    background: var(--off);
    padding: 80px 0;
}

.network_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.network_left h2 {
    font-family: 'Collapse';
    color: var(--dark);
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
    letter-spacing: 0.8%;
    margin: 0 0 14px;
}

.network_subtitle {
    color: var(--mid);
    font-family: 'Greenwich Regular';
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
    margin: 0 0 28px;
}

.map_box {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    border: 1px solid rgba(184, 112, 47, 0.2);
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(43, 27, 18, 0.06);
}

.map_box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.network_desc {
    color: var(--mid);
    font-family: 'Greenwich Regular';
    font-size: 16px;
    line-height: 1.45;
    margin: 0;
}

.network_right{
    max-width: 560px;
}

.location_accordion {
    padding-top: 4px;
}

.location_accordion .accordion-item {
    border: 0;
    background: rgba(241, 225, 194, 0.6);
    border-radius: 16px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid rgba(43, 27, 18, 0.08);
}

.location_accordion .accordion-button {
    background: rgba(241, 225, 194, 0.6);
    color: var(--dark);
    box-shadow: none;
    border: 0;
    min-height: 62px;
    padding: 0 18px;
    font-family: 'Collapse';
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 1.2%;
    text-transform: uppercase;
}

.location_accordion .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(35%) sepia(50%) saturate(1200%) hue-rotate(350deg);
    width: 16px;
    height: 16px;
    background-size: 16px;
}

.location_accordion .accordion-button:not(.collapsed) {
    background: var(--cream2);
    color: var(--dark);
}

.location_accordion .accordion-body {
    padding: 0 12px 13px;
    background: var(--cream2);
}

.location_list_simple {
    background: rgba(241, 225, 194, 0.6);
    border-radius: 16px;
    padding: 16px;
}

.location_row {
    height: 48px;
    border-radius: 8px;
    background: #FFFFFF;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Greenwich Regular';
    padding: 0 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 6px;
}

.location_row:last-child {
    margin-bottom: 0;
}

.location_row.dark {
    background: var(--terra);
    color: var(--white);
}

.location_row strong {
    font-weight: 400;
}

@media (max-width: 991px) {
    .network_wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .network_left h2 {
        font-size: 40px;
        text-align: center;
    }

    .map_box {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .network_sec {
        padding: 60px 0;
    }

    .network_left h2 {
        font-size: 34px;
        text-align: center;
    }

    .network_subtitle,
    .network_desc,
    .location_row {
        font-size: 14px;
    }
}

/* Minds Section */
.minds_sec {
    background: var(--cream);
    padding: 70px 0;
}

.minds_sec .container-xl {
    max-width: 1100px;
}

.minds_title {
    font-family: 'Collapse';
    color: var(--dark);
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0.8%;
    font-weight: 400;
    text-align: center;
    margin: 0 0 48px;
}

.minds_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mind_card {
    height: 210px;
    border: 1px solid rgba(43, 27, 18, 0.12);
    border-radius: 15px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    text-align: center;
}

.mind_logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mind_logo img {
    object-fit: contain;
    width: 100px;
    height: 100px;
}

.mind_card h3 {
    font-family: 'Collapse';
    color: var(--terra);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 991px) {
    .minds_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .minds_title {
        font-size: 32px;
    }
    .minds_grid {
        grid-template-columns: 1fr;
    }
}

/* Developer Section */
.developer_sec {
    position: relative;
    background: var(--dark);
    padding: 80px 0;
    overflow: hidden;
}

.developer_sec .container-xl {
    position: relative;
    z-index: 2;
}

.developer_wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-left: 0;
}

.developer_content {
    max-width: 100%;
}

.developer_content h2 {
    font-family: 'Collapse';
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
    letter-spacing: 0.8%;
    color: var(--warm);
    margin: 0 0 28px;
}

.developer_content p {
    color: rgba(241, 225, 194, 0.9);
    font-family: 'Greenwich Regular';
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    margin: 0;
}

.developer_logo_card {
    width: 280px;
    height: 130px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    justify-self: end;
}

.developer_logo_card img {
    width: 100%;
    max-height: 90px;
    object-fit: contain;
    display: block;
}

.developer_pattern_img {
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 390px;
    z-index: 1;
    opacity: 0.15;
}

@media (max-width: 991px) {
    .developer_sec {
        padding: 40px 0;
    }
    .developer_wrap {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 44px;
        padding-left: 0px !important;
    }

    .developer_sec .container-xl {
        padding: 20px;
    }

    .developer_pattern_img {
        display: none !important;
    }

    .developer_content {
        max-width: 100%;
    }

    .developer_logo_card {
        width: 100%;
        height: 100%;
        margin: 0 auto;
    }
}

/* Contact Form Section */
.form_sec {
    display: grid;
    grid-template-columns: 46% 54%;
    min-height: 540px;
    background: var(--cream);
    align-items: center;
}

.form_img {
    height: 540px;
    overflow: hidden;
    padding: 24px 20px 24px 60px;
}

.form_img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    border-radius: 16px;
}

.form_content {
    padding: 40px 40px 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.form_head {
    width: 100%;
    max-width: 540px;
    margin-bottom: 30px;
}

.form_head h2 {
    font-family: 'Collapse';
    color: var(--dark);
    font-size: 40px;
    line-height: 1.35;
    font-weight: 400;
    margin: 0 0 20px;
}

.form_head .course_desc {
    font-family: 'Greenwich Regular';
    color: var(--terra);
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    margin: 0 0 15px;
}

.form_head .desc_text {
    font-family: 'Greenwich Regular';
    color: var(--mid);
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    max-width: 540px;
    margin: 0;
}

.apply_form {
    width: 100%;
    max-width: 540px;
    border: 1px solid rgba(43, 27, 18, 0.12);
    border-radius: 16px;
    background: rgba(241, 225, 194, 0.85);
    backdrop-filter: blur(10px);
    padding-top: 20px;
}

.apply_form form {
    display: flex;
    flex-direction: column;
}

.apply_form input {
    width: 100%;
    height: 49px;
    border: 1px solid rgba(43, 27, 18, 0.12);
    border-radius: 6px;
    background: rgba(43, 27, 18, 0.04);
    color: var(--dark);
    padding: 0 18px;
    font-size: 14px;
    line-height: 24px;
    font-family: 'Greenwich Regular';
    font-weight: 400;
    outline: none;
}

.apply_form input::placeholder {
    color: rgba(43, 27, 18, 0.45);
}

.apply_form button {
    height: 50px;
    border: 0;
    border-radius: 6px;
    background: var(--terra);
    color: var(--white);
    font-family: 'Collapse';
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.apply_form button:hover {
    background: var(--terra2);
}

@media (max-width: 1199px) {
    .developer_wrap {
        padding-left: 0;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .developer_logo_card {
        width: 100%;
        max-width: 470px;
        height: auto;
        padding: 20px;
    }
    .developer_logo_card img {
        width: 100%;
        height: auto;
    }
    .network_wrapper {
        gap: 40px;
    }
    .form_content {
        padding: 60px 40px 0px;
    }
    .apply_form {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 991px) {
    .form_sec {
        grid-template-columns: 1fr;
    }

    .form_img {
        height: 320px;
        padding: 15px;
    }

    .form_content {
        padding: 55px 25px;
    }

    .apply_form {
        width: 100%;
        padding-top: 20px;
    }

    .form_head {
        margin-bottom: 45px;
    }
}

@media (max-width: 575px) {
    .form_head h2 {
        font-size: 36px;
        text-align: center;
    }

    .form_head .course_desc {
        font-size: 24px;
        text-align: center;
    }

    .form_head .desc_text {
        font-size: 16px;
        text-align: center;
    }
}

/* FAQ Section */
.faq_sec {
    background: var(--off);
    padding: 60px 0 60px;
}

.faq_sec .container-xl {
    max-width: 900px;
}

.faq_head {
    margin-bottom: 38px;
}

.faq_title {
    font-family: 'Collapse';
    color: var(--dark);
    font-size: 50px;
    line-height: 50px;
    letter-spacing: 0.8%;
    font-weight: 400;
    margin: 0;
}

.faq_accordion .accordion-item {
    background: rgba(241, 225, 194, 0.6);
    border: 1px solid rgba(43, 27, 18, 0.08);
    border-radius: 16px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq_accordion .accordion-button {
    background: rgba(241, 225, 194, 0.6);
    color: var(--dark);
    box-shadow: none;
    border: 0;
    padding: 18px 44px 18px 18px;
    font-family: 'Collapse';
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1.6%;
    font-weight: 400;
}

.faq_accordion .accordion-button::after {
    position: absolute;
    right: 18px;
    width: 14px;
    height: 14px;
    background-size: 14px;
    filter: brightness(0) saturate(100%) invert(35%) sepia(50%) saturate(1200%) hue-rotate(350deg);
}

.faq_accordion .accordion-button:not(.collapsed) {
    background: var(--cream2);
    color: var(--dark);
}

.faq_accordion .accordion-body {
    background: var(--cream2);
    color: var(--mid);
    padding: 0 18px 18px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Greenwich Regular';
    line-height: 24px;
}

@media (max-width: 575px) {
    .faq_title {
        font-size: 38px;
    }

    .faq_accordion .accordion-button,
    .faq_accordion .accordion-body {
        font-size: 15px;
    }
}

/* Footer Section */
.site_footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0;
    border-top: 1px solid rgba(231, 203, 158, 0.15);
}

.footer_inner {
    width: 100%;
}

.footer_row {
    min-height: 130px;
}

.footer_logo {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.footer_logo img {
    max-width: 180px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer_brand {
    display: flex;
    align-items: center;
}

.footer_contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 470px;
    margin-left: auto;
}

.footer_right_logo {
    border: 1.5px solid rgba(231, 203, 158, 0.5);
    border-radius: 16px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer_right_logo img {
    max-width: 140px;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.footer_rera_text,
.footer_contact p {
    color: rgba(241, 225, 194, 0.85);
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin: 0;
    font-family: 'Greenwich Regular';
    letter-spacing: 0.2px;
}

@media (max-width: 991px) {
    .site_footer {
        padding: 42px 0 80px;
        text-align: center;
    }

    .footer_brand,
    .footer_contact {
        align-items: center;
        margin: 0 auto;
        justify-content: center;
    }

    .footer_logo {
        margin-bottom: 25px;
    }

    .footer_logo img {
        max-width: 160px;
        max-height: 48px;
    }

    .footer_right_logo img {
        width: 260px;
    }
}

/* Sticky Buttons */
.sticky_button {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.enq_btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--terra);
    color: var(--white);
    text-decoration: none;
    font-family: 'Collapse';
    font-size: 21px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 4px;
    padding: 14px 0;
    transition: background 0.3s ease;
}

.call_btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--warm);
    color: var(--dark);
    text-decoration: none;
    font-family: 'Collapse';
    font-size: 21px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 4px;
    padding: 14px 0;
    transition: background 0.3s ease;
}

.wapp {
    right: 20px;
    bottom: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    z-index: 10000;
    overflow: hidden;
    position: fixed;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
}

.back-to-top {
    right: 20px;
    bottom: 164px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    position: fixed;
    cursor: pointer;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top svg {
    color: var(--warm);
    stroke: var(--warm);
    width: 60px;
    height: 60px;
    padding: 14px;
    background-color: var(--dark);
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.back-to-top:hover svg {
    background-color: var(--mid);
    transform: translateY(-3px);
}

.phone {
    right: 20px;
    bottom: 92px;
    margin: 0;
    display: flex;
    z-index: 10000;
    overflow: hidden;
    position: fixed;
    cursor: pointer;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
}

.phone svg {
    fill: #fff;
    width: 60px;
    height: 60px;
    padding: 14px;
    background-color: var(--terra);
}

.wapp svg {
    fill: #fff;
    width: 60px;
    height: 60px;
    padding: 12px;
    background-color: #25D366;
}

.enq_btn,
.call_btn {
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.enq_btn:hover,
.enq_btn:focus,
.enq_btn:active,
.enq_btn:visited {
    background: var(--terra2);
    color: var(--white);
    text-decoration: none;
}

.call_btn:hover,
.call_btn:focus,
.call_btn:active,
.call_btn:visited {
    background: var(--cream2);
    color: var(--dark);
    text-decoration: none;
}

@media (max-width: 599px) {
    .back-to-top {
        right: 15px;
        bottom: 194px;
    }

    .back-to-top svg {
        width: 52px;
        height: 52px;
        padding: 12px;
    }

    .wapp {
        right: 15px;
        bottom: 68px;
        margin: 0;
    }

    .phone {
        right: 15px;
        bottom: 132px;
        margin: 0;
    }

    .phone svg {
        width: 52px;
        height: 52px;
        padding: 12px;
    }

    .wapp svg {
        width: 52px;
        height: 52px;
        padding: 10px;
    }

    .sticky_button {
        display: block;
    }
}

/* Pricing Section */
.pricing_sec {
    background: var(--cream);
    color: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.pricing_title {
    font-family: 'Collapse';
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--dark);
    margin: 0 0 12px;
}

.pricing_subtitle {
    font-family: 'Greenwich Regular';
    font-size: 24px;
    color: var(--mid);
    margin: 0 0 50px;
}

.pricing_card_container {
    margin-bottom: 40px;
}

.pricing_card {
    background: #ffffff;
    color: var(--dark);
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(43, 27, 18, 0.08);
    box-shadow: 0 16px 40px rgba(43, 27, 18, 0.08);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card_unit_title {
    font-family: 'Collapse';
    font-size: 36px;
    color: var(--dark);
    margin: 0 0 4px;
    font-weight: 400;
}

.card_unit_size {
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 15px;
    color: var(--mid);
    margin: 0 0 15px;
    font-weight: 500;
}

.card_divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    width: 80%;
}

.divider_line {
    flex: 1;
    height: 1px;
    background: var(--terra);
}

.divider_dot {
    width: 6px;
    height: 6px;
    background: var(--terra);
    border-radius: 50%;
    margin: 0 8px;
}

.offer_badge {
    font-family: 'Greenwich Regular';
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--terra);
    font-weight: 700;
    margin: 0 0 8px;
}

.offer_details {
    font-family: 'Greenwich Bold', sans-serif;
    font-size: 20px;
    color: var(--terra);
    line-height: 1.4;
    margin: 0 0 30px;
    font-weight: 700;
}

.price_label {
    font-family: 'Greenwich Regular';
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(43, 27, 18, 0.5);
    text-transform: uppercase;
    margin: 0 0 5px;
}

.price_value {
    font-family: 'Greenwich Bold', sans-serif;
    font-size: 48px;
    color: var(--dark);
    margin: 0 0 20px;
    font-weight: 700;
}

.price_value span {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Greenwich Regular';
    color: var(--mid);
    margin-left: 4px;
}

.card_disclaimer {
    font-family: 'Greenwich Regular';
    font-size: 12px;
    color: rgba(43, 27, 18, 0.5);
    margin: 0 0 25px;
}

.card_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--terra);
    color: var(--white);
    width: 100%;
    height: 52px;
    border-radius: 6px;
    font-family: 'Greenwich Regular';
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card_btn:hover {
    background: var(--terra2);
    color: var(--white);
}

.card_btn .arrow {
    margin-left: 8px;
    font-size: 18px;
}

.pricing_contact {
    margin-top: 30px;
    font-family: 'Greenwich Regular';
    font-size: 16px;
    color: var(--mid);
    line-height: 1.5;
}

.pricing_contact strong {
    font-family: 'Collapse';
    font-size: 24px;
    color: var(--terra);
    display: block;
    margin-top: 8px;
    font-weight: 400;
}

@media (max-width: 991px) {
    .pricing_title {
        font-size: 36px;
    }
    .pricing_subtitle {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .pricing_title {
        font-size: 32px;
    }
    .pricing_subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }
    .pricing_card {
        padding: 30px 20px;
    }
    .card_unit_title {
        font-size: 30px;
    }
    .price_value {
        font-size: 40px;
    }
}

/* Footer Disclaimer styling */
.footer_disclaimer_row {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
    text-align: center;
}
.footer_disclaimer_text {
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 11px;
    line-height: 1.6;
    color: rgba(241, 225, 194, 0.7);
    margin-bottom: 12px;
}
.footer_disclaimer_text:last-child {
    margin-bottom: 0;
}
.footer_disclaimer_text strong {
    font-weight: 700;
    color: var(--warm);
}

/* Modal Lead Form Popup styling */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(43, 27, 18, 0.82);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 15px;
    backdrop-filter: blur(10px);
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.modal-content-card {
    background: var(--cream);
    width: 100%;
    max-width: 460px;
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
    padding: 35px 25px 25px;
    position: relative;
    transform: scale(0.92);
    transition: transform 0.3s ease;
    color: var(--dark);
    border: 1px solid rgba(231, 203, 158, 0.4);
}
.modal-overlay.active .modal-content-card {
    transform: scale(1);
}
.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(241, 225, 194, 0.4);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    z-index: 100;
}
.close-modal-btn:hover {
    background: var(--terra);
    color: var(--white);
    transform: scale(1.08);
}
.modal-logo-wrap {
    text-align: center;
    background: var(--dark);
    padding: 20px;
    margin: -35px -25px 25px;
    border-radius: 18px 18px 0 0;
}
.modal-logo {
    width: 185px;
    height: auto;
    display: inline-block;
    filter: brightness(0) invert(1);
}
.modal-heading {
    font-family: 'Collapse';
    font-size: 26px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}
.modal-form-wrap {
    text-align: left;
}
.modal-assistance {
    margin-top: 20px;
    font-family: 'Greenwich Regular';
    font-size: 13px;
    color: var(--mid);
    line-height: 1.5;
    text-align: center;
}
.modal-assistance strong {
    font-family: 'Collapse';
    font-size: 18px;
    color: var(--terra);
    display: block;
    margin-top: 4px;
    font-weight: 400;
}
@media (max-width: 575px) {
    .modal-content-card {
        padding: 30px 20px 20px;
    }
    .modal-heading {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

/* Floor Plans Section */
.floor_plans_sec {
    background: var(--cream);
    padding: 80px 0 50px;
    color: var(--dark);
}

.floor_plans_title {
    font-family: 'Collapse';
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--dark);
    margin: 0 0 10px;
}

.floor_plans_sec .card_divider {
    max-width: 150px;
    margin: 0 auto 40px;
}

.floor_plans_tabs {
    margin-bottom: 45px;
}

.floor_plan_tab {
    display: inline-block;
    background: var(--terra);
    color: var(--white);
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.floor_plan_image_wrapper {
    position: relative;
    display: block;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(43, 27, 18, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(43, 27, 18, 0.08);
    background: #ffffff;
}

.floor_plan_img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.floor_plan_image_wrapper:hover .floor_plan_img {
    transform: scale(1.02);
}

.floor_plan_overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 27, 18, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.floor_plan_btn {
    pointer-events: all;
    background: var(--terra);
    color: var(--white);
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 40px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(184, 112, 47, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    display: inline-block;
}

.floor_plan_btn:hover {
    background: var(--terra2);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(208, 140, 76, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .floor_plans_title {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .floor_plans_title {
        font-size: 32px;
    }
    .floor_plan_tab {
        font-size: 14px;
        padding: 10px 25px;
    }
    .floor_plan_btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Modal Highlight Text */
.modal-highlight {
    background: rgba(184, 112, 47, 0.12);
    border: 1px dashed var(--terra);
    color: var(--terra);
    padding: 10px 15px;
    border-radius: 8px;
    margin: -10px 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.highlight-main {
    font-family: 'Greenwich Bold', sans-serif;
    font-size: 16px;
    font-weight: 700;
}
.highlight-sub {
    font-family: 'Greenwich Bold', sans-serif;
    font-size: 8px;
    font-weight: 700;
}

/* Site Map Section */
.site_map_sec {
    background: var(--cream);
    padding: 80px 0 50px;
    color: var(--dark);
}

.site_map_title {
    font-family: 'Collapse';
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--dark);
    margin: 0 0 10px;
}

.site_map_sec .card_divider {
    max-width: 150px;
    margin: 0 auto 40px;
}

.site_map_image_wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    width: 720px;
    margin: 0 auto;
    border: 1px solid rgba(43, 27, 18, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(43, 27, 18, 0.08);
    background: #ffffff;
}

.site_map_img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.site_map_btn {
    background: var(--terra);
    color: var(--white);
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 45px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(184, 112, 47, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    display: inline-block;
}

.site_map_btn:hover {
    background: var(--terra2);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(208, 140, 76, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .site_map_title {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .site_map_title {
        font-size: 32px;
    }
    .site_map_btn {
        padding: 12px 35px;
        font-size: 14px;
    }
}

/* Floating Top-Right Header Controls */
.floating-header-controls {
    position: absolute;
    top: 28px;
    right: 40px;
    z-index: 5;
}

/* Get EOI Offer Pill Button */
.header-eoi-btn {
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    background: rgba(43, 27, 18, 0.7);
    border: 1px solid rgba(231, 203, 158, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.header-eoi-btn:hover {
    background: var(--terra);
    color: var(--white);
    border-color: var(--terra2);
    transform: translateY(-2px);
}

/* Hamburger Pill Button Floating */
.nav-toggle-btn {
    position: relative;
    top: auto;
    right: auto;
    background: rgba(43, 27, 18, 0.7);
    border: 1px solid rgba(231, 203, 158, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 0 14px;
    width: 52px;
    height: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.nav-toggle-btn:hover {
    background: var(--terra);
    border-color: var(--terra2);
    transform: scale(1.05);
}

.nav-toggle-btn .bar {
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle-btn:hover .bar {
    background: var(--white);
}

@media (max-width: 575px) {
    .floating-header-controls {
        top: 18px;
        right: 18px;
    }
    .header-eoi-btn {
        padding: 6px 14px;
        font-size: 11px;
    }
    .nav-toggle-btn {
        width: 44px;
        height: 34px;
        padding: 0 10px;
    }
}

/* Offcanvas Overlay WITHOUT Blur */
.nav-offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-offcanvas-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Light Theme Offcanvas Side Navigation Drawer */
.nav-offcanvas-drawer.light-theme {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 25vw;
    min-width: 320px;
    max-width: 420px;
    background: #F7F4EF;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    color: #1A1A1A;
    padding: 35px 30px;
    overflow-y: auto;
}

@media (max-width: 991px) {
    .nav-offcanvas-drawer.light-theme {
        width: 340px;
    }
}

@media (max-width: 575px) {
    .nav-offcanvas-drawer.light-theme {
        width: 85vw;
        min-width: unset;
        padding: 25px 20px;
    }
}

.nav-offcanvas-drawer.light-theme.active {
    transform: translateX(0);
}

.nav-drawer-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    padding-bottom: 10px;
}

.nav-drawer-brand {
    text-align: center;
}

.nav-drawer-brand .nav-drawer-logo {
    max-height: 52px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: none !important;
}

.close-drawer-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #1A1A1A;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
}

.close-drawer-btn:hover {
    background: #1A1A1A;
    color: #ffffff;
    border-color: #1A1A1A;
}

.nav-drawer-links.light-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.nav-drawer-links.light-links li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-drawer-links.light-links .nav-link-item {
    display: block;
    padding: 12px 0;
    color: #0E294B;
    text-decoration: none;
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    border: none;
}

.nav-drawer-links.light-links .nav-link-item:hover {
    color: #B8702F;
    padding-left: 8px;
    background: transparent;
}
