/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Barlow', sans-serif;
    color: #1a2332;
    background: #fff;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

/* ===== CSS VARIABLES ===== */
:root {
    --blue: #0084c3;
    --blue-dark: #023e7d;
    --blue-accent: #00b4d8;
    --navy: #0b0b2e;
    --navy-2: #243447;
    --light-bg: #f0f4f8;
    --text: #4a5568;
    --white: #fff;
    --gold: #f5a623;
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden
}

.preloader-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo span {
    color: var(--blue-accent)
}

.loader-bar {
    width: 220px;
    height: 3px;
    background: rgba(255, 255, 255, .15);
    border-radius: 99px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--blue-accent));
    border-radius: 99px;
    animation: load 2.2s ease forwards;
}

.loader-text {
    margin-top: 1rem;
    font-size: .75rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
}

@keyframes load {
    0% {
        width: 0%
    }

    60% {
        width: 70%
    }

    100% {
        width: 100%
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .6
    }
}

/* ===== SKELETON ===== */
.skeleton {
    background: linear-gradient(90deg, #e2e8f0 25%, #f0f4f8 50%, #e2e8f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px
}

@keyframes shimmer {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

/* ===== SITE HEADER (top blue bar) ===== */
.site-header {
    background: var(--blue);
    padding: .9rem 0;
    position: relative;
    z-index: 901;
}

.site-header-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Logo in header */
.header-logo {
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-shrink: 0
}

.header-logo-icon {
    width: 46px;
    height: 46px;
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .12);
    flex-shrink: 0;
}

.header-logo-icon i {
    color: #fff;
    font-size: 1.2rem
}

.header-logo-text {
    line-height: 1.1
}

.header-logo-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    display: block;
}

.header-logo-name span {
    font-weight: 300
}

.header-logo-sub {
    font-size: .6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    display: block;
    margin-top: .05rem;
}

/* Center contact info */
.header-contacts {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: rgba(255, 255, 255, .85);
    font-size: .8rem;
    line-height: 1.3;
}

.header-contact-item .hci-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-contact-item .hci-icon i {
    font-size: .8rem;
    color: #fff
}

.header-contact-item .hci-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .55);
    display: block;
    margin-bottom: .1rem;
}

.header-contact-item .hci-value {
    font-weight: 700;
    color: #fff;
    font-size: .82rem
}

/* CTA button */
.header-cta {
    border: 1.5px solid rgba(255, 255, 255, .7);
    color: #fff;
    padding: .5rem 1.3rem;
    border-radius: 3px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.header-cta:hover {
    background: #fff;
    color: var(--blue)
}

/* ===== SITE NAV (dark sticky navbar) ===== */
.site-nav {
    background: #023e7d;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: none;
    border-top: 2px solid #0b7dc1;
}

.site-nav-inner {
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    background: #023e7d;
}

.nav-links {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 0
}

.nav-links a,
.nav-link {
    padding: 1rem 1.3rem;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    position: relative;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.nav-links a::after {
    display: none
}

.nav-links a.active,
.nav-link.active,
.nav-links a:hover,
.nav-link:hover {
    color: #fff;
    background: #36406a;
}

.nav-links a.active,
.nav-link.active {
    color: var(--blue-accent);
    background: #013164;
}

.nav-link i {
    font-size: .6rem;
    opacity: .7
}

.nav-link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px
}

.nav-cta {
    background: #fff !important;
    color: #1b2354 !important;
    padding: 1rem 2rem !important;
    font-size: .82rem !important;
    font-weight: 700 !important;
    letter-spacing: .8px !important;
    display: flex !important;
    align-items: center !important;
    gap: .5rem !important;
    margin-left: auto;
    transition: background var(--transition) !important;
    white-space: nowrap;
    border-left: 1px solid rgba(255, 255, 255, .08)
}

.nav-cta {
    border-right: none !important
}

.nav-cta::after {
    display: none !important
}

.nav-cta:hover {
    background: #e9eef8 !important
}

.nav-item {
    position: relative;
    display: inline-flex;
    align-items: stretch;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #f5f7fb;
    border-top: 3px solid var(--blue-accent);
    border-bottom: 3px solid var(--blue-accent);
    box-shadow: 0 10px 30px rgba(20, 30, 60, .2);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 999;
}

.nav-dropdown a {
    display: block;
    padding: .85rem 1rem;
    color: #2d3560;
    font-weight: 700;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .6px;
    background: transparent;
}

.nav-dropdown a:hover {
    background: #e9eef8;
    color: var(--blue)
}

.nav-dropdown .dd-muted {
    color: #8a94b2
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-item.has-dropdown:focus-within .nav-link {
    color: var(--blue-accent);
    background: #2f3458;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 1rem 1.5rem;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, .7);
    transition: var(--transition);
    display: block
}

/* Legacy logo class — kept for quote section */
.logo {
    display: flex;
    align-items: center;
    gap: .6rem
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--blue), var(--blue-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.logo-icon i {
    color: #fff;
    font-size: 1.1rem
}

.logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--navy)
}

.logo-text span {
    color: var(--blue)
}

/* ===== HERO ===== */
.hero {
    min-height: 520px;
    background: var(--blue);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

/* Dark blue factory/industrial silhouette layer */
.hero-silhouette {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 520' preserveAspectRatio='xMidYMax slice'%3E%3Crect width='1400' height='520' fill='%230077b6'/%3E%3C!-- sky gradient --%3E%3Cdefs%3E%3ClinearGradient id='sky' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%230090d0' stop-opacity='1'/%3E%3Cstop offset='1' stop-color='%230060a0' stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1400' height='520' fill='url(%23sky)'/%3E%3C!-- Factory silhouettes --%3E%3Crect x='50' y='340' width='60' height='180' fill='%23004e8c' opacity='.7'/%3E%3Crect x='40' y='310' width='80' height='40' fill='%23004e8c' opacity='.7'/%3E%3Crect x='130' y='280' width='40' height='240' fill='%23004080' opacity='.6'/%3E%3Crect x='180' y='360' width='70' height='160' fill='%23004e8c' opacity='.65'/%3E%3Crect x='260' y='300' width='50' height='220' fill='%23003d75' opacity='.6'/%3E%3Crect x='320' y='380' width='90' height='140' fill='%23004e8c' opacity='.55'/%3E%3Crect x='420' y='340' width='40' height='180' fill='%23004080' opacity='.5'/%3E%3Crect x='470' y='310' width='55' height='210' fill='%23003d75' opacity='.45'/%3E%3Crect x='540' y='360' width='80' height='160' fill='%23004e8c' opacity='.4'/%3E%3C!-- Chimneys --%3E%3Crect x='142' y='230' width='16' height='60' fill='%23004080' opacity='.65'/%3E%3Crect x='270' y='250' width='14' height='55' fill='%23003d75' opacity='.6'/%3E%3Crect x='432' y='290' width='12' height='52' fill='%23004080' opacity='.55'/%3E%3C!-- Smoke --%3E%3Cellipse cx='150' cy='220' rx='22' ry='14' fill='%23fff' opacity='.07'/%3E%3Cellipse cx='168' cy='205' rx='18' ry='12' fill='%23fff' opacity='.05'/%3E%3Cellipse cx='277' cy='240' rx='20' ry='13' fill='%23fff' opacity='.06'/%3E%3C!-- Ground line --%3E%3Crect x='0' y='500' width='1400' height='20' fill='%23004080' opacity='.5'/%3E%3C/svg%3E") bottom/cover no-repeat;
    opacity: .55;
}

/* Subtle radial glow */
.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 35% 60%, rgba(0, 180, 216, .18) 0%, transparent 70%);
}

