:root {
    --primary-blue: #003366;
    --light-blue-bg: #e1eaf2;
    --light-gray: #777;
}

.container {
    max-width: 1225px !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
    padding-top: 100px; /* Fixed Navbar Offset Desktop */
}

/* People Dropdown */
.nav-item.dropdown {
    position: relative;
}

.people-dropdown {
    background: var(--primary-blue) !important;
    border: none !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    padding: 0 !important;
    width: auto !important;
    white-space: nowrap !important;
    margin-top: 0 !important;
    display: none !important;
    position: absolute !important;
    top: 100%;
    left: 0;
    z-index: 9999;
}

.nav-item.dropdown:hover > .people-dropdown {
    display: block !important;
}

.people-dropdown .dropdown-item {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white !important;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: transparent;
}

.people-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.people-dropdown .dropdown-item:hover,
.people-dropdown .dropdown-item:focus {
    background: rgba(255,255,255,0.12) !important;
    color: white !important;
}

/* Mobile offcanvas sub-items */
.nav-subitem {
    font-size: 11px !important;
    padding-left: 24px !important;
    opacity: 0.7;
}

/* Navbar sides */
.navbar-side {
    flex: 1;
}

/* Disabled nav label (mobile offcanvas) */
.nav-link-disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

/* Navbar */
.navbar {
    padding: 29.54px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease-in-out;
    background-color: white !important;
    overflow: visible !important;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-link {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2.2px;
    font-weight: 500;
    color: #333 !important;
    padding: 10px !important;
}

.navbar-brand {
    z-index: 10;
    flex-shrink: 0;
}

.navbar-brand img {
    height: 50px;
    margin: -12px;
    transition: height 0.3s;
}

.navbar.scrolled .navbar-brand img {
    height: 50px;
}

.social-circle {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    color: white !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-left: 8px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
}
.lang-btn {
    background: none;
    border: 1px solid transparent;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}
.lang-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}
.lang-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}
.offcanvas-body .lang-switcher {
    display: flex;
    flex-direction: row;
}
.offcanvas-body .lang-btn {
    flex: 1;
    text-align: center;
}

/* Misc shared utility */
.h3-dark { color: #333; }
.text-primary-blue { color: var(--primary-blue) !important; }
.intro-awards-img { max-width: 280px; }
.icon-arrow { font-size: 8px; }
.icon-chevron-sm { font-size: 10px; }

/* Hero */
.hero-img {
    height: 75vh;
    background: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

/* About Page Hero */
.about-hero {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

/* Projects Page Hero */
.projects-hero {
    position: relative;
    height: 50vh;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.projects-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.projects-hero .container {
    position: relative;
    z-index: 2;
}

/* Project Grid */
.g-10px {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
}

.projects-grid-section {
    overflow: hidden;
}

.projects-grid-section .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 10;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.05);
}

.project-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 12px 20px;
    background: rgba(0, 51, 102, 0.7);
    color: white;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Typography */
h1, h2, h3 {
    color: var(--primary-blue);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
}

.display-large {
    font-size: 48px;
    margin-bottom: 25px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.sub-headline {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 35px;
}

.paragraph-lead {
    font-size: 20px;
    margin-bottom: 25px;
}

.about-paragraph-lead {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.6;
    color: #444;
}

.paragraph-small {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.9;
}

.about-paragraph-small {
    font-size: 15px;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Sections */
.section-padding {
    padding: 110px 0;
}

.about-section-padding {
    padding: 90px 0;
}

.bg-light-blue {
    background-color: var(--light-blue-bg);
}

/* Diagonal section: force white text on paragraphs */
.diag-content-right .paragraph-lead,
.diag-content-right .paragraph-small {
    color: white !important;
}

.diag-content-right .paragraph-small {
    opacity: 0.85;
}

/* On-time CTA section heading */
.on-time-section h2 {
    color: white;
}

/* CTA underline link */
.cta-underline-link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    font-weight: 600;
    text-underline-offset: 5px;
}

/* Diagonal Section */
.diagonal-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-attachment: fixed;
}

.diagonal-left-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.diagonal-blue-box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background: rgba(0, 51, 102, 0.85);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 2;
}

.diag-content-left {
    position: relative;
    z-index: 3;
}

.diag-content-right {
    position: relative;
    z-index: 3;
    color: white;
    padding-left: 80px;
}

/* Carousel */
#mainCarousel {
    margin-bottom: 60px;
    border-radius: 8px;
    overflow: hidden;
}

#mainCarousel .carousel-item img {
    height: 500px;
    object-fit: cover;
}

.carousel-control-prev, .carousel-control-next {
    width: 60px;
    height: 100px;
    background: rgba(0, 0, 0, 0.2);
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

/* CTA */
.on-time-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    padding: 120px 0;
    color: white;
}

