/* ===========================
   PAGE NOS SERVICES
=========================== */

.services-hero {
    padding: 120px 20px 60px;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.services-hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-hero .section-subtitle {
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #C8102E;
    margin-bottom: 25px;
}

.services-hero .section-title {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(2rem, 4.4vw, 3.875rem);
    font-weight: 700;
    line-height: 1.1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 25px;
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}

.services-hero .section-title .highlight {
    color: #C8102E;
}

.services-hero .card-desc {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.service-cards {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-cards .card {
    position: relative;
    background: #111111;
    background-size: cover;
    background-position: center;
    padding: 36px 30px 30px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-cards .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.12) 0%, rgba(11, 11, 11, 0.86) 100%);
    pointer-events: none;
}

.service-cards .card-content {
    position: relative;
    z-index: 1;
}

.service-cards .card-number {
    display: inline-block;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #C8102E;
    margin-bottom: 18px;
}



.service-cards h3 {
    margin: 0 0 16px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.service-cards p {
    margin: 0 0 26px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.service-cards .explore-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-cards .explore-link:hover {
    color: #C8102E;
    transform: translateX(6px);
}

.service-cards .card:hover {
    transform: translateY(-6px);
    border-color: #ddd;
}

.collaboration-section {
    text-align: center;
    padding: 80px 20px;
    font-family: "Montserrat", Arial, sans-serif;
    background-color: #fafafa;
}

.collaboration-section .section-subtitle {
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #C8102E;
    margin-bottom: 25px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    font-family: "Montserrat", Arial, sans-serif;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    min-width: 180px;
    min-height: 52px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.btn:hover {
    transform: translateY(-4px);
}

.btn:active {
    transform: translateY(-1px);
}

.btn:focus-visible {
    outline: 2px solid #C8102E;
    outline-offset: 3px;
}

.btn-black {
    background-color: #010101;
    color: #ffffff;
    border-color: #010101;
    box-shadow: 0 0 0 1px rgba(200, 16, 46, 0.18);
}

.btn-black:hover {
    background-color: #C8102E;
    border-color: #C8102E;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #000000;
    color: #111;
}

.btn-outline:hover {
    background-color: #000000;
    color: #ffffff;
}

@media(max-width: 992px) {
    .service-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .services-hero .section-title {
        line-height: 1.12;
    }
}

@media(max-width: 480px) {
    .services-hero {
        padding: 100px 16px 30px;
    }

    .services-hero .section-subtitle,
    .collaboration-section .section-subtitle {
        letter-spacing: 2px;
    }

    .buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        min-width: 0;
    }
}
