/* ==========================================================================
   CALL TO ACTION (CTA) SECTION
   ========================================================================== */

.gnv-cta-section {
    position: relative;
    width: 100vw;
    min-height: 400px;
    background-color: #1F2D23; /* Dark green base */
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

/* Seamless dark green fade overlay */
.cta-overlay-gradient {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    /* Dark green fading into transparent towards the right */
    background: linear-gradient(to right, #1b261e 0%, #1b261e 30%, rgba(27, 38, 30, 0.8) 45%, rgba(27, 38, 30, 0) 70%);
    z-index: 1;
}

.gnv-cta-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Content */
.cta-content {
    width: 50%;
    color: #ffffff;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.1;
    font-weight: 500;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    font-weight: 300;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-light-green {
    display: inline-flex;
    align-items: center;
    background-color: #DDE2D3; /* Soft sage green matching screenshot */
    color: #1b261e;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-light-green:hover { 
    background-color: #ffffff; 
    transform: translateY(-2px);
}

.btn-light-green .arrow {
    margin-left: 8px;
    font-weight: 400;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.4);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover { 
    border-color: #ffffff; 
    background-color: rgba(255,255,255,0.1); 
    transform: translateY(-2px);
}

/* Right Side Floating Text */
.cta-floating-text {
    font-family: 'Caveat', cursive, sans-serif;
    color: #3d4a41; /* Darkish color for cursive text on light background */
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
    transform: rotate(-8deg);
    text-align: left;
    margin-right: 2%;
    margin-top: -20px;
    text-shadow: 0 2px 10px rgba(255,255,255,0.2);
}

.floating-underline {
    width: 35px;
    height: 2px;
    background-color: #3d4a41;
    margin-top: 8px;
    margin-left: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .gnv-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-content {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .cta-floating-text {
        align-self: flex-end;
        margin-top: 20px;
    }
    
    .cta-overlay-gradient {
        background: linear-gradient(to right, rgba(27, 38, 30, 0.95) 0%, rgba(27, 38, 30, 0.7) 60%, rgba(27, 38, 30, 0) 100%);
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-light-green, .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
    
    .cta-overlay-gradient {
        background: linear-gradient(to bottom, rgba(27, 38, 30, 0.95) 0%, rgba(27, 38, 30, 0.8) 60%, rgba(27, 38, 30, 0.2) 100%);
    }
    
    .gnv-cta-section {
        background-position: center;
    }
}
