/* Global DPS Styles */
:root {
    --dps-primary: #1a1a1a;
    --dps-accent: #c0a16b;
    /* Gold/Luxury accent */
    --dps-text: #555;
    --dps-bg-light: #f9f9f9;
    --dps-white: #ffffff;
    --dps-border-radius: 8px;
    --dps-spacing: 60px;
}

.dps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dps-section {
    padding: var(--dps-spacing) 0;
    border-bottom: 1px solid #eee;
}

.dps-section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dps-primary);
    position: relative;
    padding-bottom: 15px;
}

.dps-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--dps-accent);
}

/* 1. Hero Section */
.dps-hero-section {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.dps-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}

.dps-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.dps-hero-badge {
    background: var(--dps-accent);
    color: #000;
    padding: 5px 15px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.dps-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dps-hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.9);
}

.dps-btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--dps-border-radius);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.dps-btn-primary {
    background: var(--dps-accent);
    color: #000;
}

.dps-btn-primary:hover {
    background: #fff;
    color: #000;
}

.dps-btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    margin-left: 15px;
}

.dps-btn-outline:hover {
    background: #fff;
    color: #000;
}

/* 2. Details Strip */
.dps-details-section {
    background: var(--dps-primary);
    color: #fff;
    padding: 30px 0;
    margin-top: -5px;
    /* overlap fix */
}

.dps-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.dps-detail-item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.dps-detail-item:last-child {
    border-right: none;
}

.dps-detail-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 5px;
}

.dps-detail-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--dps-accent);
}

/* Layout: Main + Sidebar */
.dps-content-layout {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.dps-main-content {
    flex: 2;
}

.dps-sidebar {
    flex: 1;
    min-width: 350px;
}

.dps-sticky-sidebar {
    position: sticky;
    top: 20px;
}

/* Highlights */
.dps-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dps-highlights-list li {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.dps-highlights-list .dashicons {
    color: var(--dps-accent);
    margin-right: 10px;
    background: rgba(192, 161, 107, 0.1);
    padding: 5px;
    border-radius: 50%;
}

/* Lead Form */
.dps-lead-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: var(--dps-border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.dps-form-header {
    text-align: center;
    margin-bottom: 25px;
}

.dps-form-header h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.dps-form-group {
    margin-bottom: 15px;
}

.dps-form input,
.dps-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fdfdfd;
}

.dps-btn-block {
    display: block;
    width: 100%;
}

/* Payment Plan */
.dps-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dps-payment-item {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: var(--dps-border-radius);
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.dps-payment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dps-pp-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--dps-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 2px solid var(--dps-accent);
}

.dps-pp-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--dps-primary);
}

.dps-pp-label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

.dps-pp-date {
    display: block;
    font-size: 14px;
    color: #888;
}

/* Floor Plans */
.dps-fp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.dps-fp-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--dps-border-radius);
    overflow: hidden;
}

.dps-fp-image img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f9f9f9;
    padding: 20px;
}

.dps-fp-info {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dps-fp-info h4 {
    margin: 0;
    font-size: 16px;
}

.dps-fp-info span {
    color: var(--dps-accent);
    font-weight: 600;
}

/* Why Invest */
.dps-invest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dps-invest-card {
    background: #fff;
    padding: 25px;
    border-left: 3px solid var(--dps-accent);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.dps-invest-title {
    margin: 0 0 10px;
    font-size: 18px;
}

.dps-invest-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Gallery */
.dps-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.dps-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.dps-gallery-item img:hover {
    opacity: 0.8;
}

/* FAQ */
.dps-faq-item {
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.dps-faq-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dps-faq-content {
    display: none;
    padding: 0 20px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.dps-faq-item.active .dps-faq-content {
    display: block;
}

.dps-faq-item.active .dps-faq-trigger {
    background: #f9f9f9;
}

/* Amenities */
.dps-amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.dps-amenities-list li {
    background: #fff;
    padding: 10px 15px;
    border: 1px solid #eee;
    border-radius: 30px;
    font-size: 14px;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .dps-content-layout {
        flex-direction: column;
        gap: 30px;
    }

    .dps-hero-section {
        height: auto;
        padding: 60px 0;
    }

    .dps-hero-title {
        font-size: 32px;
    }

    .dps-payment-grid,
    .dps-fp-grid,
    .dps-amenities-list {
        grid-template-columns: 1fr;
    }
}