/* --- SERVICES PAGE STYLES --- */

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-header p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Service Card Styling */
.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%; /* Ensures cards in a row are equal height */
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.4);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-subtitle {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Feature List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1; /* Pushes the button to the bottom */
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Custom Checkmark Bullet Point */
.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* CTA Button */
.service-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Bottom CTA Banner */
.services-cta-banner {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.services-cta-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.services-cta-banner p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* --- SERVICE PRICE STYLING --- */

.service-price {
    font-size: 2.5rem; /* Large font size */
    font-weight: 800;
    text-align: center;
    color: var(--accent-color);
    margin: 0.5rem 0; /* Spacing around the price */
    letter-spacing: -1px;
}

/* Mobile Adjustments for Price */
@media (max-width: 600px) {
    .service-price {
        font-size: 2rem; /* Slightly smaller on mobile */
    }
}