/* =========================================================
   WASSO HOSPITAL — MODERN IT DEPARTMENT
========================================================= */

:root {
    --itx-primary: #087b75;
    --itx-primary-dark: #063f3c;
    --itx-primary-soft: #e7f6f4;
    --itx-accent: #4fa6d8;
    --itx-dark: #102f3c;
    --itx-text: #183b39;
    --itx-muted: #687e7b;
    --itx-border: #dbe9e7;
    --itx-background: #f3f8f8;
    --itx-shadow:
        0 20px 55px rgba(5, 70, 67, 0.12);
}


/* =========================================================
   HERO
========================================================= */

.itx-hero {
    position: relative;
    min-height: 670px;
    margin-top: 122px;
    overflow: hidden;
    color: #ffffff;
    background: var(--itx-primary-dark);
}

.itx-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    animation:
        itxHeroFade 18s infinite ease-in-out,
        itxHeroZoom 18s infinite ease-in-out;
}

.itx-bg-one {
    background-image:
        url("../img/slide/slide-2.jpg");
}

.itx-bg-two {
    background-image:
        url("../img/slide/slide-3.jpg");
    animation-delay: 9s;
    opacity: 0;
}

.itx-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(84, 180, 218, 0.2),
            transparent 25%
        ),
        linear-gradient(
            90deg,
            rgba(4, 35, 45, 0.97) 0%,
            rgba(5, 66, 66, 0.83) 48%,
            rgba(5, 68, 68, 0.25) 100%
        );
}

.itx-hero::before {
    position: absolute;
    top: -180px;
    right: -130px;
    z-index: 2;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: "";
}

.itx-hero::after {
    position: absolute;
    right: 85px;
    bottom: -230px;
    z-index: 2;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
}

@keyframes itxHeroFade {
    0%,
    43% {
        opacity: 1;
    }

    51%,
    93% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes itxHeroZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.itx-hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 670px;
}

.itx-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 21px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 11px;
}

.itx-breadcrumb a {
    color: #ffffff;
}

.itx-breadcrumb i {
    font-size: 9px;
}

.itx-eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    width: fit-content;
    padding: 8px 13px;
    margin-bottom: 18px;
    color: #c7f5f0;
    background: rgba(95, 205, 196, 0.1);
    border: 1px solid rgba(166, 239, 232, 0.2);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 750;
}

.itx-hero h1 {
    max-width: 920px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5.4rem);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.itx-hero h1 span {
    display: block;
    color: #8ddcd7;
}

.itx-hero-inner > p {
    max-width: 800px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.85;
}

.itx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 29px;
}

.itx-btn-primary,
.itx-btn-outline {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 750;
    transition: 0.25s ease;
}

.itx-btn-primary {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #14988f,
            #08736d
        );
    box-shadow:
        0 13px 28px rgba(4, 54, 50, 0.26);
}

.itx-btn-outline {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.27);
    backdrop-filter: blur(8px);
}

.itx-btn-primary:hover,
.itx-btn-outline:hover {
    color: var(--itx-primary-dark);
    background: #ffffff;
    transform: translateY(-3px);
}

.itx-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 37px;
}

.itx-hero-features > div {
    display: flex;
    gap: 11px;
    align-items: center;
    min-width: 215px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 13px;
    backdrop-filter: blur(7px);
}

.itx-hero-features > div > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    color: #073f3c;
    background: #a9e7e1;
    border-radius: 11px;
}

.itx-hero-features span {
    display: flex;
    flex-direction: column;
}

.itx-hero-features strong {
    color: #ffffff;
    font-size: 10px;
}

.itx-hero-features small {
    color: rgba(255, 255, 255, 0.61);
    font-size: 8px;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.itx-intro {
    padding: 105px 0;
    background: #ffffff;
}

.itx-profile-layout {
    position: relative;
    padding: 0 28px 28px 0;
}

.itx-profile-layout::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 72%;
    height: 72%;
    background: var(--itx-primary-soft);
    border-radius: 25px;
    content: "";
}

.itx-profile-photo {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 560px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--itx-shadow);
}

.itx-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.itx-profile-photo:hover img {
    transform: scale(1.04);
}

.itx-profile-card {
    position: absolute;
    right: 0;
    bottom: 52px;
    z-index: 3;
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px 18px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--itx-dark),
            var(--itx-primary)
        );
    border-radius: 16px;
    box-shadow: var(--itx-shadow);
}

.itx-profile-card > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    color: var(--itx-primary);
    background: #ffffff;
    border-radius: 12px;
}

.itx-profile-card span {
    display: flex;
    flex-direction: column;
}

.itx-profile-card small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 8px;
    text-transform: uppercase;
}

