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

:root {

    --navy: #102c45;
    --navy-dark: #081d2f;

    --gold: #c59a4a;
    --gold-light: #e0bd76;

    --white: #ffffff;
    --light: #f6f7f8;

    --text: #273746;
    --muted: #71808d;

    --border: #e2e6e9;

    --transition: .35s ease;

}

/* =====================================================
   GLOBAL RESET
===================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;

    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #102c45;
    background: #ffffff;
}

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

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.section-space {
    padding: 80px 0;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 999;

    transition: .4s ease;

}


/* SCROLLED HEADER */

.site-header.scrolled {

    position: fixed;

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

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

    height: 104px;

}

.navbar {
    height: 105px;
}

.site-logo img {
    width: 211px;
    height: 100px;
    object-fit: contain;
}

.nav-link {

    color: #fff !important;

    font-size: 13px;

    font-weight: 600;

    padding: 34px 14px !important;

    position: relative;

    transition: .3s;

}

.site-header.scrolled .nav-link {

    color: var(--navy) !important;

}

.nav-link::after {

    content: "";

    position: absolute;

    left: 14px;
    right: 14px;

    bottom: 25px;

    height: 2px;

    background: var(--gold);

    transform: scaleX(0);

    transition: .3s;

}

.nav-link:hover::after,
.nav-link.active::after {

    transform: scaleX(1);

}

.header-btn {

    background: var(--gold);

    color: #fff;

    padding: 12px 19px;

    font-size: 12px;

    font-weight: 700;

    border-radius: 3px;

    transition: .3s;

}

.header-btn:hover {

    background: var(--navy);

    color: #fff;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

}

.hero-slide {

    min-height: 690px;

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    position: relative;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
       linear-gradient(90deg, rgb(5 22 36 / 16%), rgb(9 29 46 / 22%), rgba(9, 29, 46, .20));

}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 720px;

    padding-top: 65px;

    color: #fff;

}

.hero-small {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.7px;

    margin-bottom: 18px;

}

.hero-small span {

    width: 30px;

    height: 2px;

    background: var(--gold);

}

.hero-content h1 {

    font-family: "Playfair Display", serif;

    font-size: clamp(43px, 5.2vw, 70px);

    line-height: 1.02;

    font-weight: 600;

    margin-bottom: 20px;

}

.hero-content h1 em {

    color: #273354;

    font-style: normal;

}

.hero-content p {

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

    font-size: 14px;

    line-height: 1.8;

    max-width: 590px;

    margin-bottom: 28px;

}

.hero-actions {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

}

.btn-gold,
.btn-white-outline,
.btn-whatsapp {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 13px 21px;

    border-radius: 3px;

    font-size: 12px;

    font-weight: 700;

    transition: .3s;

}

.btn-gold {

    background: var(--gold);

    color: #fff;

}

.btn-gold:hover {

    background: #ae8132;

    color: #fff;

    transform: translateY(-2px);

}

.btn-white-outline {

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

    color: #fff;

}

.btn-white-outline:hover {

    background: #fff;

    color: var(--navy);

}


/* HERO CONTROLS */

.hero .carousel-control-prev,
.hero .carousel-control-next {

    width: 55px;

    top: auto;
    bottom: 30px;

    opacity: 1;

}

.hero .carousel-control-prev {

    left: auto;
    right: 105px;

}

.hero .carousel-control-next {

    right: 45px;

}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {

    width: 35px;
    height: 35px;

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

    background-size: 45%;

}


/* HERO INDICATORS */

.hero-indicators {

    position: absolute;

    bottom: 42px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;

    gap: 8px;

}

.hero-indicators button {

    width: 38px;
    height: 3px;

    border: 0;

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

    color: transparent;

    transition: .3s;

}

.hero-indicators button.active {

    background: var(--gold);

    width: 60px;

}


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

.section-label {

    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 10px;

}

.section-label::before {

    content: "";

    display: inline-block;

    width: 25px;

    height: 2px;

    background: var(--gold);

    vertical-align: middle;

    margin-right: 8px;

}

