/* =========================================
   PALM OLYMPEIA
   PREMIUM REAL ESTATE WEBSITE
========================================= */

:root {
    --dark: #17231d;
    --dark-2: #22342b;
    --green: #506b59;
    --gold: #b79a62;
    --cream: #f5f2eb;
    --white: #ffffff;
    --text: #263029;
    --muted: #747b75;

    --serif: "Playfair Display", serif;
    --sans: "DM Sans", sans-serif;

    --container: 1180px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}


img {
    width: 100%;
    display: block;
    object-fit: cover;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
select {
    font-family: inherit;
}


.container {
    width: min(92%, var(--container));
    margin: auto;
}


.section {
    padding: 110px 0;
}

/* =========================================
   ROTATING ANNOUNCEMENT BAR
   PALM OLYMPEIA
========================================= */
/* ================= WEBSITE LOADER ================= */

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #17382f 0%,
            #0d211c 45%,
            #07120f 100%
        );

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}


/* Loader hidden state */

.site-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* Content */

.loader-content {
    width: 300px;
    text-align: center;
    animation: loaderContent 1.2s ease forwards;
}


/* Logo */

.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;

    color: #fff;

    letter-spacing: 5px;
    line-height: 1;
}

.loader-logo span {
    font-family: "Helvetica Neue", Arial, sans-serif;

    font-size: 13px;
    font-weight: 400;

    letter-spacing: 8px;
    margin-left: 8px;

    color: rgba(255,255,255,.75);
}

.loader-logo strong {
    margin-top: 9px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 32px;
    font-weight: 500;

    letter-spacing: 7px;

    color: #d2b879;
}


/* Loading line */

.loader-line {
    width: 180px;
    height: 1px;

    margin: 32px auto 20px;

    background: rgba(210,184,121,.20);

    overflow: hidden;
}

.loader-line span {
    display: block;

    width: 40%;
    height: 100%;

    background: #d2b879;

    animation: loaderLine 1.6s ease-in-out infinite;
}


/* Tagline */

.loader-content p {
    margin: 0;

    font-family: "Helvetica Neue", Arial, sans-serif;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: rgba(255,255,255,.55);
}


/* ================= ANIMATIONS ================= */

@keyframes loaderLine {

    0% {
        transform: translateX(-150%);
    }

    50% {
        transform: translateX(250%);
    }

    100% {
        transform: translateX(-150%);
    }

}

@keyframes loaderContent {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .loader-content {
        width: 260px;
    }

    .loader-logo strong {
        font-size: 27px;
        letter-spacing: 5px;
    }

    .loader-line {
        width: 150px;
    }

}

.loader-logo img {
    width: 180px;
    max-width: 80%;
    height: auto;
    object-fit: contain;
}

.announcement-bar {
    position: relative;

    width: 100%;
    height: 44px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            #101813,
            #18241d,
            #101813
        );

    color: #fff;

    border-bottom: 1px solid rgba(194, 163, 101, .25);

    overflow: hidden;

    z-index: 2000;
}


/* Subtle decorative glow */

.announcement-bar::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -160px;
    left: 20%;

    background: rgba(194, 163, 101, .08);

    border-radius: 50%;

    filter: blur(35px);

    pointer-events: none;
}


.announcement-bar::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -170px;
    right: 20%;

    background: rgba(194, 163, 101, .06);

    border-radius: 50%;

    filter: blur(35px);

    pointer-events: none;
}


/* =========================================
   INNER
========================================= */

.announcement-inner {
    position: relative;

    z-index: 2;

    width: min(1200px, calc(100% - 40px));

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================
   MESSAGE
========================================= */

.announcement-message {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 11px;

    letter-spacing: .3px;

    white-space: nowrap;

    opacity: 1;

    transform: translateY(0);

    transition:
        opacity .45s ease,
        transform .45s ease;
}


/* Animation state */

.announcement-message.hide {
    opacity: 0;

    transform: translateY(-12px);
}


/* =========================================
   BADGE
========================================= */

.announcement-badge {
    padding: 5px 9px;

    background: #b2945c;

    color: #fff;

    font-size: 7px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 1.5px;

    border-radius: 2px;
}


/* =========================================
   MAIN TEXT
========================================= */

.announcement-text {
    color: rgba(255,255,255,.70);
}


.announcement-text strong {
    color: #d5bd8b;

    font-weight: 600;
}


/* =========================================
   LINK
========================================= */

.announcement-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #d5bd8b;

    text-decoration: none;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    transition: color .3s ease;
}


