:root {
    --navy-900: #0a1628;
    --navy-800: #0f1f38;
    --navy-700: #16294a;
    --navy-600: #1e3a66;
    --navy-500: #2a4d80;
    --gold-500: #c9a24a;
    --gold-400: #d9b65f;
    --gold-300: #e8cd86;
    --gold-600: #b08533;
    --ink: #1a1a1a;
    --muted: #6b7280;
    --line: #e8e8e8;
    --bg-alt: #f7f6f3;
    --white: #ffffff;
    --shadow-sm: 0 4px 16px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 12px 32px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 24px 60px rgba(10, 22, 40, 0.16);
    --radius: 14px;
    --radius-lg: 22px;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}
img {
    max-width: 100%;
    display: block;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy-900);
}
p {
    color: #444;
}

.text-gold {
    color: var(--gold-500) !important;
}
.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-600);
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.section-title {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    margin: 0 0 0.6rem;
}
.section-sub {
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto;
}
.section {
    padding: 6rem 0;
    position: relative;
}
.section-alt {
    background: var(--bg-alt);
}
.section-head {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 0.7rem 1.6rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-family: var(--sans);
    letter-spacing: 0.02em;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: #fff;
    box-shadow: 0 8px 22px rgba(176, 133, 51, 0.32);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(176, 133, 51, 0.42);
    color: #fff;
}
.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--navy-900);
}
.btn-link {
    color: var(--gold-600);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.btn-link:hover {
    color: var(--navy-900);
    gap: 0.6rem;
}

/* Top Bar */
.topbar {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar a {
    color: rgba(255, 255, 255, 0.78);
    margin-right: 1.1rem;
}
.topbar a:hover {
    color: var(--gold-400);
}
.topbar .topbar-left i,
.topbar .topbar-right i {
    margin-right: 0.3rem;
}
.topbar .divider {
    color: rgba(255, 255, 255, 0.25);
    margin: 0 0.6rem;
}
.topbar .dropdown-toggle::after {
    display: none;
}
.topbar .dropdown-menu {
    font-size: 0.85rem;
}
.btn-login {
    color: var(--gold-400) !important;
}

/* Navbar */
.navbar-main {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    padding: 0.9rem 0;
}
.navbar-main.scrolled {
    padding: 0.55rem 0;
    box-shadow: var(--shadow-md);
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.brand-mark {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    color: var(--gold-400);
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.35rem;
    display: grid;
    place-items: center;
    border-radius: 10px;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 18px rgba(10, 22, 40, 0.25);
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--navy-900);
}
.brand-text small {
    font-family: var(--sans);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-600);
    font-weight: 500;
}
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--navy-800);
    margin: 0 0.15rem;
    padding: 0.5rem 0.85rem !important;
    border-radius: 8px;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.2rem;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold-600);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 50%;
}

/* Hero */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(10, 22, 40, 0.85) 0%,
        rgba(10, 22, 40, 0.55) 60%,
        rgba(10, 22, 40, 0.3) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 760px;
}
.hero-content .eyebrow {
    color: var(--gold-400);
}
.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    color: #fff;
    margin: 0.4rem 0 1rem;
    letter-spacing: -0.01em;
}
.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-bottom: 1.8rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.scroll-cue {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
    animation: bounce 2s infinite;
    z-index: 3;
}
@keyframes bounce {
    0%,
    100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 8px);
    }
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.2rem;
}

/* Search */
.search-card {
    margin-top: -4rem;
    position: relative;
    z-index: 5;
}
.search-card .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy-800);
    letter-spacing: 0.04em;
}
.search-card .form-select {
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    border-color: var(--line);
}

