@media (max-width: 767px) {
    :root {
        --wp--preset--font-size--2-xl: 28px;
        --wp--preset--font-size--xl: 18px;
    }
}

/* =============================================
   INTRO ANIMATION OVERLAY
   ============================================= */
.ib-intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: #0f1e2d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.ib-intro-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.ib-intro-overlay__logo {
    width: 240px;
    max-width: 60vw;
    animation: introLogoIn 1.5s ease forwards;
}

@keyframes introLogoIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(2); 
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: var(--wp--preset--font-size--base);
}

* {
    box-sizing: border-box;
}

a {
}

.wp-site-blocks {
    min-height: 100vh;
    border-top: 4px solid var(--wp--preset--color--primary);
}
.wp-site-blocks > main { flex: 1; }

:where(.wp-site-blocks) > * {
    margin-block-start: 0;
}
:root :where(.is-layout-flow) > * {
    margin-block-start: 0;
}

.is-layout-constrained > .alignwide {
    padding-left: 80px;
    padding-right: 80px;
    width: 100%;
}
@media (max-width: 1199px) {
    .is-layout-constrained > .alignwide {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 767px) {
    .is-layout-constrained > .alignwide {
        padding-left: 20px;
        padding-right: 20px;
    }
}
.is-layout-constrained > .aligncontent {
    padding-left: 80px;
    padding-right: 80px;
    width: 100%;
}
@media (max-width: 1199px) {
    .is-layout-constrained > .aligncontent {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 767px) {
    .is-layout-constrained > .aligncontent {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* =============================================
   HEADER — common on ALL pages
   ============================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    width: 100%;
    padding: 44px 0 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.is-hidden {
    transform: translateY(-100%);
}
.site-header.is-scrolled .site-header__logo {
    opacity: 0;
    visibility: hidden;
}
.site-header__logo {
    min-width: 240px;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header__nav {
    gap: 8px;
}

.site-header-bg + .site-main {
    padding-top: 128px;
    background: #F5F5F5;
}
.site-header-bg .site-header__logo {
    min-width: 240px;
}
.site-header-bg .site-header__logo img {
    content: url(../images/logo-black.svg);
}
.site-header-bg .site-header.is-scrolled {
    background: transparent;
    padding-bottom: 0;
}

/* White pill wrapping nav links */
.site-header__pill {
    background: #ffffff;
    border-radius: 200px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    padding: 12px 28px;
    overflow: hidden;
    position: relative;
    right: 0;
    opacity: 1;
    transform-origin: right center;
    transition: right 0.25s cubic-bezier(0.49, 0.21, 0, 0.28), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.49, 0.21, 0, 0.28);
}
.site-header__links {
    opacity: 1;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop-only collapse animation — scoped so it never touches mobile */
@media (min-width: 1200px) {
    .site-header.is-collapsed .site-header__pill {
        opacity: 0;
        right: -48px;
        transform: scaleX(0);
        pointer-events: none;
    }
    .site-header.is-collapsed .site-header__links {
        opacity: 0;
    }
    .site-header__links > li:first-child {
        display: none;
    }
}
/* Nav link styles inside pill */
.site-header__links .wp-block-navigation-item a,
.site-header__links .wp-block-navigation-item__content {
    color: #333333 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 0 !important;
    text-decoration: none !important;
    text-transform: capitalize;
}

.site-header__links .wp-block-navigation-item a:hover,
.site-header__links .wp-block-navigation-item__content:hover {
    color: var(--wp--preset--color--primary-accent) !important;
}

.site-header__links .wp-block-navigation-item.is-active > a,
.site-header__links .wp-block-navigation-item.is-active > .wp-block-navigation-item__content,
.site-header__links .wp-block-navigation-item.current-menu-item > a,
.site-header__links .wp-block-navigation-item.current-menu-ancestor > a {
    color: var(--wp--preset--color--primary) !important;
    position: relative;
}

.site-header__menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--wp--preset--color--primary);
    border: none;
    border-radius: 200px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
    position: relative;
}
.site-header__menu-btn .wp-block-button__link {
    font-size: 0;
    padding: 0;
    line-height: 0;
    cursor: pointer;
    border-radius: 2px;
    height: 2px;
    width: 24px;
    background: white;
    position: absolute;
    left: 12px;
    top: 50%;
    display: block;
}
.site-header__menu-btn .wp-block-button__link:before,
.site-header__menu-btn .wp-block-button__link:after {
    content:'';
    cursor: pointer;
    border-radius: 2px;
    height: 2px;
    width: 24px;
    background: white;
    position: absolute;
    left: 0;
    display: block;
}
.site-header__menu-btn .wp-block-button__link:before {
    top: -8px;
}
.site-header__menu-btn .wp-block-button__link:after {
    top: 8px;
}
.site-header__menu-btn .wp-block-button__link,
.site-header__menu-btn .wp-block-button__link:before,
.site-header__menu-btn .wp-block-button__link:after {
    transition: all 0.5s ease-in-out;
}
.site-header__menu-btn.active .wp-block-button__link {
    background-color: transparent;
}
.site-header__menu-btn.active .wp-block-button__link:before,
.site-header__menu-btn.active .wp-block-button__link:after {
    top: 0;
}
.site-header__menu-btn.active .wp-block-button__link:before {
    transform: rotate(135deg);
}
.site-header__menu-btn.active .wp-block-button__link:after {
    transform: rotate(-135deg);
}
.site-header__language {
    justify-content: end;
    margin-bottom: 14px;
    position: absolute;
    top: 10px;
    height: 20px;
    z-index: 2;
    left: 0;
    right: 0;
}
.site-header__language .gtranslate_wrapper {
    display: flex;
    flex-direction: row-reverse;
}
.site-header__language .gtranslate_wrapper .glink:nth-child(2) {
    font-size: 0;
    line-height: 0;
}
.site-header__language .gtranslate_wrapper .glink:nth-child(2)::before {
    content: 'JP';
    font-size: var(--wp--preset--font-size--base);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.site-header__language .gtranslate_wrapper .glink:nth-child(2)::after {
    content: '/';
    padding: 4px;
    font-size: var(--wp--preset--font-size--base);
}
.site-header__language .gtranslate_wrapper .glink {
    color: #C8C8C8;
    font-size: var(--wp--preset--font-size--base);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.site-header__language .gtranslate_wrapper .glink.notranslate.gt-current-lang {
    color: var(--wp--preset--color--primary);
}

/* ── FRONT PAGE + INNER HERO PAGES: overlay header on hero ── */
/* Transparent nav bar on pages with a hero banner (pill stays white) */
body.home .site-header__nav,
body.page-template-front-page .site-header__nav,
body.page-template-page-services .site-header__nav,
body.page-template-page-office .site-header__nav,
body.page-template-page-safety .site-header__nav {
    background: transparent;
    border-bottom: none;
}

/* Mobile: show WP's built-in toggle, hide custom hamburger */
@media (max-width: 782px) {
    .site-header .wp-block-navigation__responsive-container-open {
        display: flex !important;
        background: var(--wp--preset--color--primary) !important;
        color: #ffffff !important;
        border-radius: 200px !important;
        border: none !important;
        padding: 12px !important;
    }
    .ib-hamburger {
        display: none;
    }
    .site-header__links .wp-block-navigation__responsive-container:not(.is-menu-open) {
        display: none;
    }
}

/* ── TABLET / MOBILE (≤1199px): pill becomes dropdown menu ── */
@media (max-width: 1199px) {
    /* Override WP's built-in toggle — we use site-header__menu-btn exclusively */
    .site-header .wp-block-navigation__responsive-container-open {
        display: none !important;
    }

    .site-header__logo,
    .site-header__menu-btn {
        position: relative;
        z-index: 2;
    }
    
    .site-header__menu-btn {
        display: flex;
    }

    .site-header__menu-btn {
        width: 36px;
        height: 36px;
    }

    .site-header__logo,
    .site-header-bg .site-header__logo {
        min-width: 180px;
    }
    .site-header__logo img {
        width: 180px;
    }

    /* Pill → dropdown from top, slides out below site-header */
    .site-header__pill {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        width: auto;
        border-radius: 0 0 20px 20px;
        padding: 100px 40px 28px;
        overflow-y: auto;
        overflow-x: hidden;
        opacity: 1;
        transform: translateY(-100%);
        transform-origin: top center;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.1s;
        z-index: 1;
        pointer-events: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        display: block !important;
        opacity: 0;
        visibility: hidden;
    }
    .site-header.is-mobile-open .site-header__pill {
        transform: translateY(0);
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
    }
    .site-header__pill .site-header__links {
        max-height: calc(100vh - 120px);
        overflow: auto;
    }
    .site-header.is-mobile-open .site-header__logo {
        content: url(../images/logo-black.svg);
        width: 180px;
    }

    /* Force WP nav links to render as vertical list inside drawer */
    .site-header__pill .wp-block-navigation__responsive-container-open {
        display: none !important;
    }
    .site-header__pill .wp-block-navigation__responsive-container,
    .site-header__pill .wp-block-navigation__responsive-container:not(.is-menu-open) {
        display: flex !important;
        position: static !important;
        background: transparent !important;
        width: 100%;
    }
    .site-header__pill .wp-block-navigation__container {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100%;
        gap: 0 !important;
    }

    /* Bigger tap targets for links inside drawer */
    .site-header__links .wp-block-navigation-item a,
    .site-header__links .wp-block-navigation-item__content {
        font-size: 18px !important;
        padding: 12px 0 !important;
        display: block;
    }

    /* Dimming overlay (injected by JS) — below header + dropdown */
    .site-header__overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 198;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .site-header__overlay.is-visible {
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 767px) {
    .site-header__pill {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* =============================================
   HERO — front page cover block
   ============================================= */

/* The cover block fills the full viewport; text sits at bottom-left */
.home-hero-banner {
    position: relative;
    min-height: 100vh;
    padding: 108px 0;
}

@media (max-width: 767px) {
    .home-hero-banner {
        min-height: auto;
    }
}
.home-hero-banner__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.home-hero-banner.has-video .wp-block-cover__background {
    display: none;
}

.home-hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
}


.home-hero-banner .wp-block-cover__inner-container {
    display: flex;
    padding-bottom: 80px;
    text-align: center;
    z-index: 1;
}
.home-hero-banner h1 {
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 24px;
}
.home-hero-banner p {
    font-weight: 500;
    line-height: normal;
}

/* =============================================
   SERVICES SECTION  bg: #ffffff
   ============================================= */

.ib-services-section {
    background: #ffffff;
}

.ib-services-inner {
    padding: 80px 0;
    position: relative;
}
@media (max-width: 767px) {
    .ib-services-inner {  }
}

.ib-services-heading {
    height: 207px;
    margin: 0;
}

@media (max-width: 1420px) {
    .ib-services-heading  {
        height: auto;
        margin-bottom: 80px;
    }
}

.ib-section-title {
    font-size: var(--wp--preset--font-size--2-xl);
    font-weight: 600;
    color: #333333;
    line-height: 60px;
    margin: 0 0 12px;
}

.ib-section-subtitle {
    font-size: var(--wp--preset--font-size--xl);
    color: #333333;
    max-width: 732px;
    margin: 0;
}

/* Slider + truck wrapper */
.ib-services-slider-wrap {
    position: relative;
    padding-bottom: min(192px, 10vw);
}
@media (max-width: 767px) {
    .ib-services-slider-wrap {
        padding-bottom: 10vw;
    }
}

.ib-services-swiper {
    position: relative;
    z-index: 1;
    max-width: 82.5%;
    margin-left: 0;
}

/* Card width: 2 per row on desktop, full-width on mobile */
.ib-services-swiper .swiper-slide {
    width: calc(50% - 10px); /* half of container minus half of spaceBetween(20) */
}

/* Service card: rgba(42,188,162,0.1) bg with vertical stripe decorations */
.ib-service-card {
    position: relative;
    background: rgba(42, 188, 162, 0.1);
    border-radius: 16px;
    width: 100%;
    height: 280px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-sizing: border-box;
}

/* Stripe columns inside card: 20px wide, rgba(42,188,162,0.04) */
.ib-service-card__stripes {
    position: absolute;
    inset: 20px;
    background-image: url('../images/bg-service-card.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.ib-service-card__icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    flex-shrink: 0;
}

.ib-service-card__icon {
    width: 50px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.ib-service-card__body {
    position: relative;
    z-index: 1;
}

.ib-service-card__title {
    font-size: var(--wp--preset--font-size--xl);
    font-weight: 500;
    color: #333333;
    margin: 0 0 12px;
    white-space: nowrap;
}

.ib-service-card__desc {
    font-size: 14px;
    color: #333333;
    margin: 0;
    line-height: 1.6;
}

/* Truck illustration — absolute behind the cards */
.ib-services-truck {
    position: absolute;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
}

.ib-services-truck img {
    width: 100%;
    height: auto;
    display: block;
}
.ib-services-truck-top {
    position: absolute;
    top: 0;
    right: 39.5%;
    width: min(435px, 30vw);
    transform: translateX(50%) !important;
}
@media (max-width: 1420px) {
    .ib-services-truck-top {
        display: none;
    }
}
.ib-services-truck-top img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pagination + navigation controls */
.ib-services-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

/* Swiper bullet pagination */
.ib-services-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    min-height: 8px;
}

.ib-services-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d0d0d0;
    opacity: 1;
    border-radius: 50%;
    margin: 0 !important;
    transition: background 0.2s;
}

.ib-services-pagination .swiper-pagination-bullet-active {
    background: var(--wp--preset--color--primary);
}

/* Navigation arrows */
.ib-services-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ib-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s;
    flex-shrink: 0;
    background: var(--wp--preset--color--primary);
}
.ib-arrow-btn:hover { background: var(--wp--preset--color--primary-accent); }
.ib-arrow-btn.swiper-button-disabled {
    background: #e0e0e0;
    color: #666666;
    cursor: not-allowed;
}

/* =============================================
   OFFICES SECTION  bg: #ffffff
   ============================================= */

.ib-offices-section {
    background: #ffffff;
    overflow: hidden;
}

.ib-offices-canvas {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.ib-offices-map-wrap {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 46%;
    width: 100%;
    z-index: 4;
}

.ib-offices-map {
    width: 100%;
    height: auto;
    display: block;
}

.ib-offices-map-pagination.swiper-pagination-bullets {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ib-loc-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.2s ease;
    background: url('../images/location-dot.svg') no-repeat center center;
    background-size: contain;
    z-index: 2;
}
.ib-loc-dot:nth-child(1) {
    left: 58%;
    top: 24.5%;
}
.ib-loc-dot:nth-child(2) {
    left: 53.5%;
    top: 26%;
}
.ib-loc-dot:nth-child(3) {
    left: 42%;
    top: 31.75%;
}
.ib-loc-dot:nth-child(4) {
    left: 39%;
    top: 36.5%;
}
.ib-loc-dot--active {
    z-index: 3;
    transform: translate(-50%, -50%) scale(1.08);
}

.ib-offices-connector-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ib-offices-connector-line.is-visible {
    opacity: 1;
}

.ib-offices-connector-line__path {
    fill: none;
    stroke: var(--wp--preset--color--primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 8 8;
    vector-effect: non-scaling-stroke;
}

.ib-offices-connector-line__arrow {
    vector-effect: non-scaling-stroke;
}
@media (max-width: 1199px) {
    .ib-loc-dot--active {
        transform: translate(-50%, -50%) scale(1.4);
    }

    .ib-offices-connector-line {
        display: none;
    }
}

.ib-offices-photo-col {
    overflow: hidden;
    padding-top: 80px;
    flex: 0 0 60%;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.ib-offices-warehouse-label {
    font-weight: 600;
    text-align: center;
    margin: 0 0 62px;
    line-height: 1.5;
}

.ib-offices-circle-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 750 / 614;
}
@media (max-width: 992px) {
    .ib-offices-circle-wrap {}
}
.ib-offices-circle-wrap::before {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 51.52%, rgba(0, 0, 0, 0.70) 80.52%);
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    z-index: 1;
}

.ib-offices-circle-photo {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
}

.ib-offices-circle-photo--coming-soon {
    background: #b2e4db;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: unset;
}

.ib-offices-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px 62px;
    text-align: center;
    z-index: 2;
}

.ib-offices-center-name {
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 11px;
    line-height: normal;
    text-transform: capitalize;
}
@media (max-width: 479px) {
    .ib-offices-center-name {
        font-size: 5.5vw !important;
    }
}

.ib-offices-address {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--wp--preset--font-size--xl);
    font-weight: 500;
    margin: 0;
    line-height: normal;
    text-transform: capitalize;
}
@media (max-width: 479px) {
    .ib-offices-address {
        font-size: 3.75vw !important;
    }
}
.ib-offices-slider-wrap {
    position: relative;
    aspect-ratio: 750 / 614;
    overflow: hidden;
}

@media (max-width: 991px) {
    .ib-offices-canvas {
        display: block;
    }

    .ib-offices-map-wrap {
        display: none;
    }

    .ib-offices-photo-col {
        flex: 0 0 100%;
        width: 100%;
        margin-left: 0;
        padding-top: 48px;
    }

    .ib-offices-warehouse-label {
        margin-bottom: 32px;
    }

    .ib-offices-slider-wrap > .ib-offices-map-pagination.swiper-pagination-bullets {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: 24px;
        pointer-events: auto;
        inset: auto;
        bottom: 10px;
    }

    .ib-offices-slider-wrap .ib-loc-dot {
        position: relative;
        left: auto;
        top: auto;
        width: 14px;
        height: 14px;
        border-radius: 999px;
        background: #d8d8d8;
        transform: none;
        opacity: 1;
    }

    .ib-offices-slider-wrap .ib-loc-dot--active {
        background: var(--wp--preset--color--primary);
        transform: none;
    }
}

/* =============================================
   CERTIFICATIONS SECTION  bg: #f5f5f5
   ============================================= */

.ib-certs-section {
    background: #f5f5f5;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.ib-certs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 60px;
    box-sizing: border-box;
}

.ib-certs-title {
    font-size: var(--wp--preset--font-size--2-xl);
    font-weight: 600;
    color: #333333;
    line-height: 60px;
    margin: 0;
    text-transform: capitalize;
}

.ib-certs-arrows {
    display: flex;
    gap: 20px;
}

.ib-certs-cards-wrap {
    position: relative;
}

.ib-certs-swiper {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.ib-certs-swiper .swiper-wrapper {
    height: 100%;
    align-items: stretch;
}

.ib-certs-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.ib-cert-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 20px 30px;
    overflow: hidden;
    position: relative;
}
.ib-cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 37px;
    border-left: 1px dashed rgba(255, 255, 255, 0.5);
    right: 0;
    z-index: 1;
}
.ib-cert-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    background-color: var(--wp--preset--color--primary);
    height: 50%;
    width: 100%;
    left: 0;
    z-index: 0;
}

.ib-cert-card__img-wrap {
    max-width: 260px;
    width: 100%;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    aspect-ratio: 260 / 300;
}

.ib-cert-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ib-cert-card__label {
    font-size: var(--wp--preset--font-size--xl);
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin: 0;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .ib-certs-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }
}

/* =============================================
   CTA SECTION
   ============================================= */

.ib-cta-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}
.ib-cta-section::after {
    content: '';
    background-image: url(../images/cta-deco.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    width: 390px;
    height: 306px;
    position: absolute;
    right: 0;
    bottom: 0;
}
@media (max-width: 767px) {
    .ib-cta-section::after {
        display: none;
    }
}

.ib-cta-card {
    background: var(--wp--preset--color--primary-accent);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 260px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.ib-cta-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.ib-cta-heading {
    font-size: var(--wp--preset--font-size--2-xl);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    text-transform: capitalize;
}

.ib-cta-sub {
    font-size: var(--wp--preset--font-size--xl);
    color: #ffffff;
    margin: 0;
    text-transform: capitalize;
}

.ib-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--wp--preset--color--primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 200px;
    height: 46px;
    padding: 4px 4px 4px 20px;
    font-size: 16px;
    font-weight: 500;
    width: fit-content;
    transition: background-color 0.2s;
    text-transform: capitalize;
}

.ib-cta-btn__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ib-cta-btn:hover {
    background-color: #2ED0B3;
}


/* =============================================
   FOOTER  bg: #fbfbfb, border-top: 4px var(--wp--preset--color--primary)
   ============================================= */

.ib-footer a {
    color: #333333;
    text-decoration: none;
}

.ib-footer a:hover {
    color: var(--wp--preset--color--primary);
}
.ib-footer-logo {
    width: 240px;
    height: auto;
}
.ib-footer-content-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 0;
    box-sizing: border-box;
    gap: 40px;
}

/* Address section */
.ib-footer-address {
    flex-shrink: 0;
    min-width: 300px;
}
@media (max-width: 767px) {
    .ib-footer-address {
        min-width: auto;
    }
}

.ib-footer-office-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

/* Teal vertical bar separator */
.ib-footer-bar-v {
    display: inline-block;
    width: 3px;
    height: 25px;
    background: var(--wp--preset--color--primary);
    flex-shrink: 0;
    border-radius: 3px;
}

.ib-footer-office-name {
    font-size: var(--wp--preset--font-size--xl);
    font-weight: 500;
    color: #333333;
    text-transform: capitalize;
}

.ib-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 19px;
}
.ib-footer-contact-list .ib-footer-contact-item {
    text-transform: unset;
}

