/* ============================================================
   SPOTLESSRR - COMPLETE STYLESHEET
   Brand palette: logo navy + gray
   ============================================================ */

:root {
    --color-navy: #103060;
    --color-navy-dark: #0a2040;
    --color-gray: #404040;
    --color-gray-medium: #707070;
    --color-gray-light: #c0c0c0;
    --color-gray-pale: #e8e8e8;
    --color-off-white: #f1f1f1;
    --color-white: #ffffff;
    --header-height: 125px;
}

/* ---- FONTS ---- */
@font-face {
    font-family: GlacialBold;
    src: url('../fonts/GlacialIndifference-Bold.woff2') format('woff2'),
         url('../fonts/GlacialIndifference-Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: GlacialItalic;
    src: url('../fonts/GlacialIndifference-Italic.woff2') format('woff2'),
         url('../fonts/GlacialIndifference-Italic.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: GlacialIndifference;
    src: url('../fonts/GlacialIndifference-Regular.woff2') format('woff2'),
         url('../fonts/GlacialIndifference-Regular.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    font-family: GlacialIndifference, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #404040;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color .3s ease; }
a:hover { text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin-top: 0; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
h1,h2,h3,h4,h5,h6 { font-family: GlacialBold, sans-serif; line-height: 1.2; margin: 0 0 1rem; }

/* ---- COLOR UTILITIES ---- */
.bgblue    { background: var(--color-navy); }
.bgteal    { background: var(--color-gray-pale); }
.bgoffwhite{ background: var(--color-off-white); }
.bgwhite   { background: var(--color-white); }
.bgmedblue { background: var(--color-navy); }
.bgnavy    { background: var(--color-navy); }
.bgdarkblue{ background: var(--color-navy-dark); }

.colorwhite    { color: var(--color-white); }
.colornavy     { color: var(--color-navy); }
.colorteal     { color: var(--color-gray-medium); }
.colorfadedblue{ color: var(--color-gray-medium); }
.colormedblue  { color: var(--color-navy); }
.colorblue     { color: var(--color-navy); }

/* ---- FLEX UTILITIES ---- */
.flex-row-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.flex-col-wrapper { display: flex; flex-direction: column; }
.flex-space-between { justify-content: space-between; }
.flex-middle  { align-items: center; }
.flex-right   { justify-content: flex-end; }
.flex-center  { justify-content: center; }
.flex-left    { justify-content: flex-start; }

/* ---- GRID SYSTEM ---- */
.flex-row-wrapper [class*=grid-] { margin-right: 0; margin-left: 0; }

.grid-1  { width: 8.33333%; }
.grid-2  { width: 16.66667%; }
.grid-3  { width: 25%; }
.grid-4  { width: 33.33333%; }
.grid-5  { width: 41.66667%; }
.grid-6  { width: 50%; }
.grid-7  { width: 58.33333%; }
.grid-8  { width: 66.66667%; }
.grid-9  { width: 75%; }
.grid-10 { width: 83.33%; }
.grid-11 { width: 91.66%; }
.grid-12 { width: 100%; }

@media only screen and (max-width: 1024px) {
    .grid-1,.grid-2,.grid-3,.grid-4,.grid-5 { width: 50%; }
    .grid-7,.grid-8,.grid-9,.grid-10,.grid-11 { width: 100%; }
}
@media only screen and (max-width: 768px) {
    .grid-1,.grid-2,.grid-3,.grid-4,.grid-5,
    .grid-6,.grid-7,.grid-8,.grid-9,.grid-10,.grid-11 { width: 100%; }
}

/* ---- MAX-WIDTH ---- */
.max-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}
.narrow-width { max-width: 900px; }

/* ---- RESPONSIVE VISIBILITY ---- */
.desktop-only { display: block; }
.mobile-only  { display: none; }
.mobile-only-flex { display: none; }

/* ---- BUTTONS ---- */
.btn {
    background-color: var(--color-navy);
    background-clip: padding-box;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-width: 255px;
    height: 80px;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    font-family: GlacialBold, sans-serif;
    font-size: 16px;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: none;
    transition: all .3s ease;
    margin: 20px 0 40px;
}
.btn span { display: block; }
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity .3s ease;
}
.btn:hover::before { opacity: 1; }
.btn:hover { text-decoration: none; color: #fff; }

.btn-teal { background-color: var(--color-gray); color: var(--color-white); }
.btn-teal:hover { background-color: #505050; color: var(--color-white); }
.btn-blue  { background-color: var(--color-navy); }
.btn-navy  { background-color: var(--color-navy-dark); }

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-navy);
}
.announcement-bar p {
    font-weight: 800;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 0 3px;
    flex: 1;
    justify-content: center;
    color: #fff;
}
.announcement-bar p a { color: var(--color-gray-light) !important; font-weight: 800; }
.announcement-bar p a:hover { text-decoration: underline; color: #fff !important; }
.announcement-bar .close { color: #fff; }

.announcement-bar .close {
    display: inline-block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    flex-shrink: 0;
}
.announcement-bar .close .bar {
    position: relative;
    display: inline-block;
    background-color: transparent;
    width: 100%;
    height: 4px;
    top: -3px;
}
.announcement-bar .close .bar::before,
.announcement-bar .close .bar::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background-color: currentColor;
}
.announcement-bar .close .bar::before { transform: rotate(-45deg); }
.announcement-bar .close .bar::after  { transform: rotate(45deg); }

/* ---- HEADER ---- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    overflow: visible;
}

.header-wrap {
    padding: 10px 30px;
    flex-wrap: nowrap;
    background: #fff;
    border-bottom: 1px solid var(--color-gray-pale);
    box-shadow: 0 2px 10px rgba(16, 48, 96, 0.06);
    overflow: visible;
    align-items: center;
}

/* White header – nav & controls */
.header-wrap.bgwhite #primary-navigation-desktop .nav-container--desktop ul#menu-main-navigation > li > a {
    color: var(--color-navy);
}
.header-wrap.bgwhite #primary-navigation-desktop .nav-container--desktop ul#menu-main-navigation > li:hover > a,
.header-wrap.bgwhite #primary-navigation-desktop .nav-container--desktop ul#menu-main-navigation > li.has-submenu.open > a {
    color: var(--color-gray-medium);
}
.header-wrap.bgwhite #primary-navigation-desktop .nav-container--desktop ul#menu-main-navigation > li:last-child a {
    background-color: var(--color-navy);
    color: #fff;
}
.header-wrap.bgwhite #primary-navigation-desktop .nav-container--desktop ul#menu-main-navigation > li:last-child a:hover {
    background-color: var(--color-navy-dark);
    color: #fff;
}
.header-wrap.bgwhite .social-grid-desktop {
    background: var(--color-gray-pale);
}
.header-wrap.bgwhite .social-grid-desktop a,
.header-wrap.bgwhite .social-link {
    color: var(--color-navy);
}
.header-wrap.bgwhite .social-grid-desktop a:hover,
.header-wrap.bgwhite .social-link:hover {
    color: var(--color-gray-medium);
}
.header-wrap.bgwhite .menu-toggle .menu-title {
    color: var(--color-navy);
}
.header-wrap.bgwhite .menu-toggle .menu-btn .bar {
    background-color: var(--color-navy);
}
.header-wrap.bgwhite .menu-toggle .menu-btn .bar::before,
.header-wrap.bgwhite .menu-toggle .menu-btn .bar::after {
    background-color: var(--color-navy);
}
.header-wrap.bgwhite .menu-toggle:hover .menu-title {
    color: var(--color-gray-medium);
}

/* Logo */
#logo { transition: margin .2s ease .3s; }
#logo a {
    display: block;
    transition: all .4s ease;
}
#logo .site-logo,
.site-logo {
    display: block;
    height: 52px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
}
#header .site-logo {
    height: 56px;
    max-width: 230px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-sizing: border-box;
}
#primary-navigation-mobile .navicon .site-logo {
    height: 42px;
    max-width: 160px;
    background: transparent;
    padding: 0;
    border-radius: 0;
}
footer .footer-logo-img {
    display: block;
    max-width: 200px;
    height: auto;
    margin-bottom: 0;
}
#logo svg, #logo-wrap {
    display: block;
    height: 36px;
    width: auto;
}
.logo-text-wrap {
    display: flex;
    align-items: center;
    height: 36px;
}
.logo-icon-svg {
    height: 36px;
    width: auto;
    flex-shrink: 0;
}
.logo-name {
    font-family: GlacialBold, sans-serif;
    font-size: 26px;
    color: #fff;
    letter-spacing: .02em;
    margin-left: 12px;
    line-height: 1;
    white-space: nowrap;
}
.logo-tagline {
    font-family: GlacialIndifference, sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: .08em;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

/* Social icons in header desktop */
.social-grid-desktop {
    padding: 10px;
    height: 44px;
    background: rgba(255,255,255,.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 13px;
    margin-left: 32px;
}
.social-grid-desktop a,
.social-link { color: #fff; font-size: 14px; display: flex; align-items: center; }
.social-grid-desktop a:hover,
.social-link:hover { color: #c0c0c0; transition: all .3s ease; }

/* ---- DESKTOP NAVIGATION ---- */
#primary-navigation-desktop .nav-container--desktop ul {
    margin: 0; padding: 0; justify-content: flex-start;
}
#primary-navigation-desktop .nav-container--desktop ul li {
    margin: 0; padding: 0; list-style: none;
}
#primary-navigation-desktop .nav-container--desktop ul#menu-main-navigation {
    justify-content: flex-end;
    flex-wrap: nowrap;
}
#primary-navigation-desktop .nav-container--desktop ul#menu-main-navigation li {
    position: relative;
    flex-wrap: nowrap;
    white-space: nowrap;
    margin-right: 28px;
    display: flex;
    align-items: center;
}
#primary-navigation-desktop .nav-container--desktop ul#menu-main-navigation > li:last-child {
    margin-right: 0;
}
/* Last nav item (Contact Us) – pill button style */
#primary-navigation-desktop .nav-container--desktop ul#menu-main-navigation > li:last-child a {
    display: block;
    text-transform: uppercase;
    color: #103060;
    font-size: 14px;
    line-height: 22px;
    min-width: 154px;
    height: 55px;
    padding: 16px 34px;
    background-color: #fff;
    border-radius: 54px;
}
#primary-navigation-desktop .nav-container--desktop ul#menu-main-navigation > li:last-child a:hover {
    background-color: var(--color-gray-pale);
    color: var(--color-navy);
}
/* Regular nav links */
#primary-navigation-desktop .nav-container--desktop ul li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    transition: all .3s ease;
    font-family: GlacialBold, sans-serif;
}
#primary-navigation-desktop .nav-container--desktop ul li:hover > a { color: #c0c0c0; }
.header-wrap.bgwhite #primary-navigation-desktop .nav-container--desktop ul#menu-main-navigation > li:hover > a {
    color: var(--color-gray-medium);
}