.on-time-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.75);
    z-index: 1;
}

.on-time-section .container {
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn-custom {
    border-radius: 50px;
    padding: 14px 38px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-blue) !important;
}

.btn-outline-blue {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline-blue:hover {
    background: var(--primary-blue);
    color: white !important;
}

/* Footer images */
.footer-logo-img {
    height: 70px;
}

.footer-awards-img {
    max-width: 180px;
}

/* Footer company name label */
.footer-company-name {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--primary-blue);
}

.footer-logo-container img {
    margin-bottom: 20px;
}

/* Core Values (About Page) */
.value-item {
    margin-bottom: 40px;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
    text-transform: none;
}

/* Project Types (About Page) */
.project-card {
    margin-bottom: 50px;
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.project-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: none;
}

.project-card p {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.6;
}

/* Services (About Page) */
.service-grid-item {
    background: white;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.service-content {
    padding: 30px;
    position: relative;
}

.service-number {
    position: absolute;
    font-size: 120px;
    font-weight: 900;
    color: rgba(0, 51, 102, 0.05);
    top: -20px;
    left: 10px;
    z-index: 1;
}

.service-text {
    position: relative;
    z-index: 2;
}

.service-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--light-gray);
    line-height: 1.8;
}

/* Complex Project Management (About Page) */
.complex-title {
    font-size: 36px;
    max-width: 400px;
}

/* Safety Section (About Page) */
.safety-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 120px 0;
    color: white;
    background-attachment: fixed;
}

.safety-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.6);
    z-index: 1;
}

.safety-section .container {
    position: relative;
    z-index: 2;
}

.osha-logo {
    height: 60px;
    margin-top: 30px;
    filter: brightness(0) invert(1);
}

.offcanvas {
    width: 300px !important;
}

.offcanvas .people-dropdown {
    position: static !important;
}

/* Page Hero - shared 60vh parallax hero */
.page-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Page Intro - shared centered intro section */
.page-intro {
    padding: 80px 0 60px;
    text-align: center;
}

.page-intro h1 {
    font-size: 38px;
    margin-bottom: 14px;
}

.page-intro .sub-headline {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 28px;
}

.page-intro .paragraph-small {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.9;
}

/* List column header - partners, trades, sustainability */
.partner-column-header {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

/* List item name */
.partner-name {
    font-size: 12px;
    font-weight: 500;
    color: #444;
    line-height: 2;
    letter-spacing: 0.3px;
}

.partner-name a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
}

.partner-name a:hover {
    color: var(--primary-blue);
}

/* Section divider */
.section-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0 0 60px;
}

/* Page CTA section */
.page-cta {
    padding: 65px 0 90px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.page-cta .btn-custom {
    min-width: 200px;
}

/* List section wrapper */
.list-section {
    padding: 0 0 80px;
}

/* Shared small tag label (news cards, related cards) */
.tag-sm {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* Shared prev/next nav link (project detail, news detail) */
.page-nav-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
}

.page-nav-link:hover {
    opacity: 0.7;
    color: var(--primary-blue);
}

/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-info-section {
    padding: 80px 0;
    border-bottom: 1px solid #e8e8e8;
}

.contact-info-section h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 22px;
}

.contact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
}

.contact-company {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-detail {
    font-size: 14px;
    color: #555;
    line-height: 2;
}

.contact-detail a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-detail a:hover {
    color: var(--primary-blue);
}

.contact-map {
    width: 100%;
    height: 340px;
    border: none;
    display: block;
    filter: grayscale(20%);
}

.contact-form-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    padding: 0;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.55);
    z-index: 1;
}

.contact-form-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    background: rgba(0, 51, 102, 0.88);
    z-index: 2;
}

.contact-form-section .container {
    position: relative;
    z-index: 3;
    padding-top: 90px;
    padding-bottom: 90px;
}

.form-headline {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    line-height: 1.1;
}

.contact-form .form-control {
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    background: transparent;
    color: white;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 14px 0;
    box-shadow: none;
    letter-spacing: 0.5px;
}

.contact-form .form-control::placeholder {
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-form .form-control:focus {
    background: transparent;
    color: white;
    border-bottom-color: white;
    box-shadow: none;
}

.contact-form textarea.form-control {
    resize: none;
    min-height: 100px;
}

.btn-submit {
    margin-top: 10px;
}

/* =========================================
   NEWS LISTING PAGE
   ========================================= */

.news-hero {
    position: relative;
    height: 50vh;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 10px;
}

.news-hero .diagonal-left-overlay {
    background: rgba(255,255,255,0.55);
}

.news-hero .diag-content-left h1 {
    font-size: 52px;
    line-height: 1.0;
    margin-bottom: 0;
}

.news-section {
    padding: 70px 0 90px;
}

.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.news-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: opacity 0.3s;
}