.ib-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #333333;
    text-transform: capitalize;
}

.ib-footer-icon {
    flex-shrink: 0;
}

/* Footer nav: 4 columns × 2 rows */
.ib-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ib-footer-nav-row {
    display: grid;
    grid-template-columns: repeat(4, 200px);
}

.ib-footer-nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 16px;
}

.ib-footer-nav-item a {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

/* Copyright row */
.ib-footer-copyright-row {
    border-top: 1px solid #e4e4e4;
    padding: 20px 80px;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
}

.ib-footer-copyright {
    font-size: 14px;
    color: #333333;
    margin: 0;
}

/* =============================================
   SHARED UTILITIES
   ============================================= */

.ib-transport-card-shadow { box-shadow: 0 18px 45px rgba(23, 33, 43, 0.1); }
.ib-transport-card-border { border: 1px solid var(--wp--preset--color--line); }

.editor-styles-wrapper .wp-block-post-title,
.editor-styles-wrapper .wp-block-heading { letter-spacing: 0; }

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

@media (max-width: 1199px) {
    .ib-certs-swiper { height: auto; }
    .ib-certs-swiper .swiper-wrapper { min-height: 280px; }
    .ib-footer-nav-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }
}

@media (max-width: 767px) {
    .ib-services-swiper .swiper-slide { width: 100%; }
    .ib-cta-section { padding: 40px 0px; }
    .ib-cta-card {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    .ib-footer-content-row { flex-direction: column; padding: 40px 20px; }
    .ib-footer-nav-row { grid-template-columns: repeat(2, 1fr); }
    .ib-certs-header { padding: 0 20px 40px; }
}

/* =============================================
   SERVICE PAGE BANNER  (service-banner pattern)
   ============================================= */

.ib-page-banner.wp-block-cover {
    min-height: 538px !important;
    background-color: #1a2e2b;
    padding: 108px 0;
}
.ib-page-banner .wp-block-cover__background {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
}
.ib-page-banner .wp-block-cover__inner-container {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    flex-direction: column;
    padding: 0;
}
.ib-page-banner__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ib-page-banner__inner {
    padding-bottom: 0;
}
.service-banner.wp-block-cover {
    padding-bottom: 78px;
} 
.service-banner .ib-page-banner__inner  {
    padding-top: 40px;
}
.ib-page-banner__label {
    font-weight: 600;
    color: var(--wp--preset--color--primary);
    line-height: normal;
    text-transform: capitalize;
}

.ib-page-banner__stat-bar {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 639px;
    margin: 40px auto 0;
}

.ib-page-banner__stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 53px 20px;
}

