/* =========================================
   RANGOLI PROPERTIES
   PREMIUM CSS
   PART 1 — RESET + HEADER + HERO
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Cinzel:wght@500;600;700&display=swap');

/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --gold-light: #f3d37a;
    --black: #080808;
    --dark: #111;
    --white: #fff;
    --text: #d8d8d8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1350px;
    margin: auto;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =========================================
   LOADER
========================================= */

#loader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: .6s;
}

#loader.hide {
    opacity: 0;
    visibility: hidden;
}

#loader img {
    width: 170px;
    animation: loader 1.8s infinite alternate;
}

@keyframes loader {
    from {
        transform: scale(.9);
        opacity: .6;
    }

    to {
        transform: scale(1.08);
        opacity: 1;
    }
}

/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(18px);
    transition: .4s;
}

.header.sticky {
    background: #090909;
}

.header .container {
    height: 92px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 62px;
    width: auto;
}

.navbar ul {
    display: flex;
    gap: 42px;
}

.navbar a {
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: .3s;
}

.navbar a:hover {
    color: var(--gold);
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: .4s;
}

.navbar a:hover::after {
    width: 100%;
}

.call-btn {
    padding: 15px 28px;
    background: var(--gold);
    border-radius: 50px;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .35s;
}

.call-btn:hover {
    transform: translateY(-5px);
}

/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    height: 100vh;
    min-height: 760px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #050505;
}

/* =========================================
   HERO VIDEO
========================================= */

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: zoomVideo 18s linear infinite alternate;
}

/* =========================================
   HERO OVERLAY
========================================= */

.overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .88) 0%,
            rgba(0, 0, 0, .48) 50%,
            rgba(0, 0, 0, .78) 100%
        );
}

/* =========================================
   HERO CONTENT
========================================= */

.hero .container {
    position: relative;
    z-index: 5;
    width: 90%;
    max-width: 1350px;
    margin: auto;
    padding-bottom: 180px;
}

.hero-content {
    max-width: 760px;
}

/* =========================================
   HERO TAG
========================================= */

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 22px;

    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 40px;

    background: rgba(0, 0, 0, .20);
    backdrop-filter: blur(10px);

    color: var(--gold);

    margin-bottom: 28px;
}

/* =========================================
   HERO TITLE
========================================= */

.hero h1 {
    font-family: "Cinzel", serif;
    font-size: 82px;
    line-height: 1.08;
    margin: 0 0 25px;
    color: #fff;
}

.hero h1 span {
    color: var(--gold);
}

/* =========================================
   HERO DESCRIPTION
========================================= */

.hero p {
    font-size: 20px;
    line-height: 1.9;
    color: #ddd;
    max-width: 650px;
    margin: 0 0 40px;
}

/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn {
    padding: 18px 38px;
    border-radius: 50px;
    font-weight: 700;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: .35s;
}

.gold-btn {
    background: var(--gold);
    color: #111;
}

.white-btn {
    border: 2px solid #fff;
    color: #fff;
    background: rgba(0, 0, 0, .15);
    backdrop-filter: blur(8px);
}

.gold-btn:hover,
.white-btn:hover {
    transform: translateY(-6px);
}

/* =========================================
   HERO SEARCH BOX
========================================= */

.hero-search {
    position: absolute;

    left: 50%;
    bottom: 35px;

    transform: translateX(-50%);

    width: 92%;
    max-width: 1250px;

    padding: 24px;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr
        180px;

    gap: 18px;

    background: rgba(15, 15, 15, .78);

    border: 1px solid rgba(255, 255, 255, .10);

    backdrop-filter: blur(22px);

    border-radius: 24px;

    z-index: 20;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .45);
}

/* =========================================
   SEARCH ITEM
========================================= */

.search-item {
    min-width: 0;
}

.search-item label {
    display: block;

    color: var(--gold);

    font-size: 15px;
    font-weight: 500;

    margin-bottom: 8px;
}

/* =========================================
   SEARCH SELECT
========================================= */

.search-item select {
    width: 100%;

    height: 58px;

    padding: 0 18px;

    background: #181818;

    color: #fff;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 12px;

    outline: none;

    font-family: "Poppins", sans-serif;

    cursor: pointer;
}

.search-item select:focus {
    border-color: var(--gold);
}

/* =========================================
   SEARCH BUTTON
========================================= */

.hero-search button {
    width: 100%;
    height: 58px;

    align-self: end;

    background: var(--gold);

    color: #111;

    border: none;

    border-radius: 12px;

    font-size: 16px;
    font-weight: 700;

    font-family: "Poppins", sans-serif;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    transition: .35s;
}

.hero-search button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(212, 175, 55, .30);
}

/* =========================================
   SCROLL INDICATOR
========================================= */

.scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 170px;

    transform: translateX(-50%);

    z-index: 10;

    text-align: center;
}

.scroll-indicator p {
    margin-top: 10px;

    color: #fff;

    font-size: 11px;

    letter-spacing: 3px;

    opacity: .75;
}

/* =========================================
   MOUSE
========================================= */

.mouse {
    width: 34px;
    height: 58px;

    border: 2px solid #fff;

    border-radius: 30px;

    position: relative;

    margin: auto;
}

.mouse span {
    position: absolute;

    left: 50%;
    top: 10px;

    transform: translateX(-50%);

    width: 6px;
    height: 12px;

    background: var(--gold);

    border-radius: 20px;

    animation: scroll 2s infinite;
}

/* =========================================
   VIDEO ZOOM
========================================= */

@keyframes zoomVideo {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.12);
    }
}

