:root {
    --ink: #0f0f12;
    --ink-soft: #17161a;
    --red: #d90a2c;
    --red-dark: #b00824;
    --paper: #ffffff;
    --mist: #f7f7f9;
    --line: #ececef;
    --muted: #6b6b76;
    --muted-soft: #9a9aa3;
    --shadow-sm: 0 1px 3px rgba(15,15,18,0.05), 0 1px 2px rgba(15,15,18,0.04);
    --shadow-md: 0 8px 24px rgba(15,15,18,0.08);
    --shadow-lg: 0 20px 50px rgba(15,15,18,0.12);
    --radius: 10px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
}

:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---- HEADER (mobile top bar) ---- */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 18px 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 42px;
}

.hamburger-btn {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: background 0.15s ease;
}
.hamburger-btn:hover {
    background: rgba(255,255,255,0.24);
}
.hamburger-bar {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* ---- HERO SLIDER ---- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 40%);
}

.hero-caption {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 5;
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    text-align: right;
    max-width: 80%;
}

.hero-caption a {
    color: #fff;
}

.hero-arrows {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #000;
    border: none;
}

.hero-arrow:hover {
    background: #fff;
}

/* ---- SERVICE HIGHLIGHT BOXES ---- */
.service-highlights {
    display: flex;
    flex-wrap: wrap;
}

.service-box {
    flex: 1 1 33.333%;
    background: #17161a;
    color: #fff;
    padding: 50px 40px;
    min-width: 280px;
}

.service-box-red {
    background: #d90a2c;
}

.service-box h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 20px;
}

.know-more {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 3px;
}

.know-more:hover {
    border-bottom-color: #fff;
}

/* ---- RECENT PROJECTS ---- */
.recent-projects {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 40px;
    gap: 40px;
    align-items: flex-start;
}

.recent-projects-text {
    flex: 1 1 33%;
    max-width: 380px;
    min-width: 280px;
}

.recent-projects-text h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.recent-projects-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.btn-show-all {
    display: inline-block;
    background: #d90a2c;
    color: #fff;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
}

.recent-projects-grid {
    flex: 2 1 60%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    min-width: 280px;
}

.project-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.project-item-large {
    grid-column: 1 / -1;
}

.project-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.project-item-large img {
    height: 280px;
}

.project-item:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
}

.project-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.project-overlay span {
    font-size: 13px;
    opacity: 0.85;
}

/* ---- ABOUT US / WHAT WE DO ---- */
.about-overview {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 40px;
    gap: 40px;
}

.about-overview-col {
    flex: 1 1 45%;
    min-width: 280px;
}

.about-overview-col .eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}

.about-overview-col h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-overview-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.btn-read-more {
    display: inline-block;
    background: #d90a2c;
    color: #fff;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
}

/* ---- STATS BANNER ---- */
.stats-banner {
    position: relative;
    height: 340px;
    background-size: cover;
    background-position: center;
    margin: 0 40px;
    border-radius: 4px;
    overflow: hidden;
}

.stats-banner-boxes {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
}

.stat-box {
    background: #d90a2c;
    color: #fff;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    min-width: 160px;
}

.stat-box-dark {
    background: #17161a;
}

.stat-number {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
}

/* ---- LET'S TALK ---- */
.lets-talk {
    padding: 60px 40px;
}

.lets-talk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.lets-talk-header .eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}

.lets-talk-header h2 {
    font-size: 34px;
    font-weight: 700;
}

.btn-contact-us {
    background: #d90a2c;
    color: #fff;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
    white-space: nowrap;
}

.lets-talk-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    max-width: 800px;
}