.ib-page-banner__stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ib-page-banner__stat-icon img,
.ib-page-banner__stat-icon svg {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.ib-page-banner__stat-label {
    font-size: var(--wp--preset--font-size--md);
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    line-height: normal;
    text-transform: capitalize;
}

@media (max-width: 900px) {
    .ib-page-banner__stat-label { font-size: 14px; white-space: normal; }
    .ib-page-banner__stat-item { padding: 24px 12px; gap: 12px; }
}

@media (max-width: 600px) {
    .ib-page-banner.wp-block-cover { min-height: 420px !important; }
    .ib-page-banner__label { font-size: 28px !important; }
    .ib-page-banner__stat-bar { flex-direction: column; border-top: none; }
    .ib-page-banner__stat-divider { width: 100%; height: 1px; margin: 0 24px; }
    .ib-page-banner__stat-item { flex-direction: row; justify-content: flex-start; gap: 16px; padding: 16px 20px; border-top: 1px solid rgba(255,255,255,0.15); }
    .ib-page-banner__inner { gap: 20px; }
}

/* =============================================
   SERVICE NAV  (service-nav pattern)
   ============================================= */

.ib-service-nav {
    background: #ffffff;
    border-bottom: 1px solid #e4e4e4;
    position: sticky;
    top: 78px; /* matches fixed header height */
    z-index: 100;
}

.ib-service-nav__inner {
    display: flex !important;
    align-items: stretch;
    padding: 0 !important;
}

.ib-service-nav__item {
    flex: 1;
}

.ib-service-nav__item + .ib-service-nav__item,
.ib-service-nav__divider + .ib-service-nav__item {
    border-left: 1px solid #e4e4e4;
}

.ib-service-nav__divider {
    width: 1px;
    background: #e4e4e4;
    flex-shrink: 0;
    align-self: stretch;
    margin: 12px 0;
}

.ib-service-nav__link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    text-decoration: none;
    color: #333333;
    transition: background 0.2s, color 0.2s;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.ib-service-nav__link:hover {
    background: rgba(42, 188, 162, 0.05);
    color: var(--wp--preset--color--primary);
}

.ib-service-nav__icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(42, 188, 162, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.ib-service-nav__link:hover .ib-service-nav__icon-wrap {
    background: rgba(42, 188, 162, 0.18);
}

.ib-service-nav__icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.ib-service-nav__label {
    font-size: 15px;
    font-weight: 500;
    flex: 1;
    line-height: 1.4;
    text-transform: capitalize;
}

.ib-service-nav__arrow {
    flex-shrink: 0;
    color: var(--wp--preset--color--primary);
    opacity: 0.5;
    transition: opacity 0.2s, transform 0.2s;
}

.ib-service-nav__link:hover .ib-service-nav__arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

@media (max-width: 900px) {
    .ib-service-nav { position: static; }
    .ib-service-nav__inner { flex-direction: column !important; }
    .ib-service-nav__divider { display: none; }
    .ib-service-nav__item { border-left: none !important; border-bottom: 1px solid #e4e4e4; }
    .ib-service-nav__item:last-child { border-bottom: none; }
    .ib-service-nav__link { padding: 16px 20px; }
}

/* =============================================
   SECTION HEADER  (shared across service sections)
   ============================================= */

.ib-section-header {
    margin-bottom: 48px;
}

.ib-section-eyebrow {
    display: inline-block !important;
    font-size: 11px !important;
    font-weight: 700;
    color: var(--wp--preset--color--primary) !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(42, 188, 162, 0.1);
    border-radius: 200px;
    padding: 4px 14px;
    margin: 0 0 20px !important;
}

/* =============================================
   SERVICE TRANSPORT SECTION  (service-transport pattern)
   ============================================= */

.ib-svc-transport-section {
    background: #ffffff;
    padding: 80px 0;
}

/* Section header: centered title + subtitle */
.ib-svc-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.ib-svc-section-title {
    font-weight: 600;
    line-height: normal;
    margin: 0 0 12px;
}

.ib-svc-section-subtitle {
    font-weight: 500;
    line-height: normal;
}

/* 2-column card grid */
.ib-svc-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 840px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .ib-svc-card-grid {
        grid-template-columns: 1fr;
    }
}

.ib-svc-photo-card {
    border-radius: 16px;
    overflow: hidden;
}

.ib-svc-photo-card__img-wrap {
    width: 100%;
    aspect-ratio: 400 / 220;
    overflow: hidden;
    border-radius: 16px;
}

.ib-svc-photo-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
    border-radius: 16px;
}

.ib-svc-photo-card:hover .ib-svc-photo-card__img {
    transform: scale(1.04);
}

.ib-svc-photo-card__body {
    padding: 20px 0 38px;
}

.ib-svc-photo-card__title {
    font-size: var(--wp--preset--font-size--xl);
    font-weight: 500;
    margin: 0 0 12px !important;
    line-height: normal;
}   

.ib-svc-photo-card__desc {
    line-height: normal;
    margin: 0 !important;
}

/* Centered contact button below cards */
.ib-svc-transport-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .ib-svc-transport-section { padding: 48px 0 64px; }
}

/* =============================================
   SERVICE WAREHOUSE SECTION  (service-warehouse pattern)
   ============================================= */

.ib-warehouse-section {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    background: url(../images/bg-service-warehouse.svg) no-repeat center top;
    background-size: cover;
}

.ib-warehouse-inner {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .ib-warehouse-section { padding: 48px 0 64px; }
}

/* =============================================
   SERVICE VEHICLE SECTION  (service-vehicle pattern)
   ============================================= */

.ib-vehicle-section {
    padding: 72px 0 96px;
}

/* Section title: white on dark */
.ib-vehicle-title {
    font-weight: 600;
    margin: 0 0 48px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* 4-column vehicle grid */
.ib-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Vehicle card: white bg, large rounded corners */
.ib-vehicle-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.ib-vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}
.ib-vehicle-card:hover .ib-vehicle-card__img-wrap {
    border-radius: 16px;
}

/* Photo area */
.ib-vehicle-card__img-wrap {
    width: 100%;
    aspect-ratio: 305/200;
    background: #e0e6e8;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    transition: border-radius 0.2s;
}

.ib-vehicle-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
    border-radius: 16px;
}

.ib-vehicle-card:hover .ib-vehicle-card__img {
    transform: scale(1.04);
}

.ib-vehicle-card__badge {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #333333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 8px;
    border-radius: 16px 0;
    background: rgba(255, 255, 255, 0.50);
    width: 76px;
    text-align: center;
}

.ib-vehicle-card__name {
    padding: 20px 12px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin: 0 !important;
    background: #ffffff;
    word-break: break-all;
}

/* Responsive */
@media (max-width: 1024px) {
    .ib-vehicle-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 767px) {
    .ib-vehicle-section { padding: 48px 0 64px; }
    .ib-vehicle-title { font-size: 28px !important; margin-bottom: 32px !important; }
    .ib-vehicle-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}


/* ==============================================
   OFFICE PAGE — BANNER VARIANT
   ============================================== */

.ib-page-banner--office.wp-block-cover {
    padding-bottom: 218px;
}

.ib-page-banner__inner--office {
    justify-content: center;
    align-items: center;
    padding-top: 46px;
}

.ib-office-body {
    background: url(../images/bg-image-rectangle.svg) no-repeat center 218px;
    background-size: cover;
}

/* ==============================================
   OFFICE INFO SECTION  bg: dark (matches banner)
   ============================================== */

.ib-office-info-section {
    padding: 0 0 80px;
}

/* Floating white card */
.ib-office-info-card-wrap {
    padding: 40px 80px 0;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

.ib-office-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: stretch;
    gap: 40px;
    border-radius: 16px;
    background: #F5F5F5;
}

.ib-office-info-col {
    flex: 1 1 0;
    min-width: 0;
}

.ib-office-info-col--right {
    flex: 0 0 60%;
    height: auto;
}

.ib-office-info-title {
    font-size: var(--wp--preset--font-size--2-xl);
    font-weight: 600;
    margin: 0 0 20px;
}

/* ── Office list ── */
.ib-office-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ib-office-list-item {
    padding: 20px 0;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #D8D8D8;
    transition: border-color 0.25s;
}

.ib-office-list-item--active {
    border-bottom-color: var(--wp--preset--color--primary);
}

/* Name row */
.ib-office-list-item__name {
    display: block;
    font-size: var(--wp--preset--font-size--xl);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: color 0.25s;
}

.ib-office-list-item--active .ib-office-list-item__name {
    color: var(--wp--preset--color--primary);
    text-transform: capitalize;
}

/* Detail block */
.ib-office-list-item__detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 8px;
}