/* Desktop submenu */
#primary-navigation-desktop .nav-container--desktop ul li.has-submenu .sub-menu {
    display: none;
    padding: 12px 10px 14px;
    align-items: flex-start;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    background-color: var(--color-navy);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(16, 48, 96, 0.2);
    z-index: 100;
}
#primary-navigation-desktop .nav-container--desktop ul li.has-submenu .sub-menu li {
    margin-top: 0;
    width: 100%;
    margin-right: 0;
}
#primary-navigation-desktop .nav-container--desktop ul li.has-submenu .sub-menu li:first-child { margin-top: 0; }
#primary-navigation-desktop .nav-container--desktop ul li.has-submenu .sub-menu li a {
    font-size: 15px;
    white-space: nowrap;
    color: #fff;
    padding: 8px 12px;
    width: 100%;
    border-radius: 4px;
}
#primary-navigation-desktop .nav-container--desktop ul li.has-submenu .sub-menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
#primary-navigation-desktop .nav-container--desktop ul li.has-submenu.open .sub-menu,
#primary-navigation-desktop .nav-container--desktop ul li.has-submenu:hover .sub-menu {
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
#primary-navigation-desktop .nav-container--desktop ul li.has-submenu.open > a { color: #c0c0c0; }
.header-wrap.bgwhite #primary-navigation-desktop .nav-container--desktop ul li.has-submenu.open > a {
    color: var(--color-gray-medium);
}

/* Menu indicator arrow */
.menu-indicator-b {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    margin-bottom: 4px;
    transition: transform .3s ease;
}
.has-submenu.open > a .menu-indicator-b { transform: rotate(-135deg); margin-bottom: -2px; }

/* Mobile menu toggle */
.menu-toggle {
    cursor: pointer;
    align-items: center;
    gap: 10px;
}
.menu-toggle .menu-title {
    font-size: 14px;
    letter-spacing: .06em;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    transition: all .3s ease;
}
.menu-toggle .menu-btn {
    width: 25px;
    height: 24px;
    cursor: pointer;
    margin-left: 0;
    position: relative;
    flex-shrink: 0;
}
.menu-toggle .menu-btn .bar {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 100%;
    height: 4px;
    background-color: #c0c0c0;
    border-radius: 100px;
}
.menu-toggle .menu-btn .bar::before,
.menu-toggle .menu-btn .bar::after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 100px;
    background-color: #c0c0c0;
    transition: all .3s ease;
}
.menu-toggle .menu-btn .bar::before { transform: translateY(-8px); width: 75%; }
.menu-toggle .menu-btn .bar::after  { transform: translateY(8px); width: 50%; }
.menu-toggle:hover .menu-title { color: #c0c0c0; }
.menu-toggle:hover .menu-btn .bar::before { width: 100%; }
.menu-toggle:hover .menu-btn .bar::after  { width: 100%; }
/* Open state */
.menu-toggle.open .menu-btn .bar { background: transparent; transform: translateY(-50%); }
.menu-toggle.open .menu-btn .bar::before { transform: translateY(0) rotate(45deg); width: 100%; }
.menu-toggle.open .menu-btn .bar::after  { transform: translateY(0) rotate(-45deg); width: 100%; }

/* ---- MOBILE NAVIGATION ---- */
body.mobile-menu-open {
    overflow: hidden;
}
body.mobile-menu-open #header {
    z-index: 1002;
}

#primary-navigation-mobile {
    display: block;
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1001;
    background-color: var(--color-navy);
    transform: translateX(100%);
    transition: transform 0.32s ease, visibility 0.32s ease;
    visibility: hidden;
    pointer-events: none;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.25);
}
#primary-navigation-mobile.open-active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav-inner {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 calc(24px + env(safe-area-inset-bottom));
}

.mobile-nav-list,
#primary-navigation-mobile ul.mobile-nav-list,
#primary-navigation-mobile #menu-main-navigation-mobile,
#primary-navigation-mobile #menu-main-navigation-1 {
    list-style: none;
    margin: 0;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.mobile-nav-list > li,
#primary-navigation-mobile .mobile-nav-list > li {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav-list > li > a,
#primary-navigation-mobile .mobile-nav-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    padding: 16px 4px;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.mobile-nav-list > li > a:hover,
#primary-navigation-mobile .has-submenu.open > .mobile-nav-parent {
    color: var(--color-gray-light);
}

#primary-navigation-mobile .has-submenu > .mobile-nav-parent::after,
#primary-navigation-mobile .has-submenu > a.mobile-nav-parent::after,
#primary-navigation-mobile .has-submenu > a[href="#"]::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1;
    color: var(--color-gray-light);
}

#primary-navigation-mobile .has-submenu.open > .mobile-nav-parent::after,
#primary-navigation-mobile .has-submenu.open > a.mobile-nav-parent::after,
#primary-navigation-mobile .has-submenu.open > a[href="#"]::after {
    content: '−';
}

#primary-navigation-mobile .has-submenu .sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 12px 8px;
}

#primary-navigation-mobile .has-submenu.open .sub-menu {
    display: block;
}

#primary-navigation-mobile .has-submenu .sub-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

#primary-navigation-mobile .has-submenu .sub-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
    padding: 10px 8px;
    text-decoration: none;
}

#primary-navigation-mobile .has-submenu .sub-menu a:hover {
    color: var(--color-gray-light);
}

#primary-navigation-mobile .mobile-nav-cta > a {
    margin-top: 8px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    justify-content: center;
}

#primary-navigation-mobile .mobile-nav-cta > a::after {
    display: none;
}

