/* ============================================
   PROPSALT LUXURY REAL ESTATE - MAIN STYLESHEET
   ============================================ */

/* ============================================
   1. CSS VARIABLES & ROOT SETTINGS
   ============================================ */


@font-face {
  font-family: 'Optima';
  src: url('fonts/OPTIMA.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Optima';
  src: url('fonts/OPTIMA_B.TTF') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Optima';
  src: url('fonts/Optima_Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Optima';
  src: url('fonts/Optima Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}


:root {
    /* Luxury Color Palette */
    --primary-gold: #C9A963;
    --primary-dark: #1a1a2e;
    --secondary-dark: #16213e;
    --accent-blue: #0f3460;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --border-light: #e5e5e5;
    --gold: #D4AF37;
    --dark-gold: #B8941F;
    --black: #1A1A1A;
    --dark-gray: #2A2A2A;
    --light-gray: #f5f5f547;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --border: #E0E0E0;


    --primary-color: #083E73; /*— header, navigation, main CTA, pricing buttons */
    --highlights-dark: #1d8f0c; /*— active states, Live Chat, highlights */
    --highlights: #56B947; /*— active states, Live Chat, highlights */
    --highlights-light: #56b94729; /*— active states, Live Chat, highlights */
    --card-background: #F5FAFF; /*— sections/cards background */
    --badges-borders: #C8A453; /*— only badges, subtle borders, dividers */
    --headings: #0B2452; /*— headings */
    --cards-forms: #FFFFFF; /*— cards/forms */
    --gradient-45: linear-gradient(45deg, var(--highlights), var(--highlights-dark));
    --gradient-90: linear-gradient(90deg, var(--highlights), var(--highlights-dark));
    --gradient-135: linear-gradient(135deg, var(--highlights), var(--highlights-dark));

    
    /* Typography - Luxury Fonts */
    --font-display: 'Optima LT W02 Roman';
    --font-heading: 'Optima LT W02 Roman';
    --font-body: 'Optima LT W02 Roman';
    
    /* Spacing */
    --section-padding: 150px;
    --container-width: 1500px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s ease;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.15);
}
/* ============================================
   2. RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {

    font-weight: 400;
    line-height: 1.8;
    color: var(--headings);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Optima', serif;
}


button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: 'Optima LT W02 Roman';
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {

    font-weight: 600;
    line-height: 1.2;
    color: var(--headings);
    letter-spacing: -0.5px;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

body, p, span, li, a, button, input, textarea {
  font-family: 'Lato', sans-serif;
  color: #2E2E2E;
  font-weight: 400;
  line-height: 1.6;
}


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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}


/* ============================================
   4. PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.luxury-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(201, 169, 99, 0.1);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-gold);
    letter-spacing: 3px;
    font-weight: 600;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}




#callicon{
transform: rotate(90deg);
}


/* Background Image Layer */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../index.html') no-repeat center center/cover;
    z-index: -2;
}

/* Black Overlay */


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

/* Background Image (Slideshow) */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.7), rgba(26,26,26,0.5));
    z-index: -1;
}

/* Hero Content */
.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-title {
    font-size: 27px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Buttons */
.hero-btn {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    color: #333;
    padding: 9px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    margin:3px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    border-color: var(--highlights);
    color: var(--highlights);
    transform: translateY(-3px);
}

/* Ad Banner */
.ad-banner {
      background: var(--gradient-90);
    color: #fff;
    padding: 15px 17px;
    border-radius: 50px;
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
}


/* Sections */
.section {
    padding: 100px 0;
}

.bg-light {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.section-header p {
    font-size: 15px;
    color: var(--text-light);
}

/* Property Grid */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}


    #spanid{
font-size: 12px;
    }

/* TITLE + PRICE ROW */
.title-price-row {
    display: flex;
    justify-content: space-between;
       align-items: start;

    margin-bottom: 6px;
}

.wc-price-right {
    font-size: 18px;
    font-weight: 700;
    color: var(--highlights);
      margin-top: -3px;
font-family: 'Optima';
    display: grid;
        text-align: right;
}




/* GRID LAYOUT */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media screen and (max-width: 567px){
    .property-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr)!important;
    gap: 28px;
}
.wc-price-right{
    font-size: 17px;

}
.wc-info span{
font-size: 11px;
}


.footer-col h3 {
    font-size:17px!important;
}

