/* ═══════════════════════════════════════════════════════════
   Services - Enterprise Variant  |  se-page
   ════════════════════════════════════════════════════════════ */

/* ── Reset & Variables ──────────────────────────────────── */
.se-page *, .se-page *::before, .se-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.se-page { font-family: 'Inter', sans-serif; color: #1a2b3c; background: #f5f3f3; }
.se-page a { text-decoration: none; }
.se-page ul { list-style: none; }
.se-page img { display: block; max-width: 100%; }

:root {
    --se-teal:    #2c9aa0;
    --se-dark:    #1a2b3c;
    --se-text:    #4a5568;
    --se-gray:    #718096;
    --se-bg:      #f5f3f3;
    --se-white:   #ffffff;
    --se-border:  #e2e8f0;
    --se-cta-bg:  #1b6b72;
    --se-font-head: 'Plus Jakarta Sans', sans-serif;
}

/* ── Container ──────────────────────────────────────────── */
.se-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Buttons ────────────────────────────────────────────── */
.se-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--se-font-head);
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}
.se-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.se-btn--teal {
    background: var(--se-teal);
    color: var(--se-white);
    padding: 10px 24px;
}
.se-btn--dark {
    background: var(--se-teal);
    color: var(--se-white);
    padding: 14px 28px;
    align-self: flex-start;
}
.se-btn--outline {
    background: transparent;
    color: var(--se-white);
    padding: 14px 28px;
    border: 2px solid var(--se-white);
    border-radius: 6px;
}
.se-btn--outline:hover { background: rgba(255,255,255,0.12); opacity: 1; }

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.se-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--se-white);
    transition: box-shadow 0.2s;
}
.se-header--scrolled {
    box-shadow: 0 2px 16px rgba(27,28,28,0.08);
}
.se-nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    height: 80px;
    gap: 32px;
}
.se-nav__logo {
    font-family: var(--se-font-head);
    font-weight: 700;
    font-size: 22px;
    color: var(--se-teal);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.se-nav__links {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: center;
}
.se-nav__links a {
    font-family: var(--se-font-head);
    font-weight: 600;
    font-size: 16px;
    color: var(--se-gray);
    transition: color 0.2s;
}
.se-nav__links a:hover { color: var(--se-teal); }
.se-nav__links .current-menu-item > a,
.se-nav__links .current-menu-ancestor > a {
    font-weight: 700 !important;
    border-bottom: 2px solid var(--se-teal);
    padding-bottom: 2px;
}
.se-nav__links .menu-item-has-children { position: relative; }
.se-nav__links .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    box-shadow: 0 4px 24px rgba(27,28,28,0.12);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;
    min-width: 180px;
    z-index: 200;
    display: none;
}
.se-nav__links .menu-item-has-children:hover .sub-menu { display: block; }
.se-nav__links .sub-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}
.se-nav__links .sub-menu a {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    display: block;
    border-bottom: none !important;
}
.se-nav__links .sub-menu a:hover {
    color: var(--se-teal);
    background: rgba(44,154,160,0.06);
}
.se-nav__cta { font-size: 15px; flex-shrink: 0; }
.se-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.se-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--se-dark);
    border-radius: 2px;
    transition: all 0.25s;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.se-hero {
    padding-top: 68px;
    background: var(--se-bg);
}
.se-hero .se-container {
    padding-top: 72px;
    padding-bottom: 72px;
}
.se-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.se-hero__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.se-hero__badge {
    font-family: var(--se-font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--se-teal);
}
.se-hero__heading {
    font-family: var(--se-font-head);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--se-teal);
}
.se-hero__sub {
    font-size: 16px;
    line-height: 1.7;
    color: var(--se-text);
    max-width: 480px;
}
.se-hero__media {
    position: relative;
}
.se-hero__photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.se-hero__photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
}
.se-hero__stat-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--se-white);
    border-radius: 10px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 220px;
}
.se-hero__stat-value {
    font-family: var(--se-font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--se-teal);
    line-height: 1;
}
.se-hero__stat-label {
    font-size: 13px;
    line-height: 1.5;
    color: var(--se-text);
}

/* ════════════════════════════════════════════════════════════
   SERVICE PILLARS
   ════════════════════════════════════════════════════════════ */