.ib-office-list-item__addr,
.ib-office-list-item__contact {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.ib-office-list-item__contact > a {
    color: var(--wp--preset--color--foreground) !important;
    text-decoration: unset !important;
    text-underline-offset: unset !important;
    text-underline-position: unset !important;
}


.ib-office-map-swiper {
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
    height: 100%;
}

.ib-office-map-swiper .swiper-wrapper,
.ib-office-map-swiper .swiper-slide {
    height: 100%;
}

.ib-office-map-wrap {
    width: 100%;
    height: 100%;
}

.ib-office-map-wrap > iframe{
    height: 100%;
}

@media (max-width: 1199px) {
    .ib-office-map-wrap > iframe{
        min-height: 300px;
    }
}


.ib-office-map {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ── Contact page office-info overrides ── */
.ib-office-info-section--contact {
    background: #F5F5F5;
    padding-top: 80px;
}

.ib-office-info-card--contact {
    flex-direction: column;
    background: #ffffff;
    gap: 40px;
}

.ib-office-info-card--contact > .ib-office-info-title {
    text-align: center;
    font-size: var(--wp--preset--font-size--2-xl);
    font-weight: 600;
    margin: 0;
}

.ib-office-info-cols {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
}

.ib-office-info-cols .ib-office-info-col {
    flex: 1 1 0;
    min-width: 0;
}

.ib-office-info-cols .ib-office-info-col--right {
    flex: 0 0 600px;
}

@media (max-width: 1024px) {
    .ib-office-info-cols {
        flex-direction: column;
        gap: 32px;
    }
    .ib-office-info-cols .ib-office-info-col--right {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* ==============================================
   WAREHOUSE CARDS SECTION  bg: #ffffff
   ============================================== */

/* ==============================================
   OFFICE WAREHOUSES SECTION  (ib-office-wh-*)
   ============================================== */

.ib-office-wh-section {
    position: relative;
    overflow: hidden;
}

.ib-office-wh-section-title {
    font-weight: 600;
    margin-bottom: 52px;
}

/* ── Each alternating row ── */
.ib-office-wh-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    min-height: 620px;
    position: relative;
    z-index: 1;
    margin-bottom: 136px;
}

/* Even rows: circle flips to the left */
.ib-office-wh-rows .ib-office-wh-row:nth-child(even) {
    flex-direction: row-reverse;
}
.ib-office-wh-rows .ib-office-wh-row:last-child {
    margin-bottom: 0;
}

/* ── Info column ── */
.ib-office-wh-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    padding: 35px 131px 35px 0;
    text-align: right;
    position: relative;
}
.ib-office-wh-info::before {
    content: '';
    flex: 1;
}

/* Even rows: info is on the right, so less left-padding, more right-padding */
.ib-office-wh-rows .ib-office-wh-row:nth-child(even) .ib-office-wh-info {
    padding-left: 131px;
    padding-right: 0;
    text-align: left;
}

.ib-office-wh-name {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    line-height: normal;
}

.ib-office-wh-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ib-office-wh-meta li {
    font-size: var(--wp--preset--font-size--md);
    font-weight: 500;
    line-height: normal;
}

/* Connector: teal dot + dashed vertical line */
.ib-office-wh-connector {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    margin-top: 11px;
}

.ib-office-wh-connector__dot {
    width: 24px;
    height: 24px;
}

.ib-office-wh-connector__line {
    margin-top: 13px;
    background: url(../images/corner-left-down.svg) no-repeat center top;
    background-size: contain;
    width: 214px;
    height: 166px;
    margin-right: -194px;
}

.ib-office-wh-circle-col {
    flex: 0 0 750px;
    position: relative;
    max-width: 750px;
    aspect-ratio: 750 / 614;
    overflow: hidden;
}

.ib-office-wh-circle-clip {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

/* Even rows: circle bleeds toward the LEFT edge */
.ib-office-wh-rows .ib-office-wh-row:nth-child(even) .ib-office-wh-connector {
    align-items: flex-start;
}
.ib-office-wh-rows .ib-office-wh-row:nth-child(even) .ib-office-wh-connector__line {
    background-image: url(../images/corner-right-down.svg);
    margin-right: 0;
    margin-left: -194px;
}

/* Swiper inside the circle: fills the circle */
.ib-office-wh-swiper {
    width: 100%;
    height: 100%;
}

.ib-office-wh-swiper .swiper-wrapper,
.ib-office-wh-swiper .swiper-slide {
    height: 100%;
}

.ib-office-wh-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 50%;
}

/* COMING SOON circle */
.ib-office-wh-circle-clip--coming-soon {
    background: #b2e4db;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.ib-office-wh-coming-soon {
    font-size: 48px;
    font-weight: 400;
    color: var(--wp--preset--color--primary-accent);
    text-align: center;
}

/* Swiper pagination (outside the circle) */
.ib-office-wh-pag {
    position: absolute;
    --swiper-pagination-bottom: 21px;
    display: flex;
    justify-content: center;
    gap: 20px;
    min-height: 16px;
}

.ib-office-wh-pag .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    opacity: 1;
    cursor: pointer;
    transition: background 0.2s;
    margin: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ib-office-wh-pag .swiper-pagination-bullet::after {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.30);
    transition: background 0.2s;
}

.ib-office-wh-pag .swiper-pagination-bullet-active::after {
    background: var(--wp--preset--color--primary);
}


/* ==============================================
   RESPONSIVE: OFFICE PAGE
   ============================================== */

@media (max-width: 1100px) {
    .ib-office-info-card-wrap {
        padding: 40px 40px 0;
    }

    .ib-office-info-card {
        flex-direction: column;
        gap: 40px;
    }

    .ib-office-info-col--right {
        flex: 1 1 auto;
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .ib-office-wh-section-title {
        margin-bottom: 32px;
    }

    .ib-office-wh-row {
        flex-direction: column;
        min-height: auto;
        margin-bottom: 64px;
    }

    .ib-office-wh-rows .ib-office-wh-row:nth-child(even) {
        flex-direction: column;
    }

    .ib-office-wh-circle-col {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        order: 1;
        padding-top: 0;
    }

    .ib-office-wh-info,
    .ib-office-wh-rows .ib-office-wh-row:nth-child(even) .ib-office-wh-info {
        padding: 32px 40px 24px;
        order: 2;
        text-align: left;
    }

    .ib-office-wh-connector {
        display: none;
    }

    .ib-office-wh-name {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .ib-page-banner--office {
        min-height: 260px !important;
    }

    .ib-office-info-section {
        padding: 0 0 48px;
    }

    .ib-office-info-card-wrap {
        padding: 16px 16px 0;
    }

    .ib-office-info-card {
        flex-direction: column;
        padding: 32px 24px;
        gap: 32px;
        border-radius: 12px;
    }

    .ib-office-info-col--right {
        flex: 1 1 auto;
        width: 100%;
    }

    .ib-office-info-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .ib-office-wh-section-title {
        margin-bottom: 24px;
    }

    .ib-office-wh-row {
        margin-bottom: 40px;
    }
    .ib-office-wh-info,
    .ib-office-wh-rows .ib-office-wh-row:nth-child(even) .ib-office-wh-info {
        padding: 24px 16px 16px;
    }

    .ib-office-wh-name {
        font-size: 18px;
    }

    .ib-office-wh-meta li {
        font-size: 13px;
    }

    .ib-office-wh-coming-soon {
        font-size: 28px;
    }
}

/* ==============================================
   ABOUT PAGE
   ============================================= */

body.page-template-page-about .site-header__nav {
    background: transparent;
    border-bottom: none;
}
.ib-page-banner--about.wp-block-cover {
    padding: 0;
}
.ib-page-banner__inner--about {
    padding-top: 166px;
}
.ib-about-banner-bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 90px 0 222px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}
@media (max-width: 1199px) {
    .ib-about-banner-bg {
        background: none;
    }
}
.ib-about-subnav {
    width: 100%;
}
.ib-about-subnav__list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    list-style: none;
    padding: 0;
    margin: 0;
}
.ib-about-subnav__item {
    flex: 1;
    max-width: 213px;
    aspect-ratio: 213 / 200;
}
.ib-about-subnav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px 20px 24px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.25s, background 0.25s;
    height: 100%;
    box-sizing: border-box;
}

.ib-about-subnav__link:hover {
    color: var(--wp--preset--color--primary);
    background: rgba(255, 255, 255, 0.05);
}

/* SVG icon wrapper */
.ib-about-subnav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    color: inherit;
    transition: color 0.25s;
}

.ib-about-subnav__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Text label */
.ib-about-subnav__label {
    font-size: var(--wp--preset--font-size--md);
    font-weight: 500;
    color: inherit;
}

/* ==============================================
   ABOUT PAGE  —  INTRO SECTION  bg: #ffffff
   ============================================= */

.ib-about-intro-section {
    background: #ffffff;
    padding: 120px 0 80px;
    background: url(../images/bg-trucks.svg) no-repeat center top;
    background-size: 446ppx;
}
@media (max-width: 1199px) {
    .ib-about-intro-section {
        background: none;
    }
}

.ib-about-intro-inner {
    display: flex;
    flex-direction: column;
    padding-left: 200px;
}
.ib-about-intro-title {
    font-weight: 600;
    margin: 0;
    line-height: 2;
}
.ib-about-intro-subtitle {
    line-height: 2;
    font-weight: normal;
}

/* Body text, same left indent as line 2 */
.ib-about-intro-body {
    font-weight: 500;
    margin: 0 0 80px;
    max-width: 889px;
}

/* Images: 2-column grid */
.ib-about-intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.ib-about-intro-img-wrap {
    overflow: hidden;
    border-radius: 6px;
}

.ib-about-intro-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ib-about-intro-img-wrap:hover .ib-about-intro-img {
    transform: scale(1.03);
}

/* ==============================================
   ABOUT PAGE  —  PHILOSOPHY COVER
   ============================================= */

/* Cover block base overrides */
.ib-about-philosophy-cover.wp-block-cover {
    background-color: var(--wp--preset--color--primary);
    min-height: auto;
    padding: 80px 0;
    background-size: cover;
    background-position: right center;
    min-height: 432px;
}
.ib-about-philosophy-cover .wp-block-cover__inner-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ib-about-philosophy-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    color: #ffffff;
}
.ib-about-philosophy-title {
    margin: 0;
    font-weight: 600;
}
.ib-about-philosophy-badge {
    display: inline-block;
    color: #ffffff;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.9;
}
.ib-about-philosophy-body {
    font-weight: 500;
    line-height: normal;
    max-width: 666px;
}

@media (max-width: 767px) {
    .ib-about-philosophy-cover.wp-block-cover {
        background-position: center;
    }
    .ib-about-philosophy-badge {
        font-size: var(--wp--preset--font-size--xl);
    }
}

/* ============================================== */

/* ==============================================
   ABOUT PAGE  —  PRESIDENT SECTION  bg: #ffffff
   ============================================= */

.ib-about-president-section {
    background: #ffffff;
}
.ib-about-president-outer {
    max-width: 1920px;
    margin: 0 auto;
    padding: 200px 0 85px;
    box-sizing: border-box;
    background: url(../images/bg-trucks.svg) no-repeat center top;
    background-size: 446px;
}
.ib-about-president-header {
    background: #f5f5f5;
    padding: 0 74px 22px;
    margin-bottom: 58px;
}
@media (max-width: 1024px) {
    .ib-about-president-header  {
        padding: 0 24px 22px;
    }
}

.ib-about-president-title {
    font-size: var(--wp--preset--font-size--2-xl);
    font-style: normal;
    font-weight: 600;
    line-height: 2.5;
    margin: 0;
}

.ib-about-president-quote {
    font-size: 32px;;
    font-weight: 600;
    color: var(--wp--preset--color--primary);
    line-height: 1.9;
    margin: 0;
}

.ib-about-president-wrap {
    display: flex;
    gap: 48px;
    align-items: stretch;
}

.ib-about-president-col--text {
    flex: 1;
    min-width: 0;
    padding: 0 74px;
}
@media (max-width: 1024px) {
    .ib-about-president-col--text  {
        padding: 0;
    }
}
.ib-about-president-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.ib-about-president-body p {
    color: #100F25;
    font-size: var(--wp--preset--font-size--md);
    line-height: normal;
    margin: 0;
}

.ib-about-president-signature {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 32px;
    padding-top: 20px;
}

.ib-about-president-role {
    font-size: 18px;
    color: #100F25;
    flex-shrink: 0;
}

.ib-about-president-name {
    color: #100F25;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: 'Zhi Mang Xing', sans-serif;
}
@media (max-width: 767px) {
    .ib-about-president-signature {
        flex-wrap: wrap;
    }
    .ib-about-president-role {
        font-size: 16px;
    }
    .ib-about-president-name {
        font-size: 28px;
        white-space: nowrap;
    }
}

.ib-about-president-photo {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 16px 0 0 16px; /* no radius on right side */
    display: block;
}

/* ==============================================
   ABOUT PAGE  —  COMPANY PROFILE
   ============================================= */

.ib-about-profile-section {
    background: #e8f5f2;
    padding: 80px 0;
    background-image: url(../images/bg-image-rectangle.svg);
    background-repeat: no-repeat;
}

.ib-about-profile-inner {
    max-width: 840px;
    margin: 0 auto;
}

.ib-about-profile-title {
    font-weight: 600;
    margin: 0 0 40px;
}

/* White card wrapping the table */
.ib-about-profile-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    overflow: hidden;
}

.ib-about-profile-table {
    width: 100%;
    border-collapse: collapse;
}

.ib-about-profile-row {
    border-top: 1px dashed #ccc;
}

.ib-about-profile-row:first-child {
    border-top: none;
}

.ib-about-profile-key {
    width: 200px;
    min-width: 100px;
    padding: 16px 40px;
    font-size: var(--wp--preset--font-size--md);
    font-weight: 400;
    vertical-align: top;
    text-align: left;
    border-right: 1px dashed #CCC;
}

.ib-about-profile-val {
    padding: 16px 40px;
    font-size: var(--wp--preset--font-size--md);
    font-weight: 500;
    vertical-align: top;
    line-height: 1.75;
}

.ib-about-profile-val p {
    margin: 0;
}

.ib-about-profile-map-link {
    color: var(--wp--preset--color--primary);
    text-decoration: none;
    font-size: var(--wp--preset--font-size--md);
    margin-left: 6px;
}

.ib-about-profile-map-link:hover {
    text-decoration: underline;
}

.ib-about-profile-office {
    margin-bottom: 18px;
}
.ib-about-profile-office a:not(.ib-about-profile-map-link) {
    color: var(--wp--preset--color--foreground) !important;
    text-decoration: none !important;
}

.ib-about-profile-office:last-child {
    margin-bottom: 0;
}