/* Worker photo — right side, overlapping bottom */
.hero-worker-photo {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    max-width: 640px;
    height: 100%;
    background: url('../img/engineer_with_helmet3.png') right bottom/cover no-repeat;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .6) 18%, #000 50%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .6) 18%, #000 50%);
}

.hero-worker-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 80, 160, .35);
    mix-blend-mode: multiply;
}

.hero-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 580px;
    padding: 4rem 0;
    transition: opacity .25s ease, transform .25s ease
}

.hero-content.is-changing {
    opacity: 0;
    transform: translateY(6px)
}

.hero-producing {
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
    margin-bottom: 1rem;
    animation: fadeUp .7s ease both;
}

.hero-slider-arrows {
    display: flex;
    gap: .4rem;
    margin-bottom: 1.5rem;
    animation: fadeUp .7s .05s ease both;
}

.slider-arrow {
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .8);
    font-size: .65rem;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, .15);
    border-color: #fff
}

.slider-arrow:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.0;
    margin-bottom: 1.1rem;
    animation: fadeUp .8s .1s ease both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

.hero-subtitle {
    color: rgba(255, 255, 255, .78);
    font-size: .95rem;
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 2.2rem;
    animation: fadeUp .8s .22s ease both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp .8s .34s ease both
}

.btn-primary {
    background: var(--blue-accent);
    color: #fff;
    padding: .78rem 2rem;
    border-radius: 3px;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #fff;
    color: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, .55);
    color: #fff;
    padding: .75rem 2rem;
    border-radius: 3px;
    font-weight: 600;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: var(--transition);
    background: transparent;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
    transform: translateY(-2px)
}

.hero-dots {
    display: flex;
    gap: .5rem;
    margin-top: 2.8rem;
    animation: fadeUp .8s .46s ease both
}

.hero-dot {
    width: 26px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.hero-dot:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px
}

.hero-dot.active {
    background: #fff;
    width: 36px
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* ===== SECTION COMMONS ===== */
.section {
    padding: 5rem 0
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.section-label {
    font-size: .72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--blue)
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem
}

.section-title span {
    color: var(--blue)
}

.divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-accent));
    margin: .75rem 0 1.5rem;
    border-radius: 2px
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.4rem;
    align-items: start
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 1.1rem
}

.about-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0
}

.about-underline {
    width: 26px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: .6rem 1.6rem;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    transition: var(--transition)
}

.about-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-1px)
}

.about-lead {
    color: var(--navy);
    font-size: .95rem;
    line-height: 1.8;
    font-weight: 600;
    margin: 0 0 1rem
}

.about-text {
    color: var(--text);
    font-size: .95rem;
    line-height: 1.8;
    margin: 0
}

.about-mid {
    max-width: 520px
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.about-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0
}

.about-role {
    color: var(--blue);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding-bottom: .35rem;
    border-bottom: 2px solid var(--blue);
    width: fit-content
}

.about-sig {
    font-family: 'Barlow', sans-serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--navy);
    opacity: .7
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 4px
}

.about-stat h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue)
}

.about-stat p {
    font-size: .82rem;
    color: var(--text);
    font-weight: 500
}

/* ===== FACILITIES ===== */
.facility-section {
    background: #fff
}

.facility-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem
}

.facility-copy {
    max-width: 640px
}

.facility-text {
    color: var(--text);
    font-size: .92rem;
    line-height: 1.8
}

.facility-cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1.4rem;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap
}

.facility-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-2px)
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 180px;
    gap: 1.4rem
}

.facility-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #dfe9f4;
    min-height: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .14);
    transition: var(--transition)
}

