/* SPK Land-Plots Development Section Styles */
:root {
    --spkDev-primary: #71B100;
    --spkDev-secondary: #0F2B46;
    --spkDev-white: #ffffff;
    --spkDev-text: #555555;
    --spkDev-bg-light: #f4f7f6;
}

.spkDev_section {
    position: relative;
    background: var(--spkDev-bg-light);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: var(--spkDev-text);
    z-index: 1;
    /* Low base z-index */
}

.spkDev_container {
    display: flex;
    flex-wrap: wrap;
    min-height: 800px;
    /* Ensure substantial height */
    width: 100%;
}

/* LEFT SIDE - Content Area */
.spkDev_left {
    flex: 1;
    padding: 80px 5% 0 10%;
    /* Left padding larger for asymmetric feel */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    min-width: 350px;
}

.spkDev_headerGroup {
    margin-bottom: 40px;
    position: relative;
}

.spkDev_accent {
    width: 60px;
    height: 60px;
    background: rgba(113, 177, 0, 0.15);
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: -1;
    border-radius: 4px;
}

.spkDev_accent::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--spkDev-primary);
    top: 0;
    left: 0;
}

.spkDev_title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--spkDev-secondary);
    text-transform: uppercase;
    margin: 0;
    position: relative;
}

.spkDev_highlight {
    color: var(--spkDev-primary);
}

.spkDev_bodyText {
    margin-bottom: 50px;
    max-width: 600px;
}

.spkDev_bodyText p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

/* Image Container */
.spkDev_imageWrapper {
    width: 100%;
    height: 350px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    overflow: hidden;
    margin-top: auto;
    /* Push to bottom */
    position: relative;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.spkDev_imageWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center;
}

/* RIGHT SIDE - Stats Panel */
.spkDev_right {
    flex: 0 0 40%;
    /* Approx 40% width */
    background: var(--spkDev-secondary);
    color: var(--spkDev-white);
    padding: 80px 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
    min-width: 320px;
}

/* Panel Background Texture */
.spkDev_right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.spkDev_statBlock {
    margin-bottom: 50px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(113, 177, 0, 0.3);
    /* Subtle green border line */
    transition: background 0.3s;
}

.spkDev_statBlock:hover {
    border-left-color: var(--spkDev-primary);
}

.spkDev_statNumber {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--spkDev-primary);
    margin-bottom: 10px;
    line-height: 1;
    display: block;
}

.spkDev_statTitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.spkDev_statDesc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Divider */
.spkDev_statBlock:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 20px;
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .spkDev_container {
        flex-direction: column;
    }

    .spkDev_left {
        padding: 60px 20px 0;
        flex: auto;
    }

    .spkDev_right {
        padding: 60px 30px;
        flex: auto;
        width: 100%;
    }

    .spkDev_title {
        font-size: 2.5rem;
    }

    .spkDev_imageWrapper {
        border-radius: 12px;
        margin-top: 40px;
        /* On mobile, standard margin is better than 'push to bottom' */
    }
}