.itx-profile-card strong {
    margin-top: 2px;
    font-size: 13px;
}

.itx-profile-card em {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 9px;
    font-style: normal;
}

.itx-kicker,
.itx-section-title > span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--itx-primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.itx-intro h2,
.itx-strategy h2,
.itx-section-title h2 {
    margin-bottom: 20px;
    color: var(--itx-primary-dark);
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 850;
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.itx-lead {
    color: #334d49;
    font-size: 1.04rem;
    line-height: 1.85;
}

.itx-intro p:not(.itx-lead),
.itx-strategy p:not(.itx-lead) {
    color: var(--itx-muted);
    line-height: 1.85;
}

.itx-focus-list {
    display: grid;
    gap: 11px;
    margin-top: 27px;
}

.itx-focus-list article {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    background: var(--itx-background);
    border: 1px solid var(--itx-border);
    border-radius: 14px;
}

.itx-focus-list article > i {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--itx-primary);
    background: #ffffff;
    border-radius: 11px;
    box-shadow:
        0 7px 18px rgba(5, 80, 73, 0.07);
}

.itx-focus-list span {
    display: flex;
    flex-direction: column;
}

.itx-focus-list strong {
    color: var(--itx-primary-dark);
    font-size: 12px;
}

.itx-focus-list small {
    margin-top: 4px;
    color: var(--itx-muted);
    font-size: 10px;
    line-height: 1.55;
}


/* =========================================================
   RESPONSIBILITIES
========================================================= */

.itx-responsibilities {
    padding: 100px 0;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(8, 123, 117, 0.07),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #f8fbfb,
            #eef7f6
        );
}

.itx-section-title {
    max-width: 790px;
    margin: 0 auto 48px;
    text-align: center;
}

.itx-section-title p {
    color: var(--itx-muted);
    line-height: 1.75;
}

.itx-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.itx-service-grid article {
    height: 100%;
    padding: 27px 23px;
    background: #ffffff;
    border: 1px solid var(--itx-border);
    border-radius: 18px;
    box-shadow:
        0 9px 28px rgba(5, 80, 73, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.itx-service-grid article:hover {
    transform: translateY(-7px);
    box-shadow: var(--itx-shadow);
}

.itx-service-grid i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    color: var(--itx-primary);
    background: var(--itx-primary-soft);
    border-radius: 16px;
    font-size: 22px;
}

.itx-service-grid h3 {
    margin-bottom: 10px;
    color: var(--itx-primary-dark);
    font-size: 16px;
    font-weight: 800;
}

.itx-service-grid p {
    margin: 0;
    color: var(--itx-muted);
    font-size: 11px;
    line-height: 1.75;
}


/* =========================================================
   STRATEGY / SECURITY
========================================================= */

.itx-strategy {
    padding: 105px 0;
    background: #ffffff;
}

.itx-strategy-list {
    display: grid;
    gap: 13px;
    margin-top: 27px;
}

.itx-strategy-list > div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 13px;
    align-items: start;
}

.itx-strategy-list > div > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    background: var(--itx-primary);
    border-radius: 14px;
    font-size: 11px;
    font-weight: 850;
}

.itx-strategy-list section {
    padding: 14px 16px;
    background: var(--itx-background);
    border: 1px solid var(--itx-border);
    border-radius: 14px;
}

.itx-strategy-list strong {
    color: var(--itx-primary-dark);
    font-size: 12px;
}

.itx-strategy-list p {
    margin: 5px 0 0;
    font-size: 10px;
    line-height: 1.65;
}

.itx-security-panel {
    position: relative;
    overflow: hidden;
    padding: 40px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(255, 255, 255, 0.14),
            transparent 24%
        ),
        linear-gradient(
            145deg,
            var(--itx-dark),
            var(--itx-primary)
        );
    border-radius: 23px;
    box-shadow: var(--itx-shadow);
}

.itx-security-panel::after {
    position: absolute;
    right: -75px;
    bottom: -75px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    content: "";
}

.itx-security-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    color: var(--itx-primary);
    background: #ffffff;
    border-radius: 18px;
    font-size: 27px;
}

.itx-security-panel > span {
    color: #a6e9e2;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.itx-security-panel h3 {
    margin: 10px 0 14px;
    color: #ffffff;
    font-size: 27px;
    font-weight: 850;
    line-height: 1.2;
}

.itx-security-panel p {
    color: rgba(255, 255, 255, 0.73) !important;
}

.itx-security-panel ul {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 23px 0 0;
    list-style: none;
}

.itx-security-panel li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.85);
    font-size: 10px;
}

.itx-security-panel li i {
    color: #9de4dc;
}


/* =========================================================
   SUPPORT PROCESS
========================================================= */

.itx-support {
    padding: 100px 0;
    background: var(--itx-background);
}

