/* SPK Call to Action Section Styles */
.spk-cta-section {
    position: relative;
    /* Restored valid image path or fallback color */
    background-color: #f5f5f5;
    /* Fallback */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Fixed background often adds a premium feel */
    background-attachment: scroll;
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Prevent side gap/overflow */
    width: 100%;
    box-sizing: border-box;
}

.spk-cta-section::before {
    /* Subtle overlay to ensure text contrast if image is light */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.spk-cta-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    /* Align card to the right side matching reference */
}

/* White Content Card */
.spk-cta-card {
    background-color: #ffffff;
    padding: 80px 60px;
    max-width: 600px;
    /* Adjust width as needed */
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    border-top: 5px solid #71b100;
    /* Branding accent */
}

.spk-cta-title {
    font-family: 'Playfair Display', serif;
    /* Mixing Serif for elegance */
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.spk-cta-description {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 20px 0 40px 0;
}

.spk-cta-divider {
    width: 50px;
    height: 2px;
    background-color: #71b100;
    margin: 0 auto 30px auto;
}

.spk-cta-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.spk-cta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.spk-cta-item:hover {
    color: #71b100;
}

.spk-cta-icon {
    color: #71b100;
    font-size: 1.4rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .spk-cta-section {
        justify-content: center;
        padding: 60px 0;
    }

    .spk-cta-container {
        justify-content: center;
    }

    .spk-cta-card {
        padding: 40px 30px;
        max-width: 100%;
        margin: 0 20px;
    }

    .spk-cta-title {
        font-size: 2rem;
    }
}