/* ==========================================================================
   Stearling Enterprises — style.css
   Fonts: Montserrat (headings), Instrument Sans (body)
   ========================================================================== */

:root {
    --primary: #24572D;
    --blue: #063D90;
    --heading: #1C1917;
    --body: #888885;
    --bg-ray: #F0F3F5;
    --white: #ffffff;
    --brand-gradient: linear-gradient(90deg, rgba(36, 87, 45, 1) 5%, rgba(6, 61, 144, 1) 100%);
    --shadow-sm: 0 6px 18px rgba(16, 30, 24, 0.06);
    --shadow-md: 0 14px 40px rgba(16, 30, 24, 0.10);
    --radius: 16px;
    --container-max: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Instrument Sans', system-ui, sans-serif;
    color: var(--body);
    background: var(--white);
    margin: 0;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', system-ui, sans-serif;
    color: var(--heading);
    margin: 0;
}

p { margin: 0; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--container-max); }

/* ---------- Section rhythm ---------- */
.section { padding: 84px 0; }

.section-head { margin-bottom: 48px; }

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--heading);
}

.section-sub {
    max-width: 640px;
    margin: 14px auto 0;
    font-size: 1.02rem;
    color: var(--body);
}

.accent-bar {
    display: block;
    width: 86px;
    height: 4px;
    border-radius: 4px;
    background: var(--primary);
    margin-top: 20px;
}

.text-center .accent-bar { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn-gradient {
    background: var(--brand-gradient);
    color: var(--white);
    font-weight: 700;
    border: none;
    border-radius: 40px;
    padding: 12px 30px;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn-gradient:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(6, 61, 144, 0.30);
    filter: brightness(1.05);
}

.btn-light-pill {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    border-radius: 40px;
    padding: 12px 30px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.btn-light-pill:hover { color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-pill {
    background: transparent;
    color: var(--white);
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    padding: 12px 30px;
    transition: background .25s ease, color .25s ease;
}
.btn-outline-pill:hover { background: var(--white); color: var(--primary); }

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
    background: var(--primary);
    color: var(--white);
    font-size: .9rem;
    padding: 9px 0;
}
.topbar-link {
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .2s ease;
}
.topbar-link:hover { color: var(--white); }
.topbar-ico {
    width: 16px;
    height: 16px;
    opacity: .9;
    object-fit: contain;
    flex: 0 0 16px;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--white);
    padding: 12px 0;
    transition: box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); padding: 6px 0; }
ul.navbar-nav.ms-auto.align-items-lg-center {
    background: #f0f0f0;
    padding: 12px;
    border-radius: 50px;
}
.site-header li.nav-item {
    padding-left: 35px;}
.navbar-shell { padding: 0px; }
.brand-logo { height: 52px; width: auto; }

.navbar-nav .nav-link {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    color: var(--body);
    padding: 8px 18px;
    position: relative;
    transition: color .2s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary); }
.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 18px; right: 18px; bottom: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.nav-cta-item { margin-left: 14px; }
.nav-cta { padding: 11px 30px; }
.nav-cta.active {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.65);
}

/* custom hamburger */
.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    margin: 5px 0;
    transition: .3s;
}

/* ========================================================================== 
   HERO
   ========================================================================== */