.itx-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.itx-process-grid article {
    position: relative;
    padding: 28px 23px;
    background: #ffffff;
    border: 1px solid var(--itx-border);
    border-radius: 18px;
    box-shadow:
        0 9px 28px rgba(5, 80, 73, 0.06);
}

.itx-process-grid article > span {
    position: absolute;
    top: 19px;
    right: 20px;
    color: #d7e9e6;
    font-size: 27px;
    font-weight: 850;
}

.itx-process-grid i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    color: var(--itx-primary);
    background: var(--itx-primary-soft);
    border-radius: 16px;
    font-size: 21px;
}

.itx-process-grid h3 {
    color: var(--itx-primary-dark);
    font-size: 15px;
    font-weight: 800;
}

.itx-process-grid p {
    margin: 0;
    color: var(--itx-muted);
    font-size: 10px;
    line-height: 1.75;
}


/* =========================================================
   CONTACT
========================================================= */

.itx-contact {
    padding: 90px 0;
    background: #ffffff;
}

.itx-contact-card {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 36px;
    align-items: center;
    padding: 40px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(255, 255, 255, 0.13),
            transparent 24%
        ),
        linear-gradient(
            130deg,
            var(--itx-dark),
            var(--itx-primary)
        );
    border-radius: 23px;
    box-shadow: var(--itx-shadow);
}

.itx-contact-card > div:first-child > span {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    padding: 7px 10px;
    margin-bottom: 14px;
    color: #d8fff9;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 750;
}

.itx-contact-card h2 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 850;
}

.itx-contact-card p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

.itx-contact-actions {
    display: grid;
    gap: 10px;
}

.itx-contact-actions a {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 13px 15px;
    color: var(--itx-primary-dark);
    background: #ffffff;
    border-radius: 14px;
    transition: 0.22s ease;
}

.itx-contact-actions a:hover {
    color: var(--itx-primary-dark);
    transform: translateY(-3px);
}

.itx-contact-actions a > i {
    display: flex;
    flex: 0 0 41px;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: #ffffff;
    background: var(--itx-primary);
    border-radius: 11px;
}

.itx-contact-actions span {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.itx-contact-actions small {
    color: var(--itx-muted);
    font-size: 9px;
}

.itx-contact-actions strong {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
}


/* =========================================================
   RELATED LINKS
========================================================= */

.itx-related {
    padding: 90px 0 105px;
    background: var(--itx-background);
}

.itx-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.itx-related-grid a {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 16px;
    color: var(--itx-primary-dark);
    background: #ffffff;
    border: 1px solid var(--itx-border);
    border-radius: 14px;
    box-shadow:
        0 7px 20px rgba(5, 80, 73, 0.05);
    transition: 0.22s ease;
}

.itx-related-grid a > i:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--itx-primary);
    background: var(--itx-primary-soft);
    border-radius: 10px;
}

.itx-related-grid span {
    font-size: 11px;
    font-weight: 750;
}

.itx-related-grid a > i:last-child {
    color: #94aaa6;
    font-size: 11px;
}

.itx-related-grid a:hover {
    color: #ffffff;
    background: var(--itx-primary);
    border-color: var(--itx-primary);
    transform: translateY(-4px);
}

.itx-related-grid a:hover > i:first-child {
    color: var(--itx-primary);
    background: #ffffff;
}

.itx-related-grid a:hover > i:last-child {
    color: #ffffff;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .itx-bg {
        animation: none;
    }

    * {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
    .itx-service-grid,
    .itx-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .itx-hero {
        min-height: 610px;
        margin-top: 112px;
    }

    .itx-hero-inner {
        min-height: 610px;
    }

    .itx-contact-card {
        grid-template-columns: 1fr;
    }

    .itx-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .itx-intro,
    .itx-responsibilities,
    .itx-strategy,
    .itx-support {
        padding: 75px 0;
    }

    .itx-profile-layout {
        padding-right: 0;
    }

    .itx-profile-layout::after {
        display: none;
    }

    .itx-profile-photo {
        height: 420px;
    }

    .itx-profile-card {
        right: 18px;
        bottom: 18px;
    }

    .itx-contact-card,
    .itx-security-panel {
        padding: 28px 22px;
    }
}

@media (max-width: 575px) {
    .itx-hero {
        min-height: 620px;
    }

    .itx-hero-inner {
        min-height: 620px;
    }

    .itx-hero h1 {
        font-size: 3rem;
    }

    .itx-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .itx-hero-features {
        display: none;
    }

    .itx-profile-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 30px);
        margin: -40px auto 0;
    }

    .itx-service-grid,
    .itx-process-grid,
    .itx-related-grid {
        grid-template-columns: 1fr;
    }
}