.mobile-nav-social {
    margin-top: 24px;
    padding: 20px 20px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav-social .social-title {
    color: var(--color-gray-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

/* Legacy nav markup fallback */
.nav-panels { display: block; height: 100%; }
.nav-panels > .grid-6.navicon { display: none; }
.nav-panels > .grid-6.flex-col-wrapper,
.nav-panels > .grid-6:nth-child(2) {
    width: 100%;
    padding: 0;
    overflow: visible;
}

.header-social-nav-menu { padding: 0; }
.header-social-nav-menu .social-title {
    font-size: 20px;
    line-height: 23px;
    letter-spacing: .04em;
    margin-bottom: .5em;
}
.social-grid { display: flex; flex-wrap: nowrap; }
.social-grid a {
    color: #404040;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    margin: .5em .5em 0;
    transition: color .3s ease;
    font-size: 30px;
}
.social-grid a:hover { color: #c0c0c0; }
#primary-navigation-mobile .social-grid a { color: #fff; }
#primary-navigation-mobile .social-grid a:hover { color: #c0c0c0; }

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
}
.mobile-nav-overlay.is-active { display: block; }

@media only screen and (max-width: 768px) {
    .menu-toggle {
        min-width: 44px;
        min-height: 44px;
        justify-content: flex-end;
    }
}

/* ---- HERO SECTION ---- */
.hero {
    margin-top: 125px;
    height: 513px;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    width: calc(100% + 10vh);
    transform: translate3d(-5vh, 0, 0);
    border-bottom: 10px solid #103060;
    border-radius: 0 0 50% 50% / 0 0 5vh 5vh;
    overflow: hidden;
}

/* ---- OFFSET-5050 ---- */
.offset-5050 {
    position: relative;
    margin-top: -45vh;
    margin-bottom: 50vh;
    z-index: 3;
    padding: 0 30px;
}

.offset-header {
    margin-bottom: 2vh;
}
.offset-header h1 {
    padding-bottom: 25px;
    margin-bottom: 25px;
    padding-right: 50px;
    display: inline-block;
    color: #fff;
    font-size: 3.5rem;
    line-height: 1.15;
}
.offset-header h3 { padding-bottom: 12px; }

.offset-wrap { align-items: flex-start; }
.offset-wrap .left {
    background: #103060;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.offset-wrap .right {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 450px;
}
.offset-wrap .left .content h2 { color: #fff; font-size: 2rem; margin-bottom: 20px; }
.offset-wrap .left .content p { color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 15px; }

/* ---- BGIMG-5050 ---- */
.bgimg-5050 {
    background-position: 40vw bottom;
    background-size: contain;
    background-repeat: no-repeat;
}
.bgimg-5050 .left .content {
    padding: 60px 50px 60px 30px;
}
.bgimg-5050 h3.subtitle {
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #404040;
    margin-bottom: 8px;
}
.bgimg-5050 h2.title {
    font-size: 2rem;
    color: #404040;
    margin-bottom: 20px;
}
.bgimg-5050 p { color: #444; line-height: 1.7; margin-bottom: 20px; }
.bgimg-5050 p img { display: inline-block; vertical-align: middle; margin-right: 10px; }

.playbtn { display: inline-block; margin-bottom: 20px; cursor: pointer; }
.playbtn svg { width: 80px; height: 80px; }
.playbtn-svg { fill: transparent; }

/* Gallery slider */
.gallery-imgs { position: relative; }
.gallery-imgs .slide, .gallery-imgs .slick-slide {
    background-size: cover;
    background-position: center;
    height: 450px;
}
.flexible-col-slider-split { overflow: hidden; }

/* ---- BLOCKS-5050 ---- */
.blocks-5050 { align-items: stretch; position: relative; }
.blocks-5050 .left, .blocks-5050 .right {
    padding: 130px 0;
    text-align: center;
    position: relative;
}
.blocks-5050 .left.bgblue, .blocks-5050 .left.bgdarkblue,
.blocks-5050 .left.bgfadedblue, .blocks-5050 .left.bgmedblue,
.blocks-5050 .right.bgblue, .blocks-5050 .right.bgdarkblue,
.blocks-5050 .right.bgfadedblue, .blocks-5050 .right.bgmedblue {
    color: #fff;
}
.blocks-5050 .left.bgoffwhite, .blocks-5050 .left.bgteal,
.blocks-5050 .left.bgwhite, .blocks-5050 .right.bgoffwhite,
.blocks-5050 .right.bgteal, .blocks-5050 .right.bgwhite {
    color: #404040;
}
.blocks-5050 .left .content, .blocks-5050 .right .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    height: 100%;
    width: 60%;
    max-width: 350px;
    margin: 0 auto;
    color: currentColor;
}
.blocks-5050 .content h2 { font-size: 2rem; margin-bottom: 15px; }
.blocks-5050 .content p { line-height: 1.7; margin-bottom: 20px; }
.blocks-5050 .content .btn { margin-top: auto; }
.blocks-5050 .svg-wrap { margin-bottom: 20px; }
.blocks-5050 .svg-wrap svg { width: 59px; height: 59px; }
.bgblue .colorteal, .bgmedblue .colorteal { color: var(--color-gray-light); }
.bgblue .btn.btn-teal { background-color: var(--color-gray); color: var(--color-white); }
.blocks-5050 .bgimg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ---- FEATURED POST ---- */
.featured-post { padding: 40px 0 60px; }
.featured-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 60px auto;
    padding: 5%;
}
.featured-card .featured-heading { padding: 15px 0; }
.featured-card .subheading {
    margin: 0 !important;
    text-align: center;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #707070;
    display: block;
    margin-bottom: 8px !important;
}
.featured-card h2.title { font-size: 2rem; color: #404040; text-align: center; }
.featured-card .card-section {
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 50px 0;
    width: 100%;
}
.featured-card .card-image {
    width: 50%;
    padding-left: 10%;
}
.featured-card .card-image .image {
    width: 90%;
    min-height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5%;
    display: block;
}
.featured-card .card-content {
    width: 50%;
    padding-right: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-card p.date { font-size: 12px; color: #a0a0a0; margin-bottom: 8px; }
.card-tags { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.card-content span h4 {
    width: auto;
    height: 35px;
    text-align: center;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #103060;
    margin-right: 5px;
    padding: 0 12px;
    font-size: 11px;
    line-height: 1;
    color: #fff;
    font-family: GlacialBold, sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.featured-card .post-title { font-size: 26px; color: #404040; padding: 15px 0; margin: 0; }
.featured-card .card-content p { max-width: 75%; color: #444; line-height: 1.7; font-size: 0.95rem; }
.featured-card .card-content p a { color: #103060; font-weight: 700; }

/* ---- CASE STUDY SLIDER ---- */
.flexible-case-study-slider { }
.case-study-slider { }
.case-study-slider .slide,
.case-study-slider .slick-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    position: relative;
}
.flexible-case-study-slider .flex-row-wrapper {
    min-height: 100vh;
    max-width: 1040px;
    margin: auto;
    align-items: center;
    padding-bottom: 64px;
}
.flexible-case-study-slider .testimonial {
    align-self: flex-end;
    border-radius: 25px;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: auto;
    margin-bottom: 135px;
    background-color: #103060;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px;
    flex: 1;
}
.flexible-case-study-slider .testimonial .quotes {
    width: 20%;
    position: absolute;
    transform: translateY(-50%);
}
.flexible-case-study-slider .testimonial .quotes svg { width: 100%; height: auto; fill: #c0c0c0; }
.flexible-case-study-slider .testimonial .testimonial-inner {
    width: 65%;
    padding: 20% 0 5%;
    margin: 0 auto;
    font-weight: 800;
    font-size: 19.64px;
    line-height: 33.4px;
    font-family: GlacialBold, sans-serif;
    letter-spacing: .02em;
}
.flexible-case-study-slider .testimonial .testimonial-inner p { color: #fff; font-style: normal; margin: 0; }
.flexible-case-study-slider .testimonial .testimonial-author { padding: 0 10% 10% 0; }
.flexible-case-study-slider .testimonial .testimonial-author p { text-align: right; font-family: GlacialBold, sans-serif; }
.flexible-case-study-slider .testimonial .testimonial-author .testimonial-name { font-size: 25px; line-height: 126.9%; color: #fff; }
.flexible-case-study-slider .testimonial .testimonial-author .testimonial-title { font-size: 13.88px; line-height: 126.9%; text-transform: uppercase; color: #c0c0c0; }

.flexible-case-study-slider .right {
    max-width: 700px;
    padding: 140px 0;
    margin-right: auto;
    flex: 1;
}
.flexible-case-study-slider .right .content { margin-left: 6vw; max-width: 400px; }
.flexible-case-study-slider .right .content h3 {
    padding-bottom: .5em;
    font-size: 12px;
    line-height: normal;
    font-family: GlacialBold, sans-serif;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.flexible-case-study-slider .right .content h2 {
    padding-bottom: 65px;
    font-size: 2rem;
    font-family: GlacialBold, sans-serif;
}
.flexible-case-study-slider .right .content p { color: rgba(255,255,255,.85); line-height: 1.7; }
.flexible-case-study-slider .right .button-bar {
    margin-top: 80px;
    margin-left: 6vw;
    margin-right: auto;
}
.flexible-case-study-slider .slick-dots {
    position: absolute;
    bottom: 64px;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.flexible-case-study-slider .slick-dots li { width: 12px; height: 12px; }
.flexible-case-study-slider .slick-dots li button {
    width: 12px; height: 12px;
    background: rgba(255,255,255,.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    opacity: 1;
}
.flexible-case-study-slider .slick-dots li.slick-active button { background: #fff; }

/* ---- THREE-GRID ---- */
.three-grid { background-color: #fff; padding: 80px 0; }
.three-grid .title-wrap { margin-bottom: 50px; padding: 0 30px; }
.three-grid .title-wrap h2 { font-size: 2.5rem; color: #404040; text-align: center; }
.three-grid .slider-wrap { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.three-grid .single-col { padding: 0 30px; text-align: center; }
.three-grid .content { display: flex; flex-direction: column; align-items: center; }
.three-grid .icon { margin-bottom: 25px; display: flex; align-items: center; justify-content: center; }
.three-grid h3 { font-size: 1.5rem; color: #404040; margin-bottom: 15px; }
.three-grid p { color: #555; line-height: 1.7; margin-bottom: 25px; font-size: .95rem; }

/* ---- ACCOLADES ---- */
.accolades { padding: 50px 30px; }
.accolades .flex-row-wrapper { gap: 20px; flex-wrap: wrap; }
.accolades .accolade {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 15px 0;
}
.accolades img { margin: 0 auto; max-height: 80px; }
.accolades img:hover { opacity: .6; }

/* ---- FOOTER ---- */
footer { position: relative; background: #fff; border-top: 1px solid #e8e8e8; }
footer a { color: #707070; transition: color .3s ease; }
footer a:hover { color: var(--color-navy); }
footer .footer-main {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px 56px;
    align-items: start;
    padding: 48px 30px;
    position: relative;
    width: 100%;
}
footer .logo-section {
    flex: none;
    min-width: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
}
footer .logo-section > div { display: block; width: 100%; }
footer .logo-section p {
    font-size: 14px;
    line-height: 1.55;
    margin: 12px 0 0;
    max-width: 240px;
    color: #555;
}
footer .logo-section p a { text-transform: uppercase; text-decoration: underline; font-family: GlacialBold, sans-serif; }
footer .logo-section .footer-logo { display: inline-block; margin-bottom: 12px; max-width: 220px; }
footer .logo-text-footer {
    font-family: GlacialBold, sans-serif;
    font-size: 28px;
    color: #404040;
    margin-bottom: 15px;
    display: block;
}
footer .social-section { margin-top: 24px; }
footer .social-section h4 { white-space: nowrap; font-size: .95rem; margin-bottom: 8px; }

footer .footer-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 28px;
    flex: none;
    flex-wrap: nowrap;
    padding: 0;
    max-width: none;
    margin: 0;
    justify-content: start;
    align-items: start;
    width: 100%;
}
footer .footer-nav .nav-col {
    display: block;
    min-width: 0;
}
footer .footer-nav .nav-col.footer-contact-section { margin-left: 0; }
footer .footer-nav .nav-col .footer-services-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}
footer .footer-nav .nav-col .footer-services-grid ul { margin: 0; padding: 0; }
footer .footer-nav .nav-col .menu-footer-container ul li { list-style: none; }
footer .footer-nav .nav-col .menu-footer-container #menu-footer {
    display: grid;
    grid-template-columns: 1fr;
}
footer .footer-nav .nav-col .btn {
    min-width: 108px;
    height: 36px;
    border-radius: 0;
    padding: 6px 12px;
    font-size: 16px;
    margin-left: 0;
    margin-top: 16px;
}
footer .footer-nav .nav-col .btn:hover { color: #404040; }
footer .footer-nav .nav-col .nav-col-center h4 { margin-left: 0; }
footer .footer-nav .nav-col .address, footer .footer-nav .nav-col .phone {
    text-align: left;
    line-height: 1.35;
    flex-wrap: nowrap;
    align-items: flex-start;
}
footer .footer-nav .nav-col .address i, footer .footer-nav .nav-col .phone i {
    max-width: 15px;
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}
footer .footer-nav .phone { margin-bottom: 14px; }
footer .footer-nav .phone i { font-size: 16px; }
footer .footer-nav h4 {
    padding-bottom: 14px;
    margin: 0;
    font-size: 1rem;
    color: var(--color-navy);
}
footer .footer-nav ul { list-style: none; padding: 0; margin: 0; }
footer .footer-nav ul li { margin-bottom: 8px; line-height: 1.45; }
footer .footer-nav ul li a { font-size: 14px; }
footer .footer-nav .social-grid { color: #404040; display: flex; flex-wrap: wrap; gap: 8px; }
footer .footer-nav .social-grid a {
    color: #404040;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin: 0;
    transition: color .3s ease;
    font-size: 22px;
}
footer .footer-nav .social-grid a:hover { color: var(--color-navy); }
footer .copyright {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#bowerhouse-sig .signature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: #707070;
    text-transform: uppercase;
    letter-spacing: .1em;
}
#bowerhouse-sig .signature:hover { color: #c0c0c0; }

/* ---- TEXT HELPERS ---- */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* ---- SCROLLED HEADER ---- */
#header.scrolled .announcement-bar { display: none; }

/* ---- INNER PAGE HERO (non-home pages) ---- */
body:not(.home) .trust-banner {
    margin-top: var(--header-height);
}
body:not(.home) .trust-banner + .page-banner,
body:not(.home) .trust-banner + section.page-banner,
body:not(.home) .trust-banner + div.page-banner {
    margin-top: 0;
}
.page-banner {
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-navy);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    margin-top: var(--header-height);
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(16,48,96,.4) 0%, rgba(16,48,96,.8) 100%);
}
.page-banner .banner-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}
.page-banner .banner-subtitle {
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #c0c0c0;
    margin-bottom: 8px;
    display: block;
    font-family: GlacialBold, sans-serif;
}
.page-banner h1 { font-size: 3rem; color: #fff; line-height: 1.1; margin: 0; }
.page-banner .staff-credit {
    color: #c0c0c0;
    font-size: 13px;
    margin-top: 12px;
    display: block;
    font-family: GlacialBold, sans-serif;
    letter-spacing: .04em;
}

/* ---- INNER PAGE SECTIONS ---- */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.section-intro { max-width: 700px; }
.section-intro h2 { font-size: 1.3rem; text-transform: uppercase; letter-spacing: .08em; color: #707070; margin-bottom: 15px; }
.section-intro h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; color: #707070; margin-bottom: 8px; }
.section-intro p { color: #444; line-height: 1.7; }
.section-intro a { color: #103060; font-weight: 700; text-decoration: underline; }
.section-intro a:hover { color: var(--color-gray); }

/* ---- HOW TO REPORT / PLATINUM PROCESS ---- */
.platinum-process { padding: 50px 0; background: #f1f1f1; }
.platinum-process h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    text-align: center;
    margin-bottom: 40px;
    color: #404040;
}
.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 30px;
}
.process-step {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.process-step-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #103060;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #c0c0c0;
}
.process-step h4 {
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #404040;
    margin: 0;
}
.process-arrow {
    font-size: 1.5rem;
    color: #103060;
    align-self: flex-start;
    margin-top: 20px;
    padding: 0 5px;
}

/* ---- EXPERIENCE SECTION (fire/flood/enviro pages) ---- */
.experience-section { padding: 80px 0; }
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}
.experience-item h3 {
    font-size: 1.2rem;
    color: #404040;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-navy);
}
.experience-item p { color: #555; line-height: 1.7; font-size: .95rem; }

/* ---- ABOUT PAGE ---- */
.about-intro-section { padding: 80px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-intro-text h2 { font-size: 1.5rem; text-transform: uppercase; letter-spacing: .08em; color: #707070; margin-bottom: 15px; }
.about-intro-text h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .12em; color: #103060; margin-bottom: 25px; }
.about-intro-text p { color: #444; line-height: 1.8; margin-bottom: 18px; }
.about-intro-text p:last-child { margin-bottom: 0; }
.about-signature { font-style: italic; color: #707070; font-size: .9rem; margin-top: 20px; }

/* Timeline */
.timeline-section { padding: 80px 0; background: #f1f1f1; }
.timeline-section h2 { font-size: 2rem; text-align: center; margin-bottom: 50px; color: #404040; }
.timeline-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}
.timeline-list::before {
    content: '';
    position: absolute;
    left: 94px;
    top: 0; bottom: 0;
    width: 2px;
    background: #103060;
}
.timeline-item { display: flex; gap: 30px; margin-bottom: 40px; align-items: flex-start; }
.timeline-year {
    font-family: GlacialBold, sans-serif;
    font-size: 1.2rem;
    color: #103060;
    width: 60px;
    flex-shrink: 0;
    text-align: right;
    padding-top: 18px;
}
.timeline-content {
    background: #fff;
    padding: 20px 25px;
    flex: 1;
    border-left: 3px solid var(--color-navy);
    margin-left: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.timeline-content p { color: #555; line-height: 1.6; margin: 0; font-size: .95rem; }

/* Values Section */
.values-section { padding: 80px 0; }
.values-section > .max-width > h2 { font-size: 2rem; text-align: center; margin-bottom: 50px; }
.values-tabs-wrap { display: flex; gap: 0; }
.values-tabs { display: flex; flex-direction: column; gap: 5px; min-width: 200px; }
.values-tab {
    padding: 15px 20px;
    background: #f1f1f1;
    cursor: pointer;
    font-family: GlacialBold, sans-serif;
    font-size: .85rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #707070;
    border-left: 3px solid transparent;
    transition: all .2s ease;
}
.values-tab:hover, .values-tab.active {
    background: #103060;
    color: #fff;
    border-left-color: var(--color-gray-light);
}
.values-panel { display: none; padding: 40px 50px; flex: 1; background: #f1f1f1; }
.values-panel.active { display: block; }
.values-panel h2 { font-size: 1.8rem; color: #404040; margin-bottom: 20px; }
.values-panel p { color: #444; line-height: 1.7; margin-bottom: 15px; }
.values-panel a { color: #103060; text-decoration: underline; font-weight: 700; }

/* Vision section */
.vision-section { padding: 80px 0; background: var(--color-navy); }
.vision-section h2 { font-size: 2rem; color: #fff; text-align: center; margin-bottom: 30px; }
.vision-section .lead { color: rgba(255,255,255,.7); text-align: center; max-width: 700px; margin: 0 auto 50px; line-height: 1.7; }
.vision-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.vision-item { display: flex; gap: 15px; align-items: flex-start; }
.vision-dot {
    width: 8px; height: 8px;
    background: #c0c0c0;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}
.vision-item h4 { font-size: .95rem; color: #fff; margin-bottom: 5px; }
.vision-item p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; margin: 0; }

/* Partners section */
.partners-section { padding: 80px 0; background: #f1f1f1; }
.partners-section h2 { font-size: 2rem; text-align: center; margin-bottom: 15px; }
.partners-section .lead { text-align: center; color: #555; max-width: 700px; margin: 0 auto 50px; line-height: 1.7; }
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.partner-card {
    background: #fff;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,.05);
}
.partner-card h3 { font-size: 1.3rem; color: #404040; margin-bottom: 15px; }
.partner-card p { color: #555; line-height: 1.7; margin-bottom: 20px; font-size: .9rem; }

/* ---- TEAM PAGE ---- */
.team-intro { padding: 60px 0; text-align: center; }
.team-intro h2 { font-size: 1.8rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 15px; }
.team-intro p { max-width: 600px; margin: 0 auto; color: #555; line-height: 1.7; }
.team-section { padding: 50px 0; }
.team-section-title {
    font-size: 1.3rem;
    color: #404040;
    padding: 20px 0 10px;
    border-bottom: 2px solid #f1f1f1;
    margin-bottom: 30px;
}
.team-section-subtitle { color: #707070; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 5px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 50px; }
.team-member { text-align: center; }
.team-photo {
    width: 100%;
    aspect-ratio: 1;
    background: #f1f1f1;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 5px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-member h4 { font-size: 1rem; color: #404040; margin-bottom: 4px; }
.team-member .role { font-size: .8rem; color: #707070; letter-spacing: .04em; }
.team-life { padding: 80px 0; background: #f1f1f1; }
.team-life h2 { font-size: 2rem; text-align: center; margin-bottom: 15px; }
.team-life p { text-align: center; max-width: 600px; margin: 0 auto; color: #555; line-height: 1.7; }

/* ---- CAREERS PAGE ---- */
.careers-intro { padding: 60px 0; }
.careers-intro h2 { font-size: 2rem; margin-bottom: 20px; }
.careers-intro p { max-width: 700px; color: #444; line-height: 1.7; }
.job-list { margin: 40px 0; }
.job-category { margin-bottom: 40px; }
.job-category-title {
    font-size: 1rem;
    color: #fff;
    background: #103060;
    padding: 12px 20px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.job-item {
    padding: 20px;
    border: 1px solid #f1f1f1;
    border-top: none;
    background: #fff;
}
.job-item h4 { font-size: 1rem; color: #404040; margin-bottom: 5px; }
.job-item .job-meta { font-size: .85rem; color: #707070; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.benefit-card { padding: 30px; background: #f1f1f1; border-top: 3px solid #103060; }
.benefit-card h3 { font-size: 1.1rem; color: #404040; margin-bottom: 10px; }
.benefit-card p { color: #555; line-height: 1.6; font-size: .9rem; margin: 0; }
.recruit-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.recruit-step { text-align: center; }
.recruit-step .step-num {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #103060;
    color: #c0c0c0;
    font-family: GlacialBold, sans-serif;
    font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.recruit-step h3 { font-size: 1.1rem; color: #404040; margin-bottom: 10px; }
.recruit-step p { color: #555; line-height: 1.7; font-size: .9rem; }

/* ---- NEWS PAGE ---- */
.news-filter { margin-bottom: 40px; display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
    padding: 8px 20px;
    border: 2px solid #103060;
    cursor: pointer;
    font-family: GlacialBold, sans-serif;
    font-size: .8rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #103060;
    background: transparent;
    transition: all .2s ease;
}
.filter-btn.active, .filter-btn:hover { background: #103060; color: #fff; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 30px; }
.news-card { background: #fff; border: 1px solid #f1f1f1; overflow: hidden; }
.news-card-img { width: 100%; height: 200px; background: #f1f1f1; background-size: cover; background-position: center; }
.news-card-content { padding: 20px; }
.news-card-content .date { font-size: .8rem; color: #a0a0a0; margin-bottom: 8px; }
.news-card-content h3 { font-size: 1.1rem; color: #404040; margin-bottom: 10px; line-height: 1.4; }
.news-card-content p { font-size: .9rem; color: #666; line-height: 1.6; margin: 0; }
.news-tags { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.news-tag {
    background: #103060;
    color: #fff;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    font-family: GlacialBold, sans-serif;
}

/* ---- FAQ PAGE ---- */
.faq-list { margin-top: 50px; }
.faq-item { border-bottom: 1px solid #f1f1f1; }
.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: GlacialBold, sans-serif;
    color: #404040;
    font-size: 1rem;
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: #103060; flex-shrink: 0; margin-left: 20px; }
.faq-item.is-open .faq-question::after { content: '−'; }
.faq-answer { display: none; padding: 0 0 20px; color: #555; line-height: 1.7; }
.faq-item.is-open .faq-answer { display: block; }

/* ---- CONTACT PAGE ---- */
.contact-info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
.contact-info-item { text-align: center; padding: 40px 20px; background: #f1f1f1; }
.contact-info-item i { font-size: 2rem; color: #103060; margin-bottom: 15px; display: block; }
.contact-info-item h3 { font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; color: #404040; margin-bottom: 10px; }
.contact-info-item p, .contact-info-item a { color: #555; font-size: .95rem; line-height: 1.6; }
.contact-form-section { padding: 60px 0; }
.contact-form { max-width: 700px; }
.form-row { margin-bottom: 20px; }
.form-row label {
    display: block;
    font-family: GlacialBold, sans-serif;
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #404040;
    margin-bottom: 8px;
}
.form-row input, .form-row textarea, .form-row select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-family: GlacialIndifference, sans-serif;
    font-size: .95rem;
    color: #404040;
    background: #fff;
    transition: border-color .2s ease;
    outline: none;
    border-radius: 0;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: #103060; }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-name-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-required { color: var(--color-navy); }
.form-note { font-size: .8rem; color: #888; margin-top: 5px; }
.captcha-note { font-size: .75rem; color: #888; margin-bottom: 20px; }
.g-recaptcha { margin-bottom: 20px; }

/* ---- SUCCESS STORIES PAGE ---- */
.case-study-section { padding: 80px 0; background: #f1f1f1; }
.case-study-section h2 { font-size: 2rem; margin-bottom: 40px; text-align: center; }
.case-study-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px; }
.case-study-card { padding: 30px; background: #fff; border-top: 3px solid var(--color-navy); }
.case-study-card h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: #707070; margin-bottom: 10px; }
.case-study-card h4 { font-size: 1.1rem; color: #404040; margin-bottom: 15px; }
.case-study-card p { color: #555; line-height: 1.7; font-size: .9rem; margin: 0; }
.reviews-section { padding: 80px 0; }
.reviews-section h2 { font-size: 2rem; margin-bottom: 40px; text-align: center; }
.review-card {
    padding: 40px 40px 40px 60px;
    background: #f1f1f1;
    border-left: 4px solid var(--color-navy);
    position: relative;
    margin-bottom: 30px;
}
.review-card::before {
    content: '"';
    font-size: 6rem;
    color: #c0c0c0;
    opacity: .3;
    position: absolute;
    top: 5px; left: 15px;
    line-height: 1;
    font-family: Georgia, serif;
}
.review-card p { color: #444; line-height: 1.7; font-style: italic; position: relative; z-index: 1; margin: 0; font-size: .95rem; }

/* ---- COMMUNITY PAGE ---- */
.community-section { padding: 80px 0; }
.community-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; margin-top: 50px; }
.community-item h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: #707070; margin-bottom: 5px; }
.community-item h2 { font-size: 1.5rem; color: #404040; margin-bottom: 15px; }
.community-item p { color: #555; line-height: 1.7; font-size: .95rem; }
.community-extra { padding: 80px 0; background: #f1f1f1; }
.community-extra h2 { font-size: 2rem; margin-bottom: 40px; }
.community-extra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.community-extra-item h3 { font-size: 1.1rem; color: #404040; margin-bottom: 10px; }
.community-extra-item p { color: #555; line-height: 1.7; font-size: .9rem; }

/* ---- SUSTAINABILITY PAGE ---- */
.sustainability-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 50px 0; }
.stat-card { text-align: center; padding: 50px 20px; background: var(--color-navy); }
.stat-card:nth-child(even) { background: var(--color-gray); }
.stat-card .number { font-family: GlacialBold, sans-serif; font-size: 3rem; color: var(--color-gray-light); display: block; margin-bottom: 10px; }
.stat-card p { color: rgba(255,255,255,.85); font-size: .9rem; margin: 0; }
.eco-section { padding: 80px 0; }
.eco-section h2 { font-size: 2rem; margin-bottom: 20px; }
.eco-section p { color: #444; line-height: 1.7; max-width: 700px; margin-bottom: 20px; }
.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.eco-card { padding: 35px 30px; border-top: 3px solid var(--color-navy); background: #fff; }
.eco-card h3 { font-size: 1.2rem; color: #404040; margin-bottom: 15px; }
.eco-card p { color: #555; line-height: 1.7; font-size: .9rem; margin: 0; }

/* ---- FACILITY PAGE ---- */
.facility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin: 40px 0; }
.facility-img {
    aspect-ratio: 4/3;
    background: #f1f1f1;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* ---- PC CABINETS / MOVING PAGES ---- */
.service-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin: 50px 0; }
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon {
    width: 50px; height: 50px;
    background: var(--color-navy);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--color-white);
}
.feature-content h3 { font-size: 1.1rem; color: #404040; margin-bottom: 8px; }
.feature-content p { color: #555; line-height: 1.6; font-size: .9rem; margin: 0; }

/* ---- REPORT A LOSS ---- */
.report-section { padding: 80px 0; background: #f1f1f1; }
.report-form { max-width: 700px; margin: 0 auto; }

/* ---- PROJECT COST CALCULATOR ---- */
.calc-page { padding: 60px 0 90px; background: var(--color-off-white); }
.calc-wrap { max-width: 820px; margin: 0 auto; }
.calc-card {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 28px rgba(16, 48, 96, 0.1);
    overflow: hidden;
}
.calc-card-header {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 36px 40px 32px;
    text-align: center;
}
.calc-card-header .calc-eyebrow {
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-gray-light);
    margin-bottom: 10px;
    font-family: GlacialBold, sans-serif;
}
.calc-card-header h2 { color: var(--color-white); font-size: 2rem; margin-bottom: 6px; }
.calc-card-header p { color: rgba(255,255,255,.75); margin: 0; font-size: .95rem; }
.calc-body { padding: 40px; }
.calc-step { margin-bottom: 32px; }
.calc-step-label {
    font-family: GlacialBold, sans-serif;
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-gray-medium);
    margin-bottom: 14px;
    display: block;
}
.calc-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.calc-tab {
    flex: 1 1 calc(33% - 10px);
    min-width: 140px;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-gray);
    font-family: GlacialBold, sans-serif;
    font-size: .82rem;
    text-align: center;
    cursor: pointer;
    transition: all .2s ease;
    line-height: 1.35;
}
.calc-tab:hover { border-color: var(--color-navy); color: var(--color-navy); }
.calc-tab.active {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-white);
}
.calc-select,
.calc-input {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--color-gray);
    font-family: inherit;
    background: var(--color-white);
    transition: border-color .2s;
}
.calc-select:focus,
.calc-input:focus { outline: none; border-color: var(--color-navy); }
.calc-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.calc-field label {
    display: block;
    font-size: .8rem;
    color: var(--color-gray-medium);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.calc-result {
    background: var(--color-navy);
    border-radius: 10px;
    padding: 32px 28px;
    text-align: center;
    margin-bottom: 28px;
}
.calc-result-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.calc-result-label {
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--color-gray-light);
    margin-bottom: 10px;
    font-family: GlacialBold, sans-serif;
}
.calc-result-range {
    font-family: GlacialBold, sans-serif;
    font-size: 2.2rem;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 8px;
}
.calc-result-note { font-size: .85rem; color: rgba(255,255,255,.65); margin: 0; min-height: 1.2em; }
.calc-disclaimer {
    font-size: .8rem;
    color: var(--color-gray-medium);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 28px;
    padding: 0 10px;
}
.calc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.calc-actions .btn { margin: 0; min-width: 220px; height: 64px; font-size: 14px; }
.calc-actions .btn-call { background: var(--color-gray); }
.calc-services-note {
    max-width: 820px;
    margin: 50px auto 0;
    padding: 0 30px;
    text-align: center;
}
.calc-services-note h3 { color: var(--color-navy); margin-bottom: 12px; }
.calc-services-note p { color: var(--color-gray-medium); line-height: 1.7; max-width: 640px; margin: 0 auto; }
.calc-quote-form-wrap {
    max-width: 820px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}
.calc-quote-form {
    background: var(--color-white);
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 4px 28px rgba(16, 48, 96, 0.08);
}
.calc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.calc-form-group { margin-bottom: 20px; }
.calc-form-group label {
    display: block;
    font-size: .8rem;
    color: var(--color-gray-medium);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.calc-form-group .req { color: #e03737; }
.calc-form-group input,
.calc-form-group textarea {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: .95rem;
    font-family: inherit;
    color: var(--color-gray);
}
.calc-form-group input:focus,
.calc-form-group textarea:focus { outline: none; border-color: var(--color-navy); }
.calc-form-group input[readonly] { background: var(--color-off-white); }
.calc-quote-form .btn { margin: 10px 0 0; min-width: 100%; height: 60px; }
.calc-contact-cards { display: flex; flex-direction: column; gap: 16px; }
.calc-contact-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(16, 48, 96, 0.07);
    border-left: 4px solid var(--color-navy);
}
.calc-contact-card i { color: var(--color-navy); font-size: 1.2rem; margin-bottom: 10px; }
.calc-contact-card h4 { color: var(--color-navy); font-size: 1rem; margin-bottom: 4px; }
.calc-contact-card p { color: var(--color-gray-medium); font-size: .85rem; margin: 0; }
.calc-form-success { text-align: center; padding: 30px 10px; }
.calc-form-success i { font-size: 2.5rem; color: var(--color-navy); margin-bottom: 14px; }
.calc-form-success h3 { color: var(--color-navy); margin-bottom: 8px; }
.calc-form-success p { color: var(--color-gray-medium); }

/* ---- SERVICES HUB & CATEGORY CARDS ---- */
.service-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-cat-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(16, 48, 96, 0.08);
    border-top: 4px solid var(--color-navy);
    transition: transform .2s, box-shadow .2s;
    display: block;
    color: inherit;
}
.service-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(16, 48, 96, 0.14);
    text-decoration: none;
}
.service-cat-card i {
    font-size: 2rem;
    color: var(--color-navy);
    margin-bottom: 16px;
    display: block;
}
.service-cat-card h3 {
    color: var(--color-navy);
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.service-cat-card p {
    color: var(--color-gray-medium);
    font-size: .88rem;
    line-height: 1.6;
    margin: 0;
}

@media only screen and (max-width: 1024px) {
    .service-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media only screen and (max-width: 580px) {
    .service-cat-grid { grid-template-columns: 1fr; }
}

.services-cta-bar {
    background: var(--color-navy);
    padding: 60px 30px;
    text-align: center;
}
.services-cta-bar h2 { color: #fff; margin-bottom: 12px; }
.services-cta-bar p { color: rgba(255, 255, 255, 0.75); margin-bottom: 28px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.services-cta-bar .btn { margin: 0 10px 10px; min-width: 220px; height: 64px; }

@media only screen and (max-width: 768px) {
    .calc-body { padding: 28px 22px; }
    .calc-card-header { padding: 28px 22px; }
    .calc-card-header h2 { font-size: 1.6rem; }
    .calc-tab { flex: 1 1 100%; }
    .calc-details-grid { grid-template-columns: 1fr; }
    .calc-result-range { font-size: 1.7rem; }
    .calc-actions .btn { min-width: 100%; }
}

/* ---- LITY OVERRIDE ---- */
.lity-active { overflow: hidden; }

/* ---- SLICK OVERRIDE ---- */
.slick-slide { display: block; }
.slick-list { overflow: hidden; }
.slick-track { display: flex; }

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

@media only screen and (max-width: 1200px) {
    .three-grid .single-col { padding: 0 15px; }
    .offset-header h1 { font-size: 3rem; }
}

@media only screen and (max-width: 1024px) {
    /* ---- TABLET SPACING ADJUSTMENTS ---- */
    .section-pad,
    .experience-section,
    .about-intro-section,
    .timeline-section,
    .values-section,
    .vision-section,
    .partners-section,
    .team-life,
    .case-study-section,
    .reviews-section,
    .community-section,
    .community-extra,
    .eco-section,
    .report-section { padding: 60px 0; }
    
    .team-intro,
    .careers-intro,
    .contact-form-section,
    .services-cta-bar,
    .section-pad-sm { padding: 45px 0; }
    
    .services-cta-bar { padding-left: 20px; padding-right: 20px; }
    
    .experience-grid { gap: 30px; margin-top: 40px; }
    .community-grid { gap: 40px; margin-top: 40px; }
    .home-intro-grid { gap: 32px; }

    /* Visibility */
    .desktop-only { display: none !important; }
    .mobile-only { display: block; }
    .mobile-only-flex { display: flex !important; }

    /* Header */
    .header-wrap { padding: 10px 16px; min-height: 64px; }
    #header .site-logo { height: 46px; max-width: 170px; }
    #logo .logo { margin: 0; }

    /* Hero */
    .hero {
        margin-top: 100px;
        height: 100vh;
        background-size: cover;
        background-position: center;
        width: calc(100% + 10vh);
        border-radius: 0 0 50% 50% / 0 0 5vh 5vh;
    }

    /* Offset-5050 */
    .offset-5050 { padding: 0 20px; }
    .offset-header { text-align: center; }
    .offset-header h1 { padding-left: 30px; padding-right: 30px; padding-bottom: 0; }

    /* Blocks-5050 */
    .blocks-5050 .left, .blocks-5050 .right { padding: 70px 0; }

    /* Gallery slider */
    .gallery-imgs .slide, .gallery-imgs .slick-slide { height: 350px; }

    /* Case study slider */
    .flexible-case-study-slider .flex-row-wrapper {
        min-height: 0;
        height: inherit;
        padding-bottom: 64px;
        align-items: center;
    }
    .flexible-case-study-slider .slide, .flexible-case-study-slider .slick-slide { min-height: 0; }
    .flexible-case-study-slider .testimonial { display: none; }
    .flexible-case-study-slider .right {
        margin: 0;
        padding: 64px 0;
        max-width: none;
        width: 100%;
    }
    .flexible-case-study-slider .right .content { margin: 0 auto; text-align: center; width: 90%; }
    .flexible-case-study-slider .right .content h2 { max-width: 80%; margin: auto; padding-bottom: 19px; }
    .flexible-case-study-slider .right .content h3 { max-width: 80%; margin: auto; }
    .flexible-case-study-slider .right .button-bar { text-align: center; width: 100%; margin: 5px auto 0; }
    .flexible-case-study-slider .slick-dots { bottom: 0; }

    /* Featured card */
    .featured-card .card-section { flex-direction: column; }
    .featured-card .card-image, .featured-card .card-content { width: 100%; padding: 0; }
    .featured-card .card-image { margin-bottom: 20px; }
    .featured-card .card-content p { max-width: 100%; }

    /* Footer */
    footer .footer-main {
        grid-template-columns: 220px 1fr;
        gap: 32px 40px;
        padding: 40px 24px;
    }
    footer .footer-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 24px;
    }
    footer .footer-nav .nav-col.footer-contact-section { grid-column: 1 / -1; }

    /* About */
    .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }

    /* Columns */
    .experience-grid { grid-template-columns: 1fr 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .vision-list { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .sustainability-stats { grid-template-columns: repeat(2, 1fr); }
    .contact-info-row { grid-template-columns: 1fr; }
    .community-grid { grid-template-columns: 1fr; }
    .community-extra-grid { grid-template-columns: 1fr 1fr; }
    .eco-grid { grid-template-columns: 1fr 1fr; }
    .facility-grid { grid-template-columns: repeat(2, 1fr); }
    .service-features { grid-template-columns: 1fr; }
    .recruit-steps { grid-template-columns: 1fr; }
    .page-banner { margin-top: var(--header-height); }
    .max-width { padding: 0 24px; }

    /* Three grid */
    .three-grid .single-col { width: 100%; padding: 30px 20px; }

    /* Values */
    .values-tabs-wrap { flex-direction: column; }
    .values-panel { padding: 30px; }
}

@media only screen and (max-width: 768px) {
    /* ---- MOBILE SPACING ADJUSTMENTS ---- */
    .section-pad,
    .experience-section,
    .about-intro-section,
    .timeline-section,
    .values-section,
    .vision-section,
    .partners-section,
    .team-life,
    .case-study-section,
    .reviews-section,
    .community-section,
    .community-extra,
    .eco-section,
    .report-section { padding: 40px 0; }

    .team-intro,
    .careers-intro,
    .contact-form-section,
    .services-cta-bar,
    .section-pad-sm { padding: 30px 0; }
    
    .services-cta-bar { padding-left: 15px; padding-right: 15px; }

    .experience-grid { gap: 20px; margin-top: 30px; }
    .about-intro-grid { gap: 30px; }
    .partners-grid { gap: 20px; }
    .team-grid { gap: 20px; margin-bottom: 30px; }
    .benefits-grid { gap: 20px; margin-top: 30px; }
    .recruit-steps { gap: 30px; margin-top: 30px; }
    .news-grid { gap: 20px; margin-top: 20px; }
    .contact-info-row { gap: 20px; margin-bottom: 40px; }
    .case-study-grid { gap: 20px; margin-bottom: 30px; }
    .community-grid { gap: 30px; margin-top: 30px; }
    .community-extra-grid { gap: 20px; }
    .eco-grid { gap: 20px; margin-top: 30px; }
    .service-features { gap: 20px; margin: 30px 0; }
    .calc-quote-form-wrap { gap: 30px; grid-template-columns: 1fr; }
    .calc-form-row { grid-template-columns: 1fr; gap: 0; }
    .service-cat-grid { gap: 16px; }
    .home-service-grid { gap: 16px; }
    .home-why-grid { gap: 16px; }
    .home-intro-grid { gap: 24px; margin-top: 20px; }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.2rem; }
    .max-width { padding: 0 20px; }

    .hero { height: 80vh; margin-top: var(--header-height); }
    .offset-5050 { padding: 0 15px; }
    .offset-header h1 { font-size: 1.8rem; padding-left: 0; padding-right: 0; }

    .blocks-5050 .left, .blocks-5050 .right { padding: 40px 0; }
    .blocks-5050 .left .content, .blocks-5050 .right .content { width: 90%; }
    .btn { min-width: 180px; height: 60px; }

    .featured-card { padding: 5% 0; }
    .featured-card .card-image .image { width: 100%; }

    .experience-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .sustainability-stats { grid-template-columns: 1fr; }
    .case-study-grid { grid-template-columns: 1fr; }
    .community-extra-grid { grid-template-columns: 1fr; }
    .eco-grid { grid-template-columns: 1fr; }
    .facility-grid { grid-template-columns: 1fr; }
    .bgimg-5050 { background-image: none !important; }
    .bgimg-5050 .left .content { padding: 40px 20px; }
    .bgimg-5050 .grid-6 { width: 100%; }
    .gallery-imgs .slide, .gallery-imgs .slick-slide { height: 280px; }

    .three-grid { padding: 50px 0; }
    .three-grid .title-wrap h2 { font-size: 2rem; }

    .page-banner { min-height: 280px; margin-top: var(--header-height); }
    .page-banner h1 { font-size: 2rem; }

    .process-steps { flex-direction: column; align-items: center; }

    footer .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 20px;
    }
    footer .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
    }
    footer .footer-nav .nav-col.footer-contact-section { grid-column: 1 / -1; }
    footer .logo-section p { max-width: none; }

    .timeline-list::before { left: 60px; }
    .timeline-year { font-size: 1rem; width: 45px; }

    .form-name-wrap { grid-template-columns: 1fr; }

    .announcement-bar { padding: 8px 12px; }
    .announcement-bar p { font-size: 9px; line-height: 1.4; letter-spacing: 0.04em; }
    .announcement-bar p i { font-size: 18px; }
    .announcement-bar .close { width: 18px; height: 18px; }
    .announcement-bar .close .bar { top: -8px; height: 2px; }
    .menu-toggle .menu-title { font-size: 10px; }
}

@media only screen and (max-width: 480px) {
    .max-width { padding: 0 15px; }
    .section-pad,
    .experience-section,
    .about-intro-section,
    .timeline-section,
    .values-section,
    .vision-section,
    .partners-section,
    .team-life,
    .case-study-section,
    .reviews-section,
    .community-section,
    .community-extra,
    .eco-section,
    .report-section { padding: 30px 0; }
    
    .team-intro,
    .careers-intro,
    .contact-form-section,
    .services-cta-bar,
    .section-pad-sm { padding: 25px 0; }

    .home-intro-grid, .home-service-grid, .home-why-grid { padding: 0 15px; }
    
    h1 { font-size: 1.7rem; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .blocks-5050 .left .content, .blocks-5050 .right .content { width: 90%; }
    .offset-5050 .grid-10 { width: 100%; }
    footer .footer-nav { padding: 20px 0; grid-template-columns: 1fr; }
}

/* ---- HOMEPAGE ---- */
body.home .trust-banner {
    margin-top: var(--header-height);
}
.home-hero-wrap {
    position: relative;
    margin-top: 0;
    overflow: hidden;
    border-radius: 0 0 50% 50% / 0 0 3.25rem 3.25rem;
    box-shadow: 0 10px 36px rgba(16, 48, 96, 0.12);
}
.home-hero-wrap .hero {
    margin-top: 0;
    width: 100%;
    transform: none;
    border-radius: 0;
    border-bottom: none;
    min-height: 460px;
    height: 62vh;
    max-height: 580px;
}
.home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    padding-top: clamp(28px, 6vh, 64px);
    background: linear-gradient(rgba(16, 48, 96, 0.55), rgba(16, 48, 96, 0.78));
    border-radius: inherit;
}
.home-hero-inner {
    max-width: 1200px;
    padding: 0 40px;
    margin: 0 auto;
    width: 100%;
}
.home-hero-inner h1 {
    color: #fff;
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 820px;
}
.home-hero-inner .hero-sub {
    color: var(--color-gray-light);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 720px;
}
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
body.home .home-hero-wrap + .section-pad {
    padding-top: 56px;
}
.home-intro-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.home-intro-grid .col-text { flex: 1 1 52%; min-width: 280px; }
.home-intro-grid .col-img {
    flex: 1 1 40%;
    min-width: 280px;
    min-height: 380px;
    background: url('../images/gallery-drywall.jpg') center/cover no-repeat;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(16, 48, 96, 0.12);
}
.home-intro-grid h2 { color: var(--color-navy); font-size: 2rem; margin-bottom: 22px; }
.home-intro-grid p { color: #444; line-height: 1.85; margin-bottom: 18px; font-size: 1.05rem; }
.home-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    padding: 0 30px;
}
.home-section-head h2 { color: var(--color-navy); font-size: 2rem; margin-bottom: 14px; }
.home-section-head p { color: var(--color-gray-medium); line-height: 1.75; }
.home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.home-service-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(16, 48, 96, 0.08);
    border-top: 4px solid var(--color-navy);
    transition: transform .2s, box-shadow .2s;
    display: block;
    color: inherit;
    text-decoration: none;
}
.home-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(16, 48, 96, 0.14);
    text-decoration: none;
}
.home-service-card i {
    font-size: 1.6rem;
    color: var(--color-navy);
    margin-bottom: 14px;
    display: block;
}
.home-service-card h3 { color: var(--color-navy); font-size: 1.05rem; margin-bottom: 8px; }
.home-service-card p { color: #555; font-size: .92rem; line-height: 1.65; margin: 0; }
.home-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.home-why-card {
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--color-gray-light);
    padding: 28px 22px;
    border-radius: 0 8px 8px 0;
}
.home-why-card h3 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.home-why-card p { color: rgba(255, 255, 255, 0.78); margin: 0; line-height: 1.65; font-size: .92rem; }
.home-about-teaser {
    background: var(--color-off-white);
    text-align: center;
}
.home-about-teaser .inner { max-width: 760px; margin: 0 auto; padding: 0 30px; }
.home-about-teaser h2 { color: var(--color-navy); font-size: 1.8rem; margin-bottom: 16px; }
.home-about-teaser p { color: #555; line-height: 1.8; margin-bottom: 28px; }
.home-services-actions { text-align: center; margin-top: 44px; padding: 0 20px; }
.home-services-actions .btn { margin: 0; }
.home-work-gallery { background: #fff; }
.work-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.work-gallery-item {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(16, 48, 96, 0.1);
}
.work-gallery-item.tall { grid-row: span 2; aspect-ratio: auto; min-height: 100%; }

@media only screen and (max-width: 1024px) {
    .home-service-grid { grid-template-columns: repeat(2, 1fr); }
    .home-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media only screen and (max-width: 768px) {
    body.home .trust-banner { margin-top: var(--header-height); }
    .home-hero-wrap {
        border-radius: 0 0 50% 50% / 0 0 2rem 2rem;
    }
    .home-hero-wrap .hero {
        height: 72vh;
        min-height: 540px;
        max-height: none;
    }
    .home-hero-overlay {
        padding: 48px 0 96px;
        align-items: center;
        justify-content: center;
        background: linear-gradient(rgba(16, 48, 96, 0.68), rgba(16, 48, 96, 0.88));
    }
    .home-hero-inner {
        padding: 0 20px;
        text-align: center;
    }
    .home-hero-inner h1 {
        font-size: 1.75rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    }
    .home-hero-inner .hero-sub {
        font-size: 0.95rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 28px;
    }
    .home-hero-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }
    .home-hero-actions .btn {
        flex: 1 1 0;
        width: auto;
        max-width: none;
        min-width: 0;
        height: 52px;
        margin: 0;
        padding: 0 10px;
        font-size: 11px;
        letter-spacing: 0.02em;
    }
    .home-hero-actions .btn span {
        line-height: 1.15;
        white-space: nowrap;
    }
    .home-services-actions .btn,
    .home-intro-grid .col-text > .btn {
        width: 100%;
        max-width: 320px;
        min-width: 0;
        height: 56px;
        margin: 0 auto;
        padding: 0 22px;
        font-size: 13px;
        letter-spacing: 0.03em;
        display: inline-flex;
    }
    .home-intro-grid { flex-direction: column; padding: 0 20px; gap: 32px; }
    .home-intro-grid .col-img { min-height: 260px; width: 100%; }
    .home-service-grid,
    .home-why-grid { padding: 0 20px; }
    .work-gallery-grid { grid-template-columns: 1fr 1fr; padding: 0 20px; }
    .work-gallery-item.tall { grid-row: span 1; aspect-ratio: 4 / 3; min-height: 0; }
}
@media only screen and (max-width: 580px) {
    .home-service-grid,
    .home-why-grid { grid-template-columns: 1fr; }
    .work-gallery-grid { grid-template-columns: 1fr; }
    .home-hero-wrap .hero { min-height: 520px; height: 68vh; }
    .home-hero-inner h1 { font-size: 1.55rem; }
    .home-hero-actions { gap: 8px; }
    .home-hero-actions .btn {
        height: 48px;
        font-size: 10px;
        padding: 0 6px;
    }
}

/* ---- CRO ENHANCEMENTS ---- */
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; box-shadow: 0 -2px 10px rgba(0,0,0,0.15); z-index: 9999; padding: 10px 15px; justify-content: space-between; align-items: center; gap: 12px; }
.mobile-sticky-bar .btn { flex: 1; margin: 0; min-width: 0; height: 50px; font-size: 15px; padding: 0 10px; }
@media (max-width: 768px) { .mobile-sticky-bar { display: flex; } body { padding-bottom: 70px; } }
.trust-banner {
    background-color: #103060;
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 1.45;
}
.trust-banner span { display: inline-block; margin: 0 15px; }
.trust-banner i { color: #ffffff; margin-right: 5px; }
@media (max-width: 768px) {
    .trust-banner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px 14px;
        padding: 12px 14px;
        font-size: 11px;
        letter-spacing: 0.03em;
    }
    .trust-banner span {
        display: inline-flex;
        align-items: center;
        margin: 0;
        white-space: nowrap;
    }
}
@media (max-width: 420px) {
    body.home .trust-banner span:first-child { display: none; }
}

.cro-conversion-strip {
    background: linear-gradient(135deg, var(--color-navy) 0%, #1a4480 100%);
    padding: 56px 30px;
}
.cro-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.cro-strip-copy h2 { color: #fff; font-size: 1.85rem; margin-bottom: 10px; }
.cro-strip-copy p { color: rgba(255,255,255,.82); margin: 0; line-height: 1.65; max-width: 520px; }
.cro-strip-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cro-strip-actions .btn { min-width: 170px; margin: 0; }
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.85);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.cro-checklist { list-style: none; padding: 0; margin: 20px 0 28px; line-height: 1.9; color: #444; }
.cro-checklist li { margin-bottom: 6px; }
.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.privacy-card {
    background: #fff;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 14px rgba(16,48,96,.08);
    border-top: 4px solid var(--color-navy);
}
.privacy-card i { font-size: 1.8rem; color: var(--color-navy); margin-bottom: 14px; }
.privacy-card h3 { color: var(--color-navy); font-size: 1.05rem; margin-bottom: 10px; }
.privacy-card p { color: #555; line-height: 1.7; margin: 0; font-size: .95rem; }
.team-crew-section .grid-6 { min-height: 320px; }
.experience-grid .grid-4,
.flex-row-wrapper > .grid-6,
.flex-row-wrapper > .grid-4 {
    box-sizing: border-box;
}
@media (max-width: 900px) {
    .privacy-grid { grid-template-columns: 1fr; }
    .cro-strip-inner { flex-direction: column; text-align: center; }
    .cro-strip-copy p { margin: 0 auto; }
    .cro-strip-actions { justify-content: center; width: 100%; }
    .cro-strip-actions .btn { flex: 1 1 calc(50% - 12px); min-width: 140px; }
    .cro-call-btn { flex: 1 1 100% !important; }
    .team-crew-section { flex-direction: column; }
    .team-crew-section .grid-6 { width: 100%; min-height: 260px; }
    .blocks-5050 { flex-direction: column; }
    .blocks-5050 .grid-6 { width: 100%; }
    .experience-grid { flex-direction: column; }
    .experience-grid .grid-4 { width: 100%; margin-bottom: 24px; }
    .flex-row-wrapper:not(.blocks-5050) > .grid-6 { width: 100%; margin-bottom: 30px; }
}
@media (max-width: 768px) {
    .cro-conversion-strip { padding: 40px 20px; }
    .cro-strip-copy h2 { font-size: 1.45rem; }
    .cro-strip-actions .btn { flex: 1 1 100%; width: 100%; }
}

/* ---- REVIEW PAGE (about-this-project.html) ---- */
.review-main { padding-top: var(--header-height); }
.review-hero { background: var(--color-navy); color: #fff; padding: 50px 0 60px; }
.review-hero h1 { font-size: 2.2rem; max-width: 820px; margin-bottom: 18px; }
.review-label { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--color-gray-light); margin-bottom: 12px; }
.review-disclaimer { max-width: 780px; color: rgba(255,255,255,.82); line-height: 1.75; font-size: .98rem; }
.review-layout { display: flex; gap: 48px; padding: 50px 30px 80px; align-items: flex-start; }
.review-sidebar { flex: 0 0 240px; position: sticky; top: 140px; }
.review-content { flex: 1; min-width: 0; }
.review-toc { background: var(--color-off-white); border-radius: 8px; padding: 24px 20px; border-left: 4px solid var(--color-navy); }
.review-toc h2 { font-size: 1rem; color: var(--color-navy); margin-bottom: 14px; }
.review-toc ol { margin: 0; padding-left: 18px; }
.review-toc li { margin-bottom: 8px; }
.review-toc a { color: var(--color-navy); font-size: .9rem; }
.review-toc a:hover { text-decoration: underline; }
.review-toc-mobile { background: var(--color-off-white); padding: 20px; border-radius: 8px; margin-bottom: 32px; }
.review-toc-mobile ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.review-toc-mobile a { font-size: .85rem; color: var(--color-navy); background: #fff; padding: 8px 12px; border-radius: 20px; border: 1px solid #ddd; }
.review-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid #e8e8e8; }
.review-section:last-child { border-bottom: none; }
.review-section h2 { color: var(--color-navy); font-size: 1.65rem; margin-bottom: 18px; }
.review-section h3 { color: var(--color-navy); font-size: 1.15rem; margin: 24px 0 12px; }
.review-section p, .review-section li { color: #444; line-height: 1.8; }
.review-section ul, .review-section ol { padding-left: 22px; }
.review-section li { margin-bottom: 8px; }
.author-card { background: var(--color-off-white); border-radius: 10px; padding: 28px; border-left: 4px solid var(--color-navy); }
.author-card h2 { margin-bottom: 6px; }
.author-role { color: var(--color-gray-medium); margin-bottom: 4px; }
.author-date { font-size: .9rem; color: #888; margin-bottom: 14px; }
.review-stars { color: #103060; margin-top: 8px; }
.review-stars i { color: #103060; margin-right: 2px; }
.review-stars span { margin-left: 8px; font-weight: 700; color: var(--color-navy); }
.review-stars.large { font-size: 1.4rem; margin-bottom: 16px; }
.review-table-wrap { overflow-x: auto; }
.review-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.review-table th, .review-table td { border: 1px solid #e0e0e0; padding: 12px 14px; text-align: left; }
.review-table th { background: var(--color-navy); color: #fff; }
.review-table tr:nth-child(even) { background: #f9f9f9; }
.review-faq details { border: 1px solid #e8e8e8; border-radius: 6px; margin-bottom: 10px; padding: 0 16px; }
.review-faq summary { cursor: pointer; font-weight: 700; color: var(--color-navy); padding: 14px 0; }
.review-faq p { padding-bottom: 14px; margin: 0; }
.review-verdict { text-align: center; background: var(--color-off-white); padding: 40px 30px !important; border-radius: 10px; border: none !important; }
.review-verdict .btn { margin-top: 20px; }
.review-footer { padding: 40px 0; text-align: center; }
.review-footer-note, .review-footer-dev { color: #555; margin-bottom: 10px; }
.review-footer-dev a { color: var(--color-navy); font-weight: 700; }
.kaleemify-credit a { color: var(--color-navy); font-weight: 600; }
@media (max-width: 900px) {
    .review-layout { flex-direction: column; padding: 30px 20px 60px; }
    .review-sidebar { display: none; }
    .review-hero h1 { font-size: 1.65rem; }
}
