/* =================================================================
   SERVICE DETAIL PAGE (shared by IT Management & Cyber Security)
================================================================= */

.service-single__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 50px;
    align-items: start;
}

/* ---------- Main content -------------------------------------- */
.service-hero {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.service-hero img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.service-single__h3 {
    margin: 40px 0 20px;
}

.service-single__checks {
    margin-bottom: 0;
}

.service-single__checks li {
    margin-bottom: 12px;
    font-weight: 500;
}

/* Benefits 2x2 grid */
.service-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 30px 0 10px;
}

.service-benefits__item {
    height: 100%;
}

/* Prev / next service navigation */
.service-nav {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.service-nav__link {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-nav__link--next {
    text-align: right;
    margin-left: auto;
}

.service-nav__label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--body-color);
}

.service-nav__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.service-nav__link:hover .service-nav__title {
    color: var(--primary-color);
}

/* ---------- Sidebar ------------------------------------------- */
.service-single__sidebar {
    position: sticky;
    top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-widget {
    padding: 40px;
    background: var(--white-color);
    border-radius: var(--radius-corner);
}

.service-widget__title {
    margin-bottom: 24px;
}

.service-widget__nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-widget__nav li {
    margin-bottom: 12px;
}

.service-widget__nav li:last-child {
    margin-bottom: 0;
}

.service-widget__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-radius: var(--radius-pill);
    background: var(--light-color);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition-base);
}

.service-widget__nav a::after {
    content: "\F285"; /* chevron-right */
    font-family: bootstrap-icons !important;
    font-size: 13px;
}

.service-widget__nav a:hover,
.service-widget__current a {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Sidebar contact form */
.service-widget--contact {
    background: var(--secondary-color);
}

.service-widget--contact .service-widget__title {
    color: var(--white-color);
}

.service-form__field {
    margin-bottom: 15px;
}

.service-form__field:last-child {
    margin-bottom: 0;
}

.service-form input[type="text"],
.service-form input[type="email"],
.service-form input[type="tel"],
.service-form select,
.service-form textarea {
    width: 100%;
    height: 50px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    background: var(--white-color);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--body-color);
}

.service-form textarea {
    height: 90px;
    padding-top: 14px;
    border-radius: 16px;
    resize: vertical;
}

.service-form .is-invalid {
    border-color: #e23b3b;
}

.service-form input[type="submit"] {
    width: 100%;
    height: auto;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-base);
}

.service-form input[type="submit"]:hover {
    background: var(--white-color);
    color: var(--text-color);
}