.hero { position: relative; }
.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slider .owl-item > div {
    height: 100%;
}
.hero-slide {
    position: relative;
    min-height: 640px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 32, 24, .42) 0%, rgba(16, 32, 24, .55) 100%);
}
.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 2;
}
.hero-title {
    color: var(--white);
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.05;
    letter-spacing: -1px;
    animation: heroUp .9s ease both;
}
.hero-subtitle {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.3rem, 3vw, 2.1rem);
    line-height: 1.25;
    margin-top: 6px;
    animation: heroUp .9s .15s ease both;
}
@keyframes heroUp {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-controls {
    position: absolute;
    left: 0; right: 0; bottom: 36px;
    display: flex;
    justify-content: center;
    gap: 14px;
    z-index: 3;
}
.hero-arrow {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.28);
    color: var(--white);
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(2px);
    transition: background .25s ease, transform .25s ease;
}
.hero-arrow:hover { background: rgba(255, 255, 255, 0.5); transform: scale(1.06); }
.hero-slider.owl-carousel .owl-nav,
.hero-slider.owl-carousel .owl-dots { display: none; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { background: var(--white); }
.service-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-media { height: 210px; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body { padding: 24px 24px 28px; }
.service-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.service-icon {
    display: inline-flex;
    flex: 0 0 auto;
    width: 50px; height: 50px;
    border-radius: 12px;
    background: rgba(36, 87, 45, 0.10);
    align-items: center;
    justify-content: center;
}
.service-icon img { width: 26px; height: 26px; }
.service-name { font-size: 1.2rem; font-weight: 700; color: var(--heading); margin: 0; }
.service-desc { font-size: .96rem; color: var(--body); }
img.img-brand {
    height: 320px;
}
/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--bg-ray); }
.about .section-title { margin-bottom: 22px; }
.about-text { color: var(--body); margin-bottom: 18px; font-size: 1.02rem; }
.about-text strong { color: var(--heading); font-weight: 700; }
.about .accent-bar { margin-top: 4px; margin-bottom: 30px; }

.stat-row { margin-bottom: 28px; }
.stat-card {
    background: var(--white);
    border: 1.5px solid rgba(36, 87, 45, 0.45);
    border-radius: 14px;
    text-align: center;
    padding: 22px 8px;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.stat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    line-height: 1;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label { display: block; margin-top: 8px; font-size: .9rem; color: var(--body); }

.btn-block-cta { display: block; width: 100%; text-align: center; padding: 15px 30px; }
.btn-block-cta .arrow { margin-left: 6px; }

.about-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   FEATURE STRIP
   ========================================================================== */
.feature-strip {
    background: var(--brand-gradient);
    padding: 70px 0;
    color: var(--white);
}
.feature { padding: 10px; }
.feature-icon {
    display: inline-flex;
    width: 64px; height: 64px;
    background: var(--white);
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform .3s ease;
}
.feature:hover .feature-icon { transform: translateY(-6px); }
.feature-icon img { width: 32px; height: 32px; }
.feature-title { color: var(--white); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.feature-desc { color: rgba(255, 255, 255, 0.82); font-size: .95rem; }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process { background: var(--bg-ray); }
.process .accent-bar { margin-top: 18px; }
.process-track {
    display: flex;
    align-items: stretch;
    gap: 8px;
}
.process-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 26px 24px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.process-num {
    width: 34px; height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: rgba(36, 87, 45, 0.12);
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    display: grid;
    place-items: center;
}
.process-name { font-size: 1.08rem; font-weight: 700; color: var(--heading); }
.process-desc { font-size: .95rem; color: var(--body); }
.process-sep {
    align-self: center;
    color: #c7d0cb;
    font-size: 2rem;
    line-height: 1;
    flex: 0 0 auto;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-wrap { background: var(--white); }
.cta-banner {
    background: var(--brand-gradient);
    border-radius: 22px;
    padding: 52px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.cta-title { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; max-width: 560px; }
.cta-sub { color: rgba(255, 255, 255, 0.85); margin-top: 14px; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; min-width: 230px; }
.cta-actions .btn { text-align: center; }

/* ==========================================================================
   PORTFOLIO
   ========================================================================== */
.portfolio { background: var(--white); }
.portfolio-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0;
    box-shadow: var(--shadow-sm);
    background: #eef0f2;
}
.portfolio-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: transform .5s ease;
}
.portfolio-card:hover img { transform: scale(1.05); }
.portfolio-label {
    position: absolute;
    left: 18px; right: 18px; bottom: 18px;
    background: var(--white);
    color: var(--heading);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}
.link-underline-brand {
    display: inline-block;
    margin-top: 42px;
    color: var(--primary);
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
    transition: opacity .2s ease;
}
.link-underline-brand:hover { color: var(--primary); opacity: .75; }

/* ==========================================================================
   CLIENTS
   ========================================================================== */
.clients { background: var(--white); }
.clients-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px 60px;
    margin-top: 10px;
}
.client-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .65;
    transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}
