/* BASIC */
* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif
}

/* HEADER (fixed on scroll) */
.site-header {
    position: sticky;
    /* becomes fixed when you scroll */
    top: 0;
    z-index: 9999;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
    height: 90px;
    /* similar to screenshot */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    height: 55px;
    /* adjust as per your logo */
    width: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 48px;
    /* spacing like screenshot */
}

.nav-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    color: #0a9aa4;
    /* teal */
    padding: 8px 2px;
}

.nav-link.active {
    color: #f2b705;
    /* yellow for Home */
}

/* optional hover */
.nav-link:hover {
    opacity: .85;
    color: #f2b705;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        height: 76px
    }

    .nav {
        gap: 18px
    }

    .nav-link {
        font-size: 14px
    }

    .brand img {
        height: 48px
    }
}



/* Header Image section */
/* =========================
   HERO SECTION
========================= */
.hero-enquiry {
    position: relative;
    height: 95vh;
    /* control main height here */
    min-height: 500px;
    overflow: hidden;
}

/* =========================
   BACKGROUND SLIDER
========================= */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;

    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .6s ease;
}


.hero-bg-slide.active {
    opacity: 1;
}

/* Optional dark overlay */
.hero-enquiry::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 2;
}

/* =========================
   CONTENT WRAP
========================= */
.hero-wrap {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 480px;
    align-items: center;
}

/* =========================
   FORM CARD
========================= */
.enq-div {
    display: flex;
    justify-content: flex-end;
}

.enquiry-card {
    background: rgba(0, 0, 0, .75);
    padding: 30px;
    border-radius: 8px;
    width: 100%;
}

.enquiry-div h2 {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    border-radius: 4px;

    color: #c9a15d;
    margin-bottom: 20px;
    font-weight: 600;
    background-color: white;
    text-align: center;

}

/* fields */
.field input,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: none;
    font-size: 12px;
}

.field textarea {
    resize: none;
}

/* button */
.btn-submit {
    width: 100%;
    padding: 15px;
    background: #c9a15d;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn-submit:hover {
    opacity: .9;
}

/* =========================
   DOTS
========================= */
.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
}

.hero-dots button.active {
    background: #c9a15d;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .hero-wrap {
        grid-template-columns: 1fr;
    }

    .enq-div {
        justify-content: center;
        margin-top: 40px;
    }
}





/* Project Section */

.pf-section {
    background: #fff;
}

.pf-title-wrap {
    padding: 40px 0 18px;
    text-align: center;
}

.pf-title {
    margin: 0;
    font-size: 54px;
    letter-spacing: 1px;
    font-weight: 500;
    color: #0b8f90;
    /* teal like screenshot */
    text-transform: uppercase;
}

.pf-band {
    background: #0b8f90;
    /* teal band */
    padding: 70px 0 90px;
}

.pf-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px;
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 60px 40px;
    /* row gap / column gap */
    align-items: center;
    justify-items: center;
}

.pf-item {
    text-align: center;
    color: #fff;
}

.pf-ico {
    font-size: 44px;
    line-height: 1;
    display: inline-block;
    margin-bottom: 14px;
}

.pf-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .2px;
}

/* Responsive */
@media (max-width: 1100px) {
    .pf-title {
        font-size: 44px;
    }

    .pf-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .pf-title {
        font-size: 34px;
    }

    .pf-band {
        padding: 55px 0 70px;
    }

    .pf-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 22px;
    }

    .pf-ico {
        font-size: 38px;
    }
}