.light-label {

    color: var(--gold-light);

}

.section-heading h2,
.about-content h2,
.why-content h2,
.section-top h2,
.faq-intro h2 {

    font-family: "Playfair Display", serif;

    color: var(--navy);

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.12;

}

.about-content h2 span,
.why-content h2 span,
.section-top h2 span,
.faq-intro h2 span {

    color: var(--gold);

}


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

.about-content {

    padding-right: 25px;

}

.about-content p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 12px;

}

.about-content .lead-text {

    color: var(--text);

    font-size: 15px;

}

.about-features {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin: 23px 0;

}

.about-features div {

    color: var(--navy);

    font-size: 12px;

    font-weight: 600;

}

.about-features i {

    color: var(--gold);

    margin-right: 6px;

}

.about-image-wrap {

    position: relative;

    padding-left: 20px;

}

.about-image-wrap::before {

    content: "";

    position: absolute;

    left: 0;
    top: 25px;
    bottom: 25px;

    width: 4px;

    background: var(--gold);

}

.about-image-wrap img {

    width: 100%;

    height: 430px;

    object-fit: cover;

}

.about-experience {

    position: absolute;

    left: -5px;

    bottom: 25px;

    background: var(--navy);

    color: #fff;

    padding: 17px 22px;

    display: flex;

    align-items: center;

    gap: 12px;

}

.about-experience strong {

    font-family: "Playfair Display";

    font-size: 35px;

    color: var(--gold-light);

}

.about-experience span {

    font-size: 10px;

    line-height: 1.4;

}


/* =====================================================
   SIMPLE BUTTON
===================================================== */

.simple-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--navy);

    font-size: 12px;

    font-weight: 700;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 5px;

    transition: .3s;

}

.simple-btn i {

    color: var(--gold);

}

.simple-btn:hover {

    color: var(--gold);

}


/* =====================================================
   SERVICES
===================================================== */

.services-section {

    position: relative;

    padding: 85px 0;

    overflow: hidden;

}

.services-bg {

    position: absolute;

    inset: 0;

    background:
        url("../images/services-bg.jpg")
        center/cover no-repeat;

}

.services-overlay {

    position: absolute;

    inset: 0;

    background: rgb(8 29 47 / 66%);

}

.services-heading {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 32px;

}

.services-heading h2 {

    font-family: "Playfair Display", serif;

    color: #fff;

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.1;

}

.services-heading h2 span {

    color: var(--gold-light);

}

.service-arrows {

    display: flex;

    gap: 7px;

}

.service-arrows button {

    width: 42px;
    height: 42px;

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

    background: transparent;

    color: #fff;

    transition: .3s;

}

.service-arrows button:hover {

    background: var(--gold);

    border-color: var(--gold);

}


/* SERVICE SLIDER */

.services-slider {

    position: relative;

    z-index: 2;

    display: flex;

    gap: 15px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

}

.services-slider::-webkit-scrollbar {

    display: none;

}

.service-card {

    min-width: calc(25% - 12px);

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

    padding: 28px 24px;

    min-height: 260px;

    position: relative;

    overflow: hidden;

    transition: .4s;

}

.service-card::before {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    height: 4px;

    background: var(--gold);

    transform: scaleX(0);

    transform-origin: left;

    transition: .4s;

}

.service-card:hover {

    transform: translateY(-8px);

    background: var(--gold);

}

.service-card:hover::before {

    transform: scaleX(1);

}

.service-card:hover i,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover a,
.service-card:hover .service-number {

    color: #fff;

}

.service-card > i {

    color: var(--gold);

    font-size: 30px;

    margin-bottom: 22px;

    display: block;

    transition: .3s;

}

.service-number {

    position: absolute;

    right: 18px;
    top: 12px;

    color: #dce0e4;

    font-family: "Playfair Display";

    font-size: 25px;

    transition: .3s;

}

.service-card h3 {

    color: var(--navy);

    font-family: "Playfair Display";

    font-size: 20px;

    margin-bottom: 9px;

    transition: .3s;

}