.announcement-link span {
    font-size: 14px;

    line-height: 0;

    transition:
        transform .3s ease;
}


.announcement-link:hover {
    color: #fff;
}


.announcement-link:hover span {
    transform: translateX(4px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .announcement-bar {
        height: 42px;
    }


    .announcement-inner {
        width: calc(100% - 30px);
    }


    .announcement-message {
        gap: 8px;

        font-size: 9px;
    }


    .announcement-badge {
        padding: 4px 6px;

        font-size: 6px;
    }


    .announcement-link {
        font-size: 7px;

        letter-spacing: .8px;
    }


    .announcement-link span {
        font-size: 12px;
    }

}
/* =========================================
   NAVBAR
========================================= */

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    margin-top: 20px;
    left: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: 0.3s;
}


.navbar.scrolled {
    background: rgba(23, 35, 29, 0.96);
    backdrop-filter: blur(12px);
    padding: 15px 0;
}


.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   PALM OLYMPEIA LOGO
========================================= */

.logo {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 380px;
    height: auto;

    text-decoration: none;

    flex-shrink: 0;

    transition: transform 0.3s ease;
}


/* Logo image */

.logo img {
    display: block;

    width: 100%;
    height: auto;


    object-fit: cover;

    object-position: center;

    /* Removes unwanted inline image spacing */

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* Hover */

.logo:hover {
    transform: translateY(-1px);
}


.logo:hover img {
    opacity: 0.9;
}


/* =========================================
   NAVBAR LOGO
========================================= */

.navbar .logo {
    width: 160px;

    position: relative;

    z-index: 5;
}


.navbar .logo img {
    max-width: 160px;
    max-height: 60px;
}


/* =========================================
   SCROLLED NAVBAR
========================================= */

.navbar.scrolled .logo {
    width: 145px;
}


.navbar.scrolled .logo img {
    max-height: 52px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .navbar .logo {
        width: 140px;
    }

    .navbar .logo img {
        max-height: 52px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .navbar .logo {
        width: 120px;
    }

    .navbar .logo img {
        max-height: 45px;
    }

}


.navbar .logo {
    color: white;
}


.nav-menu {
    display: flex;
    gap: 32px;
    color: white;
}


.nav-menu a {
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}


.nav-menu a:hover {
    color: #d3bb87;
}


.nav-button {
    padding: 11px 22px;
    border: 1px solid rgba(255,255,255,.5);
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}


.nav-button:hover {
    background: white;
    color: var(--dark);
}


.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: white;
    font-size: 27px;
    cursor: pointer;
}


/* =========================================
   HERO
========================================= */
.hero-scroll {
    display: flex;
    align-items: center;
    gap: 14px;

    color: rgba(255, 255, 255, .65);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;

    animation: elegantFloat 3s ease-in-out infinite;
}

.hero-scroll div {
    width: 45px;
    height: 1px;

    background: #d2b879;
}

@keyframes elegantFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: .7;
    }

    50% {
        transform: translateY(-8px);
        opacity: 1;
    }

}


/* ================= HERO ================= */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111;
}


/* ================= HERO SLIDESHOW ================= */

.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    opacity: 0;
    transform: scale(1.05);

    transition:
        opacity 1.2s ease-in-out,
        transform 4s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}


/* ================= OVERLAY ================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.48) 45%,
            rgba(0, 0, 0, 0.20) 100%
        );
}


/* ================= HERO CONTENT ================= */

.hero-content {
    position: relative;
    z-index: 3;
}


/* ================= SCROLL ================= */

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);

    z-index: 4;

    display: flex;
    align-items: center;
    gap: 14px;

    color: rgba(255,255,255,.75);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    animation: elegantFloat 3s ease-in-out infinite;
}

.hero-scroll div {
    width: 45px;
    height: 1px;
    background: #d2b879;
}