.ib-about-profile-office-name {
    font-weight: 500;
    margin: 0;
}

/* Warehouse entries (倉庫) */
.ib-about-profile-warehouse {
    margin-bottom: 18px;
}

.ib-about-profile-warehouse:last-child {
    margin-bottom: 0;
}

.ib-about-profile-warehouse-name {
    font-weight: 500;
    margin: 0;
}

.ib-about-profile-biz {
    margin: 0;
}

.ib-about-profile-officers > p {
    margin: 0 0 27px;
}

.ib-about-profile-advisor-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 27px;
}
.ib-about-profile-advisor-row:first-child {
    margin-top: 0;
}

.ib-about-profile-advisor-label {
    flex: 0 0 114px;
    white-space: nowrap;
    text-align: right;
}

.ib-about-profile-advisor-names p {
    margin: 0 0 3px;
}

@media (max-width: 767px) {
    .ib-about-profile-map-link {
        font-size: 13px;
    }
    .ib-about-profile-advisor-row {
        gap: 8px;
        margin-top: 16px;
    }
    .ib-about-profile-advisor-label {
        flex: 0 0 92px;
    }
}

/* ==============================================
   ABOUT PAGE  —  HISTORY  bg: #0d1f1c (dark)
   ============================================= */

/* --- section shell --- */
.ib-about-history-section {
    position: relative;
    background: url(../images/bg-about-history.png) no-repeat center;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    overflow: hidden;
}

/* dark photo overlay */
.ib-about-history-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
    pointer-events: none;
}

/* centred inner container */
.ib-about-history-inner {
    position: relative;
    z-index: 1;
    max-width: 1024px;
    margin: 0 auto;
}

.ib-about-history-title {
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 40px;
}

/* ---- zigzag timeline ---- */
.ib-about-history-timeline {
    position: relative;
    padding-top: 84px;
}

/* vertical dashed centre line */
.ib-about-history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: 8px;
    height: 88px;
    background-color: rgba(255, 255, 255, 0.30);
    border-radius: 8px;
    z-index: 0;
}

/* row */
.ib-tl-item {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
    position: relative;
    min-height: 116px;
}

/* left / right halves */
.ib-tl-side {
    flex: 1;
    padding: 0 28px;
    min-width: 0;
}
.ib-tl-side--left {
    text-align: right;
    padding-right: 60px;
}
.ib-tl-side--right {
    text-align: left;
    padding-left: 60px;
}

/* dot column */
.ib-tl-center {
    flex-shrink: 0;
    width: 24px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.ib-tl-center::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 30px;
    bottom: 0;
    transform: translateX(-50%);
    width: 8px;
    height: 88px;
    background-color: rgba(255, 255, 255, 0.30);
    border-radius: 8px;
    z-index: 0;
}

.ib-tl-dot {
    display: inline-flex;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 4px;
    border: 1px dashed var(--wp--preset--color--primary);
    border-radius: 50%;
    flex-shrink: 0;
}
.ib-tl-dot::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--wp--preset--color--primary);
}

/* date pill badge */
.ib-tl-badge {
    display: inline-block;
   border: 1px dashed #FFF;
    border-radius: 100px;
    padding: 2px 12px;
    color: #ffffff;
    font-size: var(--wp--preset--font-size--lg);
    font-weight: 500;
    margin-bottom: 12px;
    white-space: nowrap;
    line-height: normal;
}

/* event text */
.ib-tl-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--wp--preset--font-size--md);
    font-weight: 500;
    line-height: 1.75;
    margin: 0;
}

/* ==============================================
   ABOUT PAGE  —  RESPONSIVE
   ============================================= */

@media (max-width: 1199px) {
    .ib-about-president-outer {
        padding: 200px 0 40px;
    }
}

@media (max-width: 1024px) {
    .ib-about-president-header {
        border-radius: 4px; /* restore full radius when not flush */
    }

    .ib-about-president-wrap {
        flex-direction: column;
        gap: 36px;
    }

    .ib-about-president-photo {
        min-height: auto;
        height: 320px;
        border-radius: 4px;
    }
}

@media (max-width: 767px) {
    .ib-about-subnav__list {
        flex-wrap: wrap;
    }
    .ib-about-subnav__item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .ib-about-subnav__item:nth-child(3),
    .ib-about-subnav__item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    .ib-about-subnav__item:nth-child(3) {
        border-left: none;
    }
    .ib-about-subnav__link {
        padding: 20px 12px 16px;
        gap: 10px;
    }
    .ib-about-subnav__icon {
        width: 36px;
        height: 36px;
    }
    .ib-about-subnav__icon svg {
        width: 36px;
        height: 36px;
    }
    .ib-about-subnav__label {
        font-size: 12px;
    }

    .ib-about-intro-section,
    .ib-about-president-section,
    .ib-about-history-section {
        padding: 48px 0;
    }

    .ib-about-profile-section {
        padding: 48px 0;
    }

    .ib-about-profile-card {
        padding: 8px;
    }

    .ib-about-intro-title {
        font-size: 17px;
    }

    .ib-about-intro-subtitle {
        font-size: var(--wp--preset--font-size--xl);
        padding-left: 20px;
    }

    .ib-about-intro-body {
        padding-left: 20px;
    }

    .ib-about-intro-images {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ib-about-intro-img {
        height: 240px;
    }

    .ib-about-president-wrap {
        flex-direction: column;
        gap: 28px;
    }

    .ib-about-president-photo {
        min-height: auto;
        height: 260px;
    }

    .ib-about-president-title {
        font-size: var(--wp--preset--font-size--xl);
    }

    .ib-about-president-quote {
        font-size: 16px;
    }

    .ib-about-profile-key {
        width: 80px;
        min-width: 80px;
        padding: 12px;
        font-size: 13px;
    }
    .ib-about-profile-val {
        font-size: 13px;
        padding: 12px;
    }
    .ib-about-history-inner {
        padding: 0 16px;
    }
    .ib-about-history-timeline {
        padding-top: 0;
    }
    .ib-about-history-timeline::before {
        display: none;
    }
    .ib-tl-item {
        flex-direction: column;
        padding-left: 26px;
        margin-bottom: 28px;
    }
    .ib-tl-side--left,
    .ib-tl-side--right {
        flex: none;
        width: 100%;
        text-align: left;
        padding: 0;
        order: 2;
    }
    .ib-tl-center {
        position: absolute;
        left: 0;
        top: 6px;
        padding-top: 0;
    }
}

/* ==============================================
   SAFETY PAGE — BANNER VARIANT
   ============================================== */

.ib-page-banner--safety {
    min-height: 540px !important;
}
.ib-page-banner--safety .wp-block-cover__background {
    background: transparent;
    opacity: 0;
}

.ib-safety-banner-bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 48px 20px 60px;
    max-width: 1280px;
    margin: 0 auto;
}

.ib-page-banner__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 8px;
}

@media (max-width: 1199px) {
    .ib-safety-banner-bg {
        padding: 40px 20px 40px;
    }
}

@media (max-width: 600px) {
    .ib-page-banner--safety { min-height: 480px !important; }
    .ib-page-banner__subtitle { font-size: 15px; }
}

/* ==============================================
   SAFETY PAGE  —  CSR MANAGEMENT
   ============================================= */

.ib-safety-csr-section {
    background: #ffffff;
    overflow: hidden;
    padding: 80px 0;
}

.ib-safety-csr-content {
    display: flex;
    align-items: flex-start;
    margin-top: 60px;
}

.ib-safety-csr-text-block {
    display: flex;
    flex-direction: column;
    padding: 38px 80px;
    background-color: #F5F5F5;
}

@media (max-width: 767px) {
    .ib-safety-csr-text-block {
        padding: 20px;
    }
}

.ib-safety-csr-title {
    font-size: var(--wp--preset--font-size--2-xl);
    font-weight: 600;
    margin: 0;
    line-height: 2.5;
}

.ib-safety-csr-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (max-width: 1024px) {
    .ib-safety-csr-body {
        max-width: none;
    }
}

.ib-safety-csr-body p {
    font-size: 16px;
    line-height: normal;
    margin: 0;
}

.ib-safety-csr-pillars {
    display: flex;
    flex: 1;
    gap: 0;
    padding-bottom: 59px;
}

.ib-safety-csr-pillar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 0 16px;
}

