:root {
    --navy: #020617; /* Midnight Navy */
    --navy-light: #0f172a;
    --navy-accent: #1e293b;
    --gold: #c29d66;
    --gold-light: #d4af37;
    --white: #ffffff;
    --grey-light: #f8fafc;
    --grey: #94a3b8;
    --text: #0f172a;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Albert Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    color: white;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: 0.3s;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
}

.sub-logo {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--grey);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-phone {
    font-weight: 600 !important;
}

.btn-outline {
    padding: 10px 25px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--gold);
    color: white;
}

/* Hero Section */
.hero {
    min-height: 95vh;
    padding-top: 150px;
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content h1 .highlight {
    color: var(--gold);
    font-weight: 300;
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--navy-accent);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--navy-accent);
    top: -100px;
    right: -100px;
    opacity: 0.1;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    bottom: -50px;
    left: 10%;
    opacity: 0.15;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 15px 35px;
    background: var(--navy-light);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid var(--grey);
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    padding: 15px 35px;
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy-light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--navy-light);
    color: white;
}

.hero-image-wrapper {
    position: relative;
}

.agent-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%), linear-gradient(to top, transparent 0%, black 20%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, black 15%), linear-gradient(to top, transparent 0%, black 20%);
    mask-composite: intersect;
}

/* Listings Section */
.section-listings {
    padding: 100px 0;
    background: var(--grey-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 70px;
    color: var(--navy);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    justify-content: center;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
    border-color: var(--gold);
}

.card-img {
    height: 520px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.card-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.location {
    font-size: 0.95rem;
    color: var(--grey);
    margin-bottom: 25px;
}

.features {
    display: flex;
    list-style: none;
    gap: 20px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f1f5f9;
    width: 100%;
    justify-content: center;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
}

.btn-card {
    padding: 12px 30px;
    background: var(--navy);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid var(--navy-accent);
}

.btn-card:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.05);
}

/* Contact Card Special - Premium Luxury Version */
.contact-card {
    background: linear-gradient(145deg, #010409 0%, #0d1117 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(194, 157, 102, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Diamond Shine Effect */
.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.05) 48%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.05) 52%,
        transparent 55%
    );
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 1;
    animation: diamond-shine 8s infinite linear;
    opacity: 0.6;
}

@keyframes diamond-shine {
    0% { transform: translate(-100%, -100%) rotate(45deg); }
    20% { transform: translate(100%, 100%) rotate(45deg); }
    100% { transform: translate(100%, 100%) rotate(45deg); }
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(194, 157, 102, 0.5);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 25px rgba(194, 157, 102, 0.1);
}

.contact-card:hover::before {
    animation-duration: 3s; /* Speeds up on hover for more sparkle */
    opacity: 0.9;
}

.contact-card .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 30px;
    z-index: 2;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    line-height: 1.2;
    font-weight: 700;
}

.contact-info {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,0.03);
}

.contact-item:hover {
    color: var(--gold);
    background: rgba(255,255,255,0.08);
}

.contact-item svg {
    color: var(--gold);
}

.btn-gold {
    align-self: center;
    padding: 18px 45px;
    background: linear-gradient(45deg, #c29d66, #e5c185, #c29d66);
    background-size: 200% auto;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(194, 157, 102, 0.3);
    transition: all 0.4s;
    animation: shimmer 4s infinite linear;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(194, 157, 102, 0.5);
    filter: brightness(1.15);
}

/* Project Spotlight (PZ Log) - Hero Version with Image */
.project-spotlight {
    background: #0f172a; /* Dark Navy base */
    position: relative;
    padding: 100px 0; /* Reduced from 140px for tighter spacing */
    margin: 0;
    overflow: hidden;
    color: white;
}

.spotlight-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 0;
}

.spotlight-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Faded for text legibility */
}

.spotlight-bg::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(90deg, #0f172a 30%, transparent 100%);
}

.spotlight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.spotlight-logo-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.spotlight-logo {
    font-family: var(--font-heading);
    font-size: 7rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -6px;
    line-height: 0.8;
}

.spotlight-logo span {
    font-weight: 300;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.4);
}

.spotlight-content {
    border-left: 2px solid var(--gold);
    padding-left: 50px;
}

.spotlight-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.spotlight-lead {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.3;
}

.spotlight-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 45px;
}

.spotlight-desc b {
    color: #fff;
    font-weight: 700;
}

.btn-spotlight {
    display: inline-block;
    padding: 22px 55px;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(194, 157, 102, 0.3);
}