/* ================= FLOAT ANIMATION ================= */

@keyframes elegantFloat {

    0%,
    100% {
        transform: translate(-50%, 0);
        opacity: .7;
    }

    50% {
        transform: translate(-50%, -8px);
        opacity: 1;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .hero {
        min-height: 620px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.72),
                rgba(0,0,0,.40)
            );
    }

    .hero-scroll {
        bottom: 25px;
        font-size: 8px;
    }

    .hero-scroll div {
        width: 32px;
    }

}
.hero {
    height: 100vh;
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;

    background:
        url("./images/Tinted_palm_olympeia.png")
        center/cover no-repeat;
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(12,22,16,.82),
            rgba(12,22,16,.30),
            rgba(12,22,16,.15)
        );
}


.hero-content {
    position: relative;
    color: white;
    max-width: 800px;
}


.eyebrow,
.section-label {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
}


.hero h1 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(55px, 8vw, 105px);
    line-height: .98;
    margin: 20px 0;
}


.hero h1 span {
    display: block;
    font-style: italic;
}


.hero-description {
    max-width: 580px;
    font-size: 17px;
    color: rgba(255,255,255,.82);
}


.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}


.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
    border: 1px solid transparent;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: .3s;
}


.btn-primary {
    background: var(--gold);
    color: white;
}


.btn-primary:hover {
    background: #9f824b;
    transform: translateY(-2px);
}


.btn-outline {
    color: white;
    border-color: rgba(255,255,255,.7);
}


.btn-outline:hover {
    background: white;
    color: var(--dark);
}


.hero-scroll {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.hero-scroll div {
    height: 40px;
    width: 1px;
    background: rgba(255,255,255,.7);
    margin: 10px auto 0;
}


/* =========================================
   STATS
========================================= */

.stats {
    background: var(--dark);
    color: white;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}


.stat {
    padding: 35px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.1);
}


.stat:last-child {
    border: 0;
}


.stat h3 {
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 500;
}


.stat p {
    color: #aeb8b0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================
   ABOUT
========================================= */

.about {
    background: var(--cream);
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}


.about-image {
    position: relative;
}


.about-image img {
    height: 620px;
}


.image-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--dark);
    color: white;
    padding: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
}


.image-badge strong {
    font-family: var(--serif);
    font-size: 35px;
    color: var(--gold);
}


.image-badge span {
    font-size: 11px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.about-content h2,
.section-heading h2,
.location-content h2,
.cta h2,
.contact-content h2 {
    font-family: var(--serif);
    font-size: clamp(40px,5vw,65px);
    font-weight: 500;
    line-height: 1.08;
    margin: 15px 0 25px;
}


em {
    color: var(--gold);
    font-weight: 500;
}


.about-content p {
    color: var(--muted);
    margin-bottom: 20px;
}


.text-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--dark);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    font-size: 13px;
    font-weight: 600;
}


/* =========================================
   HIGHLIGHTS
========================================= */

/* =========================================
   APARTMENT SIZES
========================================= */

.apartment-sizes {
    position: relative;

    padding: 120px 20px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(183, 154, 98, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(80, 107, 89, 0.06),
            transparent 30%
        ),
        #f5f2eb;

    overflow: hidden;
}


/* Decorative circle */

.apartment-sizes::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(183, 154, 98, 0.12);

    border-radius: 50%;

    right: -250px;
    top: -250px;

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.apartment-container {
    position: relative;

    z-index: 2;

    width: min(1180px, 100%);

    margin: auto;
}


/* =========================================
   HEADING
========================================= */

.apartment-heading {
    max-width: 720px;

    margin: 0 auto 65px;

    text-align: center;
}


.apartment-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: #a98a52;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;
}


.apartment-heading h2 {
    margin: 0;

    color: #18221d;

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 500;

    line-height: 1.05;
}


.apartment-heading h2 em {
    color: #b2945c;

    font-style: italic;
}


