/* ==============================
   EGT GLOBAL — inner-pages.css
   ============================== */

/* ── Page Banner ── */
.page-banner {
    position: relative;
    width: 100%;
    height: 420px;
    background-image: var(--banner-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--section-pad-x);
}

/* Breadcrumb */
.banner-breadcrumb {
    font-family: var(--font-hero);       /* Schibsted Grotesk */
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1;
    letter-spacing: 0px;
}

.banner-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
}

.banner-breadcrumb a:hover {
    color: var(--color-white);
}

.banner-breadcrumb span {
    color: var(--color-primary);
}

/* Banner Title — Figma spec */
.banner-title {
    font-family: var(--font-hero);       /* Schibsted Grotesk */
    font-size: 80px;                     /* Figma: 80px */
    font-weight: 500;                    /* Figma: Medium */
    font-style: normal;
    line-height: 100%;                   /* Figma: line-height 100% */
    letter-spacing: 0px;                 /* Figma: 0px */
    color: var(--color-white);           /* Figma: #fff */
    margin: 0;
    vertical-align: middle;
}


/* ==============================
   About Intro Section
   ============================== */

.about-intro {
    position: relative;
    padding: var(--section-pad-y) var(--section-pad-x);
    background: #fff;
    overflow: hidden;
}

/* ── Container ── */
.about-intro .container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ── Header ── */
.about-intro__header {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro__title {
    font-family: var(--font-heading);     
    font-size: var(--fs-h1);             
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.about-intro__subtitle {
    font-family: var(--font-heading);     
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--color-text-light);      /* #6B6868 */
}

/* ── Rows ── */
.about-intro__row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.about-intro__row:last-child {
    margin-bottom: 0;
}

/* Reverse: image left, text right */
.about-intro__row--reverse {
    flex-direction: row-reverse;
}

/* ── Text ── */
.about-intro__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-intro__text p {
    font-family: var(--font-heading);     
    font-size: var(--fs-body);           
    font-weight: 400;
    line-height: var(--lh-body);         
    letter-spacing: 0px;
    color: var(--color-text);
}

/* ── Image ── */
.about-intro__image {
    flex-shrink: 0;
}

.about-intro__image img {
    width: 438px;
    height: 254px;
    object-fit: cover;
    border-radius: 0;                    /* Figma: no border-radius */
    display: block;
}

.about-intro__row--reverse {
    flex-direction: row;               /* NOT row-reverse */
}

.about-intro__row--reverse .about-intro__image {
    order: -1;                         /* pulls image to the left */
}

.about-intro__row--reverse .about-intro__text {
    order: 1;
}

/* ── Decorative Vectors ── */
.about-intro__vector {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.about-intro__vector--tl {
    top: 0;
    left: 0;
}

.about-intro__vector--br {
    bottom: 0;
    right: 0;
}
/* ==============================
   Mission & Vision Section
   ============================== */

.mission-vision {
    position: relative;
    padding: var(--section-pad-y) var(--section-pad-x);
    background: var(--color-bg-strength);        /* #600D08 */
    overflow: hidden;
}

/* ── Container ── */
.mission-vision .container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* ── Header ── */
.mission-vision__header {
    text-align: center;
    margin-bottom: 60px;
}

.mission-vision__title {
    font-family: var(--font-heading);            
    font-size: var(--fs-h1);                     
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0px;
    color: #EBEDF0;                              /* Figma: #EBEDF0 */
    margin-bottom: 16px;
}

.mission-vision__subtitle {
    font-family: var(--font-heading);            
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0px;
    color: #C4C4C4;                              /* Figma: #C4C4C4 */
}

/* ── Rows ── */
.mission-vision__row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.mission-vision__row:last-child {
    margin-bottom: 0;
}

/* ── Text ── */
.mission-vision__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-vision__heading {
    font-family: var(--font-heading);            
    font-size: var(--fs-h1);                     
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0px;
    color: #F2F2F2;                              
}

.mission-vision__text p {
    font-family: var(--font-heading);            
    font-size: var(--fs-body);                   
    font-weight: 400;
    line-height: var(--lh-body);                 
    letter-spacing: 0px;
    color: #F6F6F6;                             
}

.mission-vision__text ul {
    list-style: square;
    margin: 0;
    padding-left: 30px;                            
}
.mission-vision__text ul li{
    font-family: var(--font-heading);            
    font-size: var(--fs-body);                   
    font-weight: 400;
    line-height: var(--lh-body);                 
    letter-spacing: 0px;
    color: #F6F6F6; 
    padding: 5px;                            
}


/* ── Image ── */
.mission-vision__image {
    flex-shrink: 0;
}

.mission-vision__image img {
    width: 438px;
    height: 254px;
    object-fit: cover;
    border-radius: 0;                            /* Figma: no border-radius */
    display: block;
}

/* ==============================
   Core Values Section
   ============================== */

.core-values {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: var(--color-bg-services);        /* #FCE9E8 */
}

/* ── Container ── */
.core-values .container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* ── Header ── */
.core-values__header {
    text-align: center;
    margin-bottom: 60px;
}

.core-values__title {
    font-family: var(--font-heading);            
    font-size: var(--fs-h1);                     
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0px;
    color: #232323;
    margin-bottom: 16px;
}

.core-values__subtitle {
    font-family: var(--font-heading);            
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--color-text-light);              /* #6B6868 */
}

/* ── Grid: 3 cols row 1, 2 cols row 2 centered ── */
.core-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Cards 4 & 5 — center them in row 2 */
.core-values__card:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: auto;                           /* shift toward center */
    margin-right: 0;
}

