:root {
    --primary: #0A0B10;
    --secondary: #FDFCFB;
    --accent: #C5A059;
    --accent-dark: #A67C37;
    --surface: #12141A;
    --white: #ffffff;
    --white-dim: rgba(255,255,255,0.4);
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--secondary);
    color: var(--primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,11,16,0.7);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 60px;
    padding: 0 40px;
    height: 80px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(12deg);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.logo-text .accent {
    color: var(--accent);
}

.logo-text .tagline {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.nav-links {
    display: flex;
    gap: 48px;
}

.nav-links a {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
}

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

.nav-links .nav-post {
    background: linear-gradient(135deg, #C5A059 0%, #E5C78A 50%, #C5A059 100%);
    color: var(--primary) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
}

.nav-links .nav-post:hover {
    transform: scale(1.05);
}

.btn-gold {
    background: linear-gradient(135deg, #C5A059 0%, #E5C78A 50%, #C5A059 100%);
    color: var(--primary);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(197,160,89,0.2);
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(197,160,89,0.3);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

.user-name {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-logout {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.btn-logout:hover {
    color: var(--accent);
}

.dashboard-link {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
    padding: 10px 0;
}

.dashboard-link:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .navbar .user-menu {
        display: none;
    }

    .nav-content.mobile-user .user-menu {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .nav-content.mobile-user .user-name {
        color: white;
        font-size: 14px;
    }

    .nav-content.mobile-user .btn-logout {
        background: rgba(255,255,255,0.1);
        padding: 12px 24px;
        border-radius: 50px;
    }

    .navbar .btn-gold,
    .nav-content > a.btn-gold {
        display: none;
    }

    .nav-content.mobile-user .btn-gold,
    .nav-content.mobile-user > a.btn-gold {
        display: block;
        margin-top: 16px;
    }
}

/* Hero */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background: var(--primary);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s ease-out;
}

.hero-slide.active {
    opacity: 0.4;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend: luminosity;
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-tagline .line {
    width: 48px;
    height: 1px;
    background: var(--accent);
}

.hero-tagline span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--accent);
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 104px);
    font-weight: 500;
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.hero-text h1 .italic {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.hero-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto 48px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 14px 48px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
}

.hero-indicators {
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 20;
}

.hero-indicators button {
    width: 48px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.5s;
}

.hero-indicators button.active {
    background: var(--accent);
}

/* Section Labels */
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.section-label .line {
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.section-label span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--accent);
}

/* Services */
.services {
    padding: 160px 0;
    background: var(--primary);
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    margin-bottom: 96px;
}

.services-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 32px;
}

.services-intro h2 .italic {
    font-style: italic;
    color: var(--accent);
}

.services-intro p {
    color: rgba(255,255,0.4);
    font-size: 18px;
    margin-bottom: 48px;
    max-width: 480px;
    font-weight: 300;
    line-height: 1.7;
}

.services-image {
    position: relative;
}

.services-image img {
    width: 100%;
    border-radius: 48px;
    filter: brightness(0.75);
    transition: filter 0.7s;
}

.services-image:hover img {
    filter: brightness(1);
}

.services-image::after {
    content: '';
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 256px;
    height: 256px;
    border-right: 1px solid rgba(197,160,89,0.3);
    border-bottom: 1px solid rgba(197,160,89,0.3);
    border-bottom-right-radius: 64px;
    z-index: 0;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.service-card {
    background: rgba(255,255,255,0.03);
    padding: 48px;
    border-radius: 56px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.7s;
}

.service-card:hover {
    border-color: rgba(197,160,89,0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 32px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: white;
}

.service-card p {
    color: rgba(255,255,255,0.3);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}

.service-card:hover p {
    color: rgba(255,255,255,0.5);
}

/* Listings */
.listings {
    padding: 160px 0;
    background: white;
    border-radius: 64px 64px 0 0;
    box-shadow: 0 -40px 80px -20px rgba(0,0,0,0.05);
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 96px;
    gap: 48px;
    flex-wrap: wrap;
}

.listings-title h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
}

.listings-title h2 .italic {
    font-style: italic;
    color: var(--primary);
}

.listings-title p {
    color: rgba(10,11,16,0.4);
    font-size: 16px;
    font-weight: 500;
    max-width: 400px;
}

.filter-tabs {
    display: flex;
    background: var(--secondary);
    border-radius: 50px;
    padding: 6px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.filter-tabs button {
    background: transparent;
    border: none;
    padding: 16px 40px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(10,11,16,0.3);
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
}

.filter-tabs button.active {
    background: white;
    color: var(--accent);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.filter-tabs button:hover:not(.active) {
    color: var(--primary);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.property-card {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px -10px rgba(0,0,0,0.08);
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    box-shadow: 0 30px 80px -10px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}

.property-image {
    position: relative;
    aspect-ratio: 1.1;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.property-image .badge-type {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.property-image .badge-featured {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.property-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.property-content .price {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 8px;
}

.property-content .price span {
    font-size: 10px;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.property-content .location {
    color: rgba(10,11,16,0.4);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.property-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 16px;
    background: var(--secondary);
    border-radius: 24px;
    margin-bottom: 24px;
}

.property-features span {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: rgba(10,11,16,0.6);
}

.btn-details {
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-details:hover {
    background: var(--accent);
}

.btn-details span {
    transition: transform 0.3s;
}

.btn-details:hover span {
    transform: translateX(4px);
}

/* Contact */
.contact {
    padding: 160px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--primary);
    border-radius: 64px;
    overflow: hidden;
    min-height: 700px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-info {
    padding: 80px;
    color: white;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(197,160,89,0.1);
    filter: blur(100px);
    transform: translate(-50%, -50%);
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.contact-info h2 .italic {
    font-style: italic;
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(197,160,89,0.2);
}

.contact-info > p {
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    margin-bottom: 48px;
    max-width: 400px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.contact-items {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: background 0.3s;
}

.contact-item:hover .contact-icon {
    background: var(--accent);
}

.contact-item .label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.4;
    margin-bottom: 4px;
}

.contact-item .value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.contact-item .value.accent {
    color: var(--accent);
}

.contact-form-wrapper {
    padding: 80px;
    background: var(--secondary);
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 8px;
    margin-left: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(10,11,16,0.03);
    border: none;
    border-radius: 24px;
    padding: 20px 24px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    outline: none;
    transition: box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 2px var(--accent);
}

.form-group textarea {
    resize: none;
}

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 24px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(197,160,89,0.2);
}

.btn-submit:hover {
    background: var(--accent-dark);
}

/* Footer */
.footer {
    padding: 96px 0 48px;
    background: var(--primary);
    color: white;
    border-radius: 64px 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 64px;
    margin-bottom: 80px;
}

.footer-brand p {
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    max-width: 320px;
    line-height: 1.7;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: white;
}

.footer-brand-name .accent {
    color: var(--accent);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--accent);
}

.footer-bottom {
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.2);
}

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

.footer-legal span {
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,11,16,0.95);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-radius: 0 0 24px 24px;
        border: 1px solid rgba(255,255,255,0.08);
        border-top: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        text-align: center;
    }

    .nav-links .nav-post {
        background: linear-gradient(135deg, #C5A059 0%, #E5C78A 50%, #C5A059 100%);
        color: var(--primary) !important;
        padding: 14px 24px;
        border-radius: 50px;
        font-weight: 700;
        margin: 16px 0;
    }

    .menu-toggle {
        display: flex !important;
    }

    .nav-content {
        flex-wrap: wrap;
        height: auto;
        padding: 16px 24px;
        border-radius: 60px;
    }

    .nav-content > .logo,
    .nav-content > .menu-toggle {
        z-index: 10;
    }

    .navbar .user-menu,
    .navbar .btn-gold,
    .nav-content > a.btn-gold {
        display: none;
    }

    .nav-content.mobile-user .user-menu {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,11,16,0.95);
        backdrop-filter: blur(24px);
        padding: 24px;
        border-radius: 0 0 24px 24px;
        border: 1px solid rgba(255,255,255,0.08);
        border-top: none;
    }

    .nav-content.mobile-user .btn-gold,
    .nav-content.mobile-user > a.btn-gold {
        display: block;
    }

    .user-menu {
        flex-direction: column;
        gap: 8px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,11,16,0.95);
        backdrop-filter: blur(24px);
        padding: 24px;
        border-radius: 0 0 24px 24px;
        border: 1px solid rgba(255,255,255,0.08);
        border-top: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0 24px;
    }
    
    .btn-gold {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
    }
    
    .listings-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-tabs {
        width: 100%;
    }
    
    .filter-tabs button {
        flex: 1;
        padding: 12px 16px;
        font-size: 8px;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 48px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Property Actions */
.property-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.property-actions .btn-details {
    flex: 1;
    margin-top: 0;
}

.btn-buy {
    background: linear-gradient(135deg, #C5A059 0%, #E5C78A 50%, #C5A059 100%);
    color: var(--primary);
    border: none;
    padding: 16px 20px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-buy:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(197,160,89,0.3);
}

/* Payment Modal */
.payment-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,11,16,0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.payment-modal-content {
    background: white;
    border-radius: 32px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--secondary);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.3s;
}

.close-modal:hover {
    background: var(--accent);
    color: white;
}

.payment-header {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.payment-header img {
    width: 100px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.payment-header h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.payment-header p {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
}

.payment-header .type-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 50px;
    margin-top: 8px;
}

.payment-header .type-badge.sale {
    background: #FFF3E0;
    color: #E65100;
}

.payment-header .type-badge.rent {
    background: #E3F2FD;
    color: #1565C0;
}

.payment-modal .form-group {
    margin-bottom: 20px;
}

.payment-modal .form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(10,11,16,0.6);
    margin-bottom: 8px;
}

.payment-modal .form-group input {
    width: 100%;
    background: var(--secondary);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 16px 20px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    outline: none;
    transition: all 0.3s;
}

.payment-modal .form-group input:focus {
    border-color: var(--accent);
    background: white;
}

.payment-info {
    background: rgba(197,160,89,0.1);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: center;
}

.payment-info p {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-dark);
}

.btn-paystack {
    width: 100%;
    background: #00BCD4;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-paystack:hover {
    background: #00ACC1;
    transform: translateY(-2px);
}