﻿.services-section {
    padding: 80px 30px;
    background: whitesmoke;
    text-align: center;
}

.section-title {
    font-size: 2.7rem;
    font-weight: 700;
    color: black;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 500px));
    justify-content: center;
    gap: 50px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }

.service-icon {
    font-size: 1.5rem;
    color: darkorange;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #222;
    font-weight: 600;
    text-decoration: underline 2px darkorange;
    text-underline-offset: 6px;
    margin-bottom: 10px;
}

.service-desc {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-details {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

    .service-details li {
        color: #444;
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

.quote-btn {
    background: darkorange;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .quote-btn:hover {
        background: #0056d2;
    }