.news-card a:hover .news-card-img {
    opacity: 0.85;
}

.news-card-body {
    padding: 22px 0 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.news-card-title:hover {
    opacity: 0.7;
    color: var(--primary-blue);
}

.news-card-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 16px;
}

.news-read-more {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}

.news-read-more:hover {
    opacity: 0.6;
    color: var(--primary-blue);
}

.news-divider {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin-bottom: 40px;
}

.news-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.news-filter-btn {
    padding: 7px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary-blue);
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.news-filter-btn:hover,
.news-filter-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.news-pagination {
    padding: 20px 0 60px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.page-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* =========================================
   NEWS DETAIL PAGE
   ========================================= */

.article-hero {
    width: 100%;
    height: 65vh;
    object-fit: cover;
    border-radius: 8px;
    object-position: center 40%;
    display: block;
}

.article-header {
    padding: 70px 0 60px;
    border-bottom: 1px solid #e8e8e8;
}

.article-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.article-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    line-height: 1.08;
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aaa;
}

.article-meta-dot {
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
}

.article-content {
    padding: 65px 0 80px;
}

.article-lead {
    font-size: 19px;
    font-weight: 600;
    color: #222;
    line-height: 1.8;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e8e8e8;
}

.article-text {
    font-size: 15px;
    color: #555;
    line-height: 2;
    margin-bottom: 26px;
}

.article-quote {
    margin: 50px 0;
    padding: 0 0 0 36px;
    border-left: 4px solid var(--primary-blue);
}

.article-quote p {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.6;
    margin: 0 0 14px;
    font-style: italic;
}

.article-quote cite {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    font-style: normal;
}

.article-stats {
    background: var(--light-blue-bg);
    border-radius: 8px;
    padding: 40px 50px;
    margin: 50px 0;
    display: flex;
    gap: 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(0,51,102,0.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
}

.article-inline-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 50px 0 12px;
}

.article-inline-caption {
    font-size: 11px;
    color: #aaa;
    letter-spacing: 0.5px;
    margin-bottom: 50px;
}

.related-section {
    padding: 70px 0 90px;
    border-top: 1px solid #e8e8e8;
    background: #fafafa;
}

.related-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.related-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    margin-bottom: 18px;
    transition: opacity 0.3s;
}

.related-card:hover img {
    opacity: 0.85;
}

.related-card-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    transition: opacity 0.2s;
}

.related-card-title:hover {
    opacity: 0.7;
    color: var(--primary-blue);
}

.article-nav {
    padding: 45px 0;
    border-top: 1px solid #e8e8e8;
}

.sidebar-box {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-box-title {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary-blue);
    margin-bottom: 20px;
}

.sidebar-fact {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
}

.sidebar-fact:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-fact-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #999;
    white-space: nowrap;
}

.sidebar-fact-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: right;
}

.sidebar-box-blue {
    background: var(--primary-blue);
    border: none;
    border-radius: 8px;
    padding: 30px 28px;
}

.sidebar-box-blue .sidebar-box-title {
    color: rgba(255,255,255,0.6);
    border-bottom-color: rgba(255,255,255,0.2);
}

.sidebar-box-blue p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    margin-bottom: 20px;
}

/* =========================================
   PROJECT DETAIL PAGE
   ========================================= */

.project-hero {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    display: block;
}

.project-detail-header {
    padding: 70px 0 50px;
    border-bottom: 1px solid #e8e8e8;
}

.project-detail-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 18px;
}

.project-detail-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--light-gray);
}

.project-detail-description {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.project-meta-section {
    padding: 45px 0;
    border-bottom: 1px solid #e8e8e8;
}

.meta-item {
    padding: 0 30px;
    border-right: 1px solid #e8e8e8;
}

.meta-item:first-child {
    padding-left: 0;
}

.meta-item:last-child {
    border-right: none;
}

.meta-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-bottom: 6px;
}

