/* ================= SERVICES HERO ================= */

.services-hero {
    position: relative;

    padding: 170px 0 120px;

    background:
        
        url('/assets/img/services-hero-sec.jfif');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    overflow: hidden;
}

/* OVERLAY */

.services-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            rgba(212,160,23,0.12),
            transparent 70%
        );
}

/* CONTENT */

.services-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: auto;

    text-align: center;
    color: #fff;
}

/* TAG */

.page-tag {
    display: inline-block;

    background: rgba(3, 19, 8, 0.18);

    color: #daa216;

    padding: 10px 24px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 28px;

    letter-spacing: 1px;
}

/* HEADING */

.services-hero-content h1 {
    font-size: 62px;
    line-height: 1.2;
    margin-bottom: 28px;
}

/* TEXT */

.services-hero-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #d8d8d8;

    max-width: 750px;
    margin: auto auto 40px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* BUTTON */

.hero-btn {
    padding: 16px 34px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s ease;
}

/* PRIMARY */

.primary-btn {
    background: #d4a017;
    color: #111;
}

.primary-btn:hover {
    background: #fff;
    transform: translateY(-4px);
}

/* SECONDARY */

.secondary-btn {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}

.secondary-btn:hover {
    background: #fff;
    color: #111;

    transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {

    .services-hero-content h1 {
        font-size: 50px;
    }

}

@media(max-width: 768px) {

    .services-hero {
        padding: 140px 0 100px;

        background-attachment: scroll;
    }

    .services-hero-content h1 {
        font-size: 38px;
    }

    .services-hero-content p {
        font-size: 15px;
    }

}

@media(max-width: 480px) {

    .services-hero {
        padding: 120px 0 90px;
    }

    .services-hero-content h1 {
        font-size: 30px;
        line-height: 1.4;
    }

    .services-hero-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }

}

/* ================= SERVICES INTRO ================= */

.services-intro-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

/* WRAPPER */

.services-intro-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}

/* ================= LEFT CONTENT ================= */

.services-intro-content {
    flex: 1;
}

/* TAG */

.section-tag {
    display: inline-block;

    background: rgba(212,160,23,0.12);
    color: #d4a017;

    padding: 10px 22px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 24px;
}

/* HEADING */

.services-intro-content h2 {
    font-size: 48px;
    line-height: 1.3;
    color: #111;

    margin-bottom: 25px;
}

/* TEXT */

.services-intro-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ================= RIGHT IMAGE ================= */

.services-intro-image {
    flex: 1;
}

.services-intro-image img {
    width: 100%;

    border-radius: 24px;

    object-fit: cover;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.12);
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {

    .services-intro-wrapper {
        flex-direction: column;
    }

    .services-intro-content h2 {
        font-size: 40px;
    }

}

@media(max-width: 768px) {

    .services-intro-section {
        padding: 80px 0;
    }

    .services-intro-content h2 {
        font-size: 34px;
    }

    .intro-feature-card {
        padding: 20px;
    }

}

@media(max-width: 480px) {

    .services-intro-content h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    .services-intro-content p {
        font-size: 14px;
    }

    .intro-feature-card {
        gap: 14px;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;

        font-size: 22px;
    }

    .intro-feature-card h3 {
        font-size: 18px;
    }

    .intro-feature-card p {
        font-size: 14px;
    }

}

/* ================= MAIN SERVICES SECTION ================= */

.main-services-section {
    padding: 100px 0;
    background: #f8f9fc;
    overflow: hidden;
}

/* ================= TITLE ================= */

.services-section-title {
    text-align: center;
    max-width: 850px;
    margin: auto auto 70px;
}

.section-tag {
    display: inline-block;

    background: rgba(212,160,23,0.12);
    color: #d4a017;

    padding: 10px 22px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 22px;
}

.services-section-title h2 {
    font-size: 48px;
    line-height: 1.3;
    color: #111;

    margin-bottom: 20px;
}

.services-section-title p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

/* ================= GRID ================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ================= CARD ================= */

.service-card {
    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    transition: 0.4s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);
}

.service-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.12);
}

/* ================= IMAGE ================= */

.service-image {
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 240px;

    object-fit: cover;

    transition: 0.5s ease;

    display: block;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

/* ================= CONTENT ================= */

.service-content {
    padding: 30px;
}

/* ICON */

.service-icon {
    width: 65px;
    height: 65px;

    border-radius: 18px;

    background: #d4a017;
    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    margin-bottom: 22px;
}

/* HEADING */

.service-content h3 {
    font-size: 26px;
    color: #111;

    margin-bottom: 16px;
}

/* TEXT */

.service-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 24px;
}

/* BUTTON */

.service-btn {
    display: inline-block;

    padding: 13px 28px;

    background: #111;
    color: #fff;

    text-decoration: none;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.service-btn:hover {
    background: #d4a017;
    color: #111;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 1100px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 768px) {

    .main-services-section {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section-title h2 {
        font-size: 36px;
    }

}

@media(max-width: 480px) {

    .services-section-title h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    .services-section-title p {
        font-size: 14px;
    }

    .service-content {
        padding: 24px;
    }

    .service-content h3 {
        font-size: 22px;
    }

    .service-content p {
        font-size: 14px;
    }

    .service-image img {
        height: 220px;
    }

}