/*CTA banner*/
/* Services Specific Styles */
.services-section {
    padding: 20px 0;
}

.card-icon {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    font-style: italic;
}

.service-list {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.service-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

/* Custom list bullet using the Brand Red */
.card .service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.card-has-image .service-list li::before {
    color: var(--text-dark);
}

/* Call to Action Banner - Modern Premium Version */
.cta-banner {
    margin-top: 80px;
    padding: 60px 40px;
    /* Using a deep forest green gradient for a high-end look */
    background: linear-gradient(135deg, var(--footer-bg) 0%, var(--section-bg) 100%);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    border-top: 4px solid var(--accent); /* Brand accent pop at the top */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-banner h2 {
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main); /* White text for contrast */
    font-size: 2.2rem;
}

.cta-banner p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8); /* Slightly transparent white for "dim" effect */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* Ensure the button inside stands out */
.cta-banner .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Container for the text inside the card */
.card-content {
    padding: 2rem;
}

/* Specific styling for cards that have images */
.card-has-image {
    padding: 0; /* Remove default card padding so image goes edge-to-edge */
    overflow: hidden; /* Clips the image to the card's border radius */
}

.card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    overflow: hidden;
    border-bottom: 3px solid var(--primary); /* Accent line under the photo */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This keeps the image from looking stretched */
    transition: transform 0.5s ease;
}

/* Fun hover effect to make the site feel "Elite" */
.card:hover .card-image img {
    transform: scale(1.1);
}

/* Adjustments for cards without images to keep them from looking "empty" */
.card:not(.card-has-image) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--card-bg) 0%, #1a1a1a 100%);
}

.card-icon {
    font-size: 2.5rem; /* Larger numbers for the non-image cards */
    opacity: 0.3;
    margin-bottom: 0.5rem;
}