/* Property Card */
.property-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    height: 100%;
}
.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.property-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.property-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.property-card:hover .property-media img {
    transform: scale(1.08);
}
.badge-status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold-500);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.badge-status.status-rent {
    background: var(--navy-700);
}
.property-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.35s ease;
}
.property-card:hover .property-actions {
    opacity: 1;
    transform: translateX(0);
}
.property-actions button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy-800);
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}
.property-actions button:hover {
    background: var(--gold-500);
    color: #fff;
}
.property-body {
    padding: 1.5rem;
}
.property-type {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-600);
    font-weight: 600;
}
.property-body h3 {
    font-size: 1.45rem;
    margin: 0.3rem 0 0.4rem;
}
.property-loc {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0 0 1rem;
}
.property-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: flex;
    gap: 1.2rem;
    font-size: 0.85rem;
    color: #555;
}
.property-meta i {
    color: var(--gold-500);
    margin-right: 0.25rem;
}
.property-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.price {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
}

/* Project Card */
.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    display: block;
}
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.project-card:hover img {
    transform: scale(1.06);
}
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 22, 40, 0.92),
        rgba(10, 22, 40, 0.25) 70%
    );
    color: #fff;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.project-overlay h3 {
    color: #fff;
    margin: 0.4rem 0;
}
.project-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}
.progress-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-400);
}
.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
    margin: 0.5rem 0 1rem;
}
.progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
    border-radius: 50px;
}

/* Category Card */
.category-card {
    position: relative;
    display: block;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 22, 40, 0.9),
        rgba(10, 22, 40, 0.2) 80%
    );
    color: #fff;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.35s ease;
}
.category-card:hover .category-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 22, 40, 0.95),
        rgba(176, 133, 51, 0.4) 80%
    );
}
.category-overlay h3 {
    color: #fff;
    margin: 0 0 0.2rem;
}
.category-overlay p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 0.6rem;
    font-size: 0.9rem;
}
.category-overlay .btn-link {
    color: var(--gold-400);
}

/* Invest Image */
.invest-img {
    height: 460px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
}
.check-list li {
    padding: 0.4rem 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.check-list i {
    color: var(--gold-500);
    font-size: 1.1rem;
}

/* Feature Card */
.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.35s ease;
    border: 1px solid var(--line);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-300);
}
.feature-card i {
    font-size: 2.4rem;
    color: var(--gold-500);
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.35s ease;
}
.feature-card:hover i {
    transform: scale(1.1);
}
.feature-card h4 {
    font-size: 1.3rem;
    margin: 0 0 0.5rem;
}
.feature-card p {
    color: var(--muted);
    margin: 0;
    font-size: 0.92rem;
}

/* Stats */
.stats-section {
    position: relative;
    color: #fff;
    background-size: cover;
    background-attachment: fixed;
}
.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.86);
}
.stats-section .container {
    position: relative;
    z-index: 2;
}
.stat-item {
    padding: 1rem 0;
}
.stat-num {
    font-family: var(--serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gold-400);
    display: block;
    line-height: 1;
}
.stat-item p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0.6rem 0 0;
    letter-spacing: 0.05em;
}

/* CEO Message */
.ceo-message {
    padding: 3rem;
}
.ceo-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    color: var(--gold-400);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--gold-400);
}
.ceo-quote-icon {
    font-size: 3rem;
    color: var(--gold-300);
    opacity: 0.5;
}
.ceo-text {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--navy-800);
    line-height: 1.5;
}
.ceo-sign {
    font-weight: 600;
    color: var(--gold-600);
    margin: 0.6rem 0 0;
}

/* Testimonials */
.testimonial {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1rem;
}
.testimonial p {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--navy-800);
    line-height: 1.5;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.4rem;
}
.testimonial-author .avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}
.testimonial-author small {
    color: var(--muted);
    display: block;
}
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 1;
}
.carousel-control-prev i,
.carousel-control-next i {
    font-size: 1.8rem;
    color: var(--gold-500);
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.blog-img {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img {
    transform: scale(1.06);
}
.blog-body {
    padding: 1.5rem;
}
.blog-cat {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-600);
    font-weight: 600;
}
.blog-body h3 {
    font-size: 1.35rem;
    margin: 0.4rem 0 0.5rem;
}
.blog-body h3 a:hover {
    color: var(--gold-600);
}
.blog-body p {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0 0 0.8rem;
}
.blog-date {
    font-size: 0.82rem;
    color: var(--muted);
}

/* Partners */
.partner-logo {
    text-align: center;
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-800);
    padding: 1.4rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: all 0.3s ease;
}
.partner-logo:hover {
    border-color: var(--gold-400);
    color: var(--gold-600);
    transform: translateY(-3px);
}