.btn-spotlight:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .project-spotlight { padding: 100px 0; }
    .spotlight-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .spotlight-logo { font-size: 5rem; letter-spacing: -4px; }
    .spotlight-content { border-left: none; padding-left: 0; border-top: 2px solid var(--gold); padding-top: 40px; }
    .spotlight-content h2 { font-size: 2.5rem; }
}

/* Browse Section */
.browse-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--navy), #111827);
    color: white;
    position: relative;
    overflow: hidden;
}

.browse-content {
    max-width: 800px;
}

.browse-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 40px;
}

.loc-highlight {
    text-decoration: underline;
    color: var(--gold);
}

.btn-outline-white {
    padding: 15px 35px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
}

.floating-card {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    color: var(--text);
}

/* Contact Form Section */
.contact {
    padding: 100px 0;
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}


.contact-cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    box-shadow: 0 8px 30px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(220, 39, 67, 0.45);
    filter: brightness(1.1);
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.brand-col .logo-wrapper {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--grey);
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 300px;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(194, 157, 102, 0.2);
}

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

.links-col ul, .contact-col ul {
    list-style: none;
}

.links-col li, .contact-col li {
    margin-bottom: 12px;
}

.links-col a {
    color: var(--grey);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
}

.links-col a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.contact-col p {
    color: var(--grey);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-col a {
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--grey);
    font-size: 0.85rem;
}

.footer-copy {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a, .developer-credits a {
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover, .developer-credits a:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 1100px) {
    .listings-grid {
        grid-template-columns: 1fr 1fr;
    }
    .floating-card {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 50px;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .listings-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 15px; /* Reduced side padding to move elements closer to edges */
    }

    .logo-wrapper .logo {
        font-size: 1.1rem;
    }

    .logo-wrapper .sub-logo {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .navbar .btn-outline {
        display: none;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin: 0 auto 30px;
        max-width: 100%;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
    }

    .hero-btns .btn-primary, 
    .hero-btns .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 16px 25px;
    }

    .hero-image-wrapper {
        order: -1;
        margin-bottom: 20px;
        width: 100%;
        max-width: 280px;
    }

    .agent-photo {
        max-height: 350px;
        width: auto;
        margin: 0 auto;
    }

    .nav-links {
        position: fixed;
        top: 85px; /* Floating below the navbar */
        right: 20px;
        left: 20px;
        width: auto;
        height: auto;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 60px 40px;
        border-radius: 28px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
        pointer-events: none;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: all;
    }

    .nav-links li {
        margin: 12px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.3rem;
        color: white;
        font-family: var(--font-heading);
        text-transform: uppercase;
        letter-spacing: 3px;
        display: block;
        padding: 12px;
        transition: all 0.3s;
    }

    .nav-links a:hover {
        color: var(--gold);
        letter-spacing: 5px;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        position: absolute;
        right: 15px; /* Perfect "side" position */
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 7px; /* Aligned gap */
        padding: 10px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 34px; /* Wider for premium feel */
        height: 4px; /* Thicker pill-shaped bars as in reference */
        background: white;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 100px; /* Fully rounded/pill-shaped */
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(11.5px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        transform: translateY(0) rotate(-45deg);
    }

    .footer-grid {
        text-align: center;
    }

    .footer-grid .footer-col {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}
/* Broker Manifesto Section */
.broker-manifesto {
    padding: 140px 40px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.broker-manifesto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(194, 157, 102, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.manifesto-container {
    max-width: 900px;
    width: 100%;
    text-align: left;
}

.manifesto-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 40px;
    line-height: 1.2;
    font-weight: 800;
    border-left: 5px solid var(--gold);
    padding-left: 30px;
}

.manifesto-title span {
    display: block;
    font-size: 1.4rem;
    color: #64748b;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 10px;
    font-family: var(--font-body);
}

.manifesto-body {
    font-size: 1.25rem;
    color: #334155;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.manifesto-body .highlight {
    font-size: 1.4rem;
    color: var(--navy);
    font-weight: 600;
    margin-top: 40px;
    padding: 60px 40px 40px;
    background: var(--grey-light);
    border-radius: 24px;
    font-style: italic;
    position: relative;
    border-left: 4px solid var(--gold);
}

@media (max-width: 768px) {
    .broker-manifesto {
        padding: 80px 20px;
    }
    .manifesto-title {
        font-size: 2rem;
        padding-left: 20px;
    }
    .manifesto-title span {
        font-size: 1.1rem;
    }
    .manifesto-body {
        font-size: 1.1rem;
    }
    .manifesto-body .highlight {
        font-size: 1.2rem;
        padding: 30px 20px;
        margin-top: 30px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1aae53;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}