.ib-safety-csr-pillar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.ib-safety-csr-pillar__title {
    text-align: center;
    font-size: var(--wp--preset--font-size--xl);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.ib-safety-csr-pillar__desc {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    text-transform: capitalize;
}

/* ==============================================
   SAFETY PAGE  —  SAFETY INITIATIVES GRID
   ============================================= */

.ib-safety-initiatives-section {
    background: #ffffff;
    padding: 0 0 80px;
}

.ib-safety-initiatives-inner {
    width: 100%;
}

.ib-safety-initiatives-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.ib-safety-initiatives-title {
    font-size: var(--wp--preset--font-size--2-xl);
    font-weight: 600;
    margin: 0;
    line-height: normal;
    text-transform: capitalize;
}

.ib-safety-initiatives-intro {
    font-size: var(--wp--preset--font-size--xl);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.ib-safety-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ib-safety-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
}

.ib-safety-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ib-safety-item__photo {
    position: relative;
    aspect-ratio: 550 / 350;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
}

.ib-safety-item__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ib-safety-item__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ib-safety-item__title {
    font-size: var(--wp--preset--font-size--xl);
    font-weight: 500;
    margin: 0;
    line-height: normal;
    text-transform: capitalize;
}

.ib-safety-item__desc {
    font-size: 16px;
    line-height: normal;
    margin: 0;
    text-transform: capitalize;
}

/* ==============================================
   SAFETY PAGE  —  RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
    .ib-safety-csr-content {
        padding: 48px 0;
    }
    .ib-safety-csr-photo {
        width: 100%;
        position: relative;
        max-width: 40%;
    }
    .ib-safety-csr-photo img {
        border-radius: 0;
    }
}

@media (max-width: 767px) {
    .ib-safety-csr-section {
        padding-bottom: 48px;
    }
    .ib-safety-csr-content {
        padding: 0;
        gap: 32px;
    }
    .ib-safety-csr-title {
        font-size: 28px;
    }
    .ib-safety-csr-pillars {
        flex-direction: column;
        gap: 24px;
        padding-bottom: 0;
    }
    .ib-safety-csr-pillar + .ib-safety-csr-pillar {
        border-left: none;
        border-top: 1px solid #e4e4e4;
        padding: 24px 0 0;
    }
    .ib-safety-initiatives-section {
        padding: 48px 0;
    }
    .ib-safety-initiatives-title {
        font-size: 28px;
    }
    .ib-safety-initiatives-intro {
        font-size: 14px;
    }
    .ib-safety-grid-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ib-safety-item__title {
        font-size: 18px;
    }
    .ib-safety-item__desc {
        font-size: 14px;
    }
    .ib-safety-csr-photo {
        display: none;
    }
}

/* ==============================================
   NEWS ARCHIVE — BANNER VARIANT
   ============================================== */

.ib-page-banner--news.wp-block-cover {
    min-height: 400px !important;
}

.ib-page-banner--news .wp-block-cover__inner-container {
    justify-content: center;
    align-items: center;
}

.ib-page-banner__inner--news {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

@media (max-width: 600px) {
    .ib-page-banner--news.wp-block-cover {
        min-height: 280px !important;
    }
    .ib-page-banner__inner--news {
        padding: 32px 0;
    }
}

/* ==============================================
   NEWS ARCHIVE — PAGE TITLE
   ============================================== */

.ib-news-page-header {
    background: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.ib-news-page-title.wp-block-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    text-transform: capitalize;
}

/* ==============================================
   NEWS ARCHIVE — HERO FEATURED POST
   ============================================== */

.ib-news-hero-section {
    background: #ffffff;
    padding: 0 0 56px;
}

.ib-news-hero-query.wp-block-query {
    display: block;
}

.ib-news-hero-template.wp-block-post-template {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.ib-news-hero-card.wp-block-group {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    display: block !important;
}

.ib-news-hero-card .ib-news-hero-card__image.wp-block-post-featured-image {
    margin: 0;
    line-height: 0;
    flex-shrink: 0;
}

.ib-news-hero-card .ib-news-hero-card__image.wp-block-post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.ib-news-hero-card:hover .ib-news-hero-card__image.wp-block-post-featured-image img {
    transform: scale(1.03);
}

.ib-news-hero-card .ib-news-hero-card__image.wp-block-post-featured-image:empty {
    height: 400px;
    background: linear-gradient(135deg, #d0ede9 0%, #b8e2dc 100%);
}
.ib-news-hero-card__link {
    position: absolute;
    z-index: 1;
    inset: 0;
}

.ib-news-hero-card__overlay.wp-block-group {
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 40px 40px !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    min-height: 0 !important;
}

.ib-news-hero-card__cat.wp-block-post-terms {
    font-size: 0;
    line-height: 1;
    position: relative;
    z-index: 2;
    gap: 4px;
    flex-wrap: wrap;
    display: flex;
}

.ib-news-hero-card__cat.wp-block-post-terms .ib-news-hero-card__cat-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: var(--wp--preset--color--primary);
    color: #ffffff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    line-height: normal;
    white-space: nowrap;
    text-transform: capitalize;
}

.ib-news-hero-card__date.wp-block-post-date,
.ib-news-hero-card__date.wp-block-post-date time {
    font-size: 12px;
    color: #ffffff;
    font-weight: 400;
    text-decoration: none;
}

.ib-news-hero-card__date.wp-block-post-date a {
    color: inherit;
    text-decoration: none;
}

.ib-news-hero-card__title.wp-block-post-title {
    font-size: var(--wp--preset--font-size--xl);
    font-weight: 500;
    color: #ffffff;
    line-height: normal;
    margin: 0;
    position: relative;
    z-index: 2;
    text-transform: capitalize;
}

.ib-news-hero-card__title.wp-block-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.ib-news-hero-card__title.wp-block-post-title a::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: 16px;
}

@media (max-width: 1199px) {
    .ib-news-hero-section {
        padding-bottom: 48px;
    }
    .ib-news-hero-card .ib-news-hero-card__image.wp-block-post-featured-image img,
    .ib-news-hero-card .ib-news-hero-card__image.wp-block-post-featured-image:empty {
        height: 360px;
    }
}

@media (max-width: 767px) {
    .ib-news-page-header {
        padding: 48px 0 28px;
    }
    .ib-news-page-title.wp-block-heading {
        font-size: 26px;
    }
    .ib-news-hero-section {
        padding-bottom: 36px;
    }
    .ib-news-hero-card .ib-news-hero-card__image.wp-block-post-featured-image img,
    .ib-news-hero-card .ib-news-hero-card__image.wp-block-post-featured-image:empty {
        height: 260px;
    }
    .ib-news-hero-card__overlay.wp-block-group {
        padding: 60px 20px 24px !important;
    }
    .ib-news-hero-card__title.wp-block-post-title {
        font-size: 17px;
    }
}

/* ==============================================
   NEWS ARCHIVE — SECTION LAYOUT
   ============================================== */

.ib-news-section {
    background: #ffffff;
    padding: 0 0 80px;
}

/* Header row: subtitle left + filter tabs right */
.ib-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.ib-news-subtitle {
    font-size: var(--wp--preset--font-size--xl);
    font-weight: 500;
    margin: 0;
    line-height: normal;
}

/* ==============================================
   NEWS ARCHIVE — CATEGORY FILTER TABS
   ============================================== */

.ib-news-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ib-news-filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    font-size: var(--wp--preset--font-size--base);
    color: var(--wp--preset--color--foreground);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
    text-transform: capitalize;
    text-transform: capitalize;
    word-break: break-all;
}

.ib-news-filter-btn:hover {
    background: transparent;
    border-bottom-color: rgba(42, 188, 162, 0.45);
    color: var(--wp--preset--color--primary);
    text-decoration: none;
}

.ib-news-filter-btn.is-active {
    background: transparent;
    border-bottom-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--primary);
}

/* ==============================================
   NEWS ARCHIVE — POST GRID
   ============================================== */

/* Override WP grid gap */
.wp-block-post-template.ib-news-grid {
    gap: 24px !important;
}

/* Tablet: 2 columns */
@media (max-width: 991px) {
    .wp-block-post-template.ib-news-grid.is-layout-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile: 1 column */
@media (max-width: 767px) {
    .wp-block-post-template.ib-news-grid.is-layout-grid {
        grid-template-columns: 1fr !important;
    }
}

/* PHP pattern grid */
.ib-news-grid-php {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .ib-news-grid-php {
        grid-template-columns: 1fr;
    }
}

/* ==============================================
   NEWS ARCHIVE — CARD
   ============================================== */

.ib-news-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ib-news-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
}

/* Featured image */
.ib-news-card .ib-news-card__image.wp-block-post-featured-image {
    margin: 0;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 16px;
    background: transparent;
    line-height: 0;
}

/* PHP grid: image wrapper needs position for badge overlay */
.ib-news-grid-php .ib-news-card .ib-news-card__image.wp-block-post-featured-image {
    position: relative;
}

/* Category badge overlaid on image (PHP pattern) */
.ib-news-card__image .ib-news-card__cat {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.ib-news-card__image .ib-news-card__cat-badge {
    align-items: center;
    padding: 4px 12px;
    background: var(--wp--preset--color--primary);
    color: #ffffff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    line-height: normal;
    white-space: nowrap;
    height: auto;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}

.ib-news-card .ib-news-card__image.wp-block-post-featured-image img {
    width: 100%;
    aspect-ratio: 396 / 250;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.35s ease;
}

.ib-news-card:hover .ib-news-card__image.wp-block-post-featured-image img {
    transform: scale(1.04);
}

/* Placeholder when no featured image */
.ib-news-card__image-placeholder {
    width: 100%;
    aspect-ratio: 396 / 250;
    border-radius: 16px;
    background: #e6e6e6;
    display: block;
}

/* Card body */
.ib-news-card__body.wp-block-group {
    padding: 20px !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

/* Meta row: date + category */
.ib-news-card__meta.wp-block-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    min-height: 0 !important;
    gap: 8px !important;
}

/* Date */
.ib-news-card__date.wp-block-post-date,
.ib-news-card__date.wp-block-post-date time {
    font-size: 12px;
    color: #888888;
    font-weight: 400;
    text-decoration: none;
}

.ib-news-card__date.wp-block-post-date a {
    color: inherit;
    text-decoration: none;
}

/* Category badge */
.ib-news-card__cat.wp-block-post-terms {
    line-height: 1;
    font-size: 0;
    position: relative;
    z-index: 2;
}

.ib-news-card__cat.wp-block-post-terms a {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(42, 188, 162, 0.12);
    color: var(--wp--preset--color--primary);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.ib-news-card__cat.wp-block-post-terms a:hover {
    background: var(--wp--preset--color--primary);
    color: #ffffff;
}

/* Card title */
.ib-news-card__title.wp-block-post-title {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: #333333;
    margin: 0;
    text-transform: capitalize;
}

.ib-news-card__title.wp-block-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
    max-height: 74px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

/* Overlay link: title a::before covers the whole card */
.ib-news-card__title.wp-block-post-title a::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 12px;
}

.ib-news-card:hover .ib-news-card__title.wp-block-post-title a {
    color: var(--wp--preset--color--primary);
}

/* ==============================================
   NEWS ARCHIVE — PAGINATION
   ============================================== */

.ib-news-pagination.wp-block-query-pagination,
nav.ib-news-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 60px;
}

/* First / last page buttons (PHP pattern) */
.ib-news-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    background: #ffffff;
    color: #333333;
    text-decoration: none;
    line-height: 1;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
}

.ib-news-page-btn:hover {
    background: rgba(42, 188, 162, 0.08);
    border-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--primary);
    text-decoration: none;
}

.ib-news-page-btn.is-disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: default;
}

.ib-news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    background: #ffffff;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ib-news-pagination .page-numbers:hover {
    background: rgba(42, 188, 162, 0.08);
    border-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--primary);
}

.ib-news-pagination .page-numbers.current {
    background: var(--wp--preset--color--primary);
    border-color: var(--wp--preset--color--primary);
    color: #ffffff;
    cursor: default;
}

.ib-news-pagination .page-numbers.dots {
    border: none;
    background: none;
    color: #888888;
    min-width: auto;
    padding: 0 4px;
    pointer-events: none;
}

.ib-news-pagination .wp-block-query-pagination-previous,
.ib-news-pagination .wp-block-query-pagination-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    background: #ffffff;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    gap: 6px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ib-news-pagination .wp-block-query-pagination-previous:hover,
.ib-news-pagination .wp-block-query-pagination-next:hover {
    background: rgba(42, 188, 162, 0.08);
    border-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--primary);
}

/* Empty state */
.ib-news-empty.wp-block-paragraph {
    text-align: center;
    color: #888888;
    font-size: 16px;
    padding: 60px 0;
    margin: 0;
}

/* ==============================================
   NEWS ARCHIVE — RESPONSIVE
   ============================================== */

@media (max-width: 1199px) {
    .ib-news-section {
        padding: 0 0 60px;
    }
}

@media (max-width: 900px) {
    .ib-news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 36px;
    }
}

@media (max-width: 767px) {
    .ib-news-section {
        padding: 0 0 48px;
    }
    .ib-news-header {
        margin-bottom: 28px;
    }
    .ib-news-filter-btn {
        font-size: 13px;
    }
    .ib-news-pagination.wp-block-query-pagination {
        margin-top: 40px;
        gap: 4px;
    }
    .ib-news-pagination .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ib-news-filters {
        gap: 8px;
    }
    .ib-news-filter-btn {
        font-size: 12px;
    }
}

/* ==============================================
   CAREERS PAGE — BANNER
   ============================================== */

.ib-page-banner--careers.wp-block-cover {
    min-height: 540px !important;
}

.ib-careers-banner-bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 48px 0;
}

@media (max-width: 600px) {
    .ib-page-banner--careers.wp-block-cover {
        min-height: 320px !important;
    }
    .ib-careers-banner-bg {
        padding: 32px 0;
    }
}

/* ==============================================
   CAREERS PAGE — LISTING SECTION
   ============================================== */

.site-main--careers {
    background: #f5f5f5;
}

.ib-careers-section {
    background: #ffffff;
    padding: 40px 0 80px;
}

.ib-careers-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Top: title + search — centered column */
.ib-careers-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    text-align: center;
}

.ib-careers-title {
    font-size: 40px;
    font-weight: 700;
    color: #100F25;
    margin: 0;
    line-height: 1.25;
}

/* Search form */
.ib-careers-search-form {
    width: 100%;
    max-width: 560px;
}

.ib-careers-search-box {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #ffffff;
    border: 1.5px solid var(--wp--preset--color--primary);
    border-radius: 100px;
    padding-right: 6px;
    transition: box-shadow 0.2s;
}

.ib-careers-search-box:focus-within {
    box-shadow: 0 0 0 3px rgba(42, 188, 162, 0.15);
}

.ib-careers-search-input {
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    padding: 0 20px;
    font-size: 15px;
    color: #333333;
    outline: none;
    font-family: inherit;
    width: 100%;
}

.ib-careers-search-input::placeholder {
    color: #aaaaaa;
}

.ib-careers-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--wp--preset--color--primary-accent);
    border: none;
    cursor: pointer;
    color: #ffffff;
    transition: background 0.2s;
}

.ib-careers-search-btn:hover {
    background: var(--wp--preset--color--primary);
}

/* Location filter tabs — centered, underline style */
.ib-careers-filters {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ib-careers-filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
    color: #333;
}