.apartment-heading p {
    max-width: 580px;

    margin: 22px auto 0;

    color: #777b76;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   APARTMENT GRID
========================================= */

.apartment-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* =========================================
   APARTMENT CARD
========================================= */

.apartment-card {
    position: relative;

    min-height: 455px;

    padding: 34px 30px 28px;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e5dfd3;

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


/* Top gold line */

.apartment-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #b2945c;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .4s ease;
}


.apartment-card:hover {
    transform: translateY(-8px);

    border-color: #cbb98f;

    box-shadow:
        0 25px 60px rgba(31, 37, 32, .12);
}


.apartment-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   CARD HEADER
========================================= */

.apartment-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 23px;

    border-bottom: 1px solid #ebe7df;
}


.apartment-number {
    color: #b2945c;

    font-family: "Playfair Display", serif;

    font-size: 20px;
}


.apartment-type {
    color: #92958f;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;
}


/* =========================================
   CARD CONTENT
========================================= */

.apartment-content {
    padding: 30px 0 25px;
}


.apartment-content h3 {
    margin: 0 0 17px;

    color: #18221d;

    font-family: "Playfair Display", serif;

    font-size: 27px;

    font-weight: 500;

    line-height: 1.2;
}


/* =========================================
   AREA
========================================= */

.apartment-area {
    display: flex;

    align-items: baseline;

    gap: 9px;

    margin-bottom: 16px;
}


.apartment-area strong {
    color: #b2945c;

    font-family: "DM Sans", sans-serif;

    font-size: 39px;

    font-weight: 600;

    letter-spacing: -1.5px;
}


.apartment-area span {
    color: #858983;

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.apartment-description {
    color: #777c76;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================
   FEATURES
========================================= */

.apartment-features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-top: auto;

    padding: 20px 0;

    border-top: 1px solid #ebe7df;

    border-bottom: 1px solid #ebe7df;
}


.apartment-feature {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.apartment-feature strong {
    color: #26312b;

    font-size: 14px;

    font-weight: 600;
}


.apartment-feature span {
    color: #92958f;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: .8px;
}


/* =========================================
   CARD BUTTON
========================================= */

.apartment-btn {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 22px;

    color: #26312b;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: color .3s ease;
}


.apartment-btn span {
    color: #b2945c;

    font-size: 18px;

    transition: transform .3s ease;
}


.apartment-btn:hover {
    color: #b2945c;
}


.apartment-btn:hover span {
    transform: translateX(6px);
}


/* =========================================
   BOTTOM CTA
========================================= */

.apartment-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 35px;

    padding: 27px 30px;

    border: 1px solid #ddd7ca;

    background: rgba(255,255,255,.45);
}


.apartment-bottom span {
    display: block;

    margin-bottom: 6px;

    color: #a98a52;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.apartment-bottom p {
    margin: 0;

    color: #5f655f;

    font-size: 12px;
}


.apartment-enquire {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 14px 23px;

    border: 1px solid #b2945c;

    color: #26312b;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    white-space: nowrap;

    transition: .3s;
}


.apartment-enquire span {
    margin: 0;

    font-size: 17px;

    letter-spacing: 0;
}


.apartment-enquire:hover {
    background: #b2945c;

    color: #fff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .apartment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .apartment-sizes {
        padding: 80px 15px;
    }


    .apartment-heading {
        margin-bottom: 45px;
    }


    .apartment-heading h2 {
        font-size: 40px;
    }


    .apartment-heading p {
        font-size: 13px;
    }


    .apartment-grid {
        grid-template-columns: 1fr;
    }


    .apartment-card {
        min-height: 420px;

        padding: 30px 25px;
    }


    .apartment-bottom {
        flex-direction: column;

        align-items: flex-start;

        padding: 25px;
    }


    .apartment-enquire {
        width: 100%;

        justify-content: center;
    }

}


/* =========================================
   PALM OLYMPEIA
   LUXURY PROJECT DETAILS
========================================= */

.project-details {
    position: relative;
    padding: 110px 20px;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(184, 151, 88, 0.10),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(184, 151, 88, 0.07),
            transparent 35%
        ),
        #121a16;

    color: #fff;
    overflow: hidden;
}


/* Decorative background line */

.project-details::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(190, 160, 98, 0.08);
    border-radius: 50%;

    right: -180px;
    top: -180px;
}


