﻿* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
  }
  html,
  body {
    height: 100%;
    width: 100%;
  }
  #main{
      position: relative;
      overflow: hidden;
      background-color: var(--black);
  }
  @font-face {
      font-family: a;
      src: url(./jost-variable.ttf);
  }
  @font-face {
      font-family: b;
      src: url(./KFOlCnqEu92Fr1MmEU9fBBc4\ \(1\).ttf);
  }
  @font-face {
      font-family: c;
      src: url(./KFOmCnqEu92Fr1Mu4mxK\ \(1\).ttf);
  }


/* ================= NAVBAR ================= */

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 8vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;

    /* glass effect */
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

/* LOGO */
nav img{
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* NAV LINKS */
#nav-links{
    display: flex;
    gap: 40px;
}

#nav-links a{
    text-decoration: none;
    color: #fff;
    font-family: a;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

/* HOVER UNDERLINE EFFECT */
#nav-links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 1px;
    background: var(--primary-gold);
    transition: 0.3s;
}

#nav-links a:hover::after{
    width: 100%;
}

/* CTA BUTTON */
.nav-btn{
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    background: var(--primary-gold);
    color: var(--primary-gold);
    font-family: a;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn:hover{
    background: #fff;
    color: var(--primary-gold);
}

/* RIGHT SIDE */
.nav-right{
    display: flex;
    align-items: center;
    gap: 15px;
}

/* HAMBURGER */
#menu-btn{
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE MENU */
#mobile-menu{
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--black);
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    z-index: 998;

}

#mobile-menu a{
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    font-family: a;
}

/* MOBILE */
@media (max-width: 768px){

    #nav-links{
        display: none;
    }

    #menu-btn{
        display: block;
    }

    .nav-btn{
        display: none;
    }

}



/* ================= PAGE 1 (HERO) ================= */


#page1{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* IMPORTANT */
    padding: 0 8vw;
    background: linear-gradient(180deg, var(--black) 0%, var(--primary-gold) 100%);
}

/* HERO CONTENT */
.hero-content{
    width: 45%;
    max-width: 600px;
    color: #fff;
    font-family: a;
    text-align: left; /* IMPORTANT */
}

/* HEADING */
.hero-content h1{
    font-size: 4vw;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 300;
}

/* HIGHLIGHT */
.hero-content h1 span{
    color: var(--primary-gold);
}

/* TEXT */
.hero-content p{
    font-size: 1.1vw;
    color: #d1d5db;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 400px;
}

/* BUTTONS */
.hero-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ================= PAGE 1 (HERO WITH IMAGE) ================= */

#page1{
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8vw;
    overflow: hidden;
}

/* REAL ESTATE HERO IMAGE SLIDER */
#page1 .hero-slider{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

#page1 .hero-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.9) contrast(1.05);
    opacity: 0;
    animation: heroImageFade 20s infinite;
    transform: scale(1.04);
}

#page1 .hero-bg-1{
    animation-delay: 0s;
}

#page1 .hero-bg-2{
    animation-delay: 5s;
}

#page1 .hero-bg-3{
    animation-delay: 10s;
}

#page1 .hero-bg-4{
    animation-delay: 15s;
}

@keyframes heroImageFade {
    0% {
        opacity: 0;
        transform: scale(1.04);
    }
    8% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    33% {
        opacity: 0;
        transform: scale(1.08);
    }
    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    #page1 .hero-bg {
        animation: none;
        opacity: 0;
        transform: scale(1.02);
    }

    #page1 .hero-bg-1 {
        opacity: 1;
    }
}

/* DARK OVERLAY */
#page1::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

/* HERO CONTENT */
.hero-content{
    position: relative;
    z-index: 2;
    width: 45%;
    max-width: 600px;
    color: #fff;
    font-family: a;
}

/* HEADING */
.hero-content h1{
    font-size: 4vw;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 300;
}

/* HIGHLIGHT */
.hero-content h1 span{
    color: var(--primary-gold);
}

/* TEXT */
.hero-content p{
    font-size: 1.1vw;
    color: #d1d5db;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 400px;
}

/* BUTTONS */
.hero-buttons{
    display: flex;
    gap: 15px;
}