.core-values__card:nth-child(5) {
    grid-column: 2 / 3;
    margin-left: 0;
    margin-right: auto;                          /* shift toward center */
}

/* ── Card ── */
.core-values__card {
    width: 100%;
    max-width: 360px;
    min-height: 276px;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ── Icon circle ── */
.core-values__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);            /* #A2150E */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.core-values__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);            /* makes icon white */
}

/* ── Card title ── */
.core-values__card-title {
    font-family: var(--font-jakarta);            /* Plus Jakarta Sans */
    font-size: var(--fs-h3);                     /* 20px */
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0px;
    color: #12141D;
}

/* ── Card description ── */
.core-values__card-desc {
    font-family: var(--font-inter);              /* Inter */
    font-size: var(--fs-body);                   
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    color: #12141D;
}

/* ==============================
    SERVICES PAGE — services-page.css
    ============================== */

/* ── Services Intro Section ── */
.services-intro {
    position: relative;
    padding: var(--section-pad-y) var(--section-pad-x);
    background: #fff;
    overflow: hidden;
}
.services-intro .container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.services-intro__vector {
    position: absolute;
    left: 0;
    top: 20px;
    width: 145px;
    pointer-events: none;
    z-index: 1;
}
.intro-header {
    text-align: center;
    margin-bottom: 48px;
}
.intro-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0px;
    color: #232323;
    margin-bottom: 16px;
}
.intro-header .intro-strapline {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0px;
    color: #6B6868;
    margin-bottom: 24px;
}
.intro-header .intro-desc {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    color: #000;
    max-width: 860px;
    margin: 0 auto;
}

/* ── Intro Image Slider ── */
.intro-slider {
    position: relative;
    overflow: hidden;
    margin-top: 48px;
}
.intro-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.intro-slide {
    flex: 0 0 calc(33.333% - 14px);
    height: 260px;
    overflow: hidden;
    border-radius: 4px;
}
.intro-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.intro-slide:hover img { transform: scale(1.04); }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: background 0.2s;
}
.slider-dot.active { background: var(--color-primary); }

/* ==============================
    SERVICE DETAIL SECTIONS
    Alternating pattern: pink, white, dark, pink, white, dark…
    ============================== */