.project-details::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border: 1px solid rgba(190, 160, 98, 0.06);
    border-radius: 50%;

    left: -170px;
    bottom: -180px;
}


/* =========================================
   CONTAINER
========================================= */

.project-details-container {
    position: relative;
    z-index: 2;

    width: min(1180px, 100%);
    margin: auto;
}


/* =========================================
   HEADING
========================================= */

.details-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 65px;
}


.details-eyebrow {
    display: inline-block;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;

    color: #c5a66b;

    margin-bottom: 18px;
}


.details-heading h2 {
    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 500;

    line-height: 1.05;

    color: #fff;
}


.details-heading h2 em {
    color: #c5a66b;
    font-style: italic;
}


.details-heading p {
    margin: 22px auto 0;

    max-width: 550px;

    color: rgba(255,255,255,.58);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   GRID
========================================= */

.details-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 1px;

    background: rgba(255,255,255,.09);

    border: 1px solid rgba(255,255,255,.09);
}


/* =========================================
   CARD
========================================= */

.detail-card {
    position: relative;

    min-height: 190px;

    padding: 38px 42px;

    display: flex;
    align-items: flex-start;

    gap: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.018)
        );

    transition:
        transform .4s ease,
        background .4s ease,
        box-shadow .4s ease;

    overflow: hidden;
}


/* Gold vertical accent */

.detail-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 0;

    background: #c5a66b;

    transition: height .4s ease;
}


.detail-card:hover {
    background:
        linear-gradient(
            135deg,
            rgba(197,166,107,.13),
            rgba(255,255,255,.035)
        );

    transform: translateY(-3px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.20);
}


.detail-card:hover::before {
    height: 100%;
}


/* =========================================
   ICON
========================================= */

.detail-icon {
    flex: 0 0 54px;

    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(197,166,107,.35);

    color: #c5a66b;

    font-family: "Playfair Display", serif;

    font-size: 22px;

    position: relative;
}


.detail-icon::after {
    content: "";

    position: absolute;

    inset: 5px;

    border: 1px solid rgba(197,166,107,.10);
}


.detail-icon span {
    position: relative;
    z-index: 2;
}


/* =========================================
   CONTENT
========================================= */

.detail-content {
    padding-top: 2px;
}


.detail-label {
    display: block;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 2.5px;

    color: rgba(255,255,255,.50);

    margin-bottom: 9px;
}


.detail-content h3 {
    margin: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 21px;

    font-weight: 600;

    letter-spacing: .3px;

    color: #fff;

    line-height: 1.3;
}


.detail-content h3 small {
    font-size: 11px;

    font-weight: 400;

    color: #c5a66b;

    letter-spacing: 1px;
}


.detail-content p {
    margin-top: 8px;

    font-size: 11px;

    color: rgba(255,255,255,.40);

    letter-spacing: .2px;
}


/* Status */

.detail-content h3.status {
    color: #d7c08e;

    font-size: 17px;

    letter-spacing: .8px;
}


/* =========================================
   BOTTOM CTA
========================================= */

.details-bottom {
    margin-top: 55px;

    padding: 32px 38px;

    border: 1px solid rgba(197,166,107,.20);

    background:
        linear-gradient(
            90deg,
            rgba(197,166,107,.09),
            transparent
        );

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}


.details-bottom > div span {
    display: block;

    color: #c5a66b;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2.5px;

    margin-bottom: 8px;
}


.details-bottom h3 {
    font-family: "Playfair Display", serif;

    font-size: 25px;

    font-weight: 500;
}


.details-bottom h3 em {
    color: #c5a66b;
    font-style: italic;
}


/* =========================================
   BUTTON
========================================= */

.details-btn {
    display: inline-flex;

    align-items: center;

    gap: 22px;

    padding: 15px 24px;

    border: 1px solid #c5a66b;

    color: #fff;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    transition: .35s;

    white-space: nowrap;
}


.details-btn span {
    font-size: 18px;

    color: #c5a66b;

    transition: transform .35s;
}


.details-btn:hover {
    background: #c5a66b;

    color: #111914;
}


