/* =====================================
   SERVICES PAGE STYLES (REVISED)
   ===================================== */

body {
    margin-top: 80px;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

/* =====================================
   CLEAN HERO SECTION
   ===================================== */
.services-hero-clean {
    position: relative;
    padding: 100px 0 80px;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

/* Abstract Background Shapes */
.services-hero-clean::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 167, 72, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-content-clean {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.clean-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #d3a748;
    margin-bottom: 20px;
    background: rgba(211, 167, 72, 0.08);
    padding: 8px 16px;
    border-radius: 4px;
}

.clean-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.clean-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    font-weight: 300;
    margin-bottom: 0;
}

/* =====================================
   SERVICES GRID SECTION
   ===================================== */
.services-list-section {
    padding: 0 0 120px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.services-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Modern Card Design */
.service-item-clean {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.service-item-clean:hover {
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Soft, elevated shadow */
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #fcfbf8;
    border: 1px solid #f0e6d2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-item-clean:hover .icon-box {
    background: #d3a748;
    border-color: #d3a748;
}

.icon-box i {
    font-size: 1.5rem;
    color: #d3a748;
    transition: all 0.3s ease;
}

.service-item-clean:hover .icon-box i {
    color: #fff;
}

.service-item-clean h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.service-item-clean p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.arrow-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d3a748;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.arrow-link i {
    font-size: 0.8rem;
}

.service-item-clean:hover .arrow-link {
    gap: 12px;
}

/* =====================================
   RESPONSIVE
   ===================================== */
@media (max-width: 992px) {
    .services-grid-clean {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-clean {
        grid-template-columns: 1fr;
    }

    .services-hero-clean {
        padding: 60px 0 40px;
    }

    .clean-title {
        font-size: 2.2rem;
    }
}