.service-card p {

    color: var(--muted);

    font-size: 11px;

    line-height: 1.7;

    margin-bottom: 17px;

    transition: .3s;

}

.service-card a {

    color: var(--navy);

    font-size: 11px;

    font-weight: 700;

    transition: .3s;

}

.service-card a i {

    font-size: 12px;

    margin-left: 5px;

}


/* =====================================================
   PROPERTIES
===================================================== */

.properties-section {

    background: #fff;

}

.section-top {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 30px;

}

.property-card {

    background: #fff;

    border: 1px solid var(--border);

    transition: .35s;

    overflow: hidden;

}

.property-card:hover {

    transform: translateY(-7px);

    box-shadow: 0 15px 35px rgba(16,44,69,.12);

}

.property-img {

    height: 245px;

    position: relative;

    overflow: hidden;

}

.property-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s;

}

.property-card:hover .property-img img {

    transform: scale(1.06);

}

.property-tag {

    position: absolute;

    left: 13px;
    top: 13px;

    background: var(--gold);

    color: #fff;

    font-size: 9px;

    font-weight: 800;

    padding: 6px 9px;

}

.property-price {

    position: absolute;

    left: 15px;
    bottom: 13px;

    color: #fff;

    font-family: "Playfair Display";

    font-size: 21px;

    font-weight: 600;

    text-shadow: 0 2px 8px rgba(0,0,0,.5);

}

.property-body {

    padding: 19px;

}

.property-body small {

    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

}

.property-body h3 {

    color: var(--navy);

    font-family: "Playfair Display";

    font-size: 20px;

    margin: 5px 0 7px;

}

.property-body p {

    color: var(--muted);

    font-size: 11px;

    margin-bottom: 15px;

}

.property-body p i {

    color: var(--gold);

}

.property-meta {

    border-top: 1px solid var(--border);

    padding-top: 12px;

    display: flex;

    justify-content: space-between;

}

.property-meta span {

    color: var(--muted);

    font-size: 9px;

}

.property-meta i {

    color: var(--gold);

}


/* =====================================================
   WHY US
===================================================== */

.why-section {

    background: var(--light);

}

.why-image {

    position: relative;

    padding-right: 20px;

}

.why-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;

}

.why-image::after {

    content: "";

    position: absolute;

    right: 0;
    top: 25px;
    bottom: 25px;

    width: 4px;

    background: var(--gold);

}

.why-image-box {

    position: absolute;

    right: 5px;
    bottom: 30px;

    background: #fff;

    padding: 15px 20px;

    display: flex;

    align-items: center;

    gap: 12px;

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

}

.why-image-box > i {

    color: var(--gold);

    font-size: 28px;

}

.why-image-box strong {

    display: block;

    color: var(--navy);

    font-size: 13px;

}

.why-image-box span {

    color: var(--muted);

    font-size: 10px;

}

.why-content > p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

    max-width: 550px;

}

.why-list {

    margin-top: 24px;

}

.why-list-item {

    display: flex;

    gap: 13px;

    padding: 14px 0;

    border-bottom: 1px solid var(--border);

}

.why-icon {

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    background: rgba(197,154,74,.12);

    display: flex;

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

    color: var(--gold);

}

.why-list-item h3 {

    color: var(--navy);

    font-size: 13px;

    margin-bottom: 4px;

}

.why-list-item p {

    color: var(--muted);

    font-size: 10px;

    margin: 0;

}


/* =====================================================
   CTA
===================================================== */

.cta-section {

    position: relative;

    padding: 65px 0;

    overflow: hidden;

}

.cta-bg {

    position: absolute;

    inset: 0;

    background:
        url("../images/cta-bg.jpg")
        center/cover no-repeat;

}

.cta-overlay {

    position: absolute;

    inset: 0;

    background: rgba(7,28,45,.91);

}

.cta-inner {

    position: relative;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 25px;

}

.cta-inner h2 {

    color: #fff;

    font-family: "Playfair Display";

    font-size: 42px;

    margin-bottom: 8px;

}