/* CTA Banner */
.cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
}
.cta-overlay {
    position: relative;
    background: linear-gradient(
        120deg,
        rgba(10, 22, 40, 0.88),
        rgba(10, 22, 40, 0.6)
    );
    padding: 3rem 0;
}
.cta-overlay h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.cta-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.6rem;
}

/* Contact */
.contact-form,
.contact-info {
    padding: 2.2rem;
}
.contact-form .form-control,
.contact-info {
    border-radius: 10px;
}
.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}
.contact-item:last-child {
    border-bottom: none;
}
.contact-item i {
    font-size: 1.4rem;
    color: var(--gold-500);
    width: 40px;
    height: 40px;
    background: rgba(201, 162, 74, 0.1);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    color: var(--navy-900);
}
.contact-item p {
    margin: 0;
    color: var(--muted);
}
.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}

/* Footer */
.footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}
.footer .footer-brand {
    margin-bottom: 1.2rem;
}
.footer-brand .brand-text {
    color: #fff;
}
.footer-about {
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}
.footer h5 {
    color: #fff;
    font-family: var(--sans);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.55rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}
.footer-links a:hover {
    color: var(--gold-400);
    padding-left: 4px;
}
.social-links {
    display: flex;
    gap: 0.6rem;
}
.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    color: #fff;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: var(--gold-500);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.fab:hover {
    transform: translateY(-3px) scale(1.05);
    color: #fff;
}
.fab-wa {
    background: #25d366;
}
.fab-chat {
    background: var(--navy-700);
}
.fab-top {
    background: var(--gold-500);
}

/* Chat Modal */
.chat-body {
    height: 280px;
    overflow-y: auto;
    background: rgba(10, 22, 40, 0.04);
}
.chat-msg {
    padding: 0.6rem 0.9rem;
    border-radius: 14px;
    margin-bottom: 0.6rem;
    max-width: 80%;
    font-size: 0.9rem;
}
.chat-msg.bot {
    background: rgba(10, 22, 40, 0.08);
    border-bottom-left-radius: 4px;
}
.chat-msg.user {
    background: var(--gold-500);
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* Page Hero (inner pages) */
.page-hero {
    position: relative;
    min-height: 46vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(10, 22, 40, 0.88),
        rgba(10, 22, 40, 0.6)
    );
}
.page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.page-hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 0.6rem;
}
.breadcrumb-nav {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.85rem;
}
.breadcrumb-nav a {
    color: var(--gold-400);
}
.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.6);
}

/* About page */
.value-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border-top: 3px solid var(--gold-400);
    transition: all 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.value-card i {
    font-size: 2rem;
    color: var(--gold-500);
}
.timeline {
    position: relative;
    padding-left: 2rem;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold-300);
}
.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 0.3rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold-500);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--gold-300);
}
.timeline-item h4 {
    margin: 0 0 0.3rem;
}
.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.team-avatar {
    height: 240px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    display: grid;
    place-items: center;
    color: var(--gold-400);
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 700;
}
.team-body {
    padding: 1.4rem;
    text-align: center;
}
.team-body h4 {
    margin: 0 0 0.2rem;
}
.team-body .role {
    color: var(--gold-600);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.team-social {
    margin-top: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.team-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: grid;
    place-items: center;
    color: var(--navy-800);
}
.team-social a:hover {
    background: var(--gold-500);
    color: #fff;
}

/* Services */
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    color: var(--gold-400);
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}
.service-card h4 {
    font-size: 1.3rem;
    margin: 0 0 0.6rem;
}
.service-card p {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0 0 1rem;
}
.service-card .btn-link {
    font-size: 0.88rem;
}

