/* Land Acquisition Page Styles */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Hero Section */
.land-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #404040;
    color: var(--color-white);
    padding-top: 100px;
}

.land-hero .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.land-hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
}

.land-hero-text {
    max-width: 48rem;
    margin: 0 auto;
}

.land-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.land-hero-text p {
    font-size: 1.25rem;
    color: #d4d4d4;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.land-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.land-hero-buttons .btn-primary,
.land-hero-buttons .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.land-hero-buttons .btn-primary {
    background-color: var(--color-white);
    color: var(--brand-primary-blue);
}

.land-hero-buttons .btn-primary:hover {
    background-color: #e5e5e5;
}

.land-hero-buttons .btn-secondary {
    border: 1px solid var(--color-white);
    color: var(--color-white);
    background-color: transparent;
}

.land-hero-buttons .btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--brand-primary-blue);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.875rem;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

/* Criteria Section */
.land-criteria {
    background-color: var(--color-white);
    padding: 4rem 0;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.criteria-card {
    background-color: #fafafa;
    border-radius: 0;
    padding: 1.5rem;
    border: 1px solid #e5e5e5;
    transition: box-shadow 0.3s ease;
}

.criteria-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.criteria-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--brand-primary-blue);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.criteria-icon i {
    color: var(--color-white);
    font-size: 1.25rem;
}

.criteria-card h3 {
    font-size: 1.25rem;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.criteria-card > p {
    color: var(--color-gray-600);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.criteria-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.feature-item i {
    width: 1rem;
    flex-shrink: 0;
}

.feature-item span {
    margin-left: 0.5rem;
}

/* Process Section */
.land-process {
    background-color: #fafafa;
    padding: 4rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background-color: var(--brand-primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.process-step p {
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* Proposal Form Section */
.land-proposal {
    background-color: var(--brand-light-blue-gray);
    color: var(--color-gray-900);
    padding: 4rem 0;
}

.land-proposal .section-header h2 {
    color: var(--color-gray-900);
}

.land-proposal .section-header p {
    color: var(--color-gray-600);
}

.container-narrow {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.proposal-form-wrapper {
    background-color: #f5f5f5;
    border-radius: 0;
    padding: 2rem;
    border: 1px solid #e5e5e5;
}

.land-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.875rem;
    color: #404040;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--color-white);
    border: 1px solid #d4d4d4;
    border-radius: 0;
    color: var(--bg-dark);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #a3a3a3;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--brand-primary-blue);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 1.5rem;
    gap: 1rem;
}

.form-security {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.form-security i {
    color: var(--brand-primary-blue);
}

.btn-submit {
    background-color: var(--brand-primary-blue);
    color: var(--color-white);
    padding: 0.75rem 2rem;
    border-radius: 0;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e3a7a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .land-hero {
        height: 500px;
    }

    .land-hero-text h1 {
        font-size: 2rem;
    }

    .land-hero-text p {
        display: none; /* Hide subheading/description on mobile */
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .criteria-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .proposal-form-wrapper {
        padding: 1.5rem;
    }
}
