/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset & Variables */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Adjust for fixed header */
}

:root {
    --green-dark: #0f3521;
    --gold: #dcb36c;
    --gold-light: #f4ebd4;
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --bg-light: #fcfcfc;
    --border-color: #eaeaea;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

/* Typography Utilities */
.serif {
    font-family: 'Playfair Display', serif;
}

.fw-medium {
    font-weight: 500;
}

.fw-bold {
    font-weight: 700;
}

.text-gold {
    color: var(--gold);
}

.text-green {
    color: var(--green-dark);
}

.text-muted-custom {
    color: var(--text-muted);
}

/* --- HEADER --- */
.site-header {
    background-color: transparent;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background-color: var(--bg-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.site-header .container-fluid {
    padding-left: 3%;
    padding-right: 3%;
}

.header-row {
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: 75px;
    width: auto;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.section-heading {
    font-size: 48px;
    line-height: 56px;
    font-weight: 600;
    color: #000000;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.phone-contact {
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.phone-link {
    color: inherit;
    text-decoration: none;
}

.phone-icon {
    color: var(--gold);
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-enquire {
    background-color: var(--gold);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-enquire:hover {
    background-color: var(--green-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- HERO SECTION --- */
.hero-wrapper {
    position: relative;
    background-image: url('../images/Header-Sigma-Galleria-Building.webp');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-bottom: 50px;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Fade out the gradient precisely after the content */
    background: linear-gradient(90deg, rgba(252, 252, 252, 1) 0%, rgba(252, 252, 252, 0.95) 30%, rgba(252, 252, 252, 0) 45%);
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    /* Compensate for fixed header */
}

.hero-content {
    padding: 30px 0;
}

.hero-location {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-title {
    font-size: 4.8rem;
    line-height: 1.05;
    color: var(--green-dark);
    margin-bottom: 10px;
    font-weight: 500 !important;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    max-width: 300px;
}

.hero-divider .line {
    height: 1px;
    flex: 1;
}

.hero-divider .line:first-child {
    background: linear-gradient(90deg, #032514 0%, var(--gold) 100%);
}

.hero-divider .line:last-child {
    background: linear-gradient(90deg, var(--gold) 0%, rgba(218, 165, 32, 0) 100%);
}

.hero-divider .diamond {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    transform: rotate(45deg);
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-categories {
    display: grid;
    grid-template-columns: max-content max-content auto;
    column-gap: 15px;
    row-gap: 8px;
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    align-items: center;
    font-weight: 500;
}

.hero-categories .divider {
    color: #999;
    text-align: center;
}

.hero-action-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-solid-dark {
    background-color: var(--green-dark);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--green-dark);
    transition: all 0.3s ease;
}

.btn-solid-dark:hover {
    background-color: var(--gold);
    color: var(--text-dark);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-gold-light {
    background-color: var(--gold-light);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 4px;
    border: 1px solid #dfd1b0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-gold-light:hover {
    background-color: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rera-badge {
    background-color: var(--gold-light);
    border: 1px solid #dfd1b0;
    padding: 12px 20px;
    border-radius: 4px;
    display: inline-block;
}

.rera-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.rera-value {
    font-size: 0.9rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* --- HIGHLIGHTS BAR --- */
.highlights-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    padding: 0 15px;
}

.highlights-bar {
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    /* Increased gap */
}

.highlight-icon {
    font-size: 2.2rem;
    /* Increased icon size */
    color: var(--gold-light);
    -webkit-text-stroke: 1.5px #1a1a1a;
    margin-top: 2px;
}

.highlight-text-content {
    /* Removed flex: 1 to allow justify-content: center to work correctly */
}

.highlight-title {
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #000;
}

.highlight-desc {
    font-size: 0.75rem;
    /* Increased font-size */
    color: #1a1a1a;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    /* Increased line-height */
}

.highlights-row {
    align-items: center;
}

/* Dividers in highlights bar */
@media (min-width: 992px) {
    .highlights-row>div:not(:last-child) {
        border-right: 1px solid #f0f0f0;
    }
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 100px 0 0;
}

.about-row {
    align-items: center;
}

.section-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 700;
}

/* --- CUSTOM MODAL & CAROUSEL --- */
.custom-modal {
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.custom-modal .modal-header {
    padding: 20px 24px 10px;
}

.custom-modal .modal-title {
    color: var(--green-dark);
    font-weight: 700;
    font-size: 1.5rem;
}

.custom-close {
    background-color: var(--bg-light);
    border-radius: 50%;
    opacity: 0.8;
    padding: 12px;
}

.custom-close:hover {
    opacity: 1;
    background-color: #eee;
}

.custom-carousel-inner {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.carousel-img {
    max-height: 70vh;
    object-fit: cover;
}

.custom-carousel-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

#floorPlanCarousel:hover .custom-carousel-btn {
    opacity: 1;
}

.carousel-btn-icon {
    color: var(--green-dark);
    font-size: 1.2rem;
}

.custom-carousel-btn.carousel-control-prev {
    left: 20px;
}

.custom-carousel-btn.carousel-control-next {
    right: 20px;
}

.custom-carousel-btn:hover {
    background-color: var(--gold);
}

.custom-carousel-btn:hover .carousel-btn-icon {
    color: #fff;
}


.about-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    padding-right: 20px;
    margin-bottom: 16px;
}

.about-icons-row {
    display: flex;
    text-align: center;
    gap: 10px;
}

.about-icon-box {
    flex: 1;
}

.about-icon {
    font-size: 40px;
    color: var(--gold-light);
    -webkit-text-stroke: 1.5px #1a1a1a;
    margin-bottom: 14px;
}

.about-icon-text {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    line-height: 20px;
}

.about-image-wrapper {
    width: 100%;
}

.about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-img {
        height: 250px;
        margin-top: 30px;
    }
}

/* --- PROJECT OVERVIEW --- */
.overview-section {
    padding: 100px 0;
}

.center-title-wrapper {
    text-align: center;
}

.center-title {
    font-size: 48px;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    background-color: #ffffff;
    padding: 0;
    margin: 0 0 50px;
    font-family: "Playfair Display", serif;
}

.section-title-large {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: "Playfair Display", serif
}

.overview-box {
    background-color: #ffffff;
    border: 1px solid #efe8df;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.stat-item {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .stat-item {
        border-right: 1px solid #efe8df;
    }

    .stat-item.border-0 {
        border-right: none;
    }
}

.stat-icon {
    font-size: 3.8rem;
    color: var(--gold-light);
    -webkit-text-stroke: 1.5px #1a1a1a;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a1a;
    padding: 10px 0;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.stat-desc {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
}

/* --- SPACES SECTION --- */
.spaces-section {
    padding: 0px 0 100px 0;
}

.spaces-row>div {
    display: flex;
}

.space-card {
    background-color: #ffffff;
    border: 1px solid #efe8df;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: none;
}

.space-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.space-info {
    padding: 25px 20px 30px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.space-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.space-desc {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.space-link {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 800;
    color: #1a1a1a;
    transition: color 0.3s;
}

.space-link i {
    margin-left: 5px;
    font-size: 0.9em;
}

.space-link:hover {
    color: var(--gold);
}

/* --- INVEST SECTION --- */
.invest-section {
    padding: 0 0 100px;
}

.invest-section-title {
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    font-family: "Playfair Display", serif
}

.invest-box {
    background-color: #ffffff;
    border: 1px solid #efe8df;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.invest-item {
    padding: 40px 15px 35px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .invest-item {
        border-right: 1px solid #efe8df;
    }

    .invest-item.border-0 {
        border-right: none;
    }
}
.invest-icon {
    font-size: 3.8rem;
    color: #556B2F;
    margin-bottom: 37px;
}
.invest-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

/* .invest-item p {
    font-size: 0.85rem;
    color: #444;
    margin: 0;
    line-height: 1.6;
} */

/* --- FLOOR PLAN --- */
.floor-plan-section {
    background-color: #fff6dd96;
    padding: 100px 0;
}



.floor-plan-row {
    align-items: stretch;
}

.floor-plan-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.floor-plan-content .section-label {
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 1px;
}

/* .floor-plan-content .section-heading {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
} */

.floor-plan-content .text-muted-custom {
    margin-bottom: 25px;
}

.btn-floor-plan {
    background-color: #032514;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-floor-plan:hover {
    background-color: #0a3a24;
    color: #ffffff;
}

.floor-plan-img-wrapper {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

/* @media (min-width: 768px) {
    .floor-plan-img-wrapper {
        position: absolute;
        top: 0;
        left: 15px;
        width: calc(100% - 30px);
        height: 100%;
        margin-top: 0;
    }
} */

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

/* --- LOCATION & CONTACT --- */
.location-contact {
    padding: 100px 0;
    background-color: #fcfbf8;
    /* Same background as floor plan */
}

.loc-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    letter-spacing: 0.5px;
}

.loc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.loc-list-item {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.loc-list-icon {
    color: #222;
    margin-top: 3px;
    font-size: 0.9rem;
}

.map-view-container {
    width: 100%;
    height: 400px;
    /* Fixed height so it's landscape like the image */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #efe8df;
}

.map-view-iframe {
    border: none;
}

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

.contact-block {
    margin-bottom: 25px;
}

/* .loc-desc {
    line-height: 1.6;
} */

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #333;
}

.contact-icon {
    font-size: 1rem;
    color: #222;
}

.loc-desc {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--green-dark);
    padding: 100px 0 0;
    color: #ffffff;
}

.footer-row {
    align-items: center;
}

.footer-title {
    font-size: 40px;
    margin-bottom: 0;
    font-weight: 700;
	    font-family: 'Playfair Display', serif;
}

.footer-desc {
    font-size: 16px;
    color: #fff;
    padding: 30px 0;
}

.footer-input,
.footer-select {
    width: 100%;
    padding: 14px 18px;
    border: none;
    background-color: #ffffff;
    font-family: inherit;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.footer-input:focus,
.footer-select:focus {
    outline: none;
}

.btn-submit {
    width: 100%;
    background-color: var(--gold);
    color: #ffffff;
    border: none;
    padding: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-submit:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-row {
    align-items: center;
    width: 60%;
    margin: 0 auto;
}
.footer-text {
    text-align: center;
}

.copy-right p {
    color: #fff;
    font-size: 16px;
}
.copy-right {
    padding: 50px 50px 20px;
    align-items: center;
    justify-content: space-between;
}

.footer-row ul {
    list-style: none;
    margin: 50px 0 0;
    padding: 0;
}

.footer-row ul li i {
    font-size: 40px;
    font-weight: 600;
    margin-right: 20px;
}



.footer-row ul li {
    font-size: 40px;
    margin-bottom: 30px;
}

.site-m {
    font-size: 12px !important;
}