/* Developer / Investor cards */
.partner-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    height: 100%;
}
.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.partner-card .pc-logo {
    height: 160px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    display: grid;
    place-items: center;
    color: var(--gold-400);
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
}
.partner-card .pc-body {
    padding: 1.6rem;
}
.partner-card .pc-body h4 {
    margin: 0 0 0.4rem;
}
.partner-card .pc-stats {
    display: flex;
    gap: 1.4rem;
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.partner-card .pc-stats div {
    text-align: center;
}
.partner-card .pc-stats strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--navy-900);
}
.partner-card .pc-stats small {
    color: var(--muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.invest-plan {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid var(--line);
    transition: all 0.35s ease;
}
.invest-plan.featured {
    border-color: var(--gold-400);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}
.invest-plan:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.invest-plan .plan-tag {
    display: inline-block;
    background: var(--gold-500);
    color: #fff;
    font-size: 0.72rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}
.invest-plan h3 {
    font-size: 2rem;
    color: var(--navy-900);
}
.invest-plan .roi {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--gold-600);
    font-weight: 700;
}
.invest-plan ul {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
}
.invest-plan ul li {
    padding: 0.4rem 0;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.invest-plan ul li i {
    color: var(--gold-500);
}

/* Agents */
.agent-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    height: 100%;
}
.agent-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.agent-card .agent-photo {
    height: 280px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    display: grid;
    place-items: center;
    color: var(--gold-400);
    font-family: var(--serif);
    font-size: 4rem;
    font-weight: 700;
    position: relative;
}
.agent-card .agent-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-500);
    color: #fff;
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    font-weight: 600;
}
.agent-card .agent-body {
    padding: 1.5rem;
    text-align: center;
}
.agent-card .agent-body h4 {
    margin: 0 0 0.2rem;
}
.agent-card .agent-role {
    color: var(--gold-600);
    font-size: 0.85rem;
    font-weight: 600;
}
.agent-card .agent-meta {
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--muted);
}
.agent-card .agent-meta strong {
    display: block;
    color: var(--navy-900);
    font-family: var(--serif);
    font-size: 1.2rem;
}

/* Blog */
.blog-layout-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-layout-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.blog-layout-card .blc-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.blog-layout-card .blc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-layout-card:hover .blc-img img {
    transform: scale(1.06);
}
.blog-layout-card .blc-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-layout-card .blc-body h3 {
    font-size: 1.3rem;
    margin: 0.4rem 0 0.5rem;
}
.blog-layout-card .blc-body h3 a:hover {
    color: var(--gold-600);
}
.blog-layout-card .blc-body p {
    color: var(--muted);
    font-size: 0.92rem;
    flex: 1;
}
.blog-layout-card .blc-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    font-size: 0.82rem;
    color: var(--muted);
}
.blog-cat-pill {
    background: rgba(201, 162, 74, 0.12);
    color: var(--gold-600);
    font-size: 0.72rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.blog-sidebar .widget {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}
.blog-sidebar .widget h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.blog-sidebar .cat-list a {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: #444;
    border-bottom: 1px dashed var(--line);
}
.blog-sidebar .cat-list a:hover {
    color: var(--gold-600);
}
.tag-cloud a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--bg-alt);
    border-radius: 50px;
    font-size: 0.82rem;
    margin: 0.2rem;
    color: var(--navy-800);
}
.tag-cloud a:hover {
    background: var(--gold-500);
    color: #fff;
}

/* Gallery */
.gallery-grid {
    column-count: 3;
    column-gap: 1rem;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item .gi-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.6rem;
}
.gallery-item:hover .gi-overlay {
    opacity: 1;
}
.gallery-tabs .nav-link {
    color: var(--navy-800);
    border-radius: 50px;
    padding: 0.5rem 1.4rem;
    font-weight: 500;
}
.gallery-tabs .nav-link.active {
    background: var(--gold-500);
    color: #fff;
}
.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    border-radius: var(--radius-lg);
    display: grid;
    place-items: center;
    color: var(--gold-400);
}
.video-placeholder i {
    font-size: 4rem;
}