.ib-careers-filter-btn:hover {
    color: var(--wp--preset--color--primary);
    border-bottom-color: var(--wp--preset--color--primary);
    background: transparent;
    text-decoration: none;
}

.ib-careers-filter-btn.is-active {
    color: var(--wp--preset--color--primary);
    border-bottom-color: var(--wp--preset--color--primary);
    font-weight: 500;
    background: transparent;
}

/* Job card grid — 3 columns */
.ib-careers-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Job card */
.ib-careers-card {
    flex: 0 0 calc(100% / 3 - 16px);
    background: #ffffff;
    border: 1px solid #BDBDBD;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ib-careers-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}
.ib-careers-card:focus-visible {
    outline: none;
}

.ib-careers-card__head {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ib-careers-card__date {
    font-size: 12px;
    color: #888888;
    margin: 0;
}

.ib-careers-card__title {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Meta rows: salary + location */
.ib-careers-card__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ib-careers-card__meta-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
    word-break: break-all;
}

.ib-careers-card__meta-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA buttons */
.ib-careers-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.ib-careers-card__btn {
   display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px 12px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.ib-careers-card__btn--primary {
    background: var(--wp--preset--color--primary);
    color: #ffffff;
    border: 1px solid var(--wp--preset--color--primary);
}

.ib-careers-card__btn--primary:hover {
    background: var(--wp--preset--color--primary-accent);
    border-color: var(--wp--preset--color--primary-accent);
    color: #ffffff;
    text-decoration: none;
}

.ib-careers-card__btn--secondary {
    background: transparent;
    color: var(--wp--preset--color--primary);
    border: 1px solid var(--wp--preset--color--primary);
}

.ib-careers-card__btn--secondary:hover {
    background: rgba(42, 188, 162, 0.08);
    color: var(--wp--preset--color--primary);
    text-decoration: none;
}

/* Empty state */
.ib-careers-empty {
    text-align: center;
    color: #888888;
    font-size: 16px;
    padding: 60px 0;
    margin: 0;
}

/* Pagination */
.ib-careers-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.ib-careers-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    background: #ffffff;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ib-careers-pagination .page-numbers:hover {
    background: rgba(42, 188, 162, 0.08);
    border-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--primary);
}

.ib-careers-pagination .page-numbers.current {
    background: var(--wp--preset--color--primary);
    border-color: var(--wp--preset--color--primary);
    color: #ffffff;
    cursor: default;
}

.ib-careers-pagination .page-numbers.dots {
    border: none;
    background: none;
    color: #888888;
    pointer-events: none;
}

/* ==============================================
   CAREERS PAGE — TESTIMONIALS SECTION
   ============================================== */

.ib-careers-testimonials-section {
    background-color: #F5F5F5;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    background-image: url(../images/bg-testinomial.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.ib-careers-testimonials-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 806px;
    margin: 0 auto;
}

/* Large decorative quote marks — absolute background */
.ib-careers-testimonials-deco {
    position: absolute;
    pointer-events: none;
    user-select: none;
    bottom: 0;
    transform: translate(-50%, -35%);
    width: 83px;
    height: 83px;
    z-index: 2;
}

.ib-careers-testimonials-deco--open {
    left: 0;
    background: url(../images/quote-open.svg) no-repeat center center;
    background-size: contain;
}

.ib-careers-testimonials-deco--close {
    right: 0;
    background: url(../images/quote-close.svg) no-repeat center center;
    background-size: contain;
    transform: translate(70%, 20%);
}

.ib-careers-testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: #100F25;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ib-careers-testimonials-swiper {
    width: 100%;
    position: relative;
    z-index: 2;
}

.ib-careers-testimonial {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Author block — sits ABOVE the quote text */
.ib-careers-testimonial__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ib-careers-testimonial__name {
    font-size: 18px;
    font-weight: 700;
    color: #100F25;
    margin: 0;
}

.ib-careers-testimonial__role {
    font-size: 14px;
    color: #888888;
    margin: 0;
}

.ib-careers-testimonial__text {
    font-size: 16px;
    line-height: 1.9;
    color: #444444;
    margin: 0;
    font-style: normal;
    max-width: 760px;
}
.ib-careers-testimonial__text p {
    margin: 0;
    word-break: break-all;
}

/* Navigation arrows */
.ib-careers-testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}


/* ==============================================
   CAREERS PAGE — RESPONSIVE
   ============================================== */

@media (max-width: 1199px) {
    .ib-careers-card {
        flex: 0 0 calc(100% / 2 - 12px);
    }
}

@media (max-width: 900px) {
    .ib-careers-testimonials-title {
        font-size: 28px;
    }
    .ib-careers-testimonials-deco {
        font-size: 160px;
    }
}

@media (max-width: 767px) {
    .ib-careers-testimonials-section {
        padding: 48px 0;
    }
    .ib-careers-title {
        font-size: 28px;
    }
    .ib-careers-filter-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
    .ib-careers-testimonial__text {
        font-size: 15px;
    }
    .ib-careers-testimonials-deco {
        font-size: 120px;
    }
    .ib-careers-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .ib-careers-title {
        font-size: 24px;
    }
    .ib-careers-filter-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
    .ib-careers-card__btn {
        font-size: 12px;
        padding: 8px 12px;
    }
    .ib-careers-pagination .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* Card clickable cursor (area outside buttons) */
.ib-careers-card {
    cursor: pointer;
}

.ib-careers-card__btn {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

/* ==============================================
   CAREERS — JOB DETAIL MODAL
   ============================================== */

.ib-careers-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
    visibility: hidden;
}

.ib-careers-modal-overlay:not([hidden]) {
    display: flex;
}

.ib-careers-modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.ib-careers-modal-wrapper {
    position: relative;
    width: 100%;
    max-width: 680px;
    transform: translateY(16px);
    transition: transform 0.25s ease;
}

.ib-careers-modal {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    max-height: calc(100svh - 40px);
}

.ib-careers-modal-overlay.is-visible .ib-careers-modal-wrapper {
    transform: translateY(0);
}

.ib-careers-modal__close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
    z-index: 1;
    padding: 0;
}

.ib-careers-modal__close:hover {
    background: #f0f0f0;
}

.ib-careers-modal__title {
    font-size: var(--wp--preset--font-size--xl);
    font-weight: 600;
    color: #333333;
    margin: 0;
    flex-shrink: 0;
    text-transform: capitalize;
}

.ib-careers-modal__table {
    border: 1px solid #cccccc;
    border-radius: 16px;
    overflow-x: hidden;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.ib-careers-modal__row {
    display: flex;
    align-items: stretch;
}

.ib-careers-modal__row + .ib-careers-modal__row .ib-careers-modal__label,
.ib-careers-modal__row + .ib-careers-modal__row .ib-careers-modal__value {
    border-top: 1px dashed #cccccc;
}

.ib-careers-modal__label {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 40px;
    border-right: 1px dashed #cccccc;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.ib-careers-modal__value {
    flex: 1;
    min-width: 0;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    word-break: break-word;
}

.ib-careers-modal__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    align-self: center;
    height: 46px;
    padding-left: 32px;
    padding-right: 4px;
    border-radius: 200px;
    background: var(--wp--preset--color--primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s;
    white-space: nowrap;
}

.ib-careers-modal__cta:hover {
    background-color: #2ED0B3;
    color: #ffffff;
    text-decoration: none;
}

.ib-careers-modal__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    margin-left: 12px;
    flex-shrink: 0;
}

/* ==============================================
   CAREERS MODAL — RESPONSIVE
   ============================================== */

@media (max-width: 600px) {
    .ib-careers-modal {
        padding: 24px 16px 20px;
        border-radius: 12px;
    }

    .ib-careers-modal__label {
        width: 100px;
        padding: 12px 12px;
        font-size: 13px;
    }

    .ib-careers-modal__value {
        padding: 12px 14px;
        font-size: 13px;
    }

    .ib-careers-modal__title {
        font-size: 17px;
    }

    .ib-careers-modal__cta {
        font-size: 14px;
        height: 42px;
        padding-left: 20px;
    }
}

/* ==============================================
   SINGLE POST
   ============================================== */

.ib-single-main {
    padding-top: 128px;
}
.ib-single-wrap {
    background: #ffffff;
    padding-bottom: 80px;
}

.ib-single-breadcrumb {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 20px 0;
}