.facility-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.facility-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 15, 40, .75) 0%, rgba(8, 15, 40, 0) 55%);
    opacity: .9;
    z-index: 1
}

.facility-card figcaption {
    position: relative;
    z-index: 2;
    padding: 1rem 1.2rem;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .9px;
    text-transform: uppercase
}

.facility-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 55px rgba(15, 23, 42, .18)
}

.facility-card--hero {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 0
}

.facility-card--wide {
    grid-column: span 5;
    grid-row: span 1
}

.facility-card--sm {
    grid-column: span 5;
    grid-row: span 1
}

.facility-card--xl {
    grid-column: span 7;
    grid-row: span 1
}

/* ===== PROJECTS ===== */
.projects-section {
    background: var(--light-bg)
}

.projects-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center
}

.projects-left .section-label {
    margin-top: 0
}

.projects-map {
    margin-top: 1.5rem;
    border-radius: 4px;
    overflow: hidden;
    position: relative
}

.projects-map img {
    width: 100%;
    filter: grayscale(30%) brightness(1.05)
}

.projects-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--navy);
    color: #fff;
    font-size: .72rem;
    padding: .3rem .8rem;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 1px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem
}

.proj-card {
    background: var(--navy);
    color: #fff;
    padding: 1.8rem 1.5rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.proj-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 119, 182, .4), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.proj-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .25)
}

.proj-card:hover::before {
    opacity: 1
}

.proj-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 180, 216, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem
}

.proj-card-icon i {
    color: var(--blue-accent);
    font-size: 1.2rem
}

.proj-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .6rem;
    color: var(--blue-accent)
}

.proj-card ul {
    display: flex;
    flex-direction: column;
    gap: .3rem
}

.proj-card ul li {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    gap: .4rem
}

.proj-card ul li::before {
    content: '›';
    color: var(--blue-accent);
    font-size: 1rem
}

.proj-card a {
    display: inline-block;
    margin-top: 1rem;
    font-size: .75rem;
    color: var(--blue-accent);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: gap var(--transition)
}

/* ===== BANNER ===== */
.banner-section {
    background: linear-gradient(90deg, #0f2340 0%, #163a62 100%);
    padding: 3.2rem 0 3.6rem;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/background2.png') center/cover no-repeat;
    opacity: .12;
}

.banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2
}

.banner-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: .8rem;
    text-transform: none
}

.banner-title span {
    color: var(--blue-accent)
}

.banner-underline {
    width: 38px;
    height: 3px;
    background: var(--blue-accent);
    border-radius: 2px;
    margin-bottom: 2rem
}

.banner-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem 2rem
}

.banner-stat {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .6rem 0;
    border: none
}

.banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 180, 216, .18);
    border: 1px solid rgba(0, 180, 216, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-accent);
    font-size: 1.1rem
}

.banner-text h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .85rem;
    font-weight: 800;
    color: var(--blue-accent);
    margin: 0 0 .2rem;
    letter-spacing: .6px;
    text-transform: uppercase
}

.banner-text p {
    font-size: .72rem;
    color: rgba(255, 255, 255, .8);
    text-transform: uppercase;
    letter-spacing: .6px;
    font-weight: 600;
    margin: 0
}

/* ===== SERVICES ===== */
.services-section {
    position: relative;
    overflow: hidden;
    background: #fff
}

.services-section::after {
    content: none
}

.services-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3.2rem;
    position: relative;
    z-index: 1
}

.services-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.services-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0
}

.services-title span {
    color: var(--blue-accent)
}

.services-underline {
    width: 36px;
    height: 3px;
    background: var(--blue-accent);
    border-radius: 2px
}

.services-intro {
    color: var(--text);
    font-size: .85rem;
    line-height: 1.7;
    margin: .4rem 0 1rem
}

.services-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: .65rem 1.6rem;
    border-radius: 999px;
    background: var(--blue-accent);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    transition: var(--transition)
}

.services-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-1px)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem 2.2rem
}

.service-card {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: default;
    text-align: center
}

.service-icon {
    width: 56px;
    height: 56px;
    background: #f2f7ff;
    border: 1px solid #c7dbff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .6rem
}

.service-icon i {
    font-size: 1.2rem;
    color: var(--blue-accent)
}

.service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .86rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .3rem;
    letter-spacing: .7px;
    text-transform: uppercase
}

.service-underline {
    width: 18px;
    height: 2px;
    background: var(--blue-accent);
    border-radius: 2px;
    margin: .35rem auto .55rem
}

.service-card p {
    font-size: .78rem;
    color: #5c6a80;
    line-height: 1.6;
    max-width: 210px;
    margin: 0 auto
}

/* ===== BLOG ===== */
.blog-section {
    background: var(--navy)
}

.blog-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem
}

.blog-left .section-label {
    color: var(--blue-accent)
}

.blog-left .section-label::before {
    background: var(--blue-accent)
}

.blog-left .section-title {
    color: #fff
}

.blog-categories {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.blog-cat {
    padding: .5rem .8rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .55);
    border-left: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.blog-cat:hover,
.blog-cat.active {
    color: #fff;
    border-left-color: var(--blue-accent);
    background: rgba(255, 255, 255, .05)
}

.blog-link-all {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.5rem;
    color: var(--blue-accent);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: gap var(--transition);
}

.blog-link-all:hover {
    gap: 1rem
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem
}

.blog-card {
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    position: relative
}

.blog-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform .5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05)
}

.blog-card-img-wrap {
    overflow: hidden;
    border-radius: 4px 4px 0 0
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 62, 125, .9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
}

.blog-card-date {
    font-size: .72rem;
    color: var(--blue-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: .4rem
}

.blog-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3
}