/* Property Details */
.pd-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0.8rem;
    height: 480px;
}
.pd-gallery .pd-main {
    grid-row: span 2;
}
.pd-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.4s ease;
}
.pd-gallery img:hover {
    transform: scale(1.02);
}
.pd-info-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}
.pd-spec {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 1.5rem 0;
}
.pd-spec div {
    text-align: center;
}
.pd-spec i {
    font-size: 1.5rem;
    color: var(--gold-500);
}
.pd-spec strong {
    display: block;
    color: var(--navy-900);
}
.pd-spec small {
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.pd-tab-content {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    min-height: 300px;
}
.plan-placeholder {
    aspect-ratio: 16/10;
    background: var(--bg-alt);
    border: 2px dashed var(--line);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    color: var(--muted);
}
.plan-placeholder i {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}
.installment-table th {
    background: var(--navy-800);
    color: #fff;
}
.installment-table td,
.installment-table th {
    padding: 0.9rem 1rem;
}
.installment-table tbody tr:nth-child(even) {
    background: var(--bg-alt);
}

/* Calculators */
.calc-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}
.calc-result {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
    color: #fff;
    border-radius: var(--radius);
    padding: 1.6rem;
    text-align: center;
    margin-top: 1.4rem;
}
.calc-result .amount {
    font-family: var(--serif);
    font-size: 2.4rem;
    color: var(--gold-400);
    font-weight: 700;
}
.calc-result small {
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

/* Forms */
.form-control,
.form-select {
    border-color: var(--line);
    padding: 0.7rem 0.9rem;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--gold-400);
    box-shadow: 0 0 0 0.2rem rgba(201, 162, 74, 0.18);
}

/* Gallery Preview (homepage) */
.gallery-preview {
    row-gap: 0.5rem;
}
.gp-item {
    display: block;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
.gp-item .gp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.55);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: grid;
    place-items: center;
    color: var(--gold-400);
    font-size: 1.6rem;
}
.gp-item:hover .gp-overlay {
    opacity: 1;
}
.gp-item:hover {
    transform: scale(1.02);
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    border: 1px solid var(--line);
    border-radius: 14px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
}
.faq-accordion .accordion-button {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy-900);
    padding: 1.2rem 1.4rem;
    background: #fff;
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--gold-600);
    background: rgba(201, 162, 74, 0.06);
    box-shadow: none;
}
.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--gold-300);
}
.faq-accordion .accordion-button::after {
    background-image: none;
    content: "\F282";
    font-family: "bootstrap-icons";
    width: auto;
    height: auto;
    font-size: 1.2rem;
    color: var(--gold-500);
}
.faq-accordion .accordion-body {
    color: #555;
    padding: 0 1.4rem 1.4rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-main {
        background: #fff;
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
    .section {
        padding: 4rem 0;
    }
    .hero {
        background-attachment: scroll;
        min-height: 70vh;
    }
    .cta-banner,
    .stats-section {
        background-attachment: scroll;
    }
    .pd-gallery {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    .pd-gallery .pd-main {
        grid-row: span 1;
        grid-column: span 2;
        height: 300px;
    }
    .gallery-grid {
        column-count: 2;
    }
    .invest-img {
        height: 320px;
    }
    .ceo-message {
        padding: 2rem;
    }
    .topbar .topbar-left a {
        margin-right: 0.7rem;
        font-size: 0.78rem;
    }
}
@media (max-width: 576px) {
    .gallery-grid {
        column-count: 1;
    }
    .pd-gallery {
        grid-template-columns: 1fr;
    }
    .pd-gallery .pd-main {
        grid-column: span 1;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .section-title {
        font-size: 1.7rem;
    }
}