.cta-inner h2 span {

    color: var(--gold-light);

}

.cta-inner p {

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

    font-size: 12px;

    margin: 0;

}

.cta-actions {

    display: flex;

    gap: 8px;

    flex-shrink: 0;

}

.btn-whatsapp {

    background: #25D366;

    color: #fff;

}

.btn-whatsapp:hover {

    color: #fff;

    transform: translateY(-2px);

}


/* =====================================================
   TESTIMONIAL
===================================================== */

.testimonial-section {

    background: #fff;

}

.section-title-center {

    margin-bottom: 35px;

}

.testimonial-card {

    border: 1px solid var(--border);

    padding: 27px;

    height: 100%;

    transition: .3s;

}

.testimonial-card:hover {

    box-shadow: 0 12px 30px rgba(16,44,69,.09);

    transform: translateY(-5px);

}

.stars {

    color: var(--gold);

    letter-spacing: 3px;

    font-size: 13px;

    margin-bottom: 15px;

}

.testimonial-card > p {

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;

    margin-bottom: 23px;

}

.client {

    display: flex;

    align-items: center;

    gap: 10px;

}

.client-avatar {

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: var(--navy);

    color: var(--gold-light);

    display: flex;

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

    font-family: "Playfair Display";

}

.client strong {

    display: block;

    color: var(--navy);

    font-size: 12px;

}

.client span {

    color: var(--muted);

    font-size: 9px;

}


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

.faq-section {

    padding: 75px 0;

    background: var(--light);

}

.faq-intro p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

    max-width: 430px;

    margin: 15px 0 22px;

}

.faq-accordion {

    border: 0;

}

.faq-accordion .accordion-item {

    border: 1px solid var(--border);

    margin-bottom: 9px;

    background: #fff;

}

.faq-accordion .accordion-button {

    color: var(--navy);

    background: #fff;

    box-shadow: none;

    font-size: 13px;

    font-weight: 700;

    padding: 18px 20px;

}

.faq-accordion .accordion-button:not(.collapsed) {

    color: var(--gold);

    background: #fff;

}

.faq-accordion .accordion-body {

    color: var(--muted);

    font-size: 11px;

    line-height: 1.7;

    padding: 0 20px 20px;

}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {

    background: var(--navy-dark);

    padding-top: 55px;

    color: #fff;

}

.footer-main {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;

    gap: 45px;

    padding-bottom: 45px;

}

.footer-brand img {
    width: 155px;
    height: 93px;
    object-fit: contain;
    background: #fff;
    padding: 1px;
}
.footer-brand p {

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

    font-size: 11px;

    line-height: 1.8;

    max-width: 300px;

    margin: 15px 0;

}

.footer-social {

    display: flex;

    gap: 7px;

}

.footer-social a {

    width: 32px;
    height: 32px;

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

    color: #fff;

    display: flex;

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

    transition: .3s;

}

.footer-social a:hover {

    background: var(--gold);

    border-color: var(--gold);

}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;

}

.footer-column h3 {

    font-size: 14px;

    margin-bottom: 8px;

}

.footer-column a,
.footer-column div {

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

    font-size: 13px;

    transition: .3s;

}

.footer-column a:hover {

    color: var(--gold-light);

    transform: translateX(4px);

}

.footer-contact a,
.footer-contact div {

    display: flex;

    align-items: flex-start;

    gap: 9px;

}

.footer-contact i {

    color: var(--gold-light);

}

.footer-bottom {

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

    padding: 18px 0;

    display: flex;

    justify-content: space-between;

    gap: 15px;

}

.footer-bottom p,
.footer-bottom a {

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

    font-size: 9px;

    margin: 0;

}

.footer-bottom div {

    display: flex;

    gap: 18px;

}


/* =====================================================
   REVEAL ANIMATION
===================================================== */

.reveal {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}