.ib-single-breadcrumb a {
    color: var(--wp--preset--color--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.ib-single-breadcrumb a:hover {
    color: var(--wp--preset--color--primary-accent);
}

.ib-single-breadcrumb__sep {
    color: #888;
}

.ib-single-breadcrumb__current {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 420px;
}

.ib-single-title {
    font-size: var(--wp--preset--font-size--2-xl);
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.ib-single-featured-image {
    margin-bottom: 32px;
    line-height: 0;
}

.ib-single-featured-image img {
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.ib-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    flex-direction: column;
}

.ib-single-cat .ib-single-cat__badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 12px;
    background-color: var(--wp--preset--color--primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    transition: background 0.2s;
}

.ib-single-date {
    font-size: 12px;
}

.ib-single-content {
    font-size: 15px;
    line-height: 1.85;
    color: #444444;
    --wp--style--global--content-size: 900px;
    --wp--style--global--wide-size: 100%;
}

.ib-single-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ib-single-content > .alignwide {
    max-width: 100%;
}
.ib-single-content > .alignfull {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.ib-single-article {
    margin-bottom: 40px;
    font-size: 16px;
}

.ib-single-article .ib-single-title,
.ib-single-article .ib-single-featured-image,
.ib-single-article .ib-single-meta,
.ib-single-article .ib-single-excerpt {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ib-single-content .is-layout-constrained > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ib-single-content .is-layout-constrained > .alignwide,
.ib-single-content .is-layout-constrained > .alignfull {
    max-width: 100%;
    margin-left: unset;
    margin-right: unset;
}

.ib-single-content p {
    margin-bottom: 1.4em;
}

.ib-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}
.ib-single-content .wp-block-columns,
.ib-single-content .wp-block-image {
    margin-top: 40px;
    margin-bottom: 40px;
}
.ib-single-content .wp-block-columns.is-layout-flex {
    gap: 40px;
}
.ib-single-content .wp-block-columns .wp-block-image {
    margin: 0;
}

.ib-single-content h2,
.ib-single-content h3 {
    color: #333333;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 0.75em;
}

/* Post navigation — 3 pill buttons */
.ib-single-nav-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #E5E5E5;
}

.ib-post-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ib-post-nav__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 40px;
    border-radius: 200px;
    background: var(--wp--preset--color--primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    border: none;
    line-height: 1;
}

.ib-post-nav__btn:hover {
    background: var(--wp--preset--color--primary-accent);
    color: #ffffff;
    text-decoration: none;
}

.ib-post-nav__btn--prev {
    padding-left: 4px;
    padding-right: 28px;
}

.ib-post-nav__btn--next {
    padding-left: 28px;
    padding-right: 4px;
}

.ib-post-nav__btn--list {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    color: var(--wp--preset--color--primary);
}

.ib-post-nav__btn--list:hover {
    background: transparent;
    color: var(--wp--preset--color--primary-accent);
    text-decoration: underline;
}

.ib-post-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ib-post-nav__btn--prev .ib-post-nav__icon {
    margin-right: 10px;
}

.ib-post-nav__btn--next .ib-post-nav__icon {
    margin-left: 10px;
}

.ib-post-nav__btn--disabled {
    background: #e0e0e0;
    color: #333333;
    cursor: not-allowed;
    pointer-events: none;
    color: #fff;
}

.ib-post-nav__btn--disabled:hover {
    background: #e0e0e0;
    color: #333333;
}


/* Responsive */
@media (max-width: 1199px) {
    .ib-single-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .ib-single-wrap {
        padding-top: 24px;
        padding-bottom: 48px;
    }

    .ib-single-title {
        font-size: var(--wp--preset--font-size--xl);
    }

    .ib-single-breadcrumb__current {
        max-width: 200px;
    }

    .ib-post-nav {
        gap: 8px;
    }

    .ib-post-nav__btn {
        font-size: 14px;
        height: 42px;
    }

    .ib-post-nav__icon {
        width: 34px;
        height: 34px;
    }

    .ib-single-nav-section {
        margin-top: 48px;
        padding-top: 32px;
    }
}

/* =============================================================
   Contact page
   ============================================================= */

.ib-contact-section {
    padding: 40px 80px 80px;
    box-sizing: border-box;
    background-color: #f5f5f5;
}

.ib-contact-inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.ib-contact-col {
    flex: 1 1 0;
    min-width: 0;
    gap: 20px;
    display: block !important;
}

.ib-contact-col--right {
    flex: 0 0 60%;
    max-width: 740px;
}

/* Left column */
.ib-contact-title {
    font-size: var(--wp--preset--font-size--2-xl);
    font-weight: 600;
    margin: 0 0 20px;
    line-height: 1.3;
    text-transform: capitalize;
}

.ib-contact-desc {
    font-size: var(--wp--preset--font-size--xl);
    margin: 20px 0 !important;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.ib-contact-meta {
    display: block;
    font-size: var(--wp--preset--font-size--xl);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.ib-contact-meta > span {
    margin-bottom: 20px;
    display: block;
}
.ib-contact-meta > span > a {
    color: var(--wp--preset--color--foreground) !important;
    text-underline-offset: unset !important;
    text-underline-position: unset !important;
    text-decoration: unset !important;
}

/* Form */
.ib-contact-section .wpcf7-form {
    background: #FFF;
    padding: 20px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 16px;
    border: 1px solid rgba(189, 189, 189, 0.50);
    background: #FFF;
}
.ib-contact-section .wpcf7-form .wpcf7-response-output {
    margin: 0 0 16px;
}
.ib-contact-section .wpcf7-form .wpcf7-not-valid-tip {
    margin-bottom: 4px;
}
.ib-contact-section .wpcf7-form.submitting .ib-contact-form__submit {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    text-transform: capitalize;
}
.ib-contact-form__row {
    display: flex;
    gap: 20px;
}

.ib-contact-form__row .ib-contact-form__group {
    flex: 1 1 0;
    min-width: 0;
}

.ib-contact-form__group {
}
.ib-contact-form__group br {
    display: none;
}
.ib-contact-form__group p {
    margin: 0;
}

.ib-contact-form__label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    display: block;
    text-transform: capitalize;
}

.ib-contact-form__req {
    color: #e53e3e;
}

.ib-contact-form__input,
.ib-contact-form__select,
.ib-contact-form__textarea {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #BDBDBD;
    border-radius: 4px;
    padding: 9px 12px;
    font-size: var(--wp--preset--font-size--base);
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
}
.ib-contact-form__select {
    color: #333 !important;
}
.ib-contact-form__input::placeholder,
.ib-contact-form__textarea::placeholder {
    color: #888;
}

.ib-contact-form__input:focus,
.ib-contact-form__select:focus,
.ib-contact-form__textarea:focus {
    border-color: var(--wp--preset--color--primary);
}

.ib-contact-form__input::placeholder,
.ib-contact-form__textarea::placeholder {
    color: #aaa;
}

.ib-contact-form__select-wrap {
    position: relative;
}

.ib-contact-form__select {
    cursor: pointer;
    padding-right: 40px;
}
.ib-contact-form__select[aria-invalid="true"] {
    color: #888888 !important;
}

.ib-contact-form__select-caret {
    position: absolute;
    right: 14px;
    top: 21px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
}

.ib-contact-form__textarea {
    resize: vertical;
    min-height: 100px;
}

/* Agree checkbox */
.ib-contact-form__agree-row > p {
    margin: 0;
    text-align: center;
}
.ib-contact-form__agree-row .wpcf7-list-item label {
    display: flex;
    justify-content: center;
}

.ib-contact-form__agree-row .wpcf7-list-item-label {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    text-transform: capitalize;
}
.ib-contact-form__agree-row .wpcf7-list-item-label::before {
    content: '';
    min-width: 19px;
    height: 19px;
    border: 1px solid #BDBDBD;
    border-radius: 4px;
    background-color: #fff;
}

.ib-contact-form__agree-row .ib-contact-policy {
    color: var(--wp--preset--color--primary);
    cursor: pointer;
}
.ib-contact-policy font {
    pointer-events: none;
}

.ib-contact-form__agree-check {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--wp--preset--color--primary);
    flex-shrink: 0;
    margin: 0;
    opacity: 0;
}
.ib-contact-form__agree-check:checked + .wpcf7-list-item-label::before {
    background-color: var(--wp--preset--color--primary);
    border-color: var(--wp--preset--color--primary);
    background-image: url(../images/icons/icon-check-white.svg);
    background-repeat: no-repeat;
    background-position: center;
}

/* Footer row: notice + submit */
.ib-contact-form__footer > p  {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.ib-contact-form__notice {
    font-size: 14px;
    text-align: center;
    min-height: 20px;
    margin: 0;
}

.ib-contact-form__notice--success {
    color: var(--wp--preset--color--primary);
}

.ib-contact-form__notice--error {
    color: #e53e3e;
}

.ib-contact-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background-color: var(--wp--preset--color--primary);
    background-image: url(../images/icons/icon-move-up-right-circle.svg);
    background-repeat: no-repeat;
    background-position: 84px center;
    background-size: 40px;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 4px 4px 4px 32px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    white-space: nowrap;
    padding: 12px 64px 12px 32px;
}

.ib-contact-form__submit:hover {
    background-color: #2ED0B3;
}

.ib-contact-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1200px) {
    .ib-contact-section {
        padding: 40px 40px 80px;
    }
}

@media (max-width: 1024px) {
    .ib-contact-section {
        padding: 60px 40px;
    }

    .ib-contact-inner {
        flex-direction: column;
        gap: 40px;
    }

    .ib-contact-col--right {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .ib-contact-section {
        padding: 40px 20px 60px;
    }

    .ib-contact-form__row {
        flex-direction: column;
        gap: 24px;
    }
}
.ib-contact-main {
    background-color: #f5f5f5;
}
.ib-contact-main .ib-office-info-section {
    background-color: #fff;
}
.ib-contact-main .ib-office-info-section {
    padding: 0;
}
.ib-contact-main .ib-office-info-card {
    border-radius: 0;
    background-color: #fff;
    padding: 0;
}
.ib-contact-main .ib-office-info-title {
    display: none;
}
.ib-contact-main .ib-contact-office {
    background-color: #fff;
    padding: 80px 0;
}
.ib-contact-main .ib-contact-office__title {
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
}

/* ==============================================
   CONTACT — PRIVACY POLICY MODAL
   ============================================== */

.ib-privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
}

.ib-privacy-modal:not([hidden]) {
    display: flex;
}

.ib-privacy-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.ib-privacy-modal__wrapper {
    position: relative;
    width: 100%;
    max-width: 780px;
    transform: translateY(16px);
    transition: transform 0.25s ease;
    max-height: 100%;
}

.ib-privacy-modal.is-visible .ib-privacy-modal__wrapper {
    transform: translateY(0);
}

.ib-privacy-modal__box {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 100%;
}

.ib-privacy-modal__close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    transition: background 0.2s;
    z-index: 1;
    padding: 0;
    flex-shrink: 0;
    color: #888888;
}

.ib-privacy-modal__close:hover {
    background: #f0f0f0;
}

.ib-privacy-modal__title {
    color: var(--wp--preset--color--primary);
    font-weight: 600;
    font-size: 28px;
    margin: 0;
    flex-shrink: 0;
    line-height: normal;
}

.ib-privacy-modal__content {
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.ib-privacy-modal__section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    border-bottom: 1px dashed #cccccc;
}

.ib-privacy-modal__section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ib-privacy-modal__section-title {
    font-size: var(--wp--preset--font-size--lg);
    font-weight: 500;
    color: #100f25;
    margin: 0;
    line-height: normal;
}

.ib-privacy-modal__section p:not(.ib-privacy-modal__section-title) {
    font-size: var(--wp--preset--font-size--sm);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
}

@media (max-width: 767px) {
    .ib-privacy-modal__box {
        padding: 20px 16px;
        border-radius: 12px;
    }
    .ib-privacy-modal__title {
        font-size: 22px;
    }
}

/* =============================================
   404 PAGE
   ============================================= */
.ib-404-main {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ib-404-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
    min-height: 100%;
    width: 100%;
}

.ib-404-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.ib-404-illustration {
    width: 280px;
    height: auto;
    margin-bottom: 12px;
}

.ib-404-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.ib-404-desc {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.8;
}

.ib-404-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--wp--preset--color--primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 200px;
    height: 46px;
    padding: 4px 4px 4px 20px;
    font-size: 16px;
    font-weight: 500;
    width: fit-content;
    margin-top: 8px;
    transition: background-color 0.2s;
}

.ib-404-btn:hover {
    background-color: #2ED0B3;
    color: #ffffff;
}

.ib-404-btn__icon {
    width: 40px;
    height: 40px;
}

@media (max-width: 767px) {
    .ib-404-illustration { width: 200px; }
    .ib-404-title { font-size: 22px; }
}

/* ==============================================
   HOME — LATEST NEWS SECTION
   ============================================== */

.ib-home-news-section {
    background: #ffffff;
    padding: 80px 0;
}

.ib-home-news-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ib-home-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.ib-home-news-title {
    font-size: var(--wp--preset--font-size--2-xl);
    margin: 0;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.ib-home-news-view-all {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--wp--preset--color--primary);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.ib-home-news-view-all:hover {
    opacity: 0.75;
    text-decoration: none;
}

.ib-home-news-grid .ib-news-card {
    overflow: hidden;
}

@media (max-width: 960px) {
    .ib-home-news-section {
        padding: 60px 0;
    }
    .ib-home-news-header {
        margin-bottom: 36px;
    }
}

@media (max-width: 767px) {
    .ib-home-news-section {
        padding: 48px 0;
    }
    .ib-home-news-header {
        margin-bottom: 28px;
    }
    .ib-home-news-title {
        font-size: 26px;
    }
}

/* ==============================================
   HOME — INTRO / VISION SECTION
   ============================================== */

.ib-home-intro-section {
    background-color: #ffffff;
    padding: 100px 0 80px;
    background-image: url(../images/bg-home-intro.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.ib-home-intro-inner {
    display: flex;
    flex-direction: column;
}

.ib-home-intro-label {
    font-weight: 600;
    margin: 0;
    line-height: 2.5;
}

.ib-home-intro-content {
    display: flex;
    flex-direction: column;
    padding-left: 200px;
}

.ib-home-intro-tagline {
    font-size: var(--wp--preset--font-size--2-xl);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.ib-home-intro-body {
    font-size: var(--wp--preset--font-size--xl);
    font-weight: 500;
    line-height: normal;
    margin: 0;
    max-width: 889px;
}

@media (max-width: 1199px) {
    .ib-home-intro-content {
        padding-left: 120px;
    }
}

@media (max-width: 767px) {
    .ib-home-intro-section {
        padding: 56px 0;
    }
    .ib-home-intro-content {
        padding-left: 0;
    }
    .ib-home-intro-tagline {
        font-size: 24px;
    }
}

/* ==============================================
   SCROLL TO TOP BUTTON
   ============================================== */

.ib-scroll-top {
    position: fixed;
    bottom: 32px;
    right: 80px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(42, 188, 162, 0.50);
    background: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.ib-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ib-scroll-top:hover {
    background: rgba(42, 188, 162, 0.20);
}
.ib-scroll-top > img {
    width: 24px;
    height: 24px;
}

@media (max-width: 767px) {
    .ib-scroll-top {
        bottom: 20px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
    .ib-scroll-top > img {
        width: 20px;
        height: 20px;
    }
}

.grecaptcha-badge {
    display: none !important;
}