/* =========================================
   SCROLL ANIMATION
========================================= */

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {

    .hero h1 {
        font-size: 65px;
    }

    .hero-search {
        width: 90%;

        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        bottom: 25px;
    }

    .hero-search button {
        height: 58px;
    }

    .hero .container {
        padding-bottom: 180px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .hero {
        height: auto;
        min-height: 900px;

        padding-top: 120px;
        padding-bottom: 230px;

        align-items: flex-start;
    }

    .hero .container {
        width: 92%;
        padding-bottom: 0;
    }

    .hero h1 {
        font-size: 43px;
        line-height: 1.12;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.75;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        padding: 15px 26px;
    }

    .hero-search {
        width: 92%;

        left: 50%;
        bottom: 25px;

        grid-template-columns: 1fr;

        padding: 18px;

        gap: 14px;

        border-radius: 20px;
    }

    .hero-search button {
        height: 55px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .hero {
        min-height: 920px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-tag {
        font-size: 12px;
        padding: 10px 16px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-search {
        width: 92%;
        padding: 15px;
    }

    .search-item select {
        height: 52px;
    }

    .hero-search button {
        height: 52px;
    }
}
/* =========================================
   ABOUT SECTION
========================================= */

.about {
    padding: 140px 0;
    background: #0d0d0d;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.about-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 30px;
    transition: 1s;
}

.about-image:hover img {
    transform: scale(1.08);
}

.experience-box {
    position: absolute;
    right: -20px;
    bottom: 40px;

    background: var(--gold);
    color: #111;

    padding: 30px;

    border-radius: 22px;

    text-align: center;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .45);
}

.experience-box h2 {
    font-size: 55px;
    margin-bottom: 5px;
    font-weight: 700;
}

.experience-box span {
    font-weight: 600;
}

.section-tag {
    display: inline-block;

    color: var(--gold);

    letter-spacing: 3px;

    font-weight: 600;

    margin-bottom: 20px;
}

.about-content h2 {
    font-family: "Cinzel", serif;

    font-size: 58px;

    line-height: 1.2;

    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--gold);
}

.about-content p {
    color: #cfcfcf;

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 35px;
}

/* =========================================
   ABOUT FEATURES
========================================= */

.about-features {
    display: flex;
    flex-direction: column;

    gap: 22px;

    margin-bottom: 40px;
}

.feature {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 24px;

    border-radius: 18px;

    background: #181818;

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .4s;
}

.feature:hover {
    transform: translateX(12px);

    border-color: var(--gold);
}

.feature i {
    width: 68px;
    height: 68px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--gold);

    color: #111;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;
}

.feature h4 {
    font-size: 22px;

    margin-bottom: 6px;
}

.feature p {
    margin: 0;

    font-size: 15px;
}

/* =========================================
   FOUNDER SECTION
========================================= */

.founder {
    padding: 140px 0;

    background: #080808;
}

.founder-container {
    display: grid;

    grid-template-columns: 420px 1fr;

    gap: 90px;

    align-items: center;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;

    height: 600px;

    object-fit: cover;

    border-radius: 28px;

    border: 4px solid var(--gold);

    transition: 1s;
}

.founder-image:hover img {
    transform: scale(1.08);
}

.founder-badge {
    position: absolute;

    left: -25px;

    bottom: 35px;

    background: #111;

    color: #fff;

    padding: 18px 28px;

    border-radius: 18px;

    border: 1px solid var(--gold);

    display: flex;

    align-items: center;

    gap: 12px;
}

.founder-badge i {
    color: var(--gold);

    font-size: 26px;
}

.founder-content h2 {
    font-family: "Cinzel", serif;

    font-size: 55px;

    line-height: 1.2;

    margin: 18px 0;
}

.founder-content h2 span {
    color: var(--gold);
}

.founder-content h4 {
    color: var(--gold);

    margin-bottom: 20px;

    font-size: 24px;
}

.founder-content p {
    color: #cfcfcf;

    line-height: 1.9;

    margin-bottom: 25px;
}

/* =========================================
   FOUNDER STATS
========================================= */

.founder-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin: 40px 0;
}

.stat {
    background: #181818;

    padding: 28px;

    border-radius: 18px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .4s;
}

.stat:hover {
    transform: translateY(-10px);

    border-color: var(--gold);
}

.stat h3 {
    color: var(--gold);

    font-size: 38px;

    margin-bottom: 8px;
}

.stat span {
    color: #d7d7d7;

    font-size: 15px;
}

/* =========================================
   ABOUT + FOUNDER RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .about-container,
    .founder-container {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 600px;
    }

    .founder-image {
        max-width: 500px;
        margin: auto;
    }
}

@media (max-width: 768px) {

    .about,
    .founder {
        padding: 90px 0;
    }

    .about-content h2,
    .founder-content h2 {
        font-size: 38px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-image img,
    .founder-image img {
        height: 450px;
    }

    .experience-box {
        right: 10px;
        bottom: 20px;

        padding: 20px;
    }

    .experience-box h2 {
        font-size: 38px;
    }

    .founder-badge {
        left: 10px;
        bottom: 20px;
    }

    .founder-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .about-content h2,
    .founder-content h2 {
        font-size: 32px;
    }

    .feature {
        padding: 18px;

        gap: 14px;
    }

    .feature i {
        width: 55px;
        height: 55px;

        font-size: 20px;
    }

    .feature h4 {
        font-size: 18px;
    }

    .about-image img,
    .founder-image img {
        height: 380px;
    }
}
/* =========================================
   FEATURED PROPERTIES
========================================= */

.properties {
    padding: 140px 0;
    background: #101010;
    overflow: hidden;
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-title > span {
    display: inline-block;
    color: var(--gold);
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title h2 {
    font-family: "Cinzel", serif;
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title h2 span {
    color: var(--gold);
}

.section-title p {
    color: #cfcfcf;
    font-size: 18px;
    line-height: 1.8;
}

/* =========================================
   PROPERTY GRID
========================================= */

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
}

/* =========================================
   PROPERTY CARD
========================================= */

.property-card {
    background: #181818;

    border-radius: 28px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .5s;

    position: relative;

    opacity: 1;
    visibility: visible;
}

.property-card:hover {
    transform: translateY(-15px);

    border-color: var(--gold);

    box-shadow: 0 35px 70px rgba(0, 0, 0, .45);
}

/* =========================================
   PROPERTY IMAGE
========================================= */

.property-image {
    position: relative;

    width: 100%;
    height: 310px;

    overflow: hidden;

    background: #111;
}

.property-image::before {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .75),
        rgba(0, 0, 0, 0)
    );

    z-index: 2;

    pointer-events: none;
}

/* IMPORTANT: PROPERTY PHOTO */