.footer-col p{
    font-size: 11.5px!important;
}
.footer-col ul li{
    margin-bottom: 9px!important;
}
.footer-col ul{
    font-size: 11.5px!important;
}

}

/* CARD */
.white-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: .3s ease;
}

.white-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.18);
}

/* IMAGE */
.white-img {
    height: 255px;
    overflow: hidden;
}

.white-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.white-card:hover .white-img img {
    transform: scale(1.07);
}

/* CONTENT */
.white-content {
    padding: 22px;
}

.wc-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.wc-location {
    color: #777;
    font-size: 13px;
    margin-bottom: 12px;
}

.wc-location i {
    color: var(--highlights);
    margin-right: 6px;
}

/* DETAILS */
.wc-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.wc-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #444;
}

.wc-info i {
    color: var(--highlights);
    font-size: 12px;
}

/* PRICE */
.wc-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--highlights);
    margin-bottom: 18px;

}

/* BUTTONS */
.wc-buttons {
    display: flex;
    gap: 12px;
}

.wc-enq,
.wc-view {
    flex: 1;
    padding: 8px 0;
    border-radius: 8px;
    border: 1px solid var(--highlights);
    background: transparent;
    color: var(--highlights);
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.wc-enq:hover,
.wc-view:hover {
    background: var(--highlights);
    color: #fff;
}


/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 30px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.filter-tab:hover, .filter-tab.active {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--white);
    transform: translateY(-2px);
}



.explore-masonry-new {
    padding: 70px 0;
}

.masonry-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 22px;
}

@media (max-width: 992px) {
    .masonry-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .masonry-grid-new {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* card sizes */
.masonry-card {
    position: relative;
    overflow: hidden;
    border: 2px solid #e5e5e5;
    background: #000;
    cursor: pointer;
    transition: .3s ease;
}

.masonry-card.height-2 {
    grid-row: span 2;
}

/* images */
.masonry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}

/* hover image zoom */
.masonry-card:hover img {
    transform: scale(1.1);
}

/* shadow */
.masonry-card:hover {
    box-shadow: 0 20px 45px rgba(0,0,0,0.28);
    border-color: #d0d0d0;
}

/* dark gradient */
.masonry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
    transition: .3s;
}

.masonry-card:hover::after {
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.15));
}

/* location title *//* Default Title */
.masonry-card h3 {
    position: absolute;
    bottom: 22px;
    left: 22px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    z-index: 3;
    opacity: 1;
    transition: .3s ease;
}

/* Fade out on hover */
.masonry-card:hover h3 {
    opacity: 0;
    transform: translateY(10px);
}

/* GOLD CLICK HERE TEXT */
.masonry-card::before {
    content: "Click Here";
    position: absolute;
    bottom: 22px;
    left: 22px;
    font-size: 22px;
    font-weight: 700;
    z-index: 4;
    opacity: 0;
    transform: translateY(10px);
    background: var(--gradient-90);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 12px rgba(255, 215, 100, 0.6);
    transition: .35s ease;
}

/* Show on hover */
.masonry-card:hover::before {
    opacity: 1;
    transform: translateY(0);
}




.property-type-section {
    padding: 70px 0;
}

/* GRID */
.property-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