.blog-card-body {
    background: rgba(255, 255, 255, .05);
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-top: none;
    border-radius: 0 0 4px 4px
}

.blog-card-body p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--light-bg);
    padding: 5rem 0
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem
}

.testimonials-header .section-label {
    justify-content: center
}

.testimonials-header .section-label::before {
    display: none
}

.testimonials-header .divider {
    margin: 0 auto 1.5rem
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.testi-card {
    background: #fff;
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    transition: var(--transition);
}

.testi-card:hover {
    box-shadow: 0 12px 40px rgba(0, 119, 182, .12);
    transform: translateY(-4px)
}

.testi-stars {
    color: #f5a623;
    font-size: .85rem;
    margin-bottom: 1rem
}

.testi-text {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .75rem
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--blue-accent)
}

.testi-avatar-sk {
    width: 44px;
    height: 44px;
    border-radius: 50%
}

.testi-info h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy)
}

.testi-info span {
    font-size: .75rem;
    color: var(--blue);
    font-weight: 500
}

.testi-quote {
    width: 36px;
    height: 36px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.testi-quote i {
    color: #fff;
    font-size: .8rem
}

/* ===== FEEDBACK ===== */
.feedback-section {
    padding: 5rem 0
}

.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start
}

.feedback-text {
    font-size: .92rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: .75rem
}

.feedback-phone {
    color: var(--blue);
    font-weight: 700;
    font-size: 1.05rem
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.contact-alert {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .06)
}

.contact-alert strong {
    font-size: .92rem;
    letter-spacing: .2px
}

.contact-alert span {
    font-size: .9rem;
    line-height: 1.7
}

.contact-alert-success {
    background: linear-gradient(180deg, #f0fdf4, #ecfdf5);
    border-color: #bbf7d0;
    color: #065f46
}

.contact-alert-error {
    background: linear-gradient(180deg, #fff1f2, #ffe4e6);
    border-color: #fecdd3;
    color: #9f1239
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.form-field label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: .5px;
    text-transform: uppercase
}

.form-field input,
.form-field textarea,
.form-field select {
    padding: .7rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 3px;
    font-family: 'Barlow', sans-serif;
    font-size: .9rem;
    color: var(--navy);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    background: #fff;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, .12)
}

.form-field textarea {
    resize: vertical;
    min-height: 100px
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    position: relative;
    background: linear-gradient(120deg, #2d3055, #3b3f67);
    padding: 3.2rem 0;
    overflow: hidden
}

.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(120deg, rgba(45, 48, 85, .92), rgba(59, 63, 103, .85)),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1400' height='260' viewBox='0 0 1400 260'><g fill='none' stroke='%23ffffff' stroke-opacity='.08' stroke-width='2'><path d='M0 210 C 180 160, 320 220, 520 170 S 900 160, 1400 120'/><path d='M0 120 C 220 80, 360 140, 560 90 S 960 90, 1400 50'/><path d='M0 40 C 260 10, 420 60, 650 30 S 980 40, 1400 10'/></g></svg>");
    background-size: cover;
    background-position: center;
    pointer-events: none
}

.newsletter-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1
}

.newsletter-left {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.newsletter-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0
}

.newsletter-underline {
    width: 26px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px
}

.newsletter-right {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.newsletter-desc {
    color: rgba(255, 255, 255, .82);
    font-size: .85rem;
    margin: 0
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    align-items: center
}

.newsletter-form input {
    flex: 1;
    padding: .7rem 1rem;
    border: 1px solid rgba(255, 255, 255, .2);
    outline: none;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-size: .85rem;
    background: #fff
}

.newsletter-btn {
    background: var(--blue);
    color: #fff;
    padding: .7rem 1.4rem;
    border: none;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    border-radius: 999px;
    transition: background var(--transition);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--blue-dark)
}

/* ===== BRANDS ===== */
.brands-section {
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0
}

.brands-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.brands-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .45;
    transition: opacity var(--transition);
    filter: grayscale(1);
    cursor: pointer;
}

.brand-item:hover {
    opacity: 1;
    filter: grayscale(0)
}

.brand-item i {
    font-size: 2rem
}

.brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--navy)
}

/* ===== MAP SECTION ===== */
.map-section {
    height: 360px;
    background: #e9edf3;
    overflow: hidden;
    position: relative
}

.map-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.map-card {
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 1.1rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(18, 30, 56, .18);
    max-width: 320px;
    z-index: 2
}

.map-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue)
}

.map-title {
    margin: .35rem 0 .5rem;
    font-size: 1.25rem;
    color: var(--navy)
}

.map-address {
    margin: 0 0 .9rem;
    color: #4a5568;
    line-height: 1.6
}

.map-directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .55rem .9rem;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition)
}

.map-directions:hover {
    background: var(--blue-dark)
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    background: #2e3356;
    padding: 5rem 0 3rem;
    position: relative
}

.quote-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 2.5rem;
    align-items: start;
    position: relative
}

.quote-side {
    color: rgba(255, 255, 255, .8)
}

.quote-logo {
    margin-bottom: 1.2rem
}

.quote-desc {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    line-height: 1.7;
    margin-bottom: 1.6rem
}

.quote-socials {
    display: flex;
    gap: .6rem
}

.quote-social {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    transition: var(--transition)
}

.quote-social:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff
}

.quote-card {
    background: #fff;
    border-top: 3px solid var(--blue);
    border-radius: 4px;
    padding: 2rem 2rem 1.6rem;
    box-shadow: 0 18px 50px rgba(23, 31, 59, .25);
    margin-top: -120px
}

.quote-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.2rem
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: .9rem
}