@media (max-width: 520px) {
    .pf-title {
        font-size: 28px;
    }

    .pf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Footer section */

.ft {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* TOP (Teal) */
.ft-top {
    background: #0b8f90;
    /* teal like screenshot */
    padding: 70px 0 80px;
}

.ft-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px;
}

.ft-grid {
    display: grid;
    grid-template-columns: 420px 1fr 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Brand block */
.ft-brand {
    text-align: center;
}

.ft-logo {
    width: 240px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.ft-tagline {
    margin: 0 0 38px;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .75);
}

/* Social */
.ft-social {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.ft-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f2b705;
    /* yellow icons bg like screenshot */
    color: #0b8f90;
    text-decoration: none;
    transition: .25s ease;
}

.ft-social a:hover {
    transform: translateY(-2px);
    filter: brightness(.95);
}

/* Columns */
.ft-title {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.ft-links,
.ft-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.ft-links a,
.ft-info a {
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.ft-links a:hover,
.ft-info a:hover {
    text-decoration: underline;
}

.ft-address {
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.7;
}

/* BOTTOM (Dark bar) */
.ft-bottom {
    background: #071226;
    padding: 18px 0;
}

.ft-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.ft-copy,
.ft-note {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1100px) {
    .ft-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ft-brand {
        text-align: left;
    }

    .ft-social {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .ft-top {
        padding: 50px 0 60px;
    }

    .ft-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ft-brand {
        text-align: center;
    }

    .ft-social {
        justify-content: center;
    }

    .ft-bottom-row {
        justify-content: center;
        text-align: center;
    }
}


/* Content Section */

.proj-about {
    background: #fff;
    padding: 70px 0;
}

.proj-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

.proj-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: start;
}

.proj-title {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    color: #0b8f8a;
    /* teal like screenshot */
    line-height: 1.2;
}

.proj-underline {
    width: 56px;
    height: 3px;
    background: #f2b705;
    /* yellow underline */
    margin: 14px 0 26px;
    border-radius: 2px;
}

.proj-text p {
    margin: 0 0 18px;
    color: #2a2a2a;
    font-size: 15.5px;
    line-height: 1.85;
}

.proj-media {
    display: flex;
    justify-content: flex-end;
}

.proj-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
    height: 600px;
}

/* Responsive */
@media (max-width: 992px) {
    .proj-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .proj-media {
        justify-content: flex-start;
    }

    .proj-img {
        max-width: 100%;
    }
}


/* Floor Plan Section */

.floorplan {
    background: #fff;
    padding: 70px 0 90px;
}

.fp-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
    text-align: center;
}

.fp-title {
    margin: 0;
    font-size: 44px;
    letter-spacing: 2px;
    font-weight: 800;
    color: #0b8f8a;
    /* teal */
}

.fp-line {
    width: 82%;
    max-width: 980px;
    height: 2px;
    background: #f2b705;
    /* yellow line */
    margin: 26px auto 44px;
    opacity: .9;
}

.fp-subtitle {
    margin: 0 0 36px;
    font-size: 34px;
    font-weight: 800;
    color: #8a6b00;
    /* golden brown */
    letter-spacing: .5px;
}

.fp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: start;
    justify-items: center;
}

.fp-card {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .10);
    transition: transform .18s ease, box-shadow .18s ease;
    display: block;
}

.fp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .14);
}

.fp-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .fp-title {
        font-size: 34px;
    }

    .fp-subtitle {
        font-size: 26px;
    }

    .fp-line {
        width: 92%;
        margin: 18px auto 32px;
    }

    .fp-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .fp-card {
        max-width: 720px;
    }
}


/* Location Section */

.loc-highlights {
    background: #fff;
    padding: 80px 0;
}

.loc-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

.loc-head {
    text-align: center;
    margin-bottom: 55px;
}

.loc-head h2 {
    margin: 0;
    font-size: 34px;
    letter-spacing: 2px;
    font-weight: 800;
    color: #0b8f8a;
    /* teal */
}

.loc-underline {
    display: block;
    width: 150px;
    height: 4px;
    background: #111;
    margin: 18px auto 0;
}

.loc-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

/* LEFT MAP */
.loc-map img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* RIGHT ITEMS */
.loc-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px 70px;
    justify-items: center;
}

.loc-item {
    text-align: center;
}

.loc-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
}

.loc-icon svg {
    width: 44px;
    height: 44px;
    fill: none;
    stroke: #0b8f8a;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.loc-item h4 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 800;
    color: #111;
}