.reveal.show {

    opacity: 1;

    transform: translateY(0);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .site-header {

        background: rgb(35 49 79 / 0%);

    }

    .site-header.scrolled {

        background: #fff;
        margin-top: 0px;


    }

    .navbar {

        min-height: 75px;

    }

    .site-logo img {

        width: 130px;

        height: 70px;

    }

    .navbar-toggler {

        margin-right: 15px;

    }

    .navbar-collapse {

        background: var(--navy);

        margin-top: 5px;

        padding: 12px 18px;

    }

    .site-header.scrolled .navbar-collapse {

        background: #fff;

    }

    .nav-link {

        padding: 10px 0 !important;

    }

    .nav-link::after {

        display: none;

    }

    .header-btn {

        display: inline-block;

        margin: 8px 0;

    }

    .hero-slide {

        min-height: 650px;

    }

    .service-card {

        min-width: calc(50% - 8px);

    }

    .footer-main {

        grid-template-columns: 1fr 1fr;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .section-space {

        padding: 58px 0;

    }

    .hero-slide {

        min-height: 650px;

        background-position: center;

    }

    .hero-content {

        padding-top: 50px;

    }

    .hero-content h1 {

        font-size: 42px;

    }

    .hero-content p {

        font-size: 12px;

    }

    .hero-actions a {

        width: 100%;

    }

    .hero .carousel-control-prev,
    .hero .carousel-control-next {

        display: none;

    }

    .hero-indicators {

        bottom: 25px;

    }

    .about-content {

        padding-right: 0;

    }

    .about-features {

        grid-template-columns: 1fr;

    }

    .about-image-wrap {

        padding-left: 10px;

    }

    .about-image-wrap img {

        height: 340px;

    }

    .services-section {

        padding: 60px 0;

    }

    .services-heading {

        align-items: flex-start;

        gap: 20px;

    }

    .service-card {

        min-width: 82%;

    }

    .section-top {

        align-items: flex-start;

        gap: 15px;

        flex-direction: column;

    }

    .property-img {

        height: 225px;

    }

    .why-image img {

        height: 350px;

    }

    .why-image-box {

        right: 5px;

        bottom: -40px;

    }

    .cta-inner {

        align-items: flex-start;

        flex-direction: column;

    }

    .cta-inner h2 {

        font-size: 32px;

    }

    .cta-actions {

        width: 100%;

    }

    .cta-actions a {

        flex: 1;

    }

    .footer-main {

        grid-template-columns: 1fr;

        gap: 30px;

    }

    .footer-bottom {

        flex-direction: column;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .hero-content h1 {

        font-size: 36px;

    }

    .hero-content {

        padding-top: 25px;

    }

    .about-image-wrap img {

        height: 300px;

    }

    .about-experience {

        left: 5px;

        bottom: 15px;

        padding: 13px 16px;

    }

    .service-card {

        min-width: 88%;

    }

    .property-meta span {

        font-size: 8px;

    }

    .why-image img {

        height: 245px;

    }

}

/* =====================================================
   OUR SERVICES
===================================================== */

.services-section {
    position: relative;
    padding: 85px 0;
    background: #ffffff;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: #f4f7f8;
    border-radius: 50%;
    top: -180px;
    right: -100px;
    z-index: 0;
}

.services-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: #faf5ea;
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}


/* SERVICE CARD */

.service-card {
    background: #fff;
    border: 1px solid #e6ebed;
    padding: 32px 28px;
    min-height: 260px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background: #c59a4a;
    left: 0;
    bottom: 0;
    transition: width 0.35s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(16, 44, 69, 0.10);
    border-color: #dfe5e7;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f2e7;
    color: #c59a4a;
    font-size: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #c59a4a;
    color: #fff;
}

.service-card h3 {
    color: #102c45;
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: #6b7880;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card .service-link {
    color: #102c45;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.service-card .service-link i {
    margin-left: 5px;
    transition: margin 0.3s ease;
}

.service-card:hover .service-link i {
    margin-left: 10px;
}

/* =====================================================
   FEATURED PROPERTIES
===================================================== */

.properties-section {
    padding: 50px 0;
    background: #f8fafb;
}

.property-card {
    background: #ffffff;
    border: 1px solid #e8edef;
    overflow: hidden;
    height: 100%;
    transition: all 0.35s ease;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(16, 44, 69, 0.12);
}

.property-image {
    height: 270px;
    position: relative;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.06);
}