.property-image img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    opacity: 1 !important;
    visibility: visible !important;

    position: relative;
    z-index: 1;

    transform: scale(1);

    transition: transform 1s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.08);
}

/* =========================================
   PROPERTY BADGE
========================================= */

.property-badge {
    position: absolute;

    top: 22px;
    left: 22px;

    background: var(--gold);

    color: #111;

    padding: 10px 22px;

    border-radius: 40px;

    font-size: 14px;

    font-weight: 700;

    z-index: 5;
}

/* =========================================
   PROPERTY CONTENT
========================================= */

.property-content {
    padding: 30px;
}

.property-content h3 {
    font-size: 30px;

    margin-bottom: 12px;
}

.property-content p {
    color: #bfbfbf;

    margin-bottom: 22px;

    line-height: 1.7;
}

/* =========================================
   PROPERTY INFO
========================================= */

.property-info {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 28px;
}

.property-info span {
    background: #232323;

    color: #fff;

    padding: 10px 18px;

    border-radius: 40px;

    font-size: 14px;

    transition: .35s;
}

.property-info span:hover {
    background: var(--gold);

    color: #111;
}

/* =========================================
   PROPERTY BOTTOM
========================================= */

.property-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;
}

.property-bottom h4 {
    color: var(--gold);

    font-size: 30px;

    font-weight: 700;
}

.view-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 13px 24px;

    background: var(--gold);

    color: #111;

    border-radius: 40px;

    font-weight: 700;

    transition: .35s;
}

.view-btn:hover {
    transform: translateY(-4px);

    box-shadow: 0 15px 30px rgba(212, 175, 55, .35);
}

/* =========================================
   GOLD BOTTOM LINE
========================================= */

.property-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: var(--gold);

    transform: scaleX(0);

    transform-origin: left;

    transition: .45s;
}

.property-card:hover::after {
    transform: scaleX(1);
}

/* =========================================
   PROPERTY RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .property-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {

    .properties {
        padding: 90px 0;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .section-title p {
        font-size: 16px;
    }

    .property-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .property-image {
        height: 280px;
    }

    .property-content h3 {
        font-size: 25px;
    }
}

@media (max-width: 480px) {

    .section-title h2 {
        font-size: 32px;
    }

    .property-image {
        height: 250px;
    }

    .property-content {
        padding: 22px;
    }

    .property-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .property-bottom h4 {
        font-size: 26px;
    }
}
/* =========================================
   PROJECTS SECTION
========================================= */

.projects {
    padding: 140px 0;
    background: #080808;
    overflow: hidden;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    cursor: pointer;
    height: 550px;
    background: #111;
    transition: .5s;
}

.project-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    visibility: visible;
    transition: 1.2s;
}

.project-card:hover img {
    transform: scale(1.12);
}

.project-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 40px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.92),
        rgba(0,0,0,.55),
        rgba(0,0,0,.15)
    );

    transition: .5s;
}

.project-card:hover .project-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,.97),
        rgba(0,0,0,.60),
        rgba(0,0,0,.20)
    );
}

.project-overlay span {
    color: var(--gold);

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 2px;

    margin-bottom: 12px;

    text-transform: uppercase;
}

.project-overlay h3 {
    font-size: 34px;

    font-weight: 700;

    margin-bottom: 12px;

    color: #fff;
}

.project-overlay p {
    color: #d7d7d7;

    line-height: 1.8;

    margin-bottom: 25px;
}

.project-overlay a {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #fff;

    font-weight: 600;

    transition: .35s;

    width: fit-content;
}

.project-overlay a i {
    transition: .35s;
}

.project-overlay a:hover {
    color: var(--gold);
}

.project-overlay a:hover i {
    transform: translateX(8px);
}

/* =========================================
   PROJECT BORDER
========================================= */

.project-card::before {
    content: "";

    position: absolute;

    inset: 0;

    border: 2px solid transparent;

    border-radius: 28px;

    transition: .4s;

    z-index: 15;

    pointer-events: none;
}

.project-card:hover::before {
    border-color: rgba(212,175,55,.75);
}

/* =========================================
   PROJECT SHINE
========================================= */

.project-card::after {
    content: "";

    position: absolute;

    width: 160%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );

    top: 0;
    left: -170%;

    transition: 1s;

    z-index: 12;

    pointer-events: none;
}

.project-card:hover::after {
    left: 120%;
}

/* =========================================
   PROJECT VIEW BUTTON FIX
========================================= */

.project-link {
    position: relative;

    z-index: 20;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    pointer-events: auto;

    cursor: pointer;

    text-decoration: none;
}

/* =========================================
   PROJECT RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {

    .projects {
        padding: 90px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .project-card {
        height: 480px;
    }

    .project-overlay {
        padding: 30px;
    }

    .project-overlay h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {

    .project-card {
        height: 420px;

        border-radius: 22px;
    }

    .project-overlay {
        padding: 24px;
    }

    .project-overlay h3 {
        font-size: 25px;
    }

    .project-overlay p {
        font-size: 14px;
    }
}
/* =========================================
   WHY CHOOSE US
========================================= */

.why-us {
    padding: 140px 0;
    background: #101010;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.why-card {
    background: #181818;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 25px;

    padding: 45px 30px;

    text-align: center;

    transition: .45s;

    position: relative;

    overflow: hidden;
}

.why-card::before {
    content: "";

    position: absolute;

    top: -100%;
    left: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        rgba(212,175,55,.18),
        transparent
    );

    transition: .5s;
}

.why-card:hover::before {
    top: 0;
}

.why-card:hover {
    transform: translateY(-15px);

    border-color: var(--gold);

    box-shadow: 0 25px 60px rgba(0,0,0,.45);
}

.why-card i {
    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: var(--gold);

    color: #111;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 34px;

    transition: .4s;

    position: relative;

    z-index: 2;
}

.why-card:hover i {
    transform: rotate(360deg) scale(1.1);
}

.why-card h3 {
    font-size: 26px;

    margin-bottom: 15px;

    position: relative;

    z-index: 2;
}

.why-card p {
    color: #cfcfcf;

    line-height: 1.9;

    font-size: 16px;

    position: relative;

    z-index: 2;
}