@media (max-width: 992px) {
    .property-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .property-type-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* CARD */
.property-type-card {
    height: 170px;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: .3s ease;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

/* HOVER BACKGROUND */
.property-type-card:hover {
    background: linear-gradient(180deg, #ffffff 0%, #fdf5e6 100%);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* ===== BORDER DRAW ANIMATION ===== */
.property-type-card::before,
.property-type-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid var(--highlights);
    opacity: 0;
    pointer-events: none;
    transition: clip-path .8s ease, opacity .2s ease;
}

/* start of border (top-left) */
.property-type-card::before {
    clip-path: inset(0 100% 100% 0);
}

/* end of border (bottom-right) */
.property-type-card::after {
    clip-path: inset(100% 0 0 100%);
}

/* hover → draw border fully */
.property-type-card:hover::before,
.property-type-card:hover::after {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

/* ICON */
.property-type-icon {
    font-size: 35px;
    color: var(--highlights);
    margin-bottom: 12px;
}

/* TITLE */
.property-type-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

/* ARROW */
.arrow {
    position: absolute;
    right: 22px;
    bottom: 22px;
    color: var(--highlights);
    font-size: 20px;
    transition: .3s ease;
}

.property-type-card:hover .arrow {
    transform: translateX(6px);
    color: #000;
}



/* Sector Grid */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.sector-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
    border: 2px solid var(--border);
}

.sector-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sector-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.4s;
}

.sector-card:hover .sector-image {
    transform: scale(1.1);
}

.sector-content {
    padding: 20px;
    text-align: center;
}

.sector-content h3 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 10px;
}

.sector-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.sector-btn {
    padding: 10px 25px;
    background: var(--highlights);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.sector-btn:hover {
    background: var(--highlights-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Developer Grid */
.developer-section {
    padding: 70px 0;
}

.developer-logos {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
    gap: 20px;
}

@media (max-width: 1112px) {
    .developer-logos {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 992px) {
    .developer-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .developer-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dev-card {
    background: #fff;
    border: 2px solid #eee;
    padding: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    cursor: pointer;
    transition: .3s ease;
}

.dev-card img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: .3s ease;
}

.dev-card:hover {
    border-color: var(--highlights);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.dev-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}
/* Services Grid */

.re-services {
    padding: 70px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media(max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* MAIN CARD */
.service-card {
    background: #fff;
    padding: 30px;
    text-align: left;
    border-radius: 12px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    overflow: hidden;

    /* 3D effect */
    transform: perspective(700px) rotateX(0deg) rotateY(0deg);
}

/* HOVER - 3D tilt, glow, border draw */
.service-card:hover {
    transform: perspective(700px) rotateX(6deg) rotateY(6deg) translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* GOLD BORDER DRAW */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid var(--highlights);
    border-radius: 12px;
    
    /* Start hidden */
    clip-path: inset(0 100% 100% 0);
    transition: clip-path 0.7s ease;
    opacity: 0;
}

/* SHOW BORDER ON HOVER */
.service-card:hover::before {
    clip-path: inset(0 0 0 0);
    opacity: 1;
}

/* GOLD GLOW OVERLAY */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212,175,55,0.25), transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

/* GLOW ON HOVER */
.service-card:hover::after {
    opacity: 1;
}




/* ICON */
.service-card i {
    font-size: 38px;
    color: var(--highlights);
    margin-bottom: 15px;
    transition: 0.3s ease;
}

/* ICON LIFT ON HOVER */
.service-card:hover i {
    transform: translateY(-4px);
}

/* TITLE */
.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

/* TEXT */
.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 22px;
    transition: 0.3s ease;
}

/* TEXT LIFT */
.service-card:hover p {
    transform: translateY(-2px);
}



/* Why Choose Section */


/* CLEAN LUXURY WHY-CHOOSE SECTION */
/* MAIN SECTION */
.why-classic {
    padding: 70px 0;
    background: #fafafa;
}

/* HEADER */
.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
    color: #222;
}

.section-header p {
    text-align: center;
    color: #666;
    margin-bottom: 45px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* CARD */
.why-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.35s ease;
    border-top: 4px solid transparent;
}

/* HOVER EFFECT — SUBTLE & CLASSIC */
.why-item:hover {
    border-top: 4px solid var(--highlights);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ICON */
.why-icon i {
    font-size: 48px;
    color: var(--highlights);
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.why-item:hover .why-icon i {
    transform: scale(1.15);
}

/* TITLE */
.why-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

/* TEXT */
.why-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}



/* CTA Buttons */
.section-cta {
    text-align: center;
}

.cta-btn, .cta-btn-large {
    padding: 15px 25px;
    background: var(--highlights);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn-large {
    padding: 20px 60px;
    font-size: 20px;
}

.cta-btn:hover, .cta-btn-large:hover {
    background: var(--highlights-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    
    
    .hero {
        margin-top: 70px;
        height: auto;
        min-height: 80vh!important;
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
  
    
    .property-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .location-grid, .property-type-grid, .sector-grid, .developer-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .filter-tabs {
        gap: 10px;
    }
    
    .filter-tab {
        padding: 5px 16px;
        font-size: 13px;
    }
}






/* ============================================
   4. PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.luxury-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(201, 169, 99, 0.1);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-gold);
    letter-spacing: 3px;
    font-weight: 600;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.aidihome {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 26px;
    color: #fff; /* arrow color */
    text-decoration: none;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1.8s infinite ease-in-out;
}


/* Arrow animation */
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.aidihome i {
    display: block;
}


/* SECTION BACKGROUND */
/* WHITE SECTION */
.footer-wide-form-white {
    width: 100%;
    background: #ffffff;
    padding: 70px 0;
}

/* 70% CENTER LAYOUT */
.fwf-container-white {
    width: 50%;
    margin: auto;
    background: #fff;
    padding: 45px 45px;
    border-radius: 18px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* TITLE */
.fwf-title-white {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 8px;
}

.fwf-sub-white {
    font-size: 15px;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

/* TWO COLUMN ROW */
.fwf-row-white {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.fwf-row-full-white {
    margin-bottom: 22px;
}

/* INPUTS + SELECT + TEXTAREA */
.fwf-row-white input,
.fwf-row-white select,
.fwf-row-full-white textarea {
    width: 100%;
    padding: 14px 16px;
    background: #f7f7f7;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: .3s ease;
}

.fwf-row-white input::placeholder,
.fwf-row-full-white textarea::placeholder {
    color: #999;
}

/* FOCUS EFFECT (PREMIUM GOLD) */
.fwf-row-white input:focus,
.fwf-row-white select:focus,
.fwf-row-full-white textarea:focus {
    border-color: var(--highlights);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.22);
}

/* SUBMIT BUTTON */
.fwf-btn-white {
    width: 100%;
    padding: 15px 0;
    background: var(--highlights);   /* your gold */
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
}

.fwf-btn-white:hover {
    background: #b9972f;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .fwf-container-white {
        width: 90%;
        padding: 35px;
    }

    .fwf-row-white {
        grid-template-columns: 1fr;
    }
}


@media screen and (max-width: 567px){
    .dev-card{
        padding: 4px!important;
        height: 64px!important;
    }
    .dev-card img{
        width: 60px!important;
    }
    .developer-logos{
        gap: 4px!important;
    }
}



/* OVERLAY */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(3px);
    display: none;
    z-index: 900;
}

/* POPUP BOX */
.popup-box {
    width: 450px;
    max-width: 90%;
    background: #fff;
    border-radius: 18px;
    padding: 35px 30px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.7);
    opacity: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: .35s ease;
    display: none;
}

/* SHOW ANIMATION */
.popup-box.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.popup-overlay.active { display: block; }
.popup-box.active { display: block; }

/* POPUP HEADER */
.popup-header {
    position: relative;
    margin-bottom: 20px;
}

.popup-gold-line {
    width: 50px;
    height: 4px;
    background: var(--highlights);
    border-radius: 2px;
    margin-bottom: 12px;
}

.popup-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

/* CLOSE BUTTON */
.popup-close {
    position: absolute;
    right: -5px;
    top: -5px;
    font-size: 26px;
    cursor: pointer;
    color: #777;
    transition: .3s;
}

.popup-close:hover {
    color: #000;
}

/* SUBTEXT */
.popup-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 22px;
}

/* FORM FIELDS */
.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 14px;
    transition: .3s;
}

.popup-form input:focus,
.popup-form textarea:focus {
    border-color: var(--highlights);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
}

/* SUBMIT BUTTON */
.popup-btn {
    width: 100%;
    padding: 13px 0;
    background: var(--highlights) !important;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
}

.popup-btn:hover {
    background: var(--highlights-dark); !important;
}

/* MAIN SECTION */
.luxury-cta-section {
    background: var(--headings);
    padding: 34px 20px;
    text-align: center;
    color: #fff;
    margin: 60px 0;
    border-radius: 0;
}

/* CONTAINER */
.luxury-container {
    max-width: 900px;
    margin: auto;
}

/* HEADING */
.luxury-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 18px;
    color: white;
}

/* SUBTEXT */
.luxury-sub {
    font-size: 18px;
    color: #dcdcdc;
    margin-bottom: 45px;
    line-height: 1.6;
}

/* BUTTON WRAPPER */
.luxury-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* GOLD BUTTON */
.cta-btn-gold {
    background: var(--highlights);
    color: #fff;
    padding: 18px 20px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 18px rgba(212,175,55,0.4);
    transition: .3s;
}

.cta-btn-gold:hover {
    background: #b8952f;
    box-shadow: 0 0 30px rgba(212,175,55,0.6);
}

/* OUTLINE BUTTON */
.cta-btn-outline {
    border: 2px solid #ffffff;
    padding: 18px 20px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
}

.cta-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--highlights);
    color: var(--highlights);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .luxury-title {
        font-size: 32px;
    }
    .luxury-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================================
   HEADER BASE
============================================================ */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: 0.3s ease;
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    z-index: 9999;
}

.navbar {
    width: 100%;
    padding: 10px 0;
}

.nav-container {
    max-width: 1250px;
    margin: auto;
    height: 60px;
    padding: 0 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.propsalt-logo {
    width: 115px;
}

/* ============================================================
   DESKTOP NAVIGATION
============================================================ */
.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    color: #fff;
    padding: 5px 0;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.header.scrolled .nav-link {
    color:var(--headings);
}

.nav-link::after {
    content: "";
    width: 0;
    height: 2px;
    background: var(--highlights);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ============================================================
   DESKTOP DROPDOWN
============================================================ */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 220px;
    background: #fff;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #222;
}

.dropdown-menu li a:hover {
    background: #f6f6f6;
    color: var(--highlights);
}

/* ============================================================
   ACTION BUTTONS
============================================================ */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.header.scrolled .action-btn {
    color: #111;
    border-color: rgba(0,0,0,0.2);
}

.call-btn:hover {
    background: var(--highlights);
    border-color: var(--highlights);
}

.whatsapp-btn:hover {
    background: #25d366;
    border-color: #25d366;
}

/* ============================================================
   HAMBURGER
============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    transition: 0.3s ease;
}

.header.scrolled .hamburger span {
    background: #111;
}

/* ============================================================
   MOBILE MENU (FINAL & PERFECT)
============================================================ */
@media (max-width: 992px) {

    .hamburger {
        display: flex;
    }

    /* OVERLAY */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 998;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* SLIDE-IN MENU */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 55px 17px;
        gap: 10px;
        z-index: 9999;
        align-items: flex-start;
        overflow-y: auto;
        transition: 0.35s ease;
        box-shadow: 3px 0 25px rgba(0,0,0,0.18);
    }

    .nav-menu.active {
        left: 0;
    }

    /* CLOSE BUTTON */
    .mobile-close {
        font-size: 22px;
        font-weight: bold;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
        margin-bottom: 10px;
        cursor: pointer;
        color: #111;
        width: 100%;
    }

    /* LINKS */
    .nav-link {
        width: 100%;
        font-size: 17px;
        color: #111 !important;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-link.active {
        border-bottom: 2px solid var(--highlights);
    }

    /* DROPDOWN */
    .dropdown {
        width: 100%;
        position: relative;
    }

    .dropdown-menu {
        display: none;
        width: 100%;
        background: #fff;
        padding: 12px 18px;
        border-radius: 10px;
        border-left: 3px solid var(--highlights);
        margin-top: 5px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    }

    .dropdown.active .dropdown-menu {
        display: block;
        z-index: 9999;
    }

    .dropdown-menu li a {
        font-size: 16px;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid #eee;
        color: #333;
    }

    .dropdown-menu li:last-child a {
        border-bottom: none;
    }

    .dropdown-menu li a:hover {
        color: var(--highlights);
    }

    /* ARROW ROTATE */
    .dropdown > .nav-link i {
        transition: 0.3s;
    }

    .dropdown.active > .nav-link i {
        transform: rotate(180deg);
        color: var(--highlights);
    }
}


/* FORM LOADER OVERLAY */
#formLoaderOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(6px);
  z-index: 999999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* WHEN ACTIVE */
#formLoaderOverlay.active {
  display: flex;
  opacity: 1;
}