.quote-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.quote-card-left,
.quote-card-right {
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.quote-card-right textarea {
    min-height: 210px;
    resize: none
}

.quote-field input,
.quote-field textarea {
    width: 100%;
    padding: .65rem .9rem;
    background: #f3f5f9;
    border: 1px solid #e1e6ef;
    border-radius: 3px;
    color: #2f3458;
    font-family: 'Barlow', sans-serif;
    font-size: .78rem;
    outline: none;
    transition: border-color var(--transition);
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #8a92a6
}

.quote-field input:focus,
.quote-field textarea:focus {
    border-color: var(--blue)
}

.quote-btn {
    margin: 1rem auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .7rem 1.6rem;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition)
}

.quote-btn:hover {
    background: var(--blue-dark)
}

.quote-feature {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    padding: .65rem 0;
    color: rgba(255, 255, 255, .8);
    font-size: .8rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.quote-feature i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .85rem;
    margin-top: 2px
}

.quote-feature h4 {
    font-size: .78rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4
}

/* ===== FOOTER ===== */
footer {
    background: #1f2342;
    padding: 1.2rem 0
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-copy {
    color: rgba(255, 255, 255, .55);
    font-size: .72rem
}

.footer-links {
    display: flex;
    gap: 1.5rem
}

.footer-links a {
    color: rgba(255, 255, 255, .55);
    font-size: .72rem;
    transition: color var(--transition)
}

.footer-links a:hover {
    color: #fff
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-left.visible {
    opacity: 1;
    transform: none
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-right.visible {
    opacity: 1;
    transform: none
}

.stagger>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease
}

.stagger.visible>*:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0s
}

.stagger.visible>*:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: .12s
}

.stagger.visible>*:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: .24s
}

.stagger.visible>*:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: .36s
}

.stagger.visible>*:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: .48s
}

.stagger.visible>*:nth-child(6) {
    opacity: 1;
    transform: none;
    transition-delay: .6s
}

/* ===== BACK TO TOP ===== */
#backTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 800;
    box-shadow: 0 4px 20px rgba(0, 119, 182, .4);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: var(--transition);
}

#backTop.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

#backTop:hover {
    background: var(--blue-dark);
    transform: translateY(-3px)
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr
    }

    .projects-grid {
        grid-template-columns: 1fr
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .hero-worker-photo {
        width: 42%
    }

    .services-inner {
        grid-template-columns: 1fr
    }

    .services-sidebar {
        align-items: flex-start
    }

    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .quote-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .quote-card {
        margin-top: 0
    }

    .quote-card-grid {
        grid-template-columns: 1fr
    }

    .quote-card-right textarea {
        min-height: 160px
    }

    .banner-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .header-contacts {
        gap: 1.2rem
    }

    .facility-header {
        flex-direction: column;
        align-items: flex-start
    }

    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px
    }

    .facility-card--hero {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 260px
    }

    .facility-card--wide,
    .facility-card--sm,
    .facility-card--xl {
        grid-column: span 1
    }
}

@media(max-width:900px) {
    .header-contacts {
        display: none
    }

    .hero-worker-photo {
        width: 38%
    }
}

@media(max-width:768px) {
    .site-header-inner {
        justify-content: space-between
    }

    .nav-links {
        display: flex;
        position: static;
        flex: 1;
        background: transparent;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        z-index: 1;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none
    }

    .nav-links::-webkit-scrollbar {
        display: none
    }

    .nav-links.open {
        display: flex
    }

    .nav-cta {
        margin-left: auto !important;
        width: auto;
        justify-content: center;
        padding: .85rem 1.2rem !important;
        font-size: .7rem !important
    }

    .nav-links a,
    .nav-link {
        width: auto;
        justify-content: center;
        border-right: 1px solid rgba(255, 255, 255, .08);
        border-bottom: none;
        padding: .9rem 1rem;
        font-size: .68rem
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        border-top: none;
        background: #2f3458;
        display: none
    }

    .nav-dropdown a {
        color: rgba(255, 255, 255, .8);
        padding-left: 2rem;
        background: transparent
    }

    .nav-item.has-dropdown:focus-within .nav-dropdown {
        display: block
    }

    .hamburger {
        display: flex;
        order: -1;
        border-right: 1px solid rgba(255, 255, 255, .08)
    }

    .site-nav {
        position: -webkit-sticky;
        position: sticky;
        top: 0
    }

    .hero-worker-photo {
        display: none
    }

    .hero h1 {
        font-size: 2.2rem
    }

    .hero-content {
        padding: 3rem 0
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .about-mid {
        max-width: none
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch
    }

    .newsletter-btn {
        width: 100%
    }

    .cards-grid {
        grid-template-columns: 1fr 1fr
    }

    .blog-inner {
        grid-template-columns: 1fr
    }

    .blog-posts {
        grid-template-columns: 1fr
    }

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .form-row,
    .quote-form-row {
        grid-template-columns: 1fr
    }

    .footer-inner {
        flex-direction: column;
        text-align: center
    }

    .brands-track {
        justify-content: center
    }

    .services-grid {
        grid-template-columns: 1fr 1fr
    }

    .banner-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .blog-posts {
        grid-template-columns: repeat(2, 1fr)
    }

    .map-section {
        height: 420px
    }

    .map-card {
        top: auto;
        bottom: 18px;
        right: 50%;
        transform: translateX(50%);
        width: calc(100% - 36px);
        max-width: 420px
    }

    .facility-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px
    }

    .facility-card--hero,
    .facility-card--wide,
    .facility-card--sm,
    .facility-card--xl {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 220px
    }
}