.property-status {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #c59a4a;
    color: #fff;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.property-content {
    padding: 25px;
}

.property-type {
    color: #c59a4a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.property-content h3 {
    font-size: 21px;
    margin: 8px 0 10px;
    color: #102c45;
}

.property-location {
    color: #687781;
    font-size: 14px;
    margin-bottom: 20px;
}

.property-location i {
    color: #c59a4a;
    margin-right: 5px;
}

.property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid #edf0f1;
    border-bottom: 1px solid #edf0f1;
    font-size: 12px;
    color: #64727b;
}

.property-meta i {
    color: #c59a4a;
    margin-right: 4px;
}

.property-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}

.property-bottom strong {
    color: #102c45;
    font-size: 20px;
}

.property-bottom a {
    color: #102c45;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.property-bottom a i {
    margin-left: 5px;
    transition: margin 0.3s ease;
}

.property-bottom a:hover i {
    margin-left: 9px;
}


/* PROPERTY SLIDER CONTROLS */

.property-slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.property-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid #dce3e6;
    background: #fff;
    color: #102c45;
    transition: all 0.3s ease;
}

.property-arrow:hover {
    background: #102c45;
    color: #fff;
    border-color: #102c45;
}

/* =====================================================
   PROPERTY SECTION HEADING
===================================================== */

.properties-section .section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px;
}

.properties-section .section-heading-row > div {
    flex: 1;
}

.properties-section .section-link {
    flex-shrink: 0;

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

    color: #102c45 !important;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    padding: 10px 0;

    transition: all 0.3s ease;
}

.properties-section .section-link i {
    color: #c59a4a;
    font-size: 15px;

    transition: transform 0.3s ease;
}

.properties-section .section-link:hover {
    color: #c59a4a !important;
}

.properties-section .section-link:hover i {
    transform: translate(3px, -3px);
}

@media (max-width: 767px) {

    .properties-section .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
    }

    .properties-section .section-link {
        padding: 0;
    }

}

/* =====================================================
   PARALLAX PROPERTY CTA
===================================================== */

.property-cta {
    position: relative;
    min-height: 500px;

    display: flex;
    align-items: center;

    overflow: hidden;

    isolation: isolate;
}


/* BACKGROUND IMAGE */

.property-cta-bg {
    position: absolute;
    inset: -80px 0;

    background-image: url("../images/cta-bg.jpg");
    background-size: cover;
    background-position: center center;

    z-index: -3;

    transform: translateY(0);
    will-change: transform;
}


/* DARK OVERLAY */

.property-cta-overlay {
    position: absolute;
    inset: 0;

    background:
       linear-gradient(90deg, rgb(8 29 47 / 72%) 0%, rgb(8 29 47 / 40%) 45%, rgb(8 29 47 / 31%) 100%);

    z-index: -2;
}


/* CONTENT */

.property-cta-content {
    min-height: 500px;

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

    gap: 60px;

    padding: 80px 0;
}


/* TEXT */

.property-cta-text {
    max-width: 650px;
}

.cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #d4aa5c;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.cta-kicker span {
    width: 35px;
    height: 1px;
    background: #d4aa5c;
}

.property-cta-text h2 {
    color: #ffffff;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 500;

    margin: 0 0 22px;
}

.property-cta-text h2 em {
    display: block;

    color: #d4aa5c;

    font-family: Georgia, serif;
    font-weight: 400;
}

.property-cta-text p {
    max-width: 540px;

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

    font-size: 15px;
    line-height: 1.8;

    margin: 0;
}


/* ACTIONS */

.property-cta-actions {
    display: flex;
    flex-direction: column;

    gap: 14px;

    min-width: 245px;
}


/* COMMON BUTTON */