.service-section {
    padding: 80px var(--section-pad-x);
}
.service-section--pink  { background: #FCE9E8; }
.service-section--white { background: #ffffff; }
.service-section--dark  { background: #600D08; }

.service-section__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}
/* Reverse: image left, text right */
.service-section--reverse .service-section__inner {
    flex-direction: row-reverse;
}

.service-section__text { flex: 1; }

.service-section__text h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0px;
    color: #232323;
    margin-bottom: 10px;
}
.service-section--dark .service-section__text h2 {
    color: #F2F2F2;
}

.service-section__text .svc-strapline {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0px;
    color: #6B6868;
    margin-bottom: 20px;
}
.service-section--dark .service-section__text .svc-strapline {
    color: #C4C4C4;
}

.service-section__text div.svc-desc {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    color: #000;
    margin-bottom: 28px;
}
.service-section--dark .service-section__text div.svc-desc {
    color: #F6F6F6;
}

.service-section__image {
    flex-shrink: 0;
    width: 420px;
}
.service-section__image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* Connect button */
.btn-connect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 28px;
    border-radius: 50px;
    background: #A2150E;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-connect:hover {
    background: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(162,21,14,0.35);
}

/* ==============================
    RESOURCES PAGE — resources-page.css
    ============================== */

/* ── Intro / Counter Section ── */
.resources-intro {
    position: relative;
    padding: var(--section-pad-y) var(--section-pad-x);
    background: #fff;
    overflow: hidden;
}
.resources-intro .container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
/* Left decorative vector */
.resources-intro__vector {
    position: absolute;
    left: 0;
    top: 20px;
    width: 145px;
    pointer-events: none;
    z-index: 1;
}

/* Header text block */
.resources-intro__header {
    text-align: center;
    margin-bottom: 56px;
}
.resources-intro__title {
    font-family: var(--font-heading);
    font-size: var(--fs-h1);
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0px;
    color: #232323;
    margin-bottom: 16px;
}
.resources-intro__subtitle {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--color-text-light);
}

/* Counter cards row */
.counter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}
/* Left: image */
.counter-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}
/* Right: two counter boxes stacked side by side */
.counter-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-content: center;
}
.counter-box {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.10);
    padding: 32px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.counter-box__num {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
}
.counter-box__label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--color-text-light);
    text-align: center;
}

/* Full-width layout (image left + boxes right) */
.resources-intro__body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

/* ==============================
    SKILLED WORKFORCE SECTION
    bg: #FCE9E8
    ============================== */
.skilled-workforce {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: var(--color-bg-services);
}
.skilled-workforce .container {
    max-width: var(--container-max);
    margin: 0 auto;
}
.skilled-workforce__header {
    text-align: center;
    margin-bottom: 48px;
}
.skilled-workforce__title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0px;
    color: #232323;
    margin-bottom: 12px;
}
.skilled-workforce__subtitle {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

/* Enquire button: red filled pill */
.btn-enquire-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 28px;
    border-radius: 50px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn-enquire-red:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(162,21,14,0.35);
}

/* Enquire button: white outlined pill (for dark bg) */
.btn-enquire-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 28px;
    border-radius: 50px;
    background: #fff;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1.5px solid #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn-enquire-white:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
}

/* Workforce grid: table left + image right */
.workforce-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Two-column table */
.workforce-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 15px 3px;
}
.workforce-table td {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    color: #000;
    padding: 3px 0;
    background: #fff;
}
/* second column: red text */
.workforce-table td:nth-child(2) {
    color: var(--color-primary);
    font-weight: 400;
    font-size:21px;
}

/* Image */
.workforce-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 420px;
}

/* ==============================
    EQUIPMENT CAPABILITY SECTION
    bg: #600D08
    ============================== */