/* ---- SITE FOOTER ---- */
.site-footer {
    background: var(--ink);
    color: #fff;
    padding: 64px 44px 22px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col-brand {
    flex: 1 1 240px;
}

.footer-col img {
    height: 36px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 13.5px;
    color: var(--muted-soft);
    line-height: 1.6;
    max-width: 240px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b6b76;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 13.5px;
    color: #d4d4d9;
    line-height: 1.9;
    margin-bottom: 4px;
}

.footer-col a {
    color: #d4d4d9;
}

.footer-col a:hover {
    color: var(--red);
}

.footer-ic {
    width: 16px;
    display: inline-block;
    color: #5c5c66;
    font-size: 12px;
    margin-right: 4px;
}

.footer-subscribe {
    display: flex;
    margin-top: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    transition: border-color 0.15s ease;
}

.footer-subscribe:focus-within {
    border-color: var(--red);
}

.footer-subscribe input {
    flex: 1;
    padding: 10px 2px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 13.5px;
}

.footer-subscribe input::placeholder {
    color: #6b6b76;
}

.footer-subscribe button {
    background: none;
    border: none;
    color: var(--red);
    font-size: 14px;
    cursor: pointer;
    padding: 0 4px;
}

.footer-subscribe-note {
    font-size: 11.5px;
    color: #5c5c66;
    margin-top: 8px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background 0.15s ease, color 0.15s ease;
}

.footer-social a:hover {
    background: var(--red);
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    font-size: 12.5px;
    color: #6b6b76;
    width: 100%;
    box-sizing: border-box;
}

.footer-bottom span {
    min-width: 0;
    word-break: break-word;
}

/* ---- MOBILE (all sections) ---- */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
    }
    .main-nav {
        display: none;
    }
    .hero-slider {
        height: 60vh;
        min-height: 350px;
    }
    .hero-caption {
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
    .service-box {
        flex: 1 1 100%;
        padding: 35px 25px;
    }
    .recent-projects {
        padding: 40px 20px;
    }
    .recent-projects-grid {
        grid-template-columns: 1fr;
    }
    .about-overview {
        padding: 40px 20px;
    }
    .stats-banner {
        margin: 0 20px;
        height: 260px;
    }
    .lets-talk {
        padding: 40px 20px;
    }
    .lets-talk-header h2 {
        font-size: 26px;
    }
    .site-footer {
        padding: 40px 20px 20px;
    }
}

/* ============ PERSISTENT DESKTOP SIDEBAR ============ */
.site-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 100vh;
    background: #ffffff;
    color: #1a1a1a;
    padding: 30px 25px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 300;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eee;
}

.sidebar-logo img {
    height: 42px;
    max-width: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 36px;
}

.sidebar-nav-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #5c5c66;
    margin-bottom: 14px;
    padding: 0 12px;
}

.sidebar-nav ul {
    list-style: none;
    flex-grow: 1;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    margin-bottom: 2px;
    border-radius: 8px;
    color: #b7b7bf;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.1px;
    transition: background 0.15s ease, color 0.15s ease;
}

.sidebar-nav a,
.mobile-sidebar-menu a {
    justify-content: flex-start;
}
.cart-count-badge {
    background: #d90a2c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 20px;
    margin-left: auto;
}

.sidebar-nav a .nav-ic {
    font-size: 13px;
    width: 16px;
    text-align: center;
    color: #6b6b76;
    transition: color 0.15s ease;
}

.sidebar-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.sidebar-nav a.active {
    color: #fff;
    background: var(--red);
}

.sidebar-nav a.active .nav-ic,
.sidebar-nav a:hover .nav-ic {
    color: #fff;
}