/* =========================================
   STATS SECTION
========================================= */

.stats {
    padding: 120px 0;

    background: #080808;
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 30px;
}

.stat-box {
    background: #181818;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 25px;

    padding: 45px 20px;

    text-align: center;

    transition: .45s;

    position: relative;

    overflow: hidden;
}

.stat-box::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background: var(--gold);

    transform: scaleX(0);

    transition: .45s;
}

.stat-box:hover::after {
    transform: scaleX(1);
}

.stat-box:hover {
    transform: translateY(-12px);

    border-color: var(--gold);
}

.stat-box h2 {
    font-size: 55px;

    color: var(--gold);

    margin-bottom: 12px;

    font-weight: 700;
}

.stat-box p {
    color: #d7d7d7;

    font-size: 18px;

    letter-spacing: 1px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .why-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {

    .why-us,
    .stats {
        padding: 90px 0;
    }

    .why-grid,
    .stats-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .why-card {
        padding: 35px 25px;
    }

    .stat-box h2 {
        font-size: 45px;
    }
}
/* =========================================
   TESTIMONIALS
========================================= */

.testimonials {
    padding: 140px 0;
    background: #0b0b0b;
    overflow: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: #181818;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 25px;
    padding: 40px 35px;
    transition: .45s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 0 25px 60px rgba(0,0,0,.45);
}

.quote {
    font-size: 55px;
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-card p {
    color: #d6d6d6;
    line-height: 1.9;
    margin-bottom: 30px;
}

.client {
    display: flex;
    align-items: center;
    gap: 18px;
}

.client img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.client h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.client span {
    color: #bfbfbf;
    font-size: 15px;
}

/* =========================================
   GALLERY
========================================= */

.gallery {
    padding: 140px 0;
    background: #111;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    background: #111;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    opacity: 1;
    visibility: visible;
    transition: 1.1s;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item::before {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,0)
    );

    opacity: 0;
    transition: .4s;

    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: "+";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%) scale(0);

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background: rgba(212,175,55,.95);

    color: #111;

    font-size: 42px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .45s;

    z-index: 3;
}

.gallery-item:hover::after {
    transform: translate(-50%,-50%) scale(1);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .testimonial-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {

    .testimonials,
    .gallery {
        padding: 90px 0;
    }

    .testimonial-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .gallery-item img {
        height: 300px;
    }
}

@media (max-width: 480px) {

    .gallery-item img {
        height: 250px;
    }

    .client img {
        width: 60px;
        height: 60px;
    }
}
/* =========================================
   BANK PARTNERS
========================================= */

.banks {
    padding: 120px 0;
    background: #0b0b0b;
    overflow: hidden;
}

.banks .section-title {
    margin-bottom: 55px;
}

.bank-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 22px;
    align-items: center;
}

.bank-card {
    height: 150px;

    background: #fff;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    position: relative;
    overflow: hidden;

    border: 1px solid rgba(255,255,255,.12);

    box-shadow: 0 15px 40px rgba(0,0,0,.35);

    transition: transform .45s ease,
                box-shadow .45s ease;
}

.bank-card::before {
    content: "";

    position: absolute;

    width: 150%;
    height: 100%;

    left: -180%;
    top: 0;

    background: linear-gradient(
        110deg,
        transparent,
        rgba(212,175,55,.20),
        transparent
    );

    transform: skewX(-20deg);

    transition: 1s;
}

.bank-card img {
    display: block;

    width: auto;
    max-width: 145px;
    max-height: 65px;

    object-fit: contain;

    position: relative;
    z-index: 2;

    opacity: 1;
    visibility: visible;

    transition: .45s;
}

.bank-card:hover {
    transform: translateY(-12px);

    box-shadow: 0 25px 55px rgba(0,0,0,.55);
}

.bank-card:hover::before {
    left: 130%;
}

.bank-card:hover img {
    transform: scale(1.08);
}

/* =========================================
   BANK RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .bank-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {

    .banks {
        padding: 90px 0;
    }

    .bank-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .bank-card {
        height: 120px;
        padding: 20px;
    }

    .bank-card img {
        max-width: 110px;
        max-height: 50px;
    }
}
/* =========================================
   FAQ
========================================= */

.faq {
    padding: 140px 0;
    background: #0d0d0d;
}

.faq-box {
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    background: #181818;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    transition: .4s;
}

.faq-item:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
}

.faq-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.faq-item p {
    color: #cfcfcf;
    line-height: 1.8;
}

/* =========================================
   CTA
========================================= */

.cta {
    padding: 120px 0;
    text-align: center;

    background:
        linear-gradient(
            rgba(0,0,0,.75),
            rgba(0,0,0,.75)
        ),
        url("../assets/images/cta/cta.jpg")
        center / cover;
}

.cta h2 {
    font-family: "Cinzel", serif;
    font-size: 60px;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 40px;

    color: #ddd;

    line-height: 1.9;

    font-size: 18px;
}

/* =========================================
   FOOTER
========================================= */

.footer {
    background: #050505;
    padding: 90px 0 30px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;

    margin-bottom: 60px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 25px;
}

.footer p {
    color: #bdbdbd;
    line-height: 1.9;
}

.footer h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 24px;
}

.footer ul li {
    margin-bottom: 15px;
}

.footer ul li a {
    color: #bdbdbd;
    transition: .35s;
}

.footer ul li a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer i {
    color: var(--gold);
    margin-right: 12px;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,.08);

    text-align: center;

    padding-top: 30px;

    color: #aaa;
}

/* =========================================
   FLOATING BUTTONS
========================================= */

.whatsapp-btn,
.call-float {
    position: fixed;

    right: 25px;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 28px;

    color: #fff;

    z-index: 999;

    transition: .35s;
}

.whatsapp-btn {
    bottom: 100px;
    background: #25D366;
}

.call-float {
    bottom: 25px;
    background: var(--gold);
    color: #111;
}

.whatsapp-btn:hover,
.call-float:hover {
    transform: scale(1.12);
}

/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 20px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta h2 {
        font-size: 52px;
    }
}