/* SPINNER */
#formLoaderOverlay .spinner {
  width: 55px;
  height: 55px;
  border: 6px solid #ddd;
  border-top-color: #0078FF;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

/* SPINNING ANIMATION */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* LOADER TEXT */
#formLoaderOverlay .loader-text {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
  #formLoaderOverlay .spinner {
    width: 45px;
    height: 45px;
  }

  #formLoaderOverlay .loader-text {
    font-size: 16px;
  }
}


/* Footer */
.footer {
    background: var(--black);
    padding: 60px 0 20px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.footer-col p {
    color: white;
    line-height: 1.8;
    font-size: 13px;
    margin-bottom: 20px;
}



.footer-col ul {
    max-height: 210px;
    overflow-y: auto;
    padding-right: 8px;
    list-style: none;
    font-size: 13px;
}

/* Smooth Scroll Look */
.footer-col ul::-webkit-scrollbar {
    width: 6px;
}

.footer-col ul::-webkit-scrollbar-thumb {
    background: #c9a24d;
    border-radius: 10px;
}

.footer-col ul::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}




.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gold-light);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    margin-bottom: 12px;
}

.contact-info i {
    color: var(--gold-light);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark-gray);
    color: white;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

#mousepointer{
 cursor:pointer!important;   
}

/* ===== MODERN MOBILE CTA ===== */
.mobile-cta-modern{
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 420px;
  height: 58px;
  background: rgba(15,15,15,0.95);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 9999;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
/*.mobile-cta-modern{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.92),
    rgba(0,0,0,0.85)
  );
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}
*/

/* SIDE ICONS */
.cta-side{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.cta-side.call{
  background: #2c2c2c;
   border: 1px solid #ffffff5c;
}

.cta-side.whatsapp{
  background: #25d366;
}

.cta-main:active{
  transform: scale(0.94);
  box-shadow: 
    0 6px 18px rgba(212,175,55,0.45),
    inset 0 2px 6px rgba(0,0,0,0.25);
}

/* MICRO RIPPLE */
.cta-main{
  position: relative;
  overflow: hidden;
}

.cta-main::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.25) 20%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cta-main:active::after{
  opacity: 1;
}


/* MAIN ENQUIRE */
.cta-main{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-135);
  color: #000;
  padding: 8px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 
    0 10px 30px rgba(212,175,55,0.55),
    inset 0 1px 0 rgba(255,255,255,0.4);
      animation: pulseGold 2s infinite;

      transition: 
    transform 0.18s cubic-bezier(.4,0,.2,1),
    box-shadow 0.18s cubic-bezier(.4,0,.2,1),
    background 0.25s ease;
}