@media(max-width:480px) {

    .cards-grid,
    .services-grid,
    .blog-posts {
        grid-template-columns: 1fr
    }

    .banner-stats {
        grid-template-columns: 1fr
    }

    .hero-btns {
        flex-direction: column
    }

    .header-cta {
        display: none
    }
}

/* ===== SECTION COMMONS ===== */
.section {
    padding: 5rem 0
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.section-label {
    font-size: .72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--blue)
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem
}

.section-title span {
    color: var(--blue)
}

.divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-accent));
    margin: .75rem 0 1.5rem;
    border-radius: 2px
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.4rem;
    align-items: start
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 1.1rem
}

.about-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0
}

.about-underline {
    width: 26px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: .6rem 1.6rem;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    transition: var(--transition)
}

.about-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-1px)
}

.about-lead {
    color: var(--navy);
    font-size: .95rem;
    line-height: 1.8;
    font-weight: 600;
    margin: 0 0 1rem
}

.about-text {
    color: var(--text);
    font-size: .95rem;
    line-height: 1.8;
    margin: 0
}

.about-mid {
    max-width: 520px
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.about-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0
}

.about-role {
    color: var(--blue);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding-bottom: .35rem;
    border-bottom: 2px solid var(--blue);
    width: fit-content
}

.about-sig {
    font-family: 'Barlow', sans-serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--navy);
    opacity: .7
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 4px
}

.about-stat h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue)
}

.about-stat p {
    font-size: .82rem;
    color: var(--text);
    font-weight: 500
}

/* ===== PROJECTS ===== */
.projects-section {
    background: var(--light-bg)
}

.projects-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center
}

.projects-left .section-label {
    margin-top: 0
}

.projects-map {
    margin-top: 1.5rem;
    border-radius: 4px;
    overflow: hidden;
    position: relative
}

.projects-map img {
    width: 100%;
    filter: grayscale(30%) brightness(1.05)
}

.projects-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--navy);
    color: #fff;
    font-size: .72rem;
    padding: .3rem .8rem;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 1px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem
}

.proj-card {
    background: var(--navy);
    color: #fff;
    padding: 1.8rem 1.5rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.proj-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 119, 182, .4), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.proj-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .25)
}

.proj-card:hover::before {
    opacity: 1
}

.proj-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 180, 216, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem
}

.proj-card-icon i {
    color: var(--blue-accent);
    font-size: 1.2rem
}

.proj-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .6rem;
    color: var(--blue-accent)
}

.proj-card ul {
    display: flex;
    flex-direction: column;
    gap: .3rem
}

.proj-card ul li {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    gap: .4rem
}

.proj-card ul li::before {
    content: '›';
    color: var(--blue-accent);
    font-size: 1rem
}

.proj-card a {
    display: inline-block;
    margin-top: 1rem;
    font-size: .75rem;
    color: var(--blue-accent);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: gap var(--transition)
}

/* ===== BANNER ===== */
.banner-section {
    background: linear-gradient(90deg, #0f2340 0%, #163a62 100%);
    padding: 3.2rem 0 3.6rem;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/background2.png') center/cover no-repeat;
    opacity: .12;
}

.banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2
}

.banner-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: .8rem;
    text-transform: none
}

.banner-title span {
    color: var(--blue-accent)
}

.banner-underline {
    width: 38px;
    height: 3px;
    background: var(--blue-accent);
    border-radius: 2px;
    margin-bottom: 2rem
}

.banner-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem 2rem
}

.banner-stat {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .6rem 0;
    border: none
}

.banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 180, 216, .18);
    border: 1px solid rgba(0, 180, 216, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-accent);
    font-size: 1.1rem
}

.banner-text h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .85rem;
    font-weight: 800;
    color: var(--blue-accent);
    margin: 0 0 .2rem;
    letter-spacing: .6px;
    text-transform: uppercase
}

.banner-text p {
    font-size: .72rem;
    color: rgba(255, 255, 255, .8);
    text-transform: uppercase;
    letter-spacing: .6px;
    font-weight: 600;
    margin: 0
}

/* ===== SERVICES ===== */
.services-section {
    position: relative;
    overflow: hidden;
    background: #fff
}

.services-section::after {
    content: none
}

.services-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3.2rem;
    position: relative;
    z-index: 1
}

.services-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.services-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0
}

.services-title span {
    color: var(--blue-accent)
}

.services-underline {
    width: 36px;
    height: 3px;
    background: var(--blue-accent);
    border-radius: 2px
}

.services-intro {
    color: var(--text);
    font-size: .85rem;
    line-height: 1.7;
    margin: .4rem 0 1rem
}

.services-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: .65rem 1.6rem;
    border-radius: 999px;
    background: var(--blue-accent);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    transition: var(--transition)
}

.services-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-1px)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem 2.2rem
}

.service-card {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: default;
    text-align: center
}

.service-icon {
    width: 56px;
    height: 56px;
    background: #f2f7ff;
    border: 1px solid #c7dbff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .6rem
}

.service-icon i {
    font-size: 1.2rem;
    color: var(--blue-accent)
}

.service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .86rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .3rem;
    letter-spacing: .7px;
    text-transform: uppercase
}

.service-underline {
    width: 18px;
    height: 2px;
    background: var(--blue-accent);
    border-radius: 2px;
    margin: .35rem auto .55rem
}

.service-card p {
    font-size: .78rem;
    color: #5c6a80;
    line-height: 1.6;
    max-width: 210px;
    margin: 0 auto
}

/* ===== BLOG ===== */
.blog-section {
    background: var(--navy)
}

.blog-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem
}

.blog-left .section-label {
    color: var(--blue-accent)
}

.blog-left .section-label::before {
    background: var(--blue-accent)
}

.blog-left .section-title {
    color: #fff
}