.cta-call-btn,
.cta-wa-btn {
    display: flex;
    align-items: center;
    gap: 15px;

    min-width: 245px;

    padding: 17px 20px;

    text-decoration: none;

    transition: all 0.35s ease;
}

.cta-call-btn > i:first-child,
.cta-wa-btn > i:first-child {
    width: 42px;
    height: 42px;

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

    font-size: 18px;

    flex-shrink: 0;
}

.cta-call-btn span,
.cta-wa-btn span {
    flex: 1;

    display: flex;
    flex-direction: column;

    font-size: 14px;
    font-weight: 700;
}

.cta-call-btn small,
.cta-wa-btn small {
    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 1.2px;

    margin-bottom: 3px;

    font-weight: 600;
}


/* CALL */

.cta-call-btn {
    background: #d0a452;
    color: #ffffff;

    border: 1px solid #d0a452;
}

.cta-call-btn > i:first-child {
    background: rgba(255,255,255,0.16);
}

.cta-call-btn small {
    color: rgba(255,255,255,0.75);
}

.cta-call-btn .arrow {
    font-size: 16px;
}

.cta-call-btn:hover {
    background: #ffffff;
    border-color: #ffffff;

    color: #102c45;

    transform: translateX(7px);
}

.cta-call-btn:hover small {
    color: #7b858b;
}


/* WHATSAPP */

.cta-wa-btn {
    background: rgba(255,255,255,0.08);

    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.35);

    backdrop-filter: blur(5px);
}

.cta-wa-btn > i:first-child {
    background: rgba(255,255,255,0.10);
}

.cta-wa-btn small {
    color: rgba(255,255,255,0.60);
}

.cta-wa-btn .arrow {
    font-size: 16px;
}

.cta-wa-btn:hover {
    background: #ffffff;

    color: #102c45;

    border-color: #ffffff;

    transform: translateX(7px);
}

.cta-wa-btn:hover small {
    color: #7b858b;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {

    .property-cta-content {
        gap: 40px;
    }

    .property-cta-text h2 {
        font-size: 45px;
    }

    .property-cta-actions {
        min-width: 220px;
    }

}


@media (max-width: 767px) {

    .property-cta {
        min-height: auto;
    }

    .property-cta-bg {
        inset: 0;
    }

    .property-cta-overlay {
        background:
         linear-gradient(180deg, rgb(8 29 47 / 44%), rgb(8 29 47 / 55%));
    }

    .property-cta-content {
        min-height: auto;

        flex-direction: column;

        align-items: flex-start;

        padding: 70px 0;
    }

    .property-cta-text h2 {
        font-size: 40px;
    }

    .property-cta-text p {
        font-size: 14px;
    }

    .property-cta-actions {
        width: 100%;
    }

    .cta-call-btn,
    .cta-wa-btn {
        width: 100%;
    }

}

/* =====================================================
   CONTINUOUS PROPERTY SLIDER
===================================================== */

.property-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}


/* TRACK */

.property-slider-track {
    display: flex;
    gap: 24px;

    transition: transform 0.6s ease;

    will-change: transform;
}


/* EACH SLIDE */

.property-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}


/* CARD */

.property-slide .property-card {
    width: 100%;
    height: 100%;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .property-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .property-slider-wrapper {
        overflow: hidden;
    }

    .property-slider-track {

        gap: 15px;

        overflow: visible;

        transition: transform 0.5s ease;

    }

    .property-slide {

        flex: 0 0 88%;

    }

    .property-card {
        width: 100%;
    }

}

/* =====================================================
   FLOATING QUICK ACTIONS
===================================================== */

.floating-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 25px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    padding: 0 25px;

    pointer-events: none;

    z-index: 9999;
}


/* LEFT / RIGHT GROUP */

.floating-left,
.floating-right {
    display: flex;
    flex-direction: column;
    gap: 12px;

    pointer-events: auto;
}


/* BUTTON */

.floating-btn {
    position: relative;

    width: 52px;
    height: 52px;

    border-radius: 50%;

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

    border: none;

    text-decoration: none;

    font-size: 20px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18);

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

    cursor: pointer;
}