.loc-item p {
    margin: 8px 0 0;
    font-size: 13px;
    color: #f2b705;
    /* orange/yellow minutes */
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .loc-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .loc-points {
        gap: 30px 25px;
    }
}


/* About Section  */

.about-jubilee {
    background: #fff;
    padding: 80px 0;
}

.aj-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

.aj-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: start;
}

/* Image */
.aj-media {
    display: flex;
    justify-content: flex-start;
}

.aj-img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
}

/* Content */
.aj-title {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    color: #0b8f8a;
    /* teal */
}

.aj-line {
    display: block;
    width: 56px;
    height: 3px;
    background: #f2b705;
    /* yellow underline */
    margin: 14px 0 26px;
    border-radius: 2px;
}

.aj-content p {
    margin: 0 0 18px;
    color: #2a2a2a;
    font-size: 15.5px;
    line-height: 1.9;
}

/* Responsive */
@media (max-width: 992px) {
    .aj-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .aj-img {
        max-width: 100%;
    }
}


/* Gallery Section */

.gallery-sec {
    background: #fff;
    padding: 80px 0;
}

.g-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

.g-title {
    margin: 0 0 42px;
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0b8f8a;
    /* teal */
}

.g-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
    margin-top: 20px;
}

.g-card {
    display: block;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
    background: #fff;
}

.g-img {
    width: 100%;
    height: 240px;
    /* match screenshot card height */
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.g-card:hover .g-img {
    transform: scale(1.04);
}

/* Modal */
.g-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 9999;
    padding: 40px 18px;
    justify-content: center;
    align-items: center;
}

.g-modal-img {
    max-width: 96%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .45);
    animation: gZoom .2s ease;
}

.g-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 44px;
    line-height: 1;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: .95;
}

.g-close:hover {
    opacity: .7;
}

@keyframes gZoom {
    from {
        transform: scale(.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .g-grid {
        grid-template-columns: 1fr;
    }

    .g-img {
        height: 260px;
    }
}


/* Get In Touch Section */

.contact-section {
    padding: 70px 0;
    background: #ffffff;
}

.cwrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

.ctitle {
    text-align: center;
    margin: 0 0 35px;
    font-size: 34px;
    letter-spacing: 1px;
    font-weight: 800;
    color: #0a9aa4;
    /* teal */
}

.cgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.cform {
    padding-right: 10px;
}

.cproject {
    margin: 0;
    font-size: 25px;
    font-weight: 800;
    color: #f2b705;
    /* yellow */
}

.cunderline {
    width: 45px;
    height: 4px;
    background: #0a9aa4;
    margin: 12px 0 16px;
    border-radius: 40px;
}

.csub {
    margin: 0 0 24px;
    color: #3a3a3a;
    font-size: 13px;
}

.form .field {
    margin-bottom: 10px;
}

.form input {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #ececec;
    background: #fafafa;
    border-radius: 4px;
    outline: none;
    font-size: 13px;
}

.form input:focus {
    border-color: rgba(10, 154, 164, .55);
    box-shadow: 0 0 0 3px rgba(10, 154, 164, .12);
    background: #fff;
}

.btn-submit {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 6px;
    background: #caa15b;
    /* gold button like screenshot */
    color: #fff;
    font-weight: 800;
    letter-spacing: .5px;
    cursor: pointer;
    transition: transform .15s ease, opacity .15s ease;
}

.btn-submit:hover {
    opacity: .92;
    transform: translateY(-1px);
}

.cmap {
    border-radius: 8px;
    overflow: hidden;
    min-height: 380px;
    border: 1px solid #efefef;
}

.cmap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .cgrid {
        grid-template-columns: 1fr;
    }

    .cmap iframe {
        height: 360px;
    }
}

.acquirelink {
    color: #0b8f8a;
    text-decoration-line: blink;
}

.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 999;

    /* Soft outer glow like image */
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0.15);

    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

/* Hover effect */
.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0.25);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}