/* Signature: acoustic-panel waveform motif, echoes the product itself */
.sidebar-waveform {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 26px;
    padding: 0 12px;
    margin: 18px 0 14px;
    opacity: 0.55;
}
.sidebar-waveform span {
    flex: 1;
    background: linear-gradient(to top, var(--red), #6b1420);
    border-radius: 2px;
}
.sidebar-waveform span:nth-child(1) { height: 40%; }
.sidebar-waveform span:nth-child(2) { height: 75%; }
.sidebar-waveform span:nth-child(3) { height: 30%; }
.sidebar-waveform span:nth-child(4) { height: 100%; }
.sidebar-waveform span:nth-child(5) { height: 55%; }
.sidebar-waveform span:nth-child(6) { height: 20%; }
.sidebar-waveform span:nth-child(7) { height: 65%; }
.sidebar-waveform span:nth-child(8) { height: 90%; }
.sidebar-waveform span:nth-child(9) { height: 45%; }
.sidebar-waveform span:nth-child(10) { height: 70%; }
.sidebar-waveform span:nth-child(11) { height: 35%; }
.sidebar-waveform span:nth-child(12) { height: 55%; }

.sidebar-contact {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.sidebar-contact a {
    color: #d4d4d9;
    font-weight: 500;
}

.sidebar-contact a:hover {
    color: var(--red);
}

/* ============ MOBILE HAMBURGER SIDEBAR ============ */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: var(--ink);
    color: #fff;
    z-index: 500;
    padding: 28px 22px;
    overflow-y: auto;
    transition: left 0.32s cubic-bezier(.22,.9,.35,1);
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-logo {
    margin-bottom: 20px;
}

.mobile-sidebar-logo img {
    height: 36px;
    width: auto;
    max-width: 100%;
    display: block;
}

.mobile-sidebar-close {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.mobile-sidebar-menu {
    list-style: none;
    margin-top: 30px;
}

.mobile-sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 10px;
    border-radius: 8px;
    color: #c7c7cf;
    font-size: 13.5px;
    font-weight: 600;
}

.mobile-sidebar-menu a .nav-ic {
    width: 16px;
    text-align: center;
    font-size: 13px;
    color: #6b6b76;
}

.mobile-sidebar-menu a:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.mobile-sidebar-contact {
    font-size: 12.5px;
    color: var(--muted-soft);
    line-height: 1.7;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,10,12,0.55);
    backdrop-filter: blur(2px);
    z-index: 400;
}

.mobile-sidebar-overlay.active {
    display: block;
}

/* Push all main content to the right of the fixed sidebar */
.page-wrapper {
    margin-left: 240px;
}

/* On desktop, hide the old top header/hamburger since the sidebar replaces it */
@media (min-width: 769px) {
    .site-header {
        display: none;
    }
}

/* On mobile, hide the persistent sidebar and fall back to your existing hamburger menu */
@media (max-width: 768px) {
    .site-sidebar {
        display: none;
    }
    .page-wrapper {
        margin-left: 0;
    }
    .site-header {
        display: block;
    }
}

/* ============ GALLERY HERO ============ */
.gallery-hero {
    position: relative;
    height: 340px;
    background-size: cover;
    background-position: center;
}
.gallery-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}
.gallery-hero-overlay h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 900;
}

/* ============ FILTER BAR ============ */
.gallery-content {
    padding: 40px;
}
.gallery-filters {
    margin-bottom: 30px;
    font-size: 14px;
}
.filter-label {
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    margin-right: 15px;
}
.gallery-filters a {
    color: #555;
    margin-right: 15px;
    padding-bottom: 3px;
}
.gallery-filters a sup {
    font-size: 10px;
    color: #999;
}
.gallery-filters a.active,
.gallery-filters a:hover {
    color: #d90a2c;
    border-bottom: 2px solid #d90a2c;
}

/* ============ GALLERY GRID ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
}
.gallery-item-overlay h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.gallery-item-overlay span {
    font-size: 12px;
    opacity: 0.85;
    text-transform: uppercase;
}
.gallery-empty {
    color: #999;
    padding: 40px 0;
}

/* ============ PAGINATION ============ */
.gallery-pagination {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    font-size: 14px;
}
.gallery-pagination a {
    color: #555;
}
.gallery-pagination a:hover,
.gallery-pagination .current {
    color: #d90a2c;
    font-weight: 700;
}

/* ============ LIGHTBOX ============ */
.clb-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}
.clb-lightbox.active {
    display: flex;
}
.clb-lightbox-media {
    max-width: 85%;
    max-height: 75vh;
}
.clb-lightbox-media img {
    max-width: 100%;
    max-height: 75vh;
    display: block;
    margin: 0 auto;
}
.clb-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}
.clb-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}
.clb-lightbox-prev { left: 20px; }
.clb-lightbox-next { right: 20px; }
.clb-lightbox-arrow:hover { background: rgba(255,255,255,0.25); }
.clb-lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
}
.clb-lightbox-caption span {
    font-size: 12px;
    text-transform: uppercase;
    color: #d90a2c;
    display: block;
    margin-bottom: 5px;
}
.clb-lightbox-caption h3 {
    font-size: 18px;
    font-weight: 700;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
    .gallery-content { padding: 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-hero-overlay h1 { font-size: 28px; }
}

/* ============ ABOUT HERO ============ */
.about-hero {
    position: relative;
    height: 340px;
    background-size: cover;
    background-position: center;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}
.about-hero-overlay h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 900;
}