@media (max-width: 768px) {

    .faq,
    .cta,
    .footer {
        padding-top: 90px;
    }

    .faq-item {
        padding: 24px;
    }

    .faq-item h3 {
        font-size: 20px;
    }

    .cta h2 {
        font-size: 38px;
    }

    .cta p {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .whatsapp-btn,
    .call-float {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {

    .cta h2 {
        font-size: 32px;
    }

    .whatsapp-btn,
    .call-float {
        right: 18px;
    }
}
/* =========================================
   MOVING PROPERTY GALLERY
========================================= */

.moving-gallery {
    padding: 150px 0;
    background: #080808;
    overflow: hidden;
}

.moving-gallery-heading {
    width: 90%;
    max-width: 850px;
    margin: 0 auto 80px;
    text-align: center;
}

.moving-gallery-heading span {
    color: var(--gold);
    letter-spacing: 3px;
    font-weight: 600;
}

.moving-gallery-heading h2 {
    font-family: "Cinzel", serif;
    font-size: 58px;
    line-height: 1.2;
    margin: 18px 0 20px;
}

.moving-gallery-heading h2 strong {
    color: var(--gold);
    font-weight: 600;
}

.moving-gallery-heading p {
    color: #cfcfcf;
    font-size: 17px;
    line-height: 1.8;
}

/* PHOTO WRAPPER */

.moving-gallery-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* MOVING ROW */

.moving-row {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    will-change: transform;
}

/* PHOTO CARD */

.moving-photo {
    width: 330px;
    height: 230px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 22px;
    position: relative;
    background: #111;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.moving-photo.tall {
    width: 250px;
    height: 340px;
}

.moving-photo.wide {
    width: 440px;
    height: 250px;
}

.moving-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    visibility: visible;
    transition: 1.2s ease;
}

.moving-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0),
        rgba(0,0,0,.35)
    );
    pointer-events: none;
}

.moving-photo:hover img {
    transform: scale(1.12);
}

/* CINEMATIC MOTION */

.row-left {
    animation: movingLeft 32s linear infinite;
}

.row-right {
    animation: movingRight 36s linear infinite;
}

.slow-row {
    animation-duration: 42s;
}

@keyframes movingLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-35%);
    }
}

@keyframes movingRight {
    from {
        transform: translateX(-35%);
    }

    to {
        transform: translateX(0);
    }
}

/* =========================================
   BUILDING SHOWCASE VIDEOS
========================================= */

.building-showcase {
    padding: 140px 0;
    background: #080808;
    overflow: hidden;
}

.video-showcase {
    width: 88%;
    max-width: 1050px;
    margin: 65px auto 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
}

/* COMMON VIDEO */

.showcase-video {
    position: relative;
    overflow: hidden;
    background: #111;

    border: 1px solid rgba(255,255,255,.10);

    box-shadow: 0 25px 65px rgba(0,0,0,.5);

    transition: .6s ease;
}

.showcase-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 1.2s ease;
}

/* VIDEO 1 */

.showcase-video:nth-child(1) {
    width: 62%;
    height: 620px;
    border-radius: 35px 10px 35px 10px;
}

/* VIDEO 2 */

.showcase-video:nth-child(2) {
    width: 90%;
    height: 390px;
    border-radius: 12px 35px 12px 35px;
}

/* VIDEO 3 */

.showcase-video:nth-child(3) {
    width: 62%;
    height: 620px;
    border-radius: 35px 10px 35px 10px;
}

/* VIDEO OVERLAY */

.showcase-video::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.90),
        rgba(0,0,0,.25),
        rgba(0,0,0,.02)
    );

    pointer-events: none;
}

/* VIDEO TEXT */

.video-content {
    position: absolute;

    left: 35px;
    right: 30px;
    bottom: 35px;

    z-index: 5;
}

.video-content span {
    color: var(--gold);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 3px;
}

.video-content h3 {
    font-family: "Cinzel", serif;

    font-size: 38px;

    margin: 10px 0;
}

.video-content p {
    color: #ddd;

    font-size: 15px;

    line-height: 1.7;
}

/* VIDEO HOVER */

.showcase-video:hover {
    transform: translateY(-8px);

    border-color: rgba(212,175,55,.7);
}

.showcase-video:hover video {
    transform: scale(1.07);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .moving-gallery {
        padding: 110px 0;
    }

    .moving-gallery-heading h2 {
        font-size: 45px;
    }

    .moving-photo {
        width: 280px;
        height: 200px;
    }

    .moving-photo.tall {
        width: 220px;
        height: 290px;
    }

    .moving-photo.wide {
        width: 360px;
        height: 220px;
    }
}

@media (max-width: 768px) {

    .moving-gallery {
        padding: 90px 0;
    }

    .moving-gallery-heading {
        margin-bottom: 55px;
    }

    .moving-gallery-heading h2 {
        font-size: 36px;
    }

    .moving-gallery-heading p {
        font-size: 15px;
    }

    .moving-row {
        gap: 18px;
    }

    .moving-photo {
        width: 230px;
        height: 170px;
        border-radius: 16px;
    }

    .moving-photo.tall {
        width: 180px;
        height: 240px;
    }

    .moving-photo.wide {
        width: 300px;
        height: 180px;
    }

    .building-showcase {
        padding: 100px 0;
    }

    .video-showcase {
        width: 92%;
        gap: 30px;
    }

    .showcase-video:nth-child(1),
    .showcase-video:nth-child(3) {
        width: 75%;
        height: 500px;
    }

    .showcase-video:nth-child(2) {
        width: 100%;
        height: 330px;
    }
}

@media (max-width: 480px) {

    .video-showcase {
        width: 94%;
        gap: 25px;
    }

    .showcase-video:nth-child(1),
    .showcase-video:nth-child(3) {
        width: 82%;
        height: 430px;
    }

    .showcase-video:nth-child(2) {
        width: 100%;
        height: 270px;
    }

    .video-content {
        left: 22px;
        right: 20px;
        bottom: 22px;
    }

    .video-content h3 {
        font-size: 28px;
    }
}
/* =========================================
   FINAL PREMIUM EFFECTS
========================================= */