.se-pillars {
    background: var(--se-white);
    padding: 80px 0;
}
.se-pillars__header {
    margin-bottom: 48px;
}
.se-pillars__title {
    font-family: var(--se-font-head);
    font-size: 32px;
    font-weight: 800;
    color: var(--se-teal);
    margin-bottom: 12px;
}
.se-pillars__accent {
    width: 48px;
    height: 3px;
    background: var(--se-teal);
    border-radius: 2px;
}
.se-pillars__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.se-pillar-card {
    background: var(--se-white);
    border: 1px solid var(--se-border);
    border-radius: 10px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.se-pillar-card__icon {
    font-size: 22px;
    color: var(--se-teal);
    margin-bottom: 4px;
}
.se-pillar-card__title {
    font-family: var(--se-font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--se-teal);
    line-height: 1.3;
}
.se-pillar-card__desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--se-text);
    flex: 1;
}
.se-pillar-card__links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}
.se-pillar-card__links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--se-teal);
    transition: opacity 0.2s;
}
.se-pillar-card__links a:hover { opacity: 0.75; }

/* ════════════════════════════════════════════════════════════
   TEAM / EXPERTISE
   ════════════════════════════════════════════════════════════ */
.se-team {
    background: var(--se-bg);
    padding: 80px 0;
}
.se-team__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.se-team__media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: end;
}
.se-team__photo-top img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}
.se-team__photo-bottom {
    background: var(--se-cta-bg);
    border-radius: 10px;
    overflow: hidden;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.se-team__photo-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.se-team__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.se-team__heading {
    font-family: var(--se-font-head);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--se-teal);
    line-height: 1.2;
}
.se-team__body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--se-text);
}
.se-team__roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}
.se-role-card {
    background: var(--se-border);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.se-role-card__title {
    font-family: var(--se-font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--se-dark);
}
.se-role-card__sub {
    font-size: 13px;
    color: var(--se-gray);
}

/* ════════════════════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════════════════════ */
.se-cta {
    padding: 64px 0;
    background: var(--se-bg);
}
.se-cta__card {
    background: var(--se-cta-bg);
    border-radius: 16px;
    padding: 56px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.se-cta__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.se-cta__heading {
    font-family: var(--se-font-head);
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 800;
    color: var(--se-white);
    line-height: 1.2;
    max-width: 55%;
}
.se-cta__sub {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.se-footer {
    background: var(--se-bg);
    padding: 48px 0;
}
.se-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.se-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.se-footer__logo {
    font-family: var(--se-font-head);
    font-weight: 700;
    font-size: 20px;
    color: var(--se-teal);
}
.se-footer__brand p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--se-text);
}
.se-footer__social {
    display: flex;
    gap: 14px;
}
.se-footer__social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--se-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--se-dark);
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}
.se-footer__social a:hover { background: var(--se-teal); color: var(--se-white); }
.se-footer__col h4 {
    font-family: var(--se-font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--se-teal);
    margin-bottom: 16px;
}
.se-footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.se-footer__col ul a {
    font-size: 16px;
    color: var(--se-dark);
    transition: color 0.2s;
}
.se-footer__col ul a:hover { color: var(--se-teal); }
.se-footer__copy {
    font-size: 14px;
    color: var(--se-gray);
    margin-top: 24px;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .se-pillars__grid { grid-template-columns: repeat(2, 1fr); }
    .se-hero__inner  { gap: 40px; }
    .se-team__inner  { gap: 48px; }
}
@media (max-width: 768px) {
    .se-nav__links, .se-nav__cta { display: none; }
    .se-nav__toggle { display: flex; }
    .se-nav__links.se-nav--open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0; right: 0;
        background: var(--se-white);
        padding: 24px 40px;
        gap: 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .se-nav__links .sub-menu {
        position: static;
        display: block;
        box-shadow: none;
        border-radius: 0;
        padding: 4px 0 4px 16px;
        min-width: unset;
        border-left: 2px solid var(--se-teal);
        margin-top: 4px;
    }
    .se-hero__inner  { grid-template-columns: 1fr; }
    .se-hero__photo img { height: 300px; }
    .se-team__inner  { grid-template-columns: 1fr; }
    .se-team__media  { grid-template-columns: 1fr 1fr; }
    .se-pillars__grid { grid-template-columns: 1fr; }
    .se-cta__card    { flex-direction: column; padding: 40px 32px; }
    .se-footer__grid { grid-template-columns: 1fr 1fr; }
    .se-container    { padding: 0 24px; }
}
@media (max-width: 480px) {
    .se-footer__grid { grid-template-columns: 1fr; }
    .se-team__roles  { grid-template-columns: 1fr; }
}