.client-logo:hover { filter: grayscale(0); opacity: 1; transform: scale(1.05); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--bg-ray); }
.contact-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.contact-info {
    background: var(--brand-gradient);
    color: var(--white);
    height: 100%;
    padding: 44px 40px;
}
.contact-info-title { color: var(--white); font-size: 1.9rem; font-weight: 800; margin-bottom: 14px; }
.contact-info-text { color: rgba(255, 255, 255, 0.85); font-size: .96rem; margin-bottom: 34px; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 26px; }
.contact-list li { display: flex; align-items: flex-start; gap: 16px; }
.contact-ico {
    flex: 0 0 auto;
    margin-top: 2px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-ico img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.contact-meta { display: flex; flex-direction: column; }
.contact-key { font-size: .85rem; color: rgba(255, 255, 255, 0.72); margin-bottom: 2px; }
.contact-meta a, .contact-meta span:last-child { color: var(--white); font-weight: 600; }
.contact-meta a:hover { color: var(--white); text-decoration: underline; }

.contact-form-wrap { padding: 44px 40px; }
.contact-form-wrap .form-label {
    font-family: 'Instrument Sans', sans-serif;
    color: var(--heading);
    font-weight: 500;
    font-size: .95rem;
    margin-bottom: 6px;
}
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
    background: #f4f5f6;
    border: 1px solid #e7e9eb;
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--heading);
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(36, 87, 45, 0.12);
}
.btn-submit { width: 100%; padding: 15px; margin-top: 4px; }
.form-note { color: var(--primary); font-weight: 600; margin-top: 12px; font-size: .95rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--primary); color: var(--white); }
.site-footer > .container { padding-top: 62px; padding-bottom: 46px; }
.footer-tagline {
    max-width: 820px;
    margin: 0 auto 38px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.02rem;
}
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 46px;
    margin-bottom: 28px;
}
.footer-nav a {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    transition: opacity .2s ease;
}
.footer-nav a:hover { opacity: .7; }
.footer-divider { border-color: rgba(255, 255, 255, 0.18); margin: 0 auto 28px; max-width: 1140px; opacity: 1; }
.footer-sub-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 46px;
    margin-bottom: 34px;
}
.footer-sub-nav a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    transition: opacity .2s ease;
}
.footer-sub-nav a:hover { opacity: .7; }
.footer-social { display: flex; justify-content: center; gap: 16px; }
.footer-social a {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.85);
    display: grid;
    place-items: center;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.footer-social a:hover { background: var(--white); color: var(--primary); transform: translateY(-3px); }