.equipment-capability {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: var(--color-bg-strength);
    position: relative;
    overflow: hidden;
}
/* subtle bg texture */
.equipment-capability::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/strength-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    pointer-events: none;
}
.equipment-capability .container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.equipment-capability__header {
    text-align: center;
    margin-bottom: 48px;
}
.equipment-capability__title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0px;
    color: #fff;
    margin-bottom: 12px;
}
.equipment-capability__subtitle {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}

/* Equipment grid: image left + table right */
.equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.equipment-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Equipment table — same structure, dark bg variant */
.equipment-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 15px 3px;
}
.equipment-table td {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    color: #000;
    padding: 3px 0;
    background: #fff;
}
.equipment-table td:nth-child(2) {
    color: var(--color-primary);
    font-weight: 400;
    font-size: 21px;
}

/* ==============================
    PROJECTS LISTING PAGE
 ============================== */

/* ── Page strapline below banner ── */
.projects-page-strapline {
    text-align: center;
    padding: 48px var(--section-pad-x) 0;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0px;
    color: #6B6868;
}

/* ── Projects listing wrapper ── */
.projects-listing {
    padding: 56px var(--section-pad-x) 80px;
    background: #fff;
}
.projects-listing .container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* ── Single project item ── */
.project-item {
    display: flex;
    align-items: stretch;
    margin-bottom: 75px;
    position: relative;
}
.project-item:last-child {
    margin-bottom: 0;
}

/* Image fills left half */
.project-item__image-wrap {
    flex: 0 5% 65%;
    position: relative;
    z-index: 1;
}
.project-item__image-wrap img {
    width: 100%;
    height: 341px;
    max-width: 618px;
    object-fit: cover;
    display: block;
}

/* Text card overlaps image by ~15% */
.project-item__card {
    flex: 1;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 36px 32px;
    position: relative;
    z-index: 2;
    margin-left: -7%;          /* overlap onto image */
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 257px;
}

/* Reversed: text left, image right */
.project-item--reverse {
    flex-direction: row-reverse;
}
.project-item--reverse .project-item__card {
    margin-left: 0;
    margin-right: -7%;         /* overlap onto right image */
}

/* Card content */
.project-item__title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0px;
    color: #000;
    margin-bottom: 4px;
}
.project-item__client {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0px;
    color: #000;
}
.project-item__desc {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0px;
    color: #000;
    margin-top: 4px;
}

/* Learn More link with arrow */
.project-item__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0px;
    color: #000;
    text-decoration: none;
    margin-top: 8px;
    transition: gap 0.2s, color 0.2s;
}
.project-item__link svg {
    width: 16px;
    height: 16px;
    stroke: #000;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    transition: stroke 0.2s;
}
.project-item__link:hover {
    gap: 14px;
    color: var(--color-primary);
}
.project-item__link:hover svg {
    stroke: var(--color-primary);
}

/* ── Pagination ── */
.projects-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 0 80px;
}
.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    background: #fff;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #232323;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.page-btn:hover,
.page-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.page-btn--arrow {
    border-color: var(--color-border);
}
.page-btn--arrow svg {
    width: 14px;
    height: 14px;
    stroke: #232323;
    fill: none;
    stroke-width: 2;
}
.page-btn--arrow:hover svg {
    stroke: #fff;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .page-banner {
        height: 340px;
    }
    .about-intro__image img {
        width: 100%;
        height: auto;
    }
    .banner-title {
        font-size: 60px;
    }
    .mission-vision__image img {
        width: 100%;
        height: auto;
    }
        .core-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* reset centering on tablet — all cards fill naturally */
    .core-values__card:nth-child(4),
    .core-values__card:nth-child(5) {
        grid-column: auto;
        margin: 0;
        max-width: 100%;
    }
    .service-section__image { width: 340px; }
    .service-section__inner { gap: 40px; }
    .intro-slide { flex: 0 0 calc(50% - 10px); }
    .resources-intro__body { gap: 32px; }
    .workforce-grid,
    .equipment-grid { gap: 32px; }
    .project-item__image-wrap img { height: 240px; }
}