.details-btn:hover span {
    color: #111914;

    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .project-details {
        padding: 80px 18px;
    }


    .details-grid {
        grid-template-columns: 1fr;
    }


    .detail-card {
        min-height: 165px;

        padding: 30px;
    }


    .details-bottom {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 500px) {

    .project-details {
        padding: 70px 15px;
    }


    .details-heading {
        margin-bottom: 45px;
    }


    .details-heading h2 {
        font-size: 42px;
    }


    .details-heading p {
        font-size: 13px;
    }


    .detail-card {
        min-height: 150px;

        padding: 27px 22px;

        gap: 18px;
    }


    .detail-icon {
        width: 45px;
        height: 45px;

        flex-basis: 45px;

        font-size: 18px;
    }


    .detail-content h3 {
        font-size: 17px;
    }


    .detail-content h3.status {
        font-size: 14px;
    }


    .detail-content p {
        font-size: 10px;
    }


    .details-bottom h3 {
        font-size: 22px;
    }


    .details-btn {
        width: 100%;

        justify-content: center;
    }

}




.section-heading {
    margin-bottom: 55px;
}


.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: #ddd;
}


.highlight-card {
    background: white;
    padding: 45px;
}


.card-number {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 25px;
    margin-bottom: 30px;
}


.highlight-card h3 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 15px;
}


.highlight-card p {
    color: var(--muted);
    font-size: 14px;
}


/* =========================================
   AMENITIES
========================================= */

.amenities {
    background: var(--dark);
    color: white;
}


.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


.centered > p:last-child {
    color: #aeb8b0;
}


.amenity-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: rgba(255,255,255,.12);
    margin-top: 60px;
}


.amenity-card {
    background: var(--dark);
    padding: 45px 35px;
    transition: .3s;
}


.amenity-card:hover {
    background: var(--dark-2);
}


.amenity-icon {
    width: 55px;
    height: 55px;
    border: 1px solid rgba(183,154,98,.5);
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 25px;
}


.amenity-card h3 {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 10px;
}


.amenity-card p {
    color: #9ea8a1;
    font-size: 13px;
}


/* =========================================
   GALLERY
========================================= */

.gallery {
    background: var(--cream);
}


.gallery-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
}


.gallery-heading > p {
    width: 350px;
    color: var(--muted);
}


.gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 15px;
}


.gallery-item {
    overflow: hidden;
}


.gallery-item img {
    height: 100%;
    transition: transform .6s;
}


.gallery-item:hover img {
    transform: scale(1.05);
}


.gallery-item.large {
    grid-row: span 2;
}


.gallery-item.wide {
    grid-column: span 2;
}


/* =========================================
   FLOOR PLANS
========================================= */

.floorplans {
    background: white;
}


.plan-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}


.plan-card {
    border: 1px solid #e5e5e5;
    background: white;
    transition: .3s;
}


.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}


.plan-image {
    height: 240px;
    overflow: hidden;
}


.plan-image img {
    height: 100%;
}


.plan-info {
    padding: 28px;
}


.plan-info p {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gold);
}


.plan-info h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    margin: 5px 0;
}


.plan-info span {
    color: var(--muted);
    font-size: 12px;
}


.plan-info a {
    display: block;
    margin-top: 22px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================
   LOCATION
========================================= */

.location {
    background: var(--cream);
}


.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}


.location-content > p:not(.section-label) {
    color: var(--muted);
    max-width: 550px;
}


.location-list {
    margin-top: 35px;
}


.location-list div {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 17px 0;
    border-bottom: 1px solid #ddd;
}


.location-list strong {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 20px;
    min-width: 70px;
}


.location-list span {
    font-size: 13px;
}


.map-box {
    height: 500px;
    background:
        linear-gradient(rgba(255,255,255,.7),rgba(255,255,255,.7)),
        repeating-linear-gradient(
            45deg,
            #d9ddd8 0,
            #d9ddd8 1px,
            transparent 1px,
            transparent 35px
        );
    overflow: hidden;
}


.map-placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    position: relative;
}


.map-pin {
    z-index: 2;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: var(--dark);
    color: white;
    display: grid;
    place-items: center;
    text-align: center;
    font-family: var(--serif);
    font-size: 13px;
    letter-spacing: 1px;
}


.map-ring {
    position: absolute;
    border: 1px solid rgba(80,107,89,.25);
    border-radius: 50%;
}