/* HOVER */

.floating-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);
}


/* GOOGLE */

.floating-btn.google-review {
    background: #ffffff;
    color: #4285f4;

    border: 1px solid #eeeeee;
}


/* WHATSAPP */

.floating-btn.whatsapp {
    background: #25D366;
    color: #ffffff;
}


/* CALL */

.floating-btn.call {
    background: #c59a4a;
    color: #ffffff;
}


/* BACK TOP */

.floating-btn.back-top {
    background: #102c45;
    color: #ffffff;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}


/* SHOW BACK TOP */

.floating-btn.back-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =====================================================
   TOOLTIP
===================================================== */

.floating-tooltip {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    background: #102c45;
    color: #ffffff;

    padding: 8px 13px;

    white-space: nowrap;

    font-size: 12px;
    font-weight: 600;

    border-radius: 4px;

    opacity: 0;
    visibility: hidden;

    transition: all 0.25s ease;
}


/* LEFT TOOLTIP */

.floating-left .floating-tooltip {
    left: calc(100% + 10px);
}


/* RIGHT TOOLTIP */

.floating-right .floating-tooltip {
    right: calc(100% + 10px);
}


/* SHOW TOOLTIP */

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .floating-actions {
        bottom: 18px;

        padding: 0 15px;
    }

    .floating-left,
    .floating-right {
        gap: 10px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;

        font-size: 17px;
    }

    /* Hide tooltip on mobile */

    .floating-tooltip {
        display: none;
    }

}

/* =====================================================
   FOOTER MAIN ALIGNMENT
===================================================== */

.site-footer {
    background: #081d2f;
    color: #fff;
    padding: 65px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 1.15fr 1.45fr;
    gap: 55px;
    align-items: start;
}

/* BRAND */
.footer-brand {
    min-width: 0;
}

.footer-brand img {
    width: 150px;
    height: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 300px;
    margin: 0 0 20px;
    color: rgba(255,255,255,0.68);
    font-size: 13px;
    line-height: 1.7;
}


/* FOOTER COLUMNS */
.footer-column {
    min-width: 0;
}

.footer-column h3 {
    margin: 0 0 22px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.footer-column > a {
    display: block;
    width: fit-content;
    margin-bottom: 13px;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column > a:hover {
    color: #c59a4a;
    transform: translateX(3px);
}


/* SOCIAL */
.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;

    text-decoration: none;
    font-size: 15px;

    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #c59a4a;
    border-color: #c59a4a;
    transform: translateY(-3px);
}


/* =====================================================
   CONTACT
===================================================== */

.footer-contact a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin-bottom: 14px;
}

.footer-contact a i,
.footer-address i {
    color: #c59a4a;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    color: rgba(255,255,255,0.65);
    font-size: 13px;
    line-height: 1.7;

    margin-top: 3px;
}


/* =====================================================
   GOOGLE MAP
===================================================== */

.footer-map {
    width: 100%;
    max-width: 330px;
    height: 145px;

    margin-top: 22px;

    overflow: hidden;
    border-radius: 6px;

    border: 1px solid rgba(255,255,255,0.15);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 991px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px 35px;
    }

    .footer-map {
        max-width: 100%;
    }

}


@media (max-width: 767px) {

    .site-footer {
        padding-top: 45px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-map {
        width: 100%;
        max-width: 100%;
        height: 180px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-bottom > div {
        gap: 18px;
        flex-wrap: wrap;
    }

}

/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    margin-top: 45px;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-bottom .container {
    width: 100%;
}

.copyright {
    width: 100%;
}

.copyright-text {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;

    color: rgba(255,255,255,0.50);
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}

.company-name {
    color: rgba(255,255,255,0.70);
    text-decoration: none;
    transition: 0.3s ease;
}

.company-name:hover {
    color: #c59a4a;
}


/* DEVELOPER */

.developer-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 5px;
}

.developer-text a {
    display: inline-flex;
    align-items: center;
}

.technest-logo {
    width: 15px;
    height: auto;
    max-height: 25px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}