.footer-bottom { background: var(--white); padding: 20px 0; }
.footer-bottom .copyright { color: #6c6c6a; font-size: .9rem; margin: 0; }
.design-credit { color: var(--primary); font-weight: 700; }
.legal-links a { color: #6c6c6a; font-size: .9rem; transition: color .2s ease; }
.legal-links a:hover { color: var(--primary); }
.legal-sep { color: #cfcfcf; margin: 0 12px; }

/* ==========================================================================
   SCROLL REVEAL  (hidden state only applies when JS is present, so content
   is always visible if scripts fail to load)
   ========================================================================== */
.js .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   ABOUT PAGE — PAGE HERO BANNER
   ========================================================================== */
.page-hero {
    position: relative;
    background: var(--primary);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 96px 0;
    overflow: hidden;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(36, 87, 45, 0.94) 5%, rgba(6, 61, 144, 0.94) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-title {
    color: var(--white);
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    letter-spacing: -0.5px;
}
.page-hero-subtitle {
    max-width: 640px;
    margin: 12px auto 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 2vw, 1.2rem);
}
.page-hero-rule {
    display: block;
    width: 120px;
    height: 4px;
    border-radius: 4px;
    background: var(--white);
    margin: 18px auto 0;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-hero {
    background-image: url('../images/hero-banner.webp');
}
.legal-page {
    background: var(--bg-ray);
}
.legal-shell {
    max-width: 1100px;
    margin: 0 auto;
}
.legal-intro {
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    padding: clamp(30px, 5vw, 52px);
    margin-bottom: 30px;
    border-top: 5px solid var(--primary);
}
.legal-intro h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 800;
    margin-bottom: 14px;
}
.legal-intro p,
.legal-card p,
.legal-note p {
    color: var(--body);
    font-size: 1.02rem;
    margin-bottom: 18px;
}
.legal-intro p:last-child,
.legal-card p:last-child,
.legal-note p:last-child {
    margin-bottom: 0;
}
.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.legal-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 28px;
    border: 1px solid rgba(36, 87, 45, 0.10);
    transition: transform .25s ease, box-shadow .25s ease;
}
.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.legal-count {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--brand-gradient);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .9rem;
    margin-bottom: 18px;
}
.legal-card h3,
.legal-note h3 {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    margin-bottom: 12px;
}
.legal-note {
    margin-top: 30px;
    border-radius: 18px;
    background: var(--brand-gradient);
    color: var(--white);
    padding: clamp(28px, 4vw, 42px);
}
.legal-note h3 {
    color: var(--white);
}
.legal-note p {
    color: rgba(255, 255, 255, 0.88);
}
.legal-note a {
    color: var(--white);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-intro a,
.legal-card a {
    color: var(--primary);
    font-weight: 700;
}
.legal-intro a:hover,
.legal-card a:hover {
    color: var(--blue);
}
.legal-updated {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(36, 87, 45, 0.10);
    color: var(--primary) !important;
    font-weight: 700;
    padding: 8px 16px;
    margin-bottom: 24px !important;
}

/* ==========================================================================
   ABOUT PAGE — WELCOME (image collage + intro)
   ========================================================================== */
.welcome { background: var(--white); }
.welcome-title { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 24px; }
.welcome .about-text { margin-bottom: 20px; }
.welcome-cta { margin-top: 14px; }

.about-collage { position: relative; padding-right: 38%; }
.collage-left { display: flex; flex-direction: column; gap: 18px; }
.collage-img {
    width: 100%;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}
.collage-brochure { height: 260px; }
.collage-book { height: 210px; }
.collage-school {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 46%;
    height: 82%;
    border: 6px solid var(--white);
    border-radius: 22px;
}

/* ==========================================================================
   ABOUT PAGE — WHY CHOOSE (reuses .feature components)
   ========================================================================== */
.why-choose {
    background: var(--brand-gradient);
    color: var(--white);
}
.why-choose .section-head { margin-bottom: 56px; }
.why-choose-title {
    color: var(--white);
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    max-width: 720px;
    margin: 0 auto;
}
.why-choose .feature { padding: 6px 18px; }
.why-choose .feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    margin-bottom: 22px;
}
.why-choose .feature-icon img { width: 34px; height: 34px; }
.why-choose .feature-title { font-size: 1.4rem; margin-bottom: 12px; }
.why-choose .feature-desc { font-size: 1rem; max-width: 340px; margin: 0 auto; }

/* ==========================================================================
   PORTFOLIO PAGE
   ========================================================================== */
.portfolio-page {
    background: var(--white);
}
.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 38px;
}
.portfolio-pill {
    border: 1.5px solid rgba(6, 61, 144, 0.9);
    background: transparent;
    color: var(--heading);
    border-radius: 999px;
    padding: 10px 22px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: .92rem;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.portfolio-pill.is-active,
.portfolio-pill:hover {
    background: var(--brand-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.portfolio-page-grid {
    --bs-gutter-y: 2.6rem;
}
.portfolio-page-card {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #edf0f2;
    box-shadow: none;
}
.portfolio-page-card img {
    width: 100%;
    aspect-ratio: 0.68;
    object-fit: cover;
    transition: transform .45s ease;
}
.portfolio-page-card:hover img {
    transform: scale(1.04);
}
.portfolio-page-label {
    margin: 0;
    background: var(--white);
    color: var(--heading);
    text-align: center;
    font-weight: 500;
    font-size: .95rem;
    padding: 14px 18px;
    box-shadow: 0 0 0 1px rgba(12, 22, 18, 0.04);
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */
.services-page {
    background: var(--white);
}
.service-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
    margin-bottom: 80px;
}
.service-showcase:last-child {
    margin-bottom: 0;
}
.service-showcase--reverse .service-showcase-media {
    order: 2;
}
.service-showcase--reverse .service-showcase-copy {
    order: 1;
}
.service-showcase-media img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 1.22;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}
.service-showcase-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    margin-bottom: 26px;
}
.service-showcase-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 34px;
    margin-bottom: 28px;
}
.service-showcase-list span {
    position: relative;
    display: block;
    padding-left: 14px;
    color: var(--body);
    font-size: .96rem;
}
.service-showcase-list span::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(28, 25, 23, 0.45);
}
.service-showcase-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 350px;
    padding: 14px 32px;
    width:100%;
    margin-top:20px
}
img.img-signage {
    height: 280px;
}
img.img-customize{ height: 350px;}
/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-map-section {
    background: var(--bg-ray);
    padding-bottom: 84px;
}
.contact-map-frame {
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    background: #e4e8ea;
}
.contact-map-frame iframe {
    width: 100%;
    min-height: 520px;
    border: 0;
    display: block;
    filter: saturate(.92) contrast(.98);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991.98px) {
    .site-header { padding: 8px 0; }
    .navbar-collapse {
        background: var(--white);
        margin-top: 12px;
        border-radius: 14px;
        box-shadow: var(--shadow-md);
        padding: 14px 18px;
    }
    .navbar-nav .nav-link { padding: 10px 4px; }
    .navbar-nav .nav-link.active::after { display: none; }
    .nav-cta-item { margin: 10px 0 4px; }
    .nav-cta { display: inline-block; }

    .hero-slide { min-height: 520px; }

    .process-track { flex-direction: column; }
    .process-sep { transform: rotate(90deg); align-self: center; }

    .cta-banner { padding: 40px 34px; }
    .cta-actions { width: 100%; }

    .contact-info { padding: 38px 32px; }
    .contact-form-wrap { padding: 34px 32px; }

    .portfolio-card img { height: 420px; }

    /* About page */
    .about-collage { padding-right: 0; max-width: 560px; margin: 0 auto; }
    .collage-school {
        position: static;
        transform: none;
        width: 100%;
        height: 280px;
        margin-top: 18px;
        border-width: 4px;
    }
    .page-hero { padding: 72px 0; }
    .why-choose .feature-desc { max-width: 420px; }

    .service-showcase,
    .service-showcase--reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .service-showcase--reverse .service-showcase-media,
    .service-showcase--reverse .service-showcase-copy {
        order: initial;
    }
    .service-showcase-cta {
        min-width: 0;
        width: 100%;
        margin-top:10px ;
    }
    .legal-grid {
        grid-template-columns: 1fr;
    }
    ul.navbar-nav.ms-auto.align-items-lg-center{background: unset;}
    .site-header li.nav-item{padding: 0px;}
}