@media (max-width: 768px) {
    .page-banner {
        height: 260px;
        padding: 0 1.5rem;
    }

    .banner-content {
        padding: 0 1.5rem;
    }

    .banner-title {
        font-size: 42px;
    }
    .banner-breadcrumb {
        margin-top: 3rem;
    }
     .about-intro {
        padding: 60px 1.5rem;
    }

    .about-intro__row,
    .about-intro__row--reverse {
        flex-direction: column;          /* stack on mobile */
        gap: 32px;
    }

    .about-intro__title {
        font-size: 28px;
    }

    .about-intro__subtitle {
        font-size: 18px;
    }

    .about-intro__image img {
        width: 100%;
        height: auto;
    }
    .about-intro__vector--tl{ display: none;}
    .mission-vision {
        padding: 60px 1.5rem;
    }

    .mission-vision__row {
        flex-direction: column;
        gap: 32px;
    }

    .mission-vision__title,
    .mission-vision__heading {
        font-size: 28px;
    }

    .mission-vision__subtitle {
        font-size: 18px;
    }

    .mission-vision__image img {
        width: 100%;
        height: auto;
    }
      .core-values {
        padding: 60px 1.5rem;
    }

    .core-values__grid {
        grid-template-columns: 1fr;
    }

    .core-values__card {
        max-width: 100%;
        min-height: auto;
    }

    .core-values__title {
        font-size: 28px;
    }

    .core-values__subtitle {
        font-size: 18px;
    }
    .services-intro { padding: 60px 20px; }
    .service-section { padding: 60px 20px; }
    .intro-slide { flex: 0 0 100%; }
    .service-section__inner,
    .service-section--reverse .service-section__inner {
        flex-direction: column;
        gap: 32px;
    }
    .service-section__image { width: 100%; }
    .service-section__image img { height: 220px; }
    .service-section__text h2 { font-size: 28px; }
    .service-section__text .svc-strapline { font-size: 18px; }
    .intro-header h2 { font-size: 28px; }
    .intro-header .intro-strapline { font-size: 18px; }
    .resources-intro { padding: 60px 20px; }
    .skilled-workforce { padding: 60px 20px; }
    .equipment-capability { padding: 60px 20px; }

    .resources-intro__body {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .counter-boxes {
        grid-template-columns: 1fr 1fr;
    }
    .counter-image { height: 200px; }

    .workforce-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .equipment-image,
    .workforce-image { max-height: 240px; }

    .skilled-workforce__title,
    .equipment-capability__title { font-size: 28px; }
    .skilled-workforce__subtitle,
    .equipment-capability__subtitle { font-size: 18px; }
    .resources-intro__title { font-size: 28px; }
    .resources-intro__subtitle { font-size: 18px; }
    .projects-page-strapline { padding: 36px 20px 0; font-size: 18px; }
    .projects-listing { padding: 40px 20px 60px; }
    .project-item,
    .project-item--reverse {
        flex-direction: column;
        margin-bottom: 48px;
    }
    .project-item__image-wrap {
        flex: none;
        width: 100%;
    }
    .project-item__image-wrap img { height: 220px; }
    .project-item__card {
        margin-left: 0;
        margin-right: 0;
        margin-top: -24px;        /* slight overlap on mobile */
        width: calc(100% - 32px);
        align-self: flex-end;
    }
    .project-item__title { font-size: 22px; }
    .project-item__client { font-size: 16px; }
}

@media (max-width: 480px) {
    .page-banner {
        height: 200px;
    }

    .banner-title {
        font-size: 32px;
    }
    .mission-vision__title,
    .mission-vision__heading {
        font-size: 24px;
    }
    .service-section__text h2 { font-size: 24px; }
    .counter-boxes { grid-template-columns: 1fr; }
    .counter-box__num { font-size: 42px; }
    .project-item__card { width: calc(100% - 20px); padding: 15px 20px;    max-height: none; }
}