/* Page Intro */
.services-header {
    padding: 180px 12% 50px 12%;
}

.services-header-inner h1 {
    font-size: 42px;
    color: #0A1025;
    margin-bottom: 18px;
}

.services-header-inner p {
    max-width: 600px;
    color: #0A1025;
    font-size: 18px;
    line-height: 1.6;
    
}


/* Services Grid */
.services-grid-section {
    padding: 40px 12% 100px 12%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}


/* Premium Cards */
.service-card {
    background: #fff;
    border: 2px solid #C8A046;
    padding: 40px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-icon {
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 22px;
    color: #0A1025;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

@media (max-width: 1023px) {

    .services-header {
        padding: 130px 6%;
        margin-top: 350px;
    }

    .services-header-inner h1 {
        font-size: 38px;
    }

    .services-header-inner p {
        font-size: 17px;
        max-width: 520px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
        justify-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 420px;
        padding: 30px;
        text-align: center;   /* center content for tablet look */
    }

    .service-icon {
        margin-bottom: 14px;
    }
}
@media (max-width: 768px) {

    .services-header {
        padding: 110px 5%;
        text-align: center;
    }

    .services-header-inner h1 {
        font-size: 34px;
    }

    .services-header-inner p {
        font-size: 16px;
        line-height: 1.55;
        max-width: 90%;
    }

    .services-grid {
        grid-template-columns: 1fr;   /* 1 column */
        gap: 24px;
    }

    .service-card {
        max-width: 500px;
        margin: 0 auto;
        padding: 28px;
        width: 80%;
    }
}
@media (max-width: 480px) {

    .services-header {
        padding: 90px 4%;
    }

    .services-header-inner h1 {
        font-size: 30px;
    }

    .services-header-inner p {
        font-size: 15px;
    }

    .service-card {
        padding: 24px;
        border-radius: 10px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 15px;
        line-height: 1.45;
    }

    .service-icon img {
        width: 32px;
        height: 32px;
    }
}