.property-card,
.project-card,
.gallery-item,
.testimonial-card,
.why-card,
.stat-box,
.feature {
    will-change: transform;
    backface-visibility: hidden;
}

/* IMPORTANT:
   Images are visible by default.
   Do NOT hide property images.
*/

.property-image,
.property-image img,
.project-card img,
.gallery-item img,
.about-image img,
.founder-image img,
.moving-photo img {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   REVEAL ANIMATIONS
========================================= */

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal-up {
    transform: translateY(80px);
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* =========================================
   PROPERTY IMAGE SAFETY FIX
========================================= */

.property-image {
    display: block !important;
    position: relative;
    width: 100%;
    height: 310px;
    overflow: hidden;
    background: #151515;
}

.property-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: scale(1) !important;

    position: relative;
    z-index: 1;
}

.property-card:hover .property-image img {
    transform: scale(1.08) !important;
}

/* =========================================
   PROPERTY CARD SAFETY
========================================= */

.property-card {
    opacity: 1 !important;
    visibility: visible !important;
}

/* =========================================
   MOBILE PROPERTY IMAGE
========================================= */

@media (max-width: 768px) {

    .property-image {
        height: 270px;
    }
}

@media (max-width: 480px) {

    .property-image {
        height: 240px;
    }
}

/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #0b0b0b;
    color: #fff;
    overflow-x: hidden;
}

:root {
    --gold: #dcb535;
    --gold-light: #f0d66a;
    --dark: #0b0b0b;
    --card: #171717;
    --card-light: #202020;
    --text: #ddd;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}


/* =========================================
HEADER
========================================= */

.header {
    height: 90px;
    background: #080808;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: relative;
    z-index: 20;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 75px;
    display: block;
}

.navbar ul {
    display: flex;
    gap: 42px;
    list-style: none;
}

.navbar a {
    font-weight: 600;
    transition: .3s ease;
}

.navbar a:hover {
    color: var(--gold);
}

.call-btn {
    background: var(--gold);
    color: #111;
    padding: 14px 25px;
    border-radius: 40px;
    font-weight: 700;
    transition: .3s ease;
}

.call-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}


/* =========================================
PAGE OPEN ANIMATION
========================================= */

.details-hero {
    padding: 65px 0 40px;
    animation: pageOpen 1s ease both;
}

@keyframes pageOpen {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
BACK BUTTON
========================================= */

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
    margin-bottom: 35px;
    transition: .3s ease;
}

.back-btn:hover {
    color: var(--gold);
    transform: translateX(-5px);
}


/* =========================================
PROPERTY TITLE
========================================= */

.property-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
}