/* PRIMARY BUTTON */
.btn-primary{
    background: var(--primary-gold);
    color: var(--primary-gold);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-primary:hover{
    background: #ffffff;
    color: var(--primary-gold);
}

/* SECONDARY BUTTON */
.btn-secondary{
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-secondary:hover{
    background: #ffffff;
    color: #000;
}

/* ================= FEATURED PROPERTIES ================= */

#properties{
    padding: 100px 8vw;
    background: #ffffff;
    font-family: a;
}

/* HEADER */
.properties-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.properties-header h2{
    font-size: 2.2vw;
    color: #000;
    margin-bottom: 5px;
}

.properties-header p{
    font-size: 14px;
    color: #777;
}

.view-all{
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 14px;
}

/* GRID */
.properties-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.property-card{
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
}

.property-card:hover{
    transform: translateY(-5px);
}

/* IMAGE */
.property-img{
    overflow: hidden;
}

.property-img img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

.property-card:hover img{
    transform: scale(1.1);
}

/* INFO */
.property-info{
    padding: 20px;
}

.property-info h3{
    font-size: 18px;
    margin-bottom: 5px;
}

.location{
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* META */
.property-meta{
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

/* BOTTOM */
.property-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price{
    color: var(--primary-gold);
    font-weight: 600;
}

.property-bottom button{
    background: var(--primary-gold);
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
}

/* ================= WHY CHOOSE US ================= */

#why{
    padding: 100px 8vw;
    background: var(--cream);
    font-family: a;
    position: relative;
}

/* HEADER */
.why-header{
    text-align: center;
    margin-bottom: 60px;
}

.why-header h2{
    font-size: 2.2vw;
    margin-bottom: 10px;
}

.why-header p{
    font-size: 14px;
    color: #666;
}

/* GRID */
.why-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.why-card{
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.why-card:hover{
    transform: translateY(-8px);
}

/* IMAGE */
.why-card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* CONTENT */
.why-content{
    padding: 20px;
    text-align: center;
}

.why-content h3{
    margin-bottom: 10px;
    font-size: 16px;
}

.why-content p{
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.why-content a{
    font-size: 14px;
    color: var(--primary-gold);
    text-decoration: none;
}

/* ================= SERVICES SECTION ================= */

#services{
    padding: 100px 8vw;
    background: #ffffff;
    font-family: a;
    position: relative;
}

/* HEADER */
.services-header{
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2{
    font-size: 2.2vw;
    margin-bottom: 10px;
}

.services-header p{
    font-size: 14px;
    color: #666;
}

/* GRID */
.services-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.service-card{
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-card:hover{
    transform: translateY(-8px);
}

/* IMAGE */
.service-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENT */
.service-content{
    padding: 25px;
    text-align: center;
}

.service-content h3{
    font-size: 18px;
    margin-bottom: 10px;
}

.service-content p{
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* BUTTON */
.service-btn{
    display: inline-block;
    background: var(--primary-gold);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

/* ================= TESTIMONIALS ================= */

#testimonials{
    padding: 100px 8vw;
    background: var(--cream);
    font-family: a;
}

/* HEADER */
.test-header{
    text-align: center;
    margin-bottom: 60px;
}

.test-header h2{
    font-size: 2.2vw;
    margin-bottom: 10px;
}

.test-header p{
    font-size: 14px;
    color: #666;
}

/* GRID */
.test-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.test-card{
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.test-card:hover{
    transform: translateY(-8px);
}

/* STARS */
.stars{
    color: var(--primary-gold);
    margin-bottom: 10px;
}

/* REVIEW */
.review{
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* CLIENT */
.client{
    display: flex;
    align-items: center;
    gap: 12px;
}

.client img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

.client h4{
    font-size: 14px;
}

.client span{
    font-size: 12px;
    color: #777;
}

/* ================= FAQ SECTION ================= */

#faq{
    padding: 100px 8vw;
    background: #ffffff;
    font-family: a;
}

/* HEADER */
.faq-header{
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2{
    font-size: 2.2vw;
    margin-bottom: 10px;
}

.faq-header p{
    font-size: 14px;
    color: #666;
}

/* CONTAINER */
.faq-container{
    max-width: 700px;
    margin: auto;
}

/* ITEM */
.faq-item{
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-item:hover{
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* QUESTION */
.faq-question{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4{
    font-size: 15px;
}

/* ANSWER */
.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.faq-answer p{
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* ACTIVE */
.faq-item.active .faq-answer{
    max-height: 200px;
}

.faq-item.active span{
    transform: rotate(45deg);
}



/* ================= CTA SECTION ================= */

#cta{
    padding: 100px 8vw;
    background: var(--primary-gold); /* matches your theme */
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* CONTENT */
.cta-content{
    max-width: 600px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* HEADING */
.cta-content h2{
    font-size: 2.5vw;
    margin-bottom: 15px;
}

/* TEXT */
.cta-content p{
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* BUTTON */
.cta-btn{
    background: #fff;
    color: var(--primary-gold);
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.cta-btn:hover{
    background: var(--primary-gold);
    color: var(--primary-gold);
}


/* ================= FOOTER ================= */

#footer{
    background: #1f1f1f;
    color: #ccc;
    padding: 80px 8vw 20px;
    font-family: a;
}

/* GRID */
.footer-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* LOGO */
.footer-logo{
    width: 140px;
    margin-bottom: 15px;
}

/* COLUMN */
.footer-col h2{
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-col h2 span{
    color: var(--primary-gold);
}

.footer-col p{
    font-size: 14px;
    margin-bottom: 8px;
    color: #aaa;
    line-height: 1.6;
}

.footer-col h4{
    color: #fff;
    margin-bottom: 15px;
    font-size: 14px;
}

/* LINKS */
.footer-col a{
    display: block;
    text-decoration: none;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-col a:hover{
    color: #fff;
}

/* CONTACT LINKS */
.footer-contact a{
    color: #aaa;
    text-decoration: none;
}

.footer-contact a:hover{
    color: #fff;
}

/* ================= SOCIAL ICONS ================= */

.social-icons{
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icons a{
    width: 38px;
    height: 38px;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover{
    background: var(--primary-gold);
    transform: translateY(-4px);
}

/* SVG SIZE */
.social-icons svg{
    width: 18px;
    height: 18px;
}

/* CONTACT ICONS */
.contact-icons{
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* BUTTON */
.contact-btn{
    width: 42px;
    height: 42px;
    background: var(--primary-gold);
    color: #fff;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

/* SVG SIZE */
.contact-btn svg{
    width: 18px;
    height: 18px;
}

/* HOVER */
.contact-btn:hover{
    background: var(--primary-gold);
    transform: translateY(-3px);
}

/* DROPDOWN */
.contact-item{
    position: relative;
}

.contact-dropdown{
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    gap: 6px;
    min-width: 190px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* LINKS */
.contact-dropdown a{
    text-decoration: none;
    color: #333;
    font-size: 13px;
}

/* SHOW */
.contact-item:hover .contact-dropdown{
    display: flex;
}



/* ================= BOTTOM ================= */

.footer-bottom{
    text-align: center;
    margin-top: 50px;
    font-size: 12px;
    color: #777;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px){
    .footer-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px){
    .footer-container{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons{
        justify-content: center;
    }

    .footer-logo{
        margin: 0 auto 15px;
    }
}



/* ================= FLOATING CONTACT ================= */

#floating-contact{
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

/* BUTTON */
.float-btn{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* COLORS */
.phone-btn{
    background: var(--primary-gold);
}

.whatsapp-btn{
    background: var(--primary-gold);
}

/* BOX */
.float-box{
    position: relative;
}

/* OPTIONS */
.float-options{
    position: absolute;
    right: 60px;
    bottom: 0;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* LINKS */
.float-options a{
    text-decoration: none;
    color: #333;
    font-size: 13px;
}

/* SHOW ON HOVER */
.float-box:hover .float-options{
    display: flex;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 1024px){

    /* HERO */
    .hero-content{
        width: 60%;
    }

    .hero-content h1{
        font-size: 6vw;
    }

    .hero-content p{
        font-size: 2.5vw;
    }

    /* GRID 2 COLUMN */
    .properties-container,
    .services-container,
    .test-container{
        grid-template-columns: repeat(2, 1fr);
    }

    .why-container{
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container{
        grid-template-columns: repeat(2, 1fr);
    }
}


/* MOBILE */
@media (max-width: 768px){

    /* NAVBAR */
    nav{
        padding: 0 5vw;
    }

    #nav-links{
        display: none; /* hide for now */
    }

    .nav-btn{
        padding: 8px 16px;
        font-size: 12px;
    }

    /* HERO */
    #page1{
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0 5vw;
    }

    .hero-content{
        width: 100%;
        text-align: center;
        border-left: 0 !important;
        padding-left: 0 !important;
    }

    #page1 .hero-content::before {
        content: "";
        display: block;
        width: 64px;
        height: 2px;
        margin: 0 auto 18px;
        background: var(--primary-gold);
    }

    .hero-content h1{
        font-size: 8vw;
    }

    .hero-content p{
        font-size: 14px;
    }

    .hero-buttons{
        justify-content: center;
    }

    /* ALL GRIDS â†’ 1 COLUMN */
    .properties-container,
    .services-container,
    .test-container,
    .why-container{
        grid-template-columns: 1fr;
    }

    /* HEADINGS */
    .properties-header h2,
    .services-header h2,
    .why-header h2,
    .test-header h2,
    .faq-header h2{
        font-size: 6vw;
    }

    /* FOOTER */
    .footer-container{
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-content h2{
        font-size: 6vw;
    }

}


/* SMALL MOBILE */
@media (max-width: 480px){

    .hero-content h1{
        font-size: 9vw;
    }

    .cta-content h2{
        font-size: 7vw;
    }

    .btn-primary,
    .btn-secondary,
    .cta-btn{
        padding: 10px 20px;
        font-size: 12px;
    }

}




/* ================= LUXURY REAL ESTATE BRAND SYSTEM ================= */
:root {
    --primary-gold: #C9A34E;
    --dark-gold: #A8832F;
    --cream: #F5EFD8;
    --off-white: #FFFDF7;
    --black: #1A1A1A;
    --gray: #555555;
    --soft-line: rgba(201, 163, 78, 0.22);
    --gold-tint: rgba(201, 163, 78, 0.12);
    --deep-shadow: 0 18px 45px rgba(26, 26, 26, 0.10);
    --soft-shadow: 0 10px 28px rgba(26, 26, 26, 0.08);
    --ease: 220ms ease;
}

html {
    scroll-behavior: smooth;
}

body,
body.bg-white,
body.text-gray-800,
#main {
    background: var(--off-white) !important;
    color: var(--gray) !important;
    font-family: a, "Jost", Arial, sans-serif;
}

body::selection {
    background: var(--primary-gold);
    color: var(--black);
}

a,
button,
input,
textarea,
.property-card,
.service-card,
.why-card,
.test-card,
.faq-item,
.shadow,
.shadow-lg,
[class*="transition"] {
    transition: color var(--ease), background-color var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease), opacity var(--ease) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.text-black,
.text-gray-800,
.text-gray-900,
.font-semibold,
.font-bold {
    color: var(--black) !important;
    letter-spacing: 0 !important;
}

p,
li,
.text-gray-400,
.text-gray-500,
.text-gray-600,
.text-gray-700,
.text-gray-300,
.review,
.location,
.property-meta,
.footer-bottom {
    color: var(--gray) !important;
}

.text-blue-600,
.text-blue-700,
.text-green-500,
.text-green-600,
.group-hover\:text-blue-600:hover,
.group-hover\:text-blue-700:hover,
.group-hover\:text-pink-500:hover,
.hover\:text-blue-600:hover,
.hover\:text-blue-700:hover,
.hover\:text-green-600:hover,
.view-all,
.price,
.why-content a,
.footer-col h2 span,
.stars {
    color: var(--primary-gold) !important;
}

.bg-white,
.bg-gray-50,
.bg-gray-100,
section.bg-white,
section.py-20,
#properties,
#services,
#faq {
    background-color: var(--off-white) !important;
}

#why,
#testimonials,
.bg-gray-50,
section[class*="bg-gray-50"] {
    background-color: var(--cream) !important;
}

nav {
    height: 82px;
    border-bottom: 1px solid rgba(201, 163, 78, 0.20);
    background: rgba(26, 26, 26, 0.78) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

nav img {
    height: 52px;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.22));
}

#nav-links a,
#mobile-menu a {
    color: var(--off-white) !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px !important;
}

#nav-links a::after {
    height: 2px;
    background: var(--primary-gold) !important;
}

#nav-links a:hover,
#mobile-menu a:hover,
#menu-btn:hover {
    color: var(--primary-gold) !important;
}

#menu-btn {
    color: var(--primary-gold) !important;
}

#mobile-menu {
    top: 82px;
    background: rgba(26, 26, 26, 0.96) !important;
    border-bottom: 1px solid var(--soft-line);
}

.nav-btn,
.btn-primary,
.service-btn,
.cta-btn,
.property-bottom button,
button[type="submit"],
.bg-blue-600,
.bg-green-500,
.bg-gray-800,
[class*="bg-blue-600"],
[class*="bg-green-500"] {
    background: var(--primary-gold) !important;
    border: 1px solid var(--primary-gold) !important;
    border-radius: 6px !important;
    color: var(--black) !important;
    font-weight: 600 !important;
    box-shadow: 0 10px 24px rgba(168, 131, 47, 0.22) !important;
}

.nav-btn:hover,
.btn-primary:hover,
.service-btn:hover,
.cta-btn:hover,
.property-bottom button:hover,
button[type="submit"]:hover,
.hover\:bg-blue-700:hover,
.hover\:bg-green-600:hover,
.hover\:bg-gray-700:hover,
[class*="hover:bg-blue-700"]:hover,
[class*="hover:bg-green-600"]:hover {
    background: var(--dark-gold) !important;
    border-color: var(--dark-gold) !important;
    color: var(--off-white) !important;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 253, 247, 0.72) !important;
    border-radius: 6px !important;
    color: var(--off-white) !important;
}

.btn-secondary:hover {
    background: var(--off-white) !important;
    border-color: var(--off-white) !important;
    color: var(--black) !important;
}

#page1::after,
.absolute.inset-0.bg-black\/60 {
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.76), rgba(26, 26, 26, 0.48)) !important;
}

#page1::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(26, 26, 26, 0.24), rgba(26, 26, 26, 0.06) 46%, rgba(26, 26, 26, 0.36)),
        linear-gradient(90deg, rgba(201, 163, 78, 0.16), transparent 42%);
    pointer-events: none;
}

#page1 .hero-bg {
    transform: scale(1.02);
}

#page1 .hero-content {
    border-left: 2px solid rgba(201, 163, 78, 0.72);
    padding-left: 28px;
}

#page1 .hero-content h1,
.hero-content h1,
section.relative h1,
section.relative p,
.text-white,
.text-white\/90 {
    color: var(--off-white) !important;
}

.hero-content h1,
section.relative h1 {
    font-weight: 500 !important;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero-content h1 span,
section.relative a,
.hero-content p strong {
    color: var(--primary-gold) !important;
}

.hero-content p,
section.relative p,
.cta-content p,
section[class*="bg-blue-600"] p {
    color: rgba(255, 253, 247, 0.88) !important;
}

#properties,
#why,
#services,
#testimonials,
#faq,
#cta,
section.py-20,
section.py-24,
section.px-6 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
}

.properties-header h2,
.why-header h2,
.services-header h2,
.test-header h2,
.faq-header h2,
section.py-20 h2,
section.py-24 h2,
section.px-6 h2 {
    font-weight: 500 !important;
}

.properties-header h2::after,
.why-header h2::after,
.services-header h2::after,
.test-header h2::after,
.faq-header h2::after,
section.py-20 h2::after,
section.px-6 h2::after {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    margin: 14px auto 0;
    background: var(--primary-gold);
}

.properties-header h2::after {
    margin-left: 0;
}

.property-card,
.why-card,
.service-card,
.test-card,
.faq-item,
.bg-white.rounded-xl,
.rounded-xl.shadow,
.rounded-xl.shadow-lg,
.rounded-xl.border,
.rounded-lg.shadow,
iframe {
    background: var(--off-white) !important;
    border: 1px solid var(--soft-line) !important;
    border-radius: 8px !important;
    box-shadow: var(--soft-shadow) !important;
}

.property-card:hover,
.why-card:hover,
.service-card:hover,
.test-card:hover,
.faq-item:hover,
.hover\:shadow-lg:hover,
.shadow:hover,
.shadow-lg:hover {
    box-shadow: var(--deep-shadow) !important;
    transform: translateY(-6px);
    border-color: rgba(201, 163, 78, 0.45) !important;
}

.property-img img,
.why-card img,
.service-card img,
.rounded-xl img {
    filter: saturate(0.92) contrast(1.04);
}

.property-info h3,
.why-content h3,
.service-content h3,
.test-card h4,
.faq-question h4,
section.py-20 h3 {
    color: var(--black) !important;
    font-weight: 600 !important;
}

.location::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--primary-gold);
    vertical-align: middle;
}

.property-meta {
    border-top: 1px solid var(--soft-line);
    border-bottom: 1px solid var(--soft-line);
    padding: 12px 0;
}

.border,
.border-l-2,
.border-gray-700,
.border-blue-200 {
    border-color: var(--soft-line) !important;
}

.bg-blue-600.rounded-full,
.absolute.-left-\[9px\].w-4.h-4,
.w-10.h-10.bg-blue-600 {
    background: var(--primary-gold) !important;
    color: var(--black) !important;
    border: 1px solid var(--dark-gold) !important;
}

#cta,
section.bg-blue-600,
section[class*="bg-blue-600"] {
    background: var(--black) !important;
    color: var(--off-white) !important;
    border-top: 1px solid var(--soft-line);
    border-bottom: 1px solid var(--soft-line);
}

#cta::before,
section.bg-blue-600::before,
section[class*="bg-blue-600"]::before {
    content: "";
    display: block;
    width: 72px;
    height: 2px;
    margin: 0 auto 24px;
    background: var(--primary-gold);
}

#cta h2,
section.bg-blue-600 h2,
section[class*="bg-blue-600"] h2 {
    color: var(--off-white) !important;
}

#cta .cta-btn,
section.bg-blue-600 a,
section[class*="bg-blue-600"] a {
    background: var(--primary-gold) !important;
    color: var(--black) !important;
    border: 1px solid var(--primary-gold) !important;
    border-radius: 6px !important;
}

form input,
form textarea,
input.border,
textarea.border {
    background: var(--off-white) !important;
    border: 1px solid rgba(85, 85, 85, 0.22) !important;
    border-radius: 6px !important;
    color: var(--black) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

form input:focus,
form textarea:focus,
.focus\:ring-blue-500:focus {
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 0 3px rgba(201, 163, 78, 0.18) !important;
    outline: none !important;
}

footer,
#footer,
.bg-gray-900,
footer.bg-gray-900 {
    background: var(--black) !important;
    color: rgba(255, 253, 247, 0.72) !important;
    border-top: 1px solid var(--soft-line);
}

footer h4,
footer .text-white,
.footer-col h2,
.footer-col h4 {
    color: var(--off-white) !important;
}

footer p,
footer a,
footer .text-gray-300,
footer .text-gray-400 {
    color: rgba(255, 253, 247, 0.70) !important;
}

footer a:hover,
footer .hover\:text-white:hover,
footer .hover\:text-blue-700:hover {
    color: var(--primary-gold) !important;
}

footer button,
footer .bg-gray-800 {
    background: rgba(255, 253, 247, 0.08) !important;
    border: 1px solid rgba(201, 163, 78, 0.28) !important;
    color: var(--off-white) !important;
    box-shadow: none !important;
}

footer button:hover,
footer .hover\:bg-gray-700:hover {
    background: var(--primary-gold) !important;
    color: var(--black) !important;
}

.social-icons a,
.contact-btn,
.float-btn,
#floating-contact button,
.fixed.bottom-6.right-6 button {
    background: var(--primary-gold) !important;
    border: 1px solid var(--dark-gold) !important;
    color: var(--black) !important;
    box-shadow: 0 10px 24px rgba(26, 26, 26, 0.18) !important;
}

.social-icons a:hover,
.contact-btn:hover,
#floating-contact button:hover,
.fixed.bottom-6.right-6 button:hover {
    background: var(--dark-gold) !important;
    color: var(--off-white) !important;
}

.contact-dropdown,
.float-options,
#phoneBox,
#whatsappBox {
    background: var(--off-white) !important;
    border: 1px solid var(--soft-line) !important;
    border-radius: 8px !important;
    box-shadow: var(--deep-shadow) !important;
}

.contact-dropdown a,
.float-options a,
#phoneBox a,
#whatsappBox a {
    color: var(--black) !important;
}

.contact-dropdown a:hover,
.float-options a:hover,
#phoneBox a:hover,
#whatsappBox a:hover {
    color: var(--dark-gold) !important;
}

.rounded-full,
.rounded-lg,
.rounded-xl,
.rounded-md {
    border-radius: 8px !important;
}

#floating-contact .rounded-full,
.social-icons a,
.contact-btn,
.float-btn,
.w-10.h-10.rounded-full,
.absolute.-left-\[9px\].rounded-full,
a.p-3.rounded-full,
button.rounded-full {
    border-radius: 999px !important;
}

@media (max-width: 1024px) {
    .hero-content {
        width: 68%;
    }

    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    nav {
        height: 76px;
    }

    #mobile-menu {
        top: 76px;
    }

    #properties,
    #why,
    #services,
    #testimonials,
    #faq,
    #cta,
    section.py-20,
    section.py-24,
    section.px-6 {
        padding-top: 72px !important;
        padding-bottom: 72px !important;
    }

    .properties-header {
        align-items: flex-start;
        gap: 18px;
        flex-direction: column;
    }

    .properties-header h2::after {
        margin-left: 0;
    }

    .hero-content {
        width: 100%;
    }
}