/* GOLD PULSE */
@keyframes pulseGold{
  0%{ box-shadow: 0 0 0 0 rgba(212,175,55,.6); }
  70%{ box-shadow: 0 0 0 16px rgba(212,175,55,0); }
  100%{ box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* DESKTOP HIDE */
@media(min-width: 992px){
  .mobile-cta-modern{ display:none; }
}

.float-vertical-cta{
  position: fixed;
  font-size:9px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient-135);
  color: #fff;
  padding: 14px 10px;
  font-weight: 700;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 8px 0 0 8px;
  box-shadow: -6px 8px 18px rgba(0,0,0,.25);
  z-index: 9999!important;
}


@media screen and (max-width:567px){
                 
     #investment{
        padding: 20px 20px!important;
    }
    .pd-invest-item{
        padding: 15px 10px 15px 10px;
    }
    #contentp{
        font-size:14.5px!important;
    }
    .pd-faq-question{
          font-size:15px!important;
    }
    }


/* SOCIAL PROOF */
.prop-social-proof{
  text-align:center;
  font-size:12px;
  color:#666;
  margin:15px 0;
}
/* ===============================
   LEFT CTA : DESKTOP ONLY
   =============================== */
@media (min-width: 992px){

  .floating-left-cta{
    position: fixed;
    left: 20px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
  }

  /* COMMON BUTTON */
  .float-btn{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    transition: all .3s ease;
    animation: floatPulse 2.5s infinite;
  }

  .float-btn:hover{
    transform: translateY(-4px) scale(1.05);
  }

  .float-btn.call{
    background: #000;
  }

  .float-btn.whatsapp{
    background: #25d366;
  }

  @keyframes floatPulse{
    0%{ transform: translateY(0); }
    50%{ transform: translateY(-6px); }
    100%{ transform: translateY(0); }
  }
}

/* ===============================
   SCROLL TO TOP : DESKTOP + MOBILE
   =============================== */

.scroll-top-wrapper{
  position: fixed;
  right: 16px;
  bottom: 110px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.scroll-top-wrapper.show{
  opacity: 1;
  pointer-events: auto;
}

#scrollTopBtn{
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #000;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    top: 8rem;
}

/* SVG PROGRESS */
.progress-ring{
  position: absolute;
  top: -2px;
  left: -2px;
  transform: rotate(-90deg);
}

.progress-ring__circle{
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  transition: stroke-dashoffset .15s linear;
}

/* MOBILE ADJUSTMENT */
@media (max-width: 768px){
  .scroll-top-wrapper{
    bottom: 110px; /* mobile CTA / browser bar safe */
    right: 12px;
  }
}


@media screen and (max-width: 567px){
    .floating-left-cta{
display: none;
    }

    .pd-right{
        margin-top: 280px;
    }
}