.meta-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-gallery {
    padding: 60px 0 100px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 16 / 7;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.project-nav {
    padding: 50px 0;
    border-top: 1px solid #e8e8e8;
}

/* =========================================
   DIVERSITY PAGE
   ========================================= */

.diversity-content {
    padding-bottom: 100px;
}

.diversity-content .sub-headline {
    font-size: 16px;
    margin-bottom: 50px;
}

.diversity-text {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.diversity-text .paragraph-small {
    margin-bottom: 24px;
}

.diversity-stats {
    margin: 60px 0;
    padding: 55px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.diversity-stat-number {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.diversity-stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

.diversity-values {
    padding: 80px 0;
    background: var(--light-blue-bg);
}

.diversity-values h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 50px;
}

.value-card {
    text-align: center;
    padding: 0 20px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.value-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.75;
}

/* =========================================
   SUSTAINABILITY PAGE
   ========================================= */

.sustain-image {
    width: 100%;
    height: 55vh;
    object-fit: cover;
    object-position: center 60%;
    display: block;
}

.sustain-body {
    padding: 80px 0 100px;
}

.sustain-body h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 24px;
}

.sustain-body .paragraph-small {
    margin-bottom: 16px;
}

.sustain-right-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 32px;
}

.sustain-category {
    margin-bottom: 28px;
}

.sustain-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sustain-list li {
    font-size: 13px;
    color: #555;
    padding: 4px 0 4px 16px;
    position: relative;
    line-height: 1.6;
}

.sustain-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.sustain-cta-section {
    background: var(--light-blue-bg);
    padding: 70px 0;
    text-align: center;
}

.sustain-cta-section h2 {
    font-size: 30px;
    margin-bottom: 16px;
}

.sustain-cta-section .paragraph-small {
    max-width: 600px;
    margin: 0 auto 30px;
}

/* =========================================
   PRIVACY PAGE
   ========================================= */

.privacy-page {
    padding: 120px 0 100px;
}

.privacy-page h1 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.privacy-section {
    margin-bottom: 36px;
}

.privacy-section h2 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 14px;
}

.privacy-section p {
    font-size: 13px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 12px;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.privacy-section ul li {
    font-size: 13px;
    line-height: 1.9;
    color: #555;
}

.privacy-updated {
    font-size: 12px;
    color: #999;
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 991px) {
    body {
        padding-top: 90px;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar-brand {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar-brand img {
        height: 50px !important;
    }

    .navbar-toggler {
        position: absolute;
        left: 15px;
        border: none;
    }

    .display-large {
        font-size: 32px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-section-padding {
        padding: 60px 0;
    }

    .hero-img {
        height: 50vh;
    }

    .about-hero {
        height: 40vh;
    }

    .projects-hero {
        height: auto;
        padding: 80px 0;
    }

    .diagonal-blue-box {
        width: 100%;
        clip-path: none;
        background: rgba(0, 51, 102, 0.9);
    }

    .diag-content-left h1, .diag-content-left h2, .diag-content-left .sub-headline {
        color: white !important;
    }

    .diag-content-left {
        margin-bottom: 40px;
        text-align: center;
    }

    .diag-content-right {
        padding: 40px 20px 0;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .on-time-section {
        text-align: center;
    }

    #mainCarousel .carousel-item img {
        height: 300px;
    }

    .complex-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .service-content {
        order: 1;
    }

    .service-image {
        order: 2;
    }

    footer {
        text-align: center;
    }

    .footer-logo-container {
        justify-content: center !important;
    }

    .footer-nav {
        margin-bottom: 40px;
    }

    .page-hero { height: 40vh; background-attachment: scroll; }
    .page-intro { padding: 55px 0 40px; }
    .page-intro h1 { font-size: 26px; }

    /* Contact */
    .contact-info-section { padding: 55px 0; }
    .contact-info-section h2 { font-size: 28px; }
    .contact-map { height: 260px; margin-top: 40px; }
    .contact-form-diagonal { width: 100%; }
    .contact-form-section::before { display: none; }
    .contact-form-section .container { padding-top: 60px; padding-bottom: 60px; }
    .form-headline { font-size: 28px; color: white; margin-bottom: 40px; }

    /* News */
    .news-hero { height: auto; padding: 80px 0; }
    .news-hero .diag-content-left h1 { font-size: 32px; }
    .news-section { padding: 50px 0 60px; }

    /* News Detail */
    .article-hero { height: 42vh; }
    .article-title { font-size: 26px; }
    .article-header { padding: 45px 0 35px; }
    .article-content { padding: 40px 0 55px; }
    .article-stats { flex-wrap: wrap; padding: 30px 20px; }
    .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(0,51,102,0.15); padding: 16px 0; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .article-inline-img { height: 240px; }
    .article-sidebar { margin-top: 50px; }

    /* Project Detail */
    .project-hero { height: 45vh; }
    .project-detail-title { font-size: 32px; margin-bottom: 12px; }
    .project-detail-header { padding: 50px 0 40px; }
    .project-detail-description { margin-top: 30px; }
    .meta-item { padding: 15px 0; border-right: none; border-bottom: 1px solid #e8e8e8; }
    .meta-item:nth-last-child(-n+2) { border-bottom: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.wide { grid-column: span 1; aspect-ratio: 4 / 3; }

    /* Diversity */
    .diversity-content { padding-bottom: 70px; }
    .value-card { margin-bottom: 40px; }

    /* Sustainability */
    .sustain-image { height: 35vh; }
    .sustain-body { padding: 55px 0 70px; }
    .sustain-right-col { margin-top: 50px; }

    /* Privacy */
    .privacy-page { padding: 90px 0 70px; }
    .privacy-page h1 { font-size: 24px; }
}
