/**
 * Land Acquisition Block Styles
 *
 * Call-to-action section for land acquisition inquiries
 *
 * @package PNK_Group
 */

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

.land-section {
    margin: 3rem auto;
    max-width: 1280px !important;
    padding: 3rem var(--spacing-sm);
    background-color: var(--land-bg-color, #f8f9fa);
    border-radius: 0;
    display: flex;
    gap: 3rem;
    align-items: center;
}

/* Image Container */
.land-section .land-image {
    flex: 0 0 40%;
    max-width: 500px;
}

.land-section .land-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

/* Content Container */
.land-section .land-content {
    flex: 1;
    text-align: center;
}

/* Image Position: Right - Content comes first in DOM, so flex-direction stays default (row) */
.land-section.image-right .land-content {
    text-align: center;
}

/* Heading Styles */
.land-section .land-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--land-title-color, #2b488d);
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.land-section .land-content h3 i {
    font-size: 2rem;
    color: var(--land-icon-color, #f47920);
}

/* Description */
.land-section .land-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 auto 2rem auto;
    max-width: 800px;
    color: var(--land-desc-color, #54565a);
}

/* CTA Button */
.land-section .land-content .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background-color: var(--land-button-bg-color, #f47920);
    color: var(--land-button-text-color, #ffffff);
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.land-section .land-content .cta-button:hover {
    background-color: transparent;
    color: var(--land-button-bg-color, #f47920);
    border-color: var(--land-button-bg-color, #f47920);
    transform: translateY(-2px);
}

.land-section .land-content .cta-button i {
    font-size: 1rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .land-section {
        padding: 2.5rem var(--spacing-sm);
        gap: 2rem;
    }

    .land-section .land-image {
        flex: 0 0 35%;
    }

    .land-section .land-content h3 {
        font-size: 1.75rem;
    }

    .land-section .land-content h3 i {
        font-size: 1.75rem;
    }

    .land-section .land-content p {
        font-size: 1rem;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    .land-section {
        margin: 2rem auto !important;
        padding: 1.5rem var(--spacing-sm) !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    /* Image on top for mobile */
    .land-section .land-image {
        flex: 0 0 auto !important;
        max-width: 100% !important;
        order: -1 !important;
    }

    .land-section .land-content {
        order: 1 !important;
    }

    .land-section .land-content h3 {
        font-size: 1.25rem !important;
        gap: 0.5rem !important;
    }

    .land-section .land-content h3 i {
        font-size: 1.25rem !important;
    }

    .land-section .land-content p {
        font-size: 0.875rem !important;
        margin-bottom: 1.25rem !important;
    }

    .land-section .land-content .cta-button {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.875rem !important;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .land-section {
        padding: 1rem var(--spacing-sm) !important;
        gap: 1rem !important;
    }

    .land-section .land-content h3 {
        font-size: 1.125rem !important;
        flex-direction: column !important;
        gap: 0.375rem !important;
    }

    .land-section .land-content h3 i {
        font-size: 1.25rem !important;
    }

    .land-section .land-content p {
        font-size: 0.8125rem !important;
        margin-bottom: 1rem !important;
    }

    .land-section .land-content .cta-button {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.8125rem !important;
        width: 100% !important;
    }
}