.blog-categories {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.blog-cat {
    padding: .5rem .8rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .55);
    border-left: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.blog-cat:hover,
.blog-cat.active {
    color: #fff;
    border-left-color: var(--blue-accent);
    background: rgba(255, 255, 255, .05)
}

.blog-link-all {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.5rem;
    color: var(--blue-accent);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: gap var(--transition);
}

.blog-link-all:hover {
    gap: 1rem
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem
}

.blog-card {
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    position: relative
}

.blog-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform .5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05)
}

.blog-card-img-wrap {
    overflow: hidden;
    border-radius: 4px 4px 0 0
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 62, 125, .9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
}

.blog-card-date {
    font-size: .72rem;
    color: var(--blue-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: .4rem
}

.blog-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3
}

.blog-card-body {
    background: rgba(255, 255, 255, .05);
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-top: none;
    border-radius: 0 0 4px 4px
}

.blog-card-body p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--light-bg);
    padding: 5rem 0
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem
}

.testimonials-header .section-label {
    justify-content: center
}

.testimonials-header .section-label::before {
    display: none
}

.testimonials-header .divider {
    margin: 0 auto 1.5rem
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.testi-card {
    background: #fff;
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    transition: var(--transition);
}

.testi-card:hover {
    box-shadow: 0 12px 40px rgba(0, 119, 182, .12);
    transform: translateY(-4px)
}

.testi-stars {
    color: #f5a623;
    font-size: .85rem;
    margin-bottom: 1rem
}

.testi-text {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .75rem
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--blue-accent)
}

.testi-avatar-sk {
    width: 44px;
    height: 44px;
    border-radius: 50%
}

.testi-info h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy)
}

.testi-info span {
    font-size: .75rem;
    color: var(--blue);
    font-weight: 500
}

.testi-quote {
    width: 36px;
    height: 36px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.testi-quote i {
    color: #fff;
    font-size: .8rem
}

/* ===== FEEDBACK ===== */
.feedback-section {
    padding: 5rem 0
}

.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start
}

.feedback-text {
    font-size: .92rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: .75rem
}

.feedback-phone {
    color: var(--blue);
    font-weight: 700;
    font-size: 1.05rem
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.form-field label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: .5px;
    text-transform: uppercase
}

.form-field input,
.form-field textarea,
.form-field select {
    padding: .7rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 3px;
    font-family: 'Barlow', sans-serif;
    font-size: .9rem;
    color: var(--navy);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    background: #fff;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, .12)
}

.form-field textarea {
    resize: vertical;
    min-height: 100px
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    position: relative;
    background: linear-gradient(120deg, #2d3055, #3b3f67);
    padding: 3.2rem 0;
    overflow: hidden
}

.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(120deg, rgba(45, 48, 85, .92), rgba(59, 63, 103, .85)),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1400' height='260' viewBox='0 0 1400 260'><g fill='none' stroke='%23ffffff' stroke-opacity='.08' stroke-width='2'><path d='M0 210 C 180 160, 320 220, 520 170 S 900 160, 1400 120'/><path d='M0 120 C 220 80, 360 140, 560 90 S 960 90, 1400 50'/><path d='M0 40 C 260 10, 420 60, 650 30 S 980 40, 1400 10'/></g></svg>");
    background-size: cover;
    background-position: center;
    pointer-events: none
}

.newsletter-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1
}

.newsletter-left {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.newsletter-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0
}

.newsletter-underline {
    width: 26px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px
}

.newsletter-right {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.newsletter-desc {
    color: rgba(255, 255, 255, .82);
    font-size: .85rem;
    margin: 0
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    align-items: center
}

.newsletter-form input {
    flex: 1;
    padding: .7rem 1rem;
    border: 1px solid rgba(255, 255, 255, .2);
    outline: none;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-size: .85rem;
    background: #fff
}

.newsletter-btn {
    background: var(--blue);
    color: #fff;
    padding: .7rem 1.4rem;
    border: none;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    border-radius: 999px;
    transition: background var(--transition);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--blue-dark)
}

/* ===== BRANDS ===== */
.brands-section {
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0
}

.brands-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.brands-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .45;
    transition: opacity var(--transition);
    filter: grayscale(1);
    cursor: pointer;
}

.brand-item:hover {
    opacity: 1;
    filter: grayscale(0)
}

.brand-item i {
    font-size: 2rem
}

.brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--navy)
}

/* ===== MAP SECTION ===== */
.map-section {
    height: 360px;
    background: #e9edf3;
    overflow: hidden;
    position: relative
}

.map-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.map-card {
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 1.1rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(18, 30, 56, .18);
    max-width: 320px;
    z-index: 2
}

.map-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue)
}

.map-title {
    margin: .35rem 0 .5rem;
    font-size: 1.25rem;
    color: var(--navy)
}

.map-address {
    margin: 0 0 .9rem;
    color: #4a5568;
    line-height: 1.6
}

.map-directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .55rem .9rem;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition)
}

.map-directions:hover {
    background: var(--blue-dark)
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    background: #2e3356;
    padding: 5rem 0 3rem;
    position: relative
}

.quote-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 2.5rem;
    align-items: start;
    position: relative
}

.quote-side {
    color: rgba(255, 255, 255, .8)
}

.quote-logo {
    margin-bottom: 1.2rem
}

.quote-desc {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    line-height: 1.7;
    margin-bottom: 1.6rem
}

.quote-socials {
    display: flex;
    gap: .6rem
}

.quote-social {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    transition: var(--transition)
}

.quote-social:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff
}

.quote-card {
    background: #fff;
    border-top: 3px solid var(--blue);
    border-radius: 4px;
    padding: 2rem 2rem 1.6rem;
    box-shadow: 0 18px 50px rgba(23, 31, 59, .25);
    margin-top: -120px
}

