/* =========================================
   CTA BANNER
========================================= */
.cta-banner {
    background-color: var(--color-primary);
    /* Kudos Brown */
    padding: 40px 0;
}

.cta-banner__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-banner__text {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
    flex: 1;
}

.btn--white {
    background: white;
    color: var(--color-primary);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn--white:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* =========================================
   PROCESS SECTION
========================================= */
.process-section {
    background-image: url('../images/process-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(150, 114, 89, 0.9) 0%, rgba(117, 85, 65, 0.95) 100%);
    /* Kudos Brown gradient overlay */
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-card {
    background: rgba(255, 255, 255, 0.95);
    /* White cards */
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.process-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #967259;
    /* Kudos Brown for titles */
    margin-bottom: 16px;
}

.process-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-banner__content {
        flex-direction: column;
        text-align: center;
    }

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

    .process-title {
        font-size: 32px;
    }
}

/* =========================================
   DARK CTA BANNER VARIANT
========================================= */
.cta-banner--dark {
    background-color: #1F2937;
    /* Dark gray instead of brown */
}



/* =========================================
   ECO-FRIENDLY SECTION
========================================= */
.eco-section {
    padding: 100px 0;
    background: white;
}

.eco-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.eco-text {
    padding-right: 40px;
}

.eco-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 24px;
}

.eco-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.eco-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eco-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--color-text);
}

.eco-icon {
    color: var(--color-primary);
    /* Kudos Brown for checkmarks */
    flex-shrink: 0;
}

.eco-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.eco-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 968px) {
    .eco-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .eco-text {
        padding-right: 0;
    }

    .eco-title {
        font-size: 32px;
    }
}