.property-title span {
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.property-title h1 {
    font-family: "Cinzel", serif;
    font-size: 52px;
    line-height: 1.2;
    margin-top: 10px;
}

.location {
    color: #aaa;
    margin-top: 12px;
    font-size: 16px;
}

.location i {
    color: var(--gold);
    margin-right: 5px;
}

.price {
    color: var(--gold);
    font-size: 34px;
    font-weight: 800;
    white-space: nowrap;
}


/* =========================================
BIG MAIN PHOTO
========================================= */

.gallery {
    margin-top: 45px;
}

.main-image {
    height: 600px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: #111;
    box-shadow: 0 25px 70px rgba(0,0,0,.45);
    animation: imageOpen 1.1s ease .15s both;
}

@keyframes imageOpen {

    from {
        opacity: 0;
        transform: scale(.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
}

.main-image:hover img {
    transform: scale(1.04);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent 55%
    );
    pointer-events: none;
}


/* =========================================
BIG PHOTO GALLERY
========================================= */

.thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.thumbnail {
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: .72;
    background: #151515;
    transition:
        transform .35s ease,
        opacity .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.thumbnail:hover {
    opacity: 1;
    transform: translateY(-6px);
}

.thumbnail:hover img {
    transform: scale(1.06);
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(220,181,53,.18);
}


/* =========================================
PROPERTY INFO
========================================= */

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 28px;
    animation: fadeUp .8s ease .35s both;
}

.info-box {
    background: var(--card);
    border: 1px solid rgba(255,255,255,.08);
    padding: 25px;
    border-radius: 18px;
    transition: .35s ease;
}

.info-box:hover {
    transform: translateY(-7px);
    border-color: rgba(220,181,53,.45);
}

.info-box i {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 12px;
}

.info-box span {
    display: block;
    color: #aaa;
    font-size: 13px;
}

.info-box strong {
    display: block;
    margin-top: 5px;
    font-size: 17px;
}


/* =========================================
CONTENT
========================================= */

.content-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 35px;
    margin-top: 60px;
    animation: fadeUp .8s ease .45s both;
}

.content-box {
    background: var(--card);
    border-radius: 22px;
    padding: 35px;
    border: 1px solid rgba(255,255,255,.07);
    transition: .35s ease;
}

.content-box:hover {
    border-color: rgba(220,181,53,.25);
}

.content-box h2 {
    font-family: "Cinzel", serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.content-box h2 span {
    color: var(--gold);
}

.description {
    color: #bbb;
    line-height: 1.9;
    font-size: 15px;
}


/* =========================================
AMENITIES
========================================= */

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.amenity {
    background: var(--card-light);
    padding: 16px;
    border-radius: 12px;
    color: #ddd;
    transition: .3s ease;
}

.amenity:hover {
    transform: translateY(-4px);
    background: #272727;
}

.amenity i {
    color: var(--gold);
    margin-right: 8px;
}


/* =========================================
NEARBY LOCATIONS
========================================= */

.distance-list {
    margin-top: 20px;
}

.distance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.distance-item:last-child {
    border-bottom: none;
}

.distance-item span {
    color: #bbb;
}

.distance-item i {
    color: var(--gold);
    margin-right: 7px;
}

.distance-item strong {
    color: var(--gold);
    white-space: nowrap;
}


/* =========================================
MAP
========================================= */

.map-section {
    margin-top: 35px;
}

.map-box {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 18px;
    display: block;
}


/* =========================================
ENQUIRY BOX
========================================= */

.action-box {
    margin-top: 40px;
    background: linear-gradient(
        135deg,
        #191919,
        #111
    );
    border: 1px solid rgba(220,181,53,.3);
    padding: 35px;
    border-radius: 22px;
    text-align: center;
    animation: fadeUp .8s ease .65s both;
}

.action-box h2 {
    margin-bottom: 10px;
    font-family: "Cinzel", serif;
}

.action-box p {
    color: #aaa;
    margin-bottom: 25px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 28px;
    border-radius: 40px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s ease;
}

.gold-btn {
    background: var(--gold);
    color: #111;
}

.gold-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

.outline-btn {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.outline-btn:hover {
    background: var(--gold);
    color: #111;
    transform: translateY(-3px);
}


/* =========================================
GENERAL ANIMATION
========================================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
FOOTER
========================================= */

footer {
    margin-top: 80px;
    padding: 35px 0;
    background: #050505;
    text-align: center;
    color: #777;
}


/* =========================================
TABLET
========================================= */

@media(max-width: 900px) {

    .navbar {
        display: none;
    }

    .property-title {
        display: block;
    }

    .price {
        margin-top: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .main-image {
        height: 480px;
    }

    .thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

    .thumbnail {
        height: 190px;
    }

}


/* =========================================
MOBILE
========================================= */

@media(max-width: 550px) {

    .container {
        width: 92%;
    }

    .header {
        height: 75px;
    }

    .logo img {
        width: 60px;
    }

    .call-btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .details-hero {
        padding-top: 40px;
    }

    .property-title h1 {
        font-size: 34px;
    }

    .price {
        font-size: 27px;
    }

    .main-image {
        height: 330px;
        border-radius: 20px;
    }

    .thumbnails {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .thumbnail {
        height: 130px;
        border-radius: 14px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .amenities-list {
        grid-template-columns: 1fr;
    }

    .content-box {
        padding: 25px;
    }

    .map-box {
        height: 260px;
    }

    .action-box {
        padding: 25px 18px;
    }

}


/* =========================================
ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

}
/* =========================================
   HERO FINAL FIX
========================================= */

.hero {
    position: relative;
    height: 100vh;
    min-height: 760px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* HERO CONTENT */
.hero .container {
    position: relative !important;
    z-index: 30 !important;

    width: 90% !important;
    max-width: 1350px !important;
    margin: 0 auto !important;

    padding-bottom: 170px !important;
}

.hero-content {
    position: relative !important;
    z-index: 31 !important;

    display: block !important;

    max-width: 760px !important;
}

/* TAG */
.hero-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;

    padding: 12px 22px !important;
    margin-bottom: 28px !important;

    color: var(--gold) !important;
    background: rgba(0,0,0,.35) !important;

    border: 1px solid rgba(255,255,255,.20) !important;
    border-radius: 40px !important;

    visibility: visible !important;
    opacity: 1 !important;
}

/* HEADING */
.hero .hero-content h1 {
    display: block !important;

    font-family: "Cinzel", serif !important;
    font-size: 82px !important;
    line-height: 1.08 !important;

    color: #fff !important;

    margin: 0 0 25px !important;

    visibility: visible !important;
    opacity: 1 !important;
}

.hero .hero-content h1 span {
    color: var(--gold) !important;
}

/* DESCRIPTION */
.hero .hero-content > p {
    display: block !important;

    max-width: 650px !important;

    font-size: 20px !important;
    line-height: 1.9 !important;

    color: #ddd !important;

    margin: 0 0 35px !important;

    visibility: visible !important;
    opacity: 1 !important;
}

/* BUTTONS */
.hero-buttons {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;

    position: relative !important;
    z-index: 35 !important;

    visibility: visible !important;
    opacity: 1 !important;
}

.hero-buttons .btn {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    padding: 18px 38px !important;

    border-radius: 50px !important;

    font-weight: 700 !important;

    visibility: visible !important;
    opacity: 1 !important;
}

.hero-buttons .gold-btn {
    background: var(--gold) !important;
    color: #111 !important;

    border: none !important;
}

.hero-buttons .white-btn {
    background: rgba(0,0,0,.25) !important;
    color: #fff !important;

    border: 2px solid #fff !important;
}

/* TRUST POINTS */
.hero-trust {
    display: flex !important;

    align-items: center !important;
    gap: 35px !important;

    margin-top: 35px !important;

    position: relative !important;
    z-index: 35 !important;

    visibility: visible !important;
    opacity: 1 !important;
}

.trust-item {
    display: flex !important;

    align-items: center !important;
    gap: 10px !important;

    color: #fff !important;
}

.trust-item > i {
    color: var(--gold) !important;
    font-size: 22px !important;
}

.trust-item strong {
    display: block !important;

    color: #fff !important;
    font-size: 15px !important;
}

.trust-item span {
    display: block !important;

    color: #aaa !important;
    font-size: 13px !important;
}

/* SEARCH BOX ALWAYS BELOW */
.hero-search {
    position: absolute !important;

    left: 50% !important;
    bottom: 35px !important;

    transform: translateX(-50%) !important;

    z-index: 100 !important;
}

/* SCROLL */
.scroll-indicator {
    z-index: 40 !important;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .hero {
        min-height: 900px !important;
        height: auto !important;
        padding-top: 120px !important;
        padding-bottom: 250px !important;
    }

    .hero .container {
        width: 92% !important;
        padding-bottom: 0 !important;
    }

    .hero .hero-content h1 {
        font-size: 43px !important;
    }

    .hero .hero-content > p {
        font-size: 16px !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .hero-trust {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 18px !important;
    }

    .hero-search {
        width: 92% !important;
        bottom: 25px !important;
    }
}
/* =========================================
   FINAL MOBILE FIX
   RANGOLI PROPERTIES
========================================= */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    .hero {
        width: 100%;
        min-height: 1080px !important;
        height: auto !important;
        overflow: hidden;
        position: relative;
        padding-top: 115px !important;
        padding-bottom: 0 !important;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .overlay {
        width: 100%;
    }

    .hero .container {
        width: 92% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    /* HERO TAG */

    .hero-tag {
        font-size: 12px;
        padding: 10px 16px;
        margin-bottom: 20px;
        white-space: nowrap;
    }

    /* HERO HEADING */

    .hero h1 {
        font-size: 38px !important;
        line-height: 1.12 !important;
        margin-bottom: 18px !important;
    }

    .hero p {
        font-size: 14px !important;
        line-height: 1.65 !important;
        max-width: 100%;
        margin-bottom: 25px !important;
    }

    /* BUTTONS */

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        min-height: 52px;
        padding: 14px 20px;
    }

    /* HIDE TRUST ON MOBILE
       Search box ke peeche nahi jayega */

    .hero-trust {
        display: none !important;
    }

    /* HIDE SCROLL */

    .scroll-indicator {
        display: none !important;
    }

    /* =====================================
       SEARCH BOX
    ===================================== */

    .hero-search {
        position: absolute !important;

        left: 50% !important;
        right: auto !important;

        bottom: 28px !important;

        transform: translateX(-50%) !important;

        width: 92% !important;
        max-width: 92% !important;

        padding: 16px !important;

        display: flex !important;
        flex-direction: column !important;

        gap: 12px !important;

        border-radius: 20px !important;

        background: rgba(15, 15, 15, .94) !important;

        backdrop-filter: blur(20px);

        z-index: 50 !important;

        box-sizing: border-box !important;
    }

    /* SEARCH ITEMS */

    .search-item {
        width: 100% !important;
        min-width: 0 !important;
    }

    .search-item label {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }

    .search-item select {
        width: 100% !important;
        height: 52px !important;

        padding: 0 14px !important;

        font-size: 14px !important;

        border-radius: 11px !important;

        box-sizing: border-box !important;
    }

    /* SEARCH BUTTON */

    .hero-search button {
        width: 100% !important;
        height: 52px !important;

        margin-top: 2px !important;

        border-radius: 11px !important;

        font-size: 15px !important;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 480px) {

    .hero {
        min-height: 1040px !important;
    }

    .hero h1 {
        font-size: 34px !important;
    }

    .hero p {
        font-size: 13px !important;
    }

    .hero-search {
        width: 92% !important;
        padding: 14px !important;
        gap: 10px !important;
    }

    .search-item label {
        font-size: 12px !important;
    }

    .search-item select {
        height: 50px !important;
        font-size: 13px !important;
    }

    .hero-search button {
        height: 50px !important;
    }
}
/* =========================================
   VIDEO FULL VIEW - NO CROPPING
========================================= */

.hero {
    position: relative;
    overflow: hidden;
    background: #000;
}

/* VIDEO KO PURA DIKHANA */
.hero-video {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
    object-position: center !important;

    transform: none !important;
    animation: none !important;

    background: #000;
    z-index: 0;
}

/* Overlay */
.hero .overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Hero content */
.hero .container {
    position: relative;
    z-index: 10;
}

/* Search box */
.hero-search {
    z-index: 30 !important;
}
/* =========================================
   LEADERSHIP TEAM
========================================= */

.leadership-section {
    padding: 110px 0;
    background: #080808;
}

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-heading span {
    display: block;
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-family: "Cinzel", serif;
    font-size: 52px;
    color: #fff;
    margin-bottom: 18px;
}

.section-heading h2 strong {
    color: var(--gold);
}

.section-heading p {
    color: #aaa;
    line-height: 1.8;
    font-size: 16px;
}


/* GRID */

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 950px;
    margin: auto;
}


/* CARD */

.leader-card {
    background: #111;
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 24px;
    overflow: hidden;
    transition: .4s;
}

.leader-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
}


/* IMAGE */

.leader-image {
    height: 430px;
    overflow: hidden;
    background: #fff;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: .5s;
}

.leader-card:hover .leader-image img {
    transform: scale(1.04);
}


/* INFO */

.leader-info {
    padding: 30px;
}

.leader-role {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.leader-info h3 {
    color: #fff;
    font-family: "Cinzel", serif;
    font-size: 30px;
    margin: 10px 0 15px;
}

.leader-info p {
    color: #aaa;
    line-height: 1.8;
    font-size: 15px;
}

.leader-line {
    width: 55px;
    height: 2px;
    background: var(--gold);
    margin-top: 22px;
}


/* MOBILE */

@media (max-width: 768px) {

    .leadership-section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .leader-image {
        height: 390px;
    }

    .leader-info {
        padding: 24px;
    }

    .leader-info h3 {
        font-size: 26px;
    }

}
/* =========================================
   MOBILE HERO FINAL FIX
========================================= */

@media (max-width: 768px) {

    .hero {
        height: auto;
        min-height: 0;
        padding-top: 105px;
        padding-bottom: 35px;
        display: block;
        overflow: hidden;
    }

    .hero .container {
        width: 92%;
        max-width: 100%;
        padding-bottom: 0;
        position: relative;
        z-index: 5;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        position: relative;
        z-index: 5;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.15;
        margin-bottom: 18px;
        text-align: center;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 25px;
    }

    /* BUTTONS */

    .hero-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        position: relative;
        z-index: 5;
    }

    .hero-buttons .btn {
        width: 100%;
        min-height: 58px;
    }


    /* =====================================
       SEARCH BOX
    ===================================== */

    .hero-search {
        position: relative !important;

        left: auto !important;
        bottom: auto !important;
        transform: none !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 45px auto 0 !important;

        padding: 20px !important;

        display: flex !important;
        flex-direction: column !important;

        gap: 15px !important;

        border-radius: 20px;

        z-index: 100 !important;

        clear: both;
    }


    /* SEARCH FIELDS */

    .search-item {
        display: block !important;
        width: 100% !important;
        position: relative;
        z-index: 101;
    }

    .search-item label {
        display: block !important;
        font-size: 14px;
        margin-bottom: 7px;
    }

    .search-item select {
        display: block !important;
        width: 100% !important;
        height: 54px !important;
        min-height: 54px;
    }


    /* SEARCH BUTTON */

    .hero-search button {
        display: flex !important;

        width: 100% !important;
        height: 56px !important;
        min-height: 56px;

        position: relative;
        z-index: 102;
    }


    /* SCROLL */

    .scroll-indicator {
        display: none !important;
    }

}
/* =========================================
THE END
========================================= */