.quote-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.2rem
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: .9rem
}

.quote-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.quote-card-left,
.quote-card-right {
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.quote-card-right textarea {
    min-height: 210px;
    resize: none
}

.quote-field input,
.quote-field textarea {
    width: 100%;
    padding: .65rem .9rem;
    background: #f3f5f9;
    border: 1px solid #e1e6ef;
    border-radius: 3px;
    color: #2f3458;
    font-family: 'Barlow', sans-serif;
    font-size: .78rem;
    outline: none;
    transition: border-color var(--transition);
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #8a92a6
}

.quote-field input:focus,
.quote-field textarea:focus {
    border-color: var(--blue)
}

.quote-btn {
    margin: 1rem auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .7rem 1.6rem;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition)
}

.quote-btn:hover {
    background: var(--blue-dark)
}

.quote-feature {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    padding: .65rem 0;
    color: rgba(255, 255, 255, .8);
    font-size: .8rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.quote-feature i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .85rem;
    margin-top: 2px
}

.quote-feature h4 {
    font-size: .78rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4
}

/* ===== FOOTER ===== */
footer {
    background: #1f2342;
    padding: 1.2rem 0
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-copy {
    color: rgba(255, 255, 255, .55);
    font-size: .72rem
}

.footer-links {
    display: flex;
    gap: 1.5rem
}

.footer-links a {
    color: rgba(255, 255, 255, .55);
    font-size: .72rem;
    transition: color var(--transition)
}

.footer-links a:hover {
    color: #fff
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-left.visible {
    opacity: 1;
    transform: none
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-right.visible {
    opacity: 1;
    transform: none
}

.stagger>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease
}

.stagger.visible>*:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0s
}

.stagger.visible>*:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: .12s
}

.stagger.visible>*:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: .24s
}

.stagger.visible>*:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: .36s
}

.stagger.visible>*:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: .48s
}

.stagger.visible>*:nth-child(6) {
    opacity: 1;
    transform: none;
    transition-delay: .6s
}

/* ===== BACK TO TOP ===== */
#backTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 800;
    box-shadow: 0 4px 20px rgba(0, 119, 182, .4);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: var(--transition);
}

#backTop.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

#backTop:hover {
    background: var(--blue-dark);
    transform: translateY(-3px)
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr
    }

    .projects-grid {
        grid-template-columns: 1fr
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .hero-worker-photo {
        width: 42%
    }

    .services-inner {
        grid-template-columns: 1fr
    }

    .services-sidebar {
        align-items: flex-start
    }

    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .quote-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .quote-card {
        margin-top: 0
    }

    .quote-card-grid {
        grid-template-columns: 1fr
    }

    .quote-card-right textarea {
        min-height: 160px
    }

    .banner-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .header-contacts {
        gap: 1.2rem
    }
}

@media(max-width:900px) {
    .header-contacts {
        display: none
    }

    .hero-worker-photo {
        width: 38%
    }
}

@media(max-width:768px) {
    .site-header-inner {
        justify-content: space-between
    }

    .nav-links {
        display: flex;
        position: static;
        flex: 1;
        background: transparent;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        z-index: 1;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none
    }

    .nav-links::-webkit-scrollbar {
        display: none
    }

    .nav-links.open {
        display: flex
    }

    .nav-cta {
        margin-left: auto !important;
        width: auto;
        justify-content: center;
        padding: .85rem 1.2rem !important;
        font-size: .7rem !important
    }

    .nav-links a,
    .nav-link {
        width: auto;
        justify-content: center;
        border-right: 1px solid rgba(255, 255, 255, .08);
        border-bottom: none;
        padding: .9rem 1rem;
        font-size: .68rem
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        border-top: none;
        background: #2f3458;
        display: none
    }

    .nav-dropdown a {
        color: rgba(255, 255, 255, .8);
        padding-left: 2rem;
        background: transparent
    }

    .nav-item.has-dropdown:focus-within .nav-dropdown {
        display: block
    }

    .hamburger {
        display: flex;
        order: -1;
        border-right: 1px solid rgba(255, 255, 255, .08)
    }

    .site-nav {
        position: -webkit-sticky;
        position: sticky;
        top: 0
    }

    .hero-worker-photo {
        display: none
    }

    .hero h1 {
        font-size: 2.2rem
    }

    .hero-content {
        padding: 3rem 0
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .about-mid {
        max-width: none
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch
    }

    .newsletter-btn {
        width: 100%
    }

    .cards-grid {
        grid-template-columns: 1fr 1fr
    }

    .blog-inner {
        grid-template-columns: 1fr
    }

    .blog-posts {
        grid-template-columns: 1fr
    }

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .form-row,
    .quote-form-row {
        grid-template-columns: 1fr
    }

    .footer-inner {
        flex-direction: column;
        text-align: center
    }

    .brands-track {
        justify-content: center
    }

    .services-grid {
        grid-template-columns: 1fr 1fr
    }

    .banner-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .blog-posts {
        grid-template-columns: repeat(2, 1fr)
    }

    .map-section {
        height: 420px
    }

    .map-card {
        top: auto;
        bottom: 18px;
        right: 50%;
        transform: translateX(50%);
        width: calc(100% - 36px);
        max-width: 420px
    }
}

@media(max-width:480px) {

    .cards-grid,
    .services-grid,
    .blog-posts {
        grid-template-columns: 1fr
    }

    .banner-stats {
        grid-template-columns: 1fr
    }

    .hero-btns {
        flex-direction: column
    }

    .header-cta {
        display: none
    }
}