.about-breadcrumb {
    padding: 15px 40px;
    font-size: 13px;
    color: #999;
    border-bottom: 1px solid #eee;
}
.about-breadcrumb a { color: #999; }
.about-breadcrumb span { color: #d90a2c; }

/* ============ OVERVIEW / BIOS ============ */
.about-overview-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 60px 40px;
}
.about-overview-detail-col {
    flex: 1 1 45%;
    min-width: 280px;
}
.about-overview-detail .eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}
.about-lead {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
}
.about-person {
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}
.about-person:last-child { border-bottom: none; }
.about-person h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.about-person p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* ============ STRENGTH ============ */
.about-strength {
    display: flex;
    flex-wrap: wrap;
    background: #f7f7f7;
}
.about-strength-image {
    flex: 1 1 55%;
    min-width: 280px;
}
.about-strength-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
}
.about-strength-text {
    flex: 1 1 40%;
    min-width: 280px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-strength-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-strength-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ============ CLIENTS ============ */
.about-clients {
    padding: 60px 40px;
}
.about-clients h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
.about-clients > p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin-bottom: 40px;
}
.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}
.client-logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.client-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
    .about-overview-detail { padding: 40px 20px; }
    .about-clients { padding: 40px 20px; }
    .about-strength-text { padding: 40px 20px; }
    .client-logo-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .about-hero-overlay h1 { font-size: 28px; }
}

/* ============ CONTACT INFO SECTION (above form) ============ */
.contact-info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 40px 20px;
}

.contact-info-main {
    flex: 1 1 45%;
}

.contact-info-col {
    flex: 1 1 20%;
    min-width: 220px;
}

.contact-info-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.contact-info-col a {
    color: #1a1a1a;
}

.contact-info-col a:hover {
    color: #d90a2c;
}

.contact-info-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info-label {
    font-size: 13px;
    color: #999;
    margin-bottom: 2px;
}

.contact-info-value {
    font-size: 15px;
    color: #1a1a1a;
}

.contact-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 20px 40px 0;
}

@media (max-width: 768px) {
    .contact-info-section { padding: 40px 20px 10px; }
    .contact-divider { margin: 15px 20px 0; }
}

/* ============ CONTACT PAGE ============ */
.contact-page {
    padding: 60px 40px;
}

.contact-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 10px;
}

.contact-form-group {
    flex: 1 1 45%;
    min-width: 260px;
    margin-bottom: 25px;
}

.contact-form-group-full {
    width: 100%;
}

.contact-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    color: #1a1a1a;
    font-family: inherit;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #999;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: 2px solid #d90a2c;
    background: #fff;
}

.contact-form-group textarea {
    resize: vertical;
}

.btn-contact-submit {
    background: #17161a;
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
}

.btn-contact-submit:hover {
    background: #d90a2c;
}

.contact-alert-error {
    background: #fdecea;
    color: #b71c1c;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 14px;
}

.contact-success {
    background: #eafaf0;
    color: #1a7a3c;
    padding: 40px;
    border-radius: 6px;
    text-align: center;
}

.contact-success h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .contact-page { padding: 40px 20px; }
    .contact-form-group { flex: 1 1 100%; }
}

/* ============ CONTACT HERO ============ */
.contact-hero {
    position: relative;
    height: 340px;
    background-size: cover;
    background-position: center;
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}
.contact-hero-overlay h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 900;
}

.contact-breadcrumb {
    padding: 15px 40px;
    font-size: 13px;
    color: #999;
    border-bottom: 1px solid #eee;
}
.contact-breadcrumb a { color: #999; }
.contact-breadcrumb span { color: #d90a2c; }

@media (max-width: 768px) {
    .contact-hero-overlay h1 { font-size: 28px; }
}

/* ---- AWARDS PAGE ---- */
.page-headline {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 0 40px 40px;
}

.page-headline-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
}

.page-headline-content {
    position: relative;
    z-index: 2;
}

.page-headline-content h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
}