.ring-1 {
    width: 250px;
    height: 250px;
}


.ring-2 {
    width: 400px;
    height: 400px;
}


.ring-3 {
    width: 600px;
    height: 600px;
}


/* =========================================
   CTA
========================================= */

.cta {
    background:
        linear-gradient(rgba(23,35,29,.92),rgba(23,35,29,.92)),
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=80")
        center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}


.cta-content {
    max-width: 750px;
}


.cta p:not(.section-label) {
    color: #b8c0ba;
    margin-bottom: 30px;
}


.btn-light {
    background: white;
    color: var(--dark);
}


.btn-light:hover {
    background: var(--gold);
    color: white;
}


/* =========================================
   CONTACT
========================================= */

.contact {
    background: white;
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}


.contact-content > p:not(.section-label) {
    color: var(--muted);
    max-width: 480px;
}


.contact-details {
    margin-top: 40px;
}


.contact-details div {
    margin-bottom: 22px;
}


.contact-details span {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 5px;
}


.contact-details a {
    font-family: var(--serif);
    font-size: 20px;
}


.contact-form {
    background: var(--cream);
    padding: 40px;
}


.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;
    font-size: 11px;
    margin-bottom: 7px;
    font-weight: 600;
}


.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    background: white;
    outline: none;
}


.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
}


.form-button {
    width: 100%;
    border: 0;
}


.form-message {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: var(--green);
}


/* =========================================
   FOOTER
========================================= */

footer {
    background: var(--dark);
    color: white;
}


.footer-grid {
    padding: 70px 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}


.footer-brand p {
    margin-top: 20px;
    color: #98a49b;
    max-width: 280px;
    font-size: 13px;
}


.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}


.footer-links h4 {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}


.footer-links a {
    font-size: 13px;
    color: #b2bbb4;
}


.footer-links a:hover {
    color: white;
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    color: #778279;
    font-size: 11px;
}


/* =========================================
   WHATSAPP
========================================= */

.whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 999;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    font-size: 28px;
    line-height: 1;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .20);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.whatsapp i {
    display: block;

    font-size: 27px;
}


/* Hover effect */

.whatsapp:hover {
    transform: translateY(-4px) scale(1.05);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .25);
}


/* Mobile */

@media (max-width: 600px) {

    .whatsapp {
        width: 52px;
        height: 52px;

        right: 18px;
        bottom: 18px;

        font-size: 24px;
    }

    .whatsapp i {
        font-size: 24px;
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 900px) {

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        padding: 25px;
        gap: 18px;
        display: none;
    }


    .nav-menu.active {
        display: flex;
    }


    .nav-button {
        display: none;
    }


    .menu-toggle {
        display: block;
    }


    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }


    .stat:nth-child(2) {
        border-right: 0;
    }


    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }


    .about-image img {
        height: 500px;
    }


    .highlight-grid,
    .amenity-grid,
    .plan-grid {
        grid-template-columns: 1fr 1fr;
    }

    @media (max-width: 900px) {
    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .amenity-grid {
        grid-template-columns: 1fr;
    }
}


    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 250px;
    }


    .gallery-item.large {
        grid-row: span 1;
    }


    .gallery-item.wide {
        grid-column: span 2;
    }


    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media(max-width: 600px) {

    .section {
        padding: 75px 0;
    }


    .hero {
        min-height: 650px;
    }


    .hero h1 {
        font-size: 54px;
    }


    .hero-description {
        font-size: 14px;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
    }


    .stats-grid,
    .highlight-grid,
    .amenity-grid,
    .plan-grid {
        grid-template-columns: 1fr;
    }


    .stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }


    .about-image img {
        height: 400px;
    }


    .image-badge {
        right: 10px;
    }


    .gallery-heading {
        display: block;
    }


    .gallery-heading > p {
        width: auto;
        margin-top: 20px;
    }


    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4,220px);
    }


    .gallery-item.wide {
        grid-column: span 1;
    }


    .map-box {
        height: 350px;
    }


    .contact-form {
        padding: 25px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }


    .whatsapp {
        right: 15px;
        bottom: 15px;
    }

}