@media (max-width: 767.98px) {
    img.img-signage ,img.img-customize ,img.img-brand {
        height: auto;
    }
    .service-showcase{margin-bottom: 20px;}
    .section { padding: 60px 0; }
    .topbar { font-size: .8rem; }
    .topbar .container { gap: 4px; justify-content: center; }
    .footer-nav, .footer-sub-nav { gap: 22px; }
    .footer-nav a { font-size: 1.1rem; }
    .footer-bottom .container { justify-content: center; gap: 8px; text-align: center; }
    .footer-bottom .copyright { text-align: center; }
    .portfolio-card img { height: 360px; }
    .stat-card { padding: 16px 4px; }
    .portfolio-filter { gap: 10px; justify-content: flex-start; }
    .portfolio-pill { font-size: .86rem; padding: 9px 16px; }
    .service-showcase-title { margin-bottom: 20px; }
    .service-showcase-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .contact-map-section { padding-bottom: 60px; }
    .contact-map-frame,
    .contact-map-frame iframe {
        min-height: 360px;
    }
    .legal-card {
        padding: 24px;
    }
    .legal-note {
        padding: 28px 24px;
    }
}

@media (max-width: 575.98px) {
    .topbar-link span { font-size: .78rem; }
    .hero-title { font-size: 3rem; }
    .service-media { height: 180px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    .reveal, .js .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}