.awards-section {
    padding: 60px 40px;
}

.awards-box {
    border: 1px solid #000;
    padding: 35px 50px;
    max-width: 1100px;
}

.awards-list {
    list-style: none;
}

.awards-list li {
    position: relative;
    line-height: 30px;
    padding: 8px 0 8px 30px;
    font-size: 15px;
    color: #333;
}

.awards-list li::before {
    content: '';
    background: url('../images/awardsbullet.png') no-repeat left bottom;
    background-size: 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    left: -3px;
    top: 12px;
}

@media (max-width: 768px) {
    .page-headline {
        height: 260px;
        padding: 0 20px 25px;
    }
    .page-headline-content h1 {
        font-size: 28px;
    }
    .awards-section {
        padding: 40px 20px;
    }
    .awards-box {
        padding: 25px 25px;
    }
}

/* ---- TESTIMONIALS PAGE ---- */
.testimonials-section {
    padding: 60px 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.testimonial-item {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.testimonial-item img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonial-item h5 {
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    background: #f9f9f9;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 20px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- SERVICES PAGE ---- */
.services-section {
    padding: 60px 40px;
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    color: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
}

.service-card img {
    max-width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 20px;
    }
    .services-intro {
        font-size: 18px;
        margin-bottom: 35px;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
    }
    .service-card h4 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- PEOPLE PAGE ---- */
.people-section {
    padding: 60px 40px;
}

.people-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.people-photo {
    flex: 0 0 260px;
}

.people-photo img {
    width: 100%;
    height: auto;
    border: 1px solid #e0e0e0;
    display: block;
}

.people-bio {
    flex: 1 1 500px;
    min-width: 280px;
}

.people-bio p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

@media (max-width: 768px) {
    .people-section {
        padding: 40px 20px;
    }
    .people-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
    .people-photo {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
    }
}

/* ---- PRODUCTS LISTING PAGE ---- */
.products-hero {
    padding: 70px 40px 50px;
    text-align: center;
    background: #faf9f8;
}

.products-hero .eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #d90a2c;
    margin-bottom: 12px;
}

.products-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.products-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.products-grid-section {
    padding: 50px 40px 70px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.product-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f4f4f4;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}

.product-card-body {
    padding: 20px 22px 24px;
}

.product-card-body h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.product-card-body p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 14px;
}

.product-card-cta {
    font-size: 13px;
    font-weight: 700;
    color: #d90a2c;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ---- PRODUCT DETAIL PAGE ---- */
.product-detail-header {
    padding: 50px 40px 30px;
    border-bottom: 1px solid #eee;
}

.back-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.back-link:hover {
    color: #d90a2c;
}

.product-detail-header h1 {
    font-size: 34px;
    font-weight: 800;
}

.product-detail-section {
    padding: 50px 40px 70px;
}

.product-detail-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail-image {
    flex: 1 1 400px;
    max-width: 500px;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #eee;
}

.product-detail-content {
    flex: 1 1 400px;
    min-width: 280px;
}

.product-detail-content p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 20px;
}

.btn-enquire {
    display: inline-block;
    background: #d90a2c;
    color: #fff;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 5px;
    margin-top: 10px;
}

.btn-enquire:hover {
    background: #b00824;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 90px 16px 30px;
    }
    .products-hero h1 {
        font-size: 22px;
    }
    .products-hero p {
        font-size: 13px;
    }
    .products-grid-section {
        padding: 25px 12px 40px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .product-card-img {
        height: 110px;
    }
    .product-card-body {
        padding: 10px 10px 14px;
    }
    .product-card-body h4 {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 5px;
    }
    .product-card-body p {
        display: none;
    }
    .product-card-cta {
        font-size: 10px;
    }
    .product-detail-header {
        padding: 90px 16px 20px;
    }
    .product-detail-header h1 {
        font-size: 24px;
    }
    .product-detail-section {
        padding: 30px 16px 40px;
    }
    .product-detail-grid {
        gap: 20px;
    }
}

@media (max-width: 400px) {
    .products-grid {
        gap: 8px;
    }
    .product-card-img {
        height: 90px;
    }
}