/* Core theme for Raaftsystems redesign */
:root {
    --bg-dark: #0b101a;
    --bg-mid: #151c2b;
    --text-light: #f6f7fb;
    --text-muted: #96a2bf;
    --accent: #4ecdc4;
    --accent-soft: rgba(78, 205, 196, 0.12);
    --border: rgba(255, 255, 255, 0.08);
    --font-primary: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-primary);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

@media (prefers-reduced-motion: reduce) {
    html, body {
        scroll-behavior: auto;
    }
}

/* Custom Scrollbar Styling - Light Theme */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:active {
    background: rgba(255, 255, 255, 0.7);
    background-clip: padding-box;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.05);
}

/* For containers with custom scrollbars */
.scrollable,
.carousel-inner,
.dropdown-menu {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.05);
}

/* Mobile responsive adjustments */

a {
    color: var(--text-light);
    text-decoration: none;
}

a:hover {
    color: var(--accent);
}

.navbar {
    background: rgba(11, 16, 26, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    z-index: 1050 !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(11, 16, 26, 0.98);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.navbar > .container {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1050;
}

.navbar-brand {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1051;
    min-width: 0;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
}

.navbar-brand img.site-logo {
    height: 40px !important;
    width: auto !important;
    max-width: 120px !important;
    object-fit: contain !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
    position: relative;
    z-index: 1052;
}

.site-logo {
    height: 40px !important;
    width: auto !important;
    max-width: 120px !important;
    object-fit: contain !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
    position: relative;
    z-index: 1052;
}

@media (max-width: 767.98px) {
    .main-nav {
        top: 0;
    }
    
    .navbar {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        padding-top: 50px;
    }
    
    .navbar.scrolled {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    }
}

.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #101010;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1100;
}

.topbar a {
    color: var(--text-light);
}

.topbar a:hover {
    color: var(--accent);
}

@media (max-width: 767.98px) {
    .topbar .container {
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .topbar .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.25rem;
        font-size: 0.875rem;
    }
    
    .topbar > div {
        width: 100%;
    }
}

.navbar-brand:hover {
    color: var(--accent) !important;
}

.navbar-toggler {
    padding: 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
    color: var(--text-light);
    min-width: 44px;
    min-height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    text-decoration: none;
    box-shadow: 0 0 0 0.25rem rgba(78, 205, 196, 0.25);
    border-color: var(--accent);
    background-color: rgba(78, 205, 196, 0.1);
    outline: none;
}

.navbar-toggler[aria-expanded="true"] {
    border-color: var(--accent);
    background-color: rgba(78, 205, 196, 0.15);
}

.navbar-toggler-icon {
    display: none !important;
}

/* Use Font Awesome icon instead */
.navbar-toggler-icon-fa {
    font-size: 1.25rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    display: inline-block;
}

/* Default: show bars, hide times */
.navbar-toggler-icon-fa.fa-bars {
    display: inline-block !important;
}

.navbar-toggler-icon-fa.fa-times {
    display: none !important;
}

/* When menu is expanded, hide bars and show X */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-fa.fa-bars {
    display: none !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-fa.fa-times {
    display: inline-block !important;
}

/* When menu is collapsed, show bars and hide X */
.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon-fa.fa-bars {
    display: inline-block !important;
}

.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon-fa.fa-times {
    display: none !important;
}

.navbar-toggler:hover .navbar-toggler-icon-fa,
.navbar-toggler:focus .navbar-toggler-icon-fa {
    color: var(--accent);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-fa {
    color: var(--accent);
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        display: flex !important;
    }
    
    .site-logo {
        height: 32px !important;
        max-width: 100px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar-brand {
        font-size: 0.875rem;
        display: flex !important;
        align-items: center;
        min-width: 0;
    }
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}

.navbar .nav-link {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    position: relative;
    padding-inline: 0.35rem;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.6rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar .btn-accent {
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    background: var(--accent);
    color: #071018;
    font-weight: 600;
    transition: transform 0.2s ease;
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.35);
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar .btn-accent:hover {
    transform: translateY(-2px);
    color: #071018;
}

@media (max-width: 991.98px) {
    .navbar .btn-accent {
        width: 100%;
        margin-top: 0.75rem;
    }
    
    .nav-cart-link {
        margin-top: 0.75rem;
        align-self: flex-start;
    }
}

.dropdown-menu-dark {
    background: rgba(32, 32, 32, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 1.5rem;
    min-width: 420px;
}

@media (max-width: 767.98px) {
    .dropdown-menu-dark {
        min-width: 100%;
        padding: 1rem;
    }
}

.dropdown-menu-dark .dropdown-item {
    color: #f1f1f1;
    padding: 0.35rem 0;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
    background-color: transparent;
    color: var(--accent);
}

.dropdown-menu-dark h6 {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.dropdown-menu-dark .row {
    --bs-gutter-x: 1.5rem;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 0rem 0 0rem;
    background: linear-gradient(150deg, rgba(11, 16, 26, 0.72), rgba(11, 16, 26, 0.5) 45%, rgba(11, 16, 26, 0.85)),
                url('assets/images/projects-1.jpg') center/cover no-repeat;
    z-index: 1;
}

/* Ensure navbar and logo stay above hero sections */
.main-nav {
    z-index: 1050 !important;
    position: sticky;
    top: 40px;
    width: 100%;
}

@media (max-width: 767.98px) {
    .main-nav {
        top: 0;
        z-index: 1050 !important;
    }
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(11, 16, 26, 0.55), rgba(6, 13, 24, 0.2) 35%, rgba(6, 13, 24, 0.75));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-media {
    width: clamp(320px, 45vw, 520px);
    margin-left: auto;
    box-shadow: 0 34px 58px rgba(0, 0, 0, 0.35);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.hero-video {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.hero-media--stacked {
    overflow: visible;
    border-radius: 28px;
}

.hero-media__primary {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.hero-media__primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 13, 24, 0.05), rgba(6, 13, 24, 0.35));
}

.hero-media__primary img {
    width: 100%;
    height: clamp(280px, 55vh, 420px);
    object-fit: cover;
    display: block;
}

.hero-media__secondary {
    position: absolute;
    bottom: -36px;
    right: -36px;
    width: clamp(160px, 35%, 220px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    background: rgba(11, 16, 26, 0.85);
}

.hero-media__secondary img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.hero-media__secondary-caption {
    padding: 0.85rem 1rem;
    display: grid;
    gap: 0.25rem;
    color: var(--text-muted);
}

.hero-media__secondary-caption strong {
    font-size: 0.88rem;
    color: var(--text-light);
}

.hero-media__badge {
    position: absolute;
    top: 24px;
    left: -36px;
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid rgba(78, 205, 196, 0.5);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.65rem;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 22px rgba(0, 0, 0, 0.36);
}

.hero-secondary {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-secondary__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-secondary__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1);
}

.hero-secondary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 14, 24, 0.78), rgba(9, 14, 24, 0.55)),
                radial-gradient(circle at top left, rgba(78, 205, 196, 0.2), transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.hero-secondary .container {
    position: relative;
    z-index: 2;
}

.hero-secondary__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-secondary__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.68);
}

.hero-secondary__title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-secondary__text {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.75);
}

.hero-secondary__stats {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.hero-secondary__stat {
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(11, 16, 26, 0.75);
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.35);
}

.hero-secondary__stat-label {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.58);
    display: block;
    margin-bottom: 0.5rem;
}

.hero-secondary__stat-value {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.trusted-intro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trusted-intro__headline {
    display: grid;
    gap: 1rem;
}

.trusted-intro__headline p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
}

.trusted-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: stretch;
}

.trusted-media {
    position: relative;
    display: grid;
    gap: 1.75rem;
}

.trusted-media__video {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 45px rgba(0, 0, 0, 0.4);
}

.trusted-media__video video {
    width: 100%;
    height: clamp(260px, 45vh, 360px);
    object-fit: cover;
}

.trusted-media__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.trusted-stat {
    padding: 1.3rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(13, 20, 32, 0.72);
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.35);
}

.trusted-stat__label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 0.4rem;
}

.trusted-stat__value {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.07em;
}

.trusted-clients {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.trusted-client-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.75rem;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 44px rgba(0, 0, 0, 0.35);
    display: grid;
    gap: 1rem;
}

.trusted-client-card__logo {
    height: 42px;
    display: flex;
    align-items: center;
}

.trusted-client-card__logo img {
    max-height: 100%;
    width: auto;
}

.trusted-client-card p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    display: block;
    white-space: normal;
    line-height: 1.25;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.hero-badge {
    margin-left: clamp(0px, 5vw, 40px);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(78, 205, 196, 0.4);
    background: rgba(78, 205, 196, 0.12);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-actions {
    margin-left: clamp(0px, 5vw, 40px);
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-title,
.hero-subtitle {
    margin-left: clamp(0px, 5vw, 40px);
    margin-right: 40px;
}

.hero-stats {
    margin-left: clamp(0px, 5vw, 40px);
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.hero-stat {
    padding: 1.1rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(16, 24, 38, 0.78);
    backdrop-filter: blur(10px);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.26);
}

.hero-stat__label {
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.65);
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stat__value {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.hero-visual {
    display: grid;
    gap: 1.5rem;
    position: relative;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: -24px -32px;
    border-radius: 38px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.hero-visual > * {
    position: relative;
    z-index: 1;
}

.hero-card {
    padding: 2rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(15, 22, 35, 0.95), rgba(15, 22, 35, 0.75));
    box-shadow: 0 30px 48px rgba(0, 0, 0, 0.38);
    display: grid;
    gap: 0.75rem;
}

.hero-card__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.65);
}

.hero-card h3 {
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

.hero-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--accent);
}

.hero-card__link:hover {
    color: #63efe6;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Disable animations on mobile for better performance */
@media (max-width: 767.98px) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .reveal.is-visible {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Reduce animation duration for mobile if animations are needed */
    [data-animate] {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2.5rem;
    align-items: start;
}

.quote-form-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 2.75rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 30px 55px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.quote-intro {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.quote-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.35rem;
}

.quote-field label,
.quote-field legend {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.quote-field select,
.quote-field input,
.quote-field textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border-radius: 12px;
    padding: 0.75rem 1rem;
}

.quote-field select option {
    color: #1a1a1a;
    background: #ffffff;
}

.quote-field textarea {
    min-height: 120px;
}

.quote-fieldset {
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 18px;
}

.quote-fieldset legend {
    padding: 0 0.5rem;
}

.quote-field-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.quote-field-grid--pairs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.quote-radio-group input {
    margin-right: 0.45rem;
}

.quote-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.95rem;
}

.quote-checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.quote-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    margin: 0;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    appearance: none;
    -webkit-appearance: none;
    position: relative;
}

.quote-checkbox-group input[type="checkbox"]:checked {
    background: var(--accent);
    border-color: var(--accent);
}

.quote-checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-dark);
    font-weight: bold;
    font-size: 14px;
}

.quote-alert {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.quote-alert-error {
    border: 1px solid rgba(255, 111, 60, 0.35);
    background: rgba(255, 111, 60, 0.08);
    color: #ffdccb;
}

.quote-alert-success {
    border: 1px solid rgba(90, 213, 90, 0.35);
    background: rgba(90, 213, 90, 0.1);
    color: #d6f5d6;
}

.quote-summary-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 140px;
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.35);
}

.quote-summary-header h3 {
    margin-bottom: 0.35rem;
}

.quote-summary-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quote-summary-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.quote-summary-row dt {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.quote-summary-row dd {
    margin: 0;
    font-weight: 600;
}

.quote-extras-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
}

.quote-extras-list li {
    display: flex;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    border-radius: 12px;
}

.quote-extras-list li strong {
    color: var(--accent);
}

.quote-next-steps {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.section-light {
    background: #f7f7f7;
    color: #1a1a1a;
}

.section-light::before {
    border-color: rgba(11, 16, 26, 0.08);
    opacity: 1;
}

.section-light .text-muted {
    color: #555 !important;
}

.section-dark {
    background:
        radial-gradient(circle at top left, rgba(78, 205, 196, 0.08), transparent 55%),
        var(--bg-mid);
    color: var(--text-light);
}

.section-dark::before {
    border-color: rgba(255, 255, 255, 0.05);
}

.section-dark .text-muted,
.card-architect .text-muted {
    color: #e0e0e0 !important;
}

.section-dark .text-muted.small {
    color: #c8c8c8 !important;
}

 .section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.section::before {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    opacity: 0.35;
    pointer-events: none;
}

.section-header {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.card-architect {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    padding: 2.5rem;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.card-architect:hover {
    transform: translateY(-6px);
    border-color: rgba(78, 205, 196, 0.6);
    box-shadow: 0 32px 56px rgba(78, 205, 196, 0.25);
}

.card-architect .card-media {
    margin: -2.25rem -2.25rem 1.75rem;
    overflow: hidden;
    border-radius: 18px 18px 12px 12px;
}

.card-architect .card-media img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.card-architect.light .card-media {
    margin-bottom: 1.5rem;
}

.card-architect.light {
    background: #fff;
    border-color: rgba(208, 215, 231, 0.6);
    color: #1a1a1a;
    box-shadow: 0 30px 50px rgba(20, 27, 44, 0.1);
}

.card-architect.light:hover {
    border-color: rgba(78, 205, 196, 0.35);
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.35);
}

.project-carousel .carousel-item {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-carousel .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.7));
}

.project-carousel .carousel-caption {
    z-index: 2;
    text-align: left;
}

.shop-card {
    background: #fff;
    color: #111;
    border: none;
    border-radius: 0;
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.14);
    transition: transform 0.2s ease;
}

.shop-card:hover {
    transform: translateY(-8px);
}

.section-shop {
    background: #f5f6f8;
    color: #0c1b2a;
}

.hero--shop {
    min-height: 60vh;
}

.product-buy-now {
    background: var(--accent);
    border: none;
    color: #0a1f2f;
}

.product-buy-now:hover {
    background: #63efe6;
    color: #0a1f2f;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.shop-header__left .section-header {
    color: #748195;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.shop-header__right {
    min-width: 200px;
}

.shop-header__right .form-select {
    border-radius: 12px;
    padding: 0.65rem 1rem;
    border: 1px solid #d4dbe3;
}

.shop-results {
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.shop-layout {
    display: grid;
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.shop-banner {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 2rem;
    background: linear-gradient(135deg, rgba(10, 86, 153, 0.12), rgba(10, 86, 153, 0.04));
    border: 1px solid #d4dbe3;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 45px rgba(12, 27, 42, 0.08);
    align-items: center;
    margin-bottom: 2.5rem;
}

.shop-banner__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #0a5699;
    margin-bottom: 0.5rem;
}

.shop-banner__title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.shop-banner__description {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.shop-banner__media img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.shop-banner .btn {
    width: fit-content;
}

.shop-filters {
    background: #fff;
    border: 1px solid #e0e6eb;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 20px 40px rgba(12, 27, 42, 0.08);
    position: sticky;
    top: 140px;
}

.shop-filters__toggle {
    border-radius: 10px;
}

.shop-filters__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shop-filter-group h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #0c1b2a;
    margin-bottom: 0.85rem;
}

.shop-filter-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.shop-filter-group label {
    display: flex;
    gap: 0.55rem;
    font-size: 0.92rem;
    color: #4a5568;
    align-items: center;
}

.shop-filter-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #ccd5e0;
}

.shop-filter-group a {
    font-size: 0.88rem;
    color: #0a5699;
    text-decoration: none;
}

.shop-filter-group a:hover {
    text-decoration: underline;
}

.shop-filter-columns {
    columns: 2;
    column-gap: 1rem;
}

.shop-results-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
}

.shop-item {
    background: #fff;
    border: 1px solid #e3e9f0;
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    box-shadow: 0 20px 40px rgba(12, 27, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(12, 27, 42, 0.12);
}

.shop-item img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    max-height: 200px;
}

.shop-item h3 {
    font-size: 1.02rem;
    font-weight: 600;
    color: #132238;
    margin-bottom: 0;
}

.shop-item__price {
    font-weight: 600;
    color: #0a5699;
}

.shop-item__price span {
    font-size: 0.85rem;
    color: #6b778b;
    font-weight: 400;
}

.shop-item__view {
    background: #0a5699;
    border-color: #0a5699;
    font-size: 0.9rem;
}

.shop-item__view:hover {
    background: #08477f;
}

.shop-pagination .page-link {
    border: none;
    border-radius: 10px;
    color: #0a5699;
}

.shop-pagination .page-item.active .page-link {
    background: #0a5699;
    color: #fff;
}

.shop-pagination .page-link:hover {
    background: rgba(10, 86, 153, 0.1);
    color: #0a5699;
}

.section-detail-intro {
    background: #f5f6f8;
    padding: 6rem 0 3rem;
    color: #0c1b2a;
}

.product-breadcrumb {
    margin-bottom: 1.5rem;
    gap: 0.35rem;
    font-size: 0.85rem;
}

.product-breadcrumb .breadcrumb-item a {
    color: #0a5699;
    text-decoration: none;
}

.product-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #9aa6b8;
}

.section-detail {
    background: #ffffff;
    padding: 3.5rem 0;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.product-gallery__main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #f0f3f7;
    display: grid;
    place-items: center;
}

.product-gallery__main img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.product-gallery__zoom {
    position: absolute;
    top: 18px;
    right: 18px;
    border: none;
    background: rgba(12, 27, 42, 0.78);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.product-gallery__zoom:hover {
    transform: scale(1.05);
    background: rgba(12, 27, 42, 0.92);
}

.product-gallery__thumbs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-gallery__thumb {
    border: 1px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    background: transparent;
    flex: 0 0 110px;
    cursor: pointer;
    outline: none;
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery__thumb.is-active {
    border-color: #0a5699;
}

.product-gallery__thumb:focus-visible {
    border-color: #0a5699;
    box-shadow: 0 0 0 2px rgba(10, 86, 153, 0.35);
}

.product-gallery__nav {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    padding: 0 1rem;
}

.product-gallery__arrow {
    pointer-events: auto;
    background: rgba(8, 17, 26, 0.42);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1rem;
    transition: background 0.2s ease;
}

.product-gallery__arrow:hover {
    background: rgba(8, 17, 26, 0.65);
}

.product-gallery__arrow:focus-visible {
    outline: 2px solid rgba(99, 239, 230, 0.8);
    outline-offset: 2px;
}

.product-zoom-modal .modal-content {
    background: transparent;
    border: none;
    position: relative;
}

.product-zoom-modal .modal-body {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(8, 17, 26, 0.85);
    border-radius: 16px;
}

.product-zoom-modal img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 16px;
}

.product-zoom-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 50%;
    padding: 0.6rem;
    z-index: 2;
}

.product-buy-box {
    background: #f5f7fb;
    border: 1px solid #dde3ed;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(12, 27, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.product-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #6b778b;
}

.product-price {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}

.product-price__main {
    font-size: 2.4rem;
    font-weight: 600;
    color: #0c1b2a;
}

.product-price__vat {
    color: #73829a;
    font-size: 0.95rem;
}

.product-form .form-select {
    border-radius: 14px;
    border: 1px solid #cfd7e3;
    padding: 0.7rem 1rem;
}

.product-finish-group .btn {
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
}

.product-purchase-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.product-quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cfd7e3;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.product-quantity input {
    width: 70px;
    border: none;
    text-align: center;
    font-size: 1rem;
    padding: 0.7rem 0.5rem;
    outline: none;
}

.product-qty-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: #0c1b2a;
    display: grid;
    place-items: center;
    font-size: 0.9rem;
}

.product-qty-btn:focus {
    outline: none;
    box-shadow: inset 0 0 0 1px #0a5699;
}

.product-accordion details {
    border-top: 1px solid #dde3ed;
    padding: 1rem 0;
}

.product-accordion details:first-of-type {
    border-top: none;
    padding-top: 0;
}

.product-accordion summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-accordion summary::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.2s ease;
}

.product-accordion details[open] summary::after {
    transform: rotate(180deg);
}

.product-accordion__content {
    margin-top: 0.85rem;
    color: #4a5568;
    font-size: 0.95rem;
}

.product-accordion__content ul {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.product-meta-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.product-meta-list strong {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.54);
    display: block;
    margin-bottom: 0.35rem;
}

.product-meta-list .text-muted,
.product-meta-list span {
    color: rgba(255, 255, 255, 0.72);
}

.product-meta-list .product-meta-categories a {
    color: var(--accent);
    transition: color 0.2s ease;
}

.product-meta-list .product-meta-categories a:hover {
    color: #fff;
}

.product-related .shop-item {
    box-shadow: none;
}

.product-related .shop-item:hover {
    box-shadow: 0 16px 32px rgba(12, 27, 42, 0.12);
}

.related-nav {
    display: flex;
    gap: 0.75rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
}

.badge-new {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--accent);
    color: #111;
    padding: 0.35rem 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.cta-strip {
    background: var(--accent);
    color: #081720;
    padding: 3rem;
    border-radius: 0;
}

.cta-strip h3 {
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.footer {
    background: #111111;
    color: var(--text-muted);
}

.footer a {
    color: var(--text-muted);
}

.footer a:hover {
    color: var(--accent);
}

.footer .footer-brand {
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.form-control,
.form-select {
    background-color: var(--bg-mid);
    border: 1px solid var(--border);
    color: var(--text-light);
    border-radius: 0;
}

.form-control:focus,
.form-select:focus {
    background-color: #1b1b1b;
    border-color: var(--accent);
    box-shadow: none;
    color: var(--text-light);
}

.form-control::placeholder,
.form-select::placeholder {
    color: rgba(240, 240, 240, 0.75);
}

.btn-outline-light {
    border-radius: 0;
    border-width: 2px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: #000;
}

.btn-accent {
    background: var(--accent);
    color: #111;
    border-radius: 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-accent:hover {
    background: #ff844f;
    color: #111;
}

.utility-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 0.45rem;
}

.utility-link:hover {
    border-color: var(--accent);
}

.footer-nav {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
}

.footer-nav li a {
    color: var(--text-muted);
    font-size: 0.92rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-nav li a::before {
    content: "▸";
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.2s ease;
}

.footer-nav li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-nav li a:hover::before {
    color: var(--accent);
}

.grid-lined {
    position: relative;
}

.grid-lined::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.stats-bar {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stats-bar .stat {
    flex: 1 1 150px;
    padding: 1.5rem;
    border-left: 1px solid var(--border);
}

.stat .label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.stat .value {
    font-size: 2rem;
    font-weight: 600;
}

.download-card {
    border: 1px solid var(--border);
    border-radius: 0;
    background: var(--bg-mid);
    padding: 1.75rem;
    transition: border-color 0.2s ease;
}

.download-card:hover {
    border-color: var(--accent);
}

.project-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.project-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-card__category {
    display: block;
    padding: 1.75rem 2.25rem 0 2.25rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
}

.project-card h3 {
    padding: 0 2.25rem;
}

.project-card__summary {
    padding: 0 2.25rem 1.5rem 2.25rem;
    color: #e0e0e0;
}

.project-card .utility-link {
    margin: auto 0 2rem 2.25rem;
}

.partners-carousel {
    position: relative;
    padding: 0 2rem;
    margin-top: 2rem;
}

.partners-carousel .carousel-inner {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 2rem 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.partners-carousel .carousel-control-prev,
.partners-carousel .carousel-control-next {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    opacity: 0.7;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.partners-carousel .carousel-control-prev:hover,
.partners-carousel .carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.partners-carousel .carousel-control-prev:active,
.partners-carousel .carousel-control-next:active {
    transform: translateY(-50%) scale(0.95);
}

.partners-carousel .carousel-control-prev {
    left: -28px;
}

.partners-carousel .carousel-control-next {
    right: -28px;
}

.partners-carousel .carousel-control-prev-icon,
.partners-carousel .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
    background-size: 2rem 2rem;
    filter: brightness(0) invert(1);
}

.partner-logos {
    gap: 4rem !important;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    flex-wrap: wrap;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    flex: 0 0 auto;
    transition: transform 0.3s ease;
    opacity: 0.85;
}

.partner-logo-item:hover {
    transform: scale(1.05);
    opacity: 1;
}

.partner-logos img {
    max-height: 100px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    filter: grayscale(20%);
}

.partner-logo-item:hover img {
    filter: grayscale(0%);
    transform: translateY(-2px);
}

/* Mobile responsive fixes for partners carousel */
@media (max-width: 767.98px) {
    .partners-carousel {
        padding: 0 1rem;
        margin-top: 1.5rem;
    }
    
    .partners-carousel .carousel-inner {
        border-radius: 24px;
        padding: 1.75rem 0.75rem;
        min-height: 200px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }
    
    .partner-logos {
        gap: 2rem !important;
        flex-wrap: wrap;
        justify-content: center !important;
        align-items: center !important;
        padding: 1rem 0.5rem !important;
        width: 100%;
        min-height: 180px;
    }
    
    .partner-logo-item {
        flex: 0 0 auto;
        padding: 0.5rem;
    }
    
    .partner-logos img {
        max-height: 60px;
        max-width: 120px;
        width: auto;
        height: auto;
        margin: 0 auto;
        display: block;
        filter: grayscale(10%);
    }
    
    .partners-carousel .carousel-item {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .partners-carousel .carousel-control-prev,
    .partners-carousel .carousel-control-next {
        width: 48px;
        height: 48px;
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
        background: rgba(0, 0, 0, 0.65);
        border-radius: 50%;
        opacity: 0.85;
        transition: all 0.3s ease;
    }
    
    .partners-carousel .carousel-control-prev:hover,
    .partners-carousel .carousel-control-next:hover {
        opacity: 1;
        background: rgba(0, 0, 0, 0.85);
        transform: translateY(-50%) scale(1.05);
    }
    
    .partners-carousel .carousel-control-prev {
        left: 0.5rem;
    }
    
    .partners-carousel .carousel-control-next {
        right: 0.5rem;
    }
    
    .partners-carousel .carousel-control-prev-icon,
    .partners-carousel .carousel-control-next-icon {
        width: 1.5rem;
        height: 1.5rem;
        background-size: 1.5rem 1.5rem;
        filter: brightness(0) invert(1);
    }
}

@media (max-width: 575.98px) {
    .partners-carousel {
        padding: 0 0.5rem;
        margin-top: 1rem;
    }
    
    .partners-carousel .carousel-inner {
        border-radius: 20px;
        padding: 1.5rem 0.5rem;
        min-height: 180px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    }
    
    .partner-logos {
        gap: 1.25rem !important;
        padding: 0.75rem 0.25rem !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100%;
        min-height: 160px;
    }
    
    .partner-logo-item {
        flex: 0 0 auto;
        padding: 0.5rem;
    }
    
    .partner-logos img {
        max-height: 50px;
        max-width: 100px;
        width: auto;
        height: auto;
        margin: 0 auto;
        display: block;
        filter: grayscale(10%);
    }
    
    .partners-carousel .carousel-item {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 180px;
        text-align: center;
        width: 100%;
    }
    
    .partners-carousel .carousel-control-prev,
    .partners-carousel .carousel-control-next {
        width: 44px;
        height: 44px;
        opacity: 0.8;
    }
    
    .partners-carousel .carousel-control-prev-icon,
    .partners-carousel .carousel-control-next-icon {
        width: 1.25rem;
        height: 1.25rem;
        background-size: 1.25rem 1.25rem;
        filter: brightness(0) invert(1);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .partners-carousel {
        padding: 0 1.5rem;
    }
    
    .partners-carousel .carousel-inner {
        padding: 1.75rem 1.25rem;
    }
    
    .partners-carousel .carousel-control-prev {
        left: -24px;
    }
    
    .partners-carousel .carousel-control-next {
        right: -24px;
    }
    
    .partners-carousel .carousel-control-prev,
    .partners-carousel .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .partner-logos {
        gap: 3rem !important;
        padding: 1.25rem 1rem !important;
        min-height: 160px;
    }
    
    .partner-logo-item {
        padding: 0.75rem;
    }
    
    .partner-logos img {
        max-height: 80px;
        max-width: 160px;
    }
}

.contact-card {
    background: var(--bg-mid);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 2rem;
}

#newsletterMessage {
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}

#newsletterMessage.text-success {
    color: var(--accent);
    background: rgba(78, 205, 196, 0.1);
}

#newsletterMessage.text-danger {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.map-wrapper {
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    min-height: 320px;
}

.hero--cart {
    min-height: 320px;
    padding: 6rem 0 4.5rem;
    background: linear-gradient(140deg, rgba(10, 14, 24, 0.92), rgba(17, 23, 36, 0.76)),
        url('assets/images/product-support-structures.jpg') center/cover no-repeat;
}

.hero--cart .hero-badge {
    background: rgba(78, 205, 196, 0.22);
    border-color: rgba(78, 205, 196, 0.5);
}

.hero--cart .hero-title {
    letter-spacing: 0.14em;
}

.hero--cart .lead {
    color: rgba(255, 255, 255, 0.7) !important;
}

.cart-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(12, 18, 29, 0.98), rgba(8, 12, 19, 0.94));
}

.cart-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(78, 205, 196, 0.12), transparent 55%);
    pointer-events: none;
}

.cart-layout {
    align-items: flex-start;
}

.cart-items {
    display: grid;
    gap: 1.75rem;
}

.cart-items__header {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
    padding: 0 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.cart-item.card-architect {
    border-radius: 24px;
    padding: 1.75rem;
    background: rgba(17, 23, 36, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
    display: grid;
    grid-template-columns: minmax(0, 120px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.cart-item__media img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.cart-item__body {
    display: grid;
    gap: 1.4rem;
}

.cart-item__headline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.cart-item__title {
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.cart-item__title a {
    color: #fff;
}

.cart-item__title a:hover {
    color: var(--accent);
}

.cart-item__excerpt {
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6) !important;
}

.cart-item__attributes {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-item__notice {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 0.75rem;
}

.cart-item__remove {
    flex-shrink: 0;
}

.cart-item__remove-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.65);
    transition: background 0.2s ease, color 0.2s ease;
}

.cart-item__remove-link:hover {
    background: rgba(78, 205, 196, 0.2);
    color: #fff;
}

.cart-item__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.cart-item__grid .label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.45);
    display: block;
    margin-bottom: 0.35rem;
}

.cart-item__grid strong {
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.cart-item__quantity .quantity {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
}

.cart-item__quantity .quantity input.qty {
    width: 64px;
    background: transparent;
    border: none;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-item__quantity .quantity input.qty:focus {
    outline: none;
    box-shadow: none;
}

.cart-form__footer {
    display: grid;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.cart-coupon {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.75rem;
    border-radius: 22px;
    background: rgba(21, 28, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28);
}

.cart-coupon__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(78, 205, 196, 0.18);
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 1.35rem;
}

.cart-coupon__title {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.cart-coupon__form {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.cart-coupon .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 12px;
    padding: 0.65rem 0.9rem;
}

.cart-coupon .form-control::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.cart-coupon .btn {
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.cart-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.cart-continue {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.cart-continue:hover {
    color: var(--accent);
}

.cart-actions__buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-actions__buttons .btn {
    border-radius: 999px;
    padding-inline: 1.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cart-summary {
    position: sticky;
    top: 120px;
    padding: 2rem;
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(21, 28, 42, 0.9), rgba(15, 20, 32, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.32);
}

.cart-summary__header {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cart-summary__body .cart_totals {
    margin: 0;
}

.cart-summary__body .cart_totals h2 {
    display: none;
}

.cart-summary__body .shop_table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0 0.65rem;
}

.cart-summary__body .shop_table th,
.cart-summary__body .shop_table td {
    border: none;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    font-size: 0.9rem;
}

.cart-summary__body .shop_table th {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
}

.cart-summary__body .shop_table td {
    text-align: right;
    font-weight: 600;
}

.cart-summary__body .order-total td {
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    color: #fff;
}

.cart-summary__body .wc-proceed-to-checkout {
    margin-top: 1.75rem;
}

.cart-summary__body .checkout-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    border-radius: 999px;
    padding: 0.9rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(78, 205, 196, 0.95), rgba(110, 224, 214, 0.92));
    color: #071018 !important;
    border: none;
}

.cart-summary__body .checkout-button:hover {
    filter: brightness(1.1);
}

.cart-summary__footer {
    margin-top: 1.75rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    line-height: 1.6;
}

.cart-cross-sells {
    margin-top: 2.5rem;
    padding: 2rem;
    border-radius: 24px;
    background: rgba(16, 22, 34, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.cart-cross-sells__header {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
}

.cart-cross-sells .products {
    display: grid;
    gap: 1.35rem;
}

.cart-cross-sells .products .product {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.cart-cross-sells .products .product a {
    color: #fff;
}

.cart-cross-sells .products .product .button {
    margin-top: 1rem;
    border-radius: 999px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .cart-summary {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .hero--cart {
        padding: 5rem 0 3.5rem;
    }

    .cart-items__header {
        display: none;
    }

    .cart-item.card-architect {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .cart-item__media img {
        width: 100%;
        height: 220px;
    }

    .cart-item__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .cart-coupon__form {
        flex-direction: column;
    }

    .cart-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-actions__buttons {
        width: 100%;
        justify-content: space-between;
    }

    .cart-actions__buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

.page-cart {
    background: var(--bg-dark);
    color: var(--text-light);
}

.hero-actions .btn {
    border-radius: 999px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding-inline: 1.6rem;
}

.cart-hero-card {
    padding: 1.9rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(13, 19, 30, 0.85);
    box-shadow: 0 28px 46px rgba(0, 0, 0, 0.32);
    display: grid;
    gap: 1.1rem;
}

.cart-hero-card__headline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}

.cart-hero-card__headline i {
    color: var(--accent);
    font-size: 1.25rem;
}

.cart-highlights {
    padding: 4.5rem 0 3.5rem;
    background: linear-gradient(180deg, rgba(13, 19, 31, 0.98), rgba(11, 16, 26, 0.92));
}

.cart-highlight {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 1.9rem;
    display: grid;
    gap: 1rem;
    height: 100%;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.25);
}

.cart-highlight__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(78, 205, 196, 0.18);
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 1.4rem;
}

.cart-highlight__title {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.95rem;
}

.cart-page-content {
    position: relative;
    z-index: 1;
}

.cart-empty {
    padding: 6rem 0 7rem;
    background: linear-gradient(180deg, rgba(11, 16, 26, 0.95), rgba(11, 16, 26, 0.85));
}

.cart-empty__inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 28px;
    background: rgba(16, 22, 34, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.3);
    display: grid;
    gap: 1.25rem;
}

.cart-empty__inner i {
    font-size: 2.5rem;
    color: var(--accent);
}

.cart-support {
    padding: 5rem 0 5.5rem;
    background: linear-gradient(180deg, rgba(10, 14, 24, 0.95), rgba(6, 10, 18, 0.95));
}

.cart-support__card {
    padding: 2.25rem;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(16, 23, 36, 0.92);
    box-shadow: 0 30px 58px rgba(0, 0, 0, 0.32);
    display: grid;
    gap: 1.5rem;
}

.cart-support__header h3 {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 1.2rem;
}

.cart-support__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.cart-support__list li {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.cart-support__list i {
    color: var(--accent);
    font-size: 1.1rem;
}

.cart-support__cta {
    padding: 2.2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 10, 18, 0.88);
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.3);
    display: grid;
    gap: 1.25rem;
}

.cart-support__cta h4 {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.95rem;
}

.cart-support__actions {
    display: grid;
    gap: 0.75rem;
}

.cart-support__actions .btn {
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

@media (max-width: 991.98px) {
    .cart-support__card,
    .cart-support__cta {
        padding: 2rem;
    }
}

.nav-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.78);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    font-size: 1rem;
}

.nav-cart-link:hover {
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 12px 22px rgba(78, 205, 196, 0.25);
    transform: translateY(-2px);
}

.nav-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--accent), rgba(110, 224, 214, 0.9));
    color: #071018;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.35rem;
}

.shop-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.shop-controls__search {
    min-width: clamp(220px, 30vw, 320px);
}

.shop-controls__search .form-control {
    border-radius: 12px;
    padding: 0.65rem 1rem;
    border: 1px solid #d4dbe3;
    box-shadow: none;
}

.shop-controls__search .form-control:focus {
    outline: none;
    border-color: #0a5699;
    box-shadow: 0 0 0 3px rgba(10, 86, 153, 0.1);
}

.shop-controls__sort .form-select {
    min-width: 190px;
}

.shop-filter-group__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.shop-filter-clear {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #748195;
}

.shop-filter-clear:hover {
    color: #0a5699;
}

.shop-filter-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.shop-filter-checklist--child {
    margin-left: 1.25rem;
    padding-left: 0.75rem;
    border-left: 1px solid #e6ecf2;
}

.shop-filter-check {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #4a5568;
}

.shop-filter-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    accent-color: #0a5699;
}

.shop-filter-check span {
    line-height: 1.4;
}

/* ============================================
   Comprehensive Mobile Responsive Fixes
   ============================================ */

@media (max-width: 767.98px) {
    /* Hero sections */
    .hero {
        padding: 3rem 0 2.5rem;
    }
    
    .hero-secondary {
        padding: 3.5rem 0;
    }
    
    .hero-secondary__grid,
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .hero-title,
    .hero-secondary__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
    }
    
    /* Trusted section - Design leaders rely on our terrace systems */
    .trusted-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .trusted-media {
        gap: 1.5rem;
    }
    
    .trusted-media__video video {
        height: 240px;
    }
    
    .trusted-media__stats {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .trusted-clients {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .trusted-client-card {
        padding: 1.25rem;
    }
    
    .trusted-intro {
        margin-bottom: 2rem;
    }
    
    .trusted-intro__headline {
        margin-top: 1rem;
    }
    
    /* Partners section header */
    .section-header {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-top: 0.75rem;
        margin-bottom: 1rem;
    }
    
    /* Partners section layout */
    .row.justify-content-between.align-items-end {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
    
    .text-lg-end {
        text-align: left !important;
    }
    
    /* Partners CTA link */
    .utility-link {
        display: inline-block;
        margin-top: 0;
        font-size: 0.875rem;
    }
    
    /* Quote form layout */
    .quote-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        display: flex !important;
        flex-direction: column;
    }
    
    .quote-form-card {
        order: 1;
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
        width: 100%;
    }
    
    .quote-summary-card {
        order: 2;
        position: static !important;
        margin-top: 0 !important;
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
        width: 100%;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }
    
    .quote-field-grid--pairs {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .quote-field-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    /* Form fields */
    .quote-field {
        margin-bottom: 1.25rem;
    }
    
    .quote-field label {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .quote-field input,
    .quote-field select,
    .quote-field textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 48px;
        padding: 0.875rem 1rem;
        width: 100%;
    }
    
    .quote-field textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    /* Fieldsets */
    .quote-fieldset {
        padding: 1.25rem 1rem;
        border-radius: 16px;
        margin-bottom: 1.25rem;
    }
    
    .quote-fieldset legend {
        font-size: 0.85rem;
        padding: 0 0.75rem;
        margin-bottom: 1rem;
    }
    
    /* Radio groups */
    .quote-radio-group {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .quote-radio-group label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9375rem;
        cursor: pointer;
        padding: 0.5rem 0;
        width: 100%;
    }
    
    .quote-radio-group input[type="radio"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
        margin: 0;
        cursor: pointer;
    }
    
    /* File input */
    .quote-field input[type="file"] {
        padding: 0.75rem;
        cursor: pointer;
    }
    
    /* Required asterisk */
    .quote-field .required {
        color: var(--accent);
    }
    
    /* Summary card mobile */
    .quote-summary-header h3 {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
        margin-bottom: 0.75rem;
    }
    
    .quote-summary-header p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .quote-summary-row {
        padding-bottom: 0.75rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .quote-summary-row dt {
        font-size: 0.75rem;
        flex: 1 1 50%;
    }
    
    .quote-summary-row dd {
        font-size: 1rem;
        flex: 1 1 50%;
        text-align: right;
    }
    
    .quote-extras h4,
    .quote-next-steps h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .quote-extras-list li {
        font-size: 0.875rem;
        padding: 0.625rem 0.75rem;
        flex-wrap: wrap;
    }
    
    .quote-next-steps p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    /* Quote form intro */
    .quote-intro {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .quote-form-card h2 {
        font-size: clamp(1.375rem, 5vw, 1.75rem);
        margin-bottom: 1rem;
    }
    
    /* Hero section improvements */
    .hero-media {
        width: 100%;
        margin: 1.5rem auto 0;
        max-width: 100%;
    }
    
    .hero-media img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
        border-radius: 18px;
    }
    
    /* CTA section mobile */
    .cta-strip {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 18px;
    }
    
    .cta-strip h3 {
        font-size: clamp(1.125rem, 4vw, 1.375rem);
        margin-bottom: 1rem;
    }
    
    .cta-strip p {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .section-light .row {
        gap: 2rem;
    }
    
    /* Buttons */
    .btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Grid layouts */
    .hero-grid,
    .section-grid,
    .products-grid,
    .project-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    /* Footer */
    .footer__grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Single Product Page - Mobile Improvements */
    .product-detail {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        display: flex !important;
        flex-direction: column;
    }
    
    .product-gallery {
        order: 1;
        gap: 1.25rem;
    }
    
    .product-gallery__main {
        border-radius: 20px;
    }
    
    .product-gallery__main img {
        max-height: 350px;
        width: 100%;
        height: auto;
    }
    
    .product-gallery__zoom {
        width: 44px;
        height: 44px;
        top: 12px;
        right: 12px;
        font-size: 1rem;
    }
    
    .product-gallery__arrow {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
    
    .product-gallery__nav {
        padding: 0 0.75rem;
    }
    
    .product-gallery__thumbs {
        gap: 0.75rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    
    .product-gallery__thumb {
        flex: 0 0 90px;
        min-width: 90px;
    }
    
    .product-gallery__thumb img {
        height: 90px;
        object-fit: cover;
    }
    
    .product-buy-box {
        order: 2;
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
        gap: 1.5rem;
        width: 100%;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.875rem;
    }
    
    .product-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .product-price__main {
        font-size: clamp(1.75rem, 6vw, 2.4rem);
    }
    
    .product-price__vat {
        font-size: 0.875rem;
    }
    
    .product-purchase-controls {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .product-quantity {
        width: 100%;
        justify-content: space-between;
    }
    
    .product-quantity input {
        flex: 1;
        width: auto;
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 48px;
        padding: 0.75rem;
    }
    
    .product-qty-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        font-size: 1rem;
    }
    
    .product-purchase-controls .btn {
        width: 100%;
        min-height: 52px;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .product-accordion {
        margin-top: 0.5rem;
    }
    
    .product-accordion details {
        padding: 0.875rem 0;
    }
    
    .product-accordion summary {
        font-size: 0.9375rem;
    }
    
    .product-accordion__content {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-top: 0.75rem;
    }
    
    .product-meta-list {
        margin-top: 1.5rem;
        gap: 0.875rem;
        font-size: 0.875rem;
    }
    
    .product-meta-list strong {
        font-size: 0.65rem;
        margin-bottom: 0.25rem;
    }
    
    /* Related products mobile */
    .related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    .product-related .shop-item {
        padding: 1rem;
    }
    
    .product-related .shop-item img {
        max-height: 160px;
    }
    
    /* Shop page */
    .shop-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .shop-filters {
        order: 2;
        margin-top: 2rem;
    }
    
    .shop-results-grid {
        order: 1;
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
        width: 100%;
    }
    
    .shop-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
        width: 100%;
    }
    
    .shop-item {
        padding: 1.25rem;
        gap: 0.875rem;
    }
    
    .shop-item h3 {
        font-size: 0.9375rem;
    }
    
    .shop-item img {
        max-height: 180px;
    }
    
    /* Custom Fabrication Banner - Mobile Improvements */
    .shop-banner {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
        margin-bottom: 2rem;
    }
    
    .shop-banner__content {
        order: 1;
    }
    
    .shop-banner__media {
        order: 2;
        width: 100%;
    }
    
    .shop-banner__eyebrow {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
        letter-spacing: 0.16em;
    }
    
    .shop-banner__title {
        font-size: clamp(1.375rem, 5vw, 1.8rem);
        line-height: 1.35;
        margin-bottom: 1rem;
        color: #0a5699;
    }
    
    .shop-banner__description {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: #4a5568;
    }
    
    .shop-banner__media img {
        width: 100%;
        height: auto;
        max-height: 280px;
        border-radius: 16px;
        object-fit: cover;
    }
    
    .shop-banner .btn {
        width: 100% !important;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    /* Contact page */
    .contact-layout {
        grid-template-columns: 1fr !important;
    }
    
    /* Image responsiveness */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Cards and containers */
    .card,
    .card-body {
        padding: 1.5rem;
    }
    
    /* Text sizes */
    h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
    h3 { font-size: clamp(1.25rem, 4vw, 1.75rem); }
    h4 { font-size: clamp(1.125rem, 3.5vw, 1.5rem); }
    
    /* Spacing adjustments */
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Navigation menu items */
    .navbar-nav {
        gap: 0.5rem;
        padding-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        font-size: 0.875rem;
    }
    
    /* Navbar brand and logo */
    .navbar-brand {
        flex: 1;
        min-width: 0;
    }
    
    .site-logo {
        height: 32px !important;
        max-width: 100px !important;
        flex-shrink: 0;
    }
    
    .navbar-brand span {
        font-size: 0.875rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Navbar toggler */
    .navbar-toggler {
        display: flex !important;
        order: 2;
        margin-left: auto;
        z-index: 1051;
        position: relative;
    }
    
    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.25em;
        background-size: contain;
    }
    
    /* Fix icon visibility */
    .navbar-toggler .navbar-toggler-icon {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Ensure navbar container displays properly */
    .navbar > .container {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        position: relative;
    }
    
    /* Ensure toggler is visible and on top */
    .navbar-toggler {
        position: relative;
        z-index: 1051;
        opacity: 1;
        visibility: visible;
    }
    
    /* Ensure logo is visible */
    .navbar-brand {
        display: flex !important;
        visibility: visible;
        opacity: 1;
        max-width: calc(100% - 60px);
    }
    
    .site-logo {
        display: block !important;
        visibility: visible;
        opacity: 1;
    }
    
    /* Cart sidebar */
    .cart-summary {
        position: static;
        margin-top: 2rem;
    }
    
    /* Budget overview card */
    .quote-summary-card,
    .quote-budget-card {
        position: static;
        margin-top: 2rem;
    }
    
    /* Statistics/numbers grid */
    .stats-grid,
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    /* Two column layouts */
    .two-column,
    .split-layout {
        grid-template-columns: 1fr !important;
    }
    
    /* Product grid */
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    /* Touch targets */
    a, button, input[type="button"], input[type="submit"] {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Tables - make them scrollable */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Map iframe */
    iframe {
        width: 100%;
        height: 300px;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-secondary__grid {
        grid-template-columns: 1fr;
    }
    
    .quote-layout {
        grid-template-columns: 1fr !important;
    }
    
    .quote-field-grid--pairs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    /* Trusted section - tablet */
    .trusted-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .trusted-clients {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trusted-media__stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra small devices */
@media (max-width: 575.98px) {
    .hero {
        padding: 2rem 0 1.5rem;
    }
    
    .quote-form-card {
        padding: 1.5rem 1rem;
        border-radius: 18px;
    }
    
    .quote-summary-card {
        padding: 1.5rem 1rem;
        border-radius: 18px;
    }
    
    .quote-field {
        margin-bottom: 1rem;
    }
    
    .quote-field label {
        font-size: 0.75rem;
    }
    
    .quote-field input,
    .quote-field select,
    .quote-field textarea {
        font-size: 16px !important;
        min-height: 44px;
        padding: 0.75rem 0.875rem;
    }
    
    .quote-fieldset {
        padding: 1rem 0.875rem;
        border-radius: 14px;
        margin-bottom: 1rem;
    }
    
    .quote-fieldset legend {
        font-size: 0.8rem;
        margin-bottom: 0.875rem;
    }
    
    .quote-field-grid,
    .quote-field-grid--pairs {
        gap: 0.875rem;
    }
    
    .quote-radio-group {
        gap: 0.875rem;
    }
    
    .quote-radio-group label {
        font-size: 0.875rem;
    }
    
    .quote-summary-header h3 {
        font-size: 1.125rem;
    }
    
    .quote-summary-row dt {
        font-size: 0.7rem;
    }
    
    .quote-summary-row dd {
        font-size: 0.9375rem;
    }
    
    .quote-extras h4,
    .quote-next-steps h4 {
        font-size: 0.9375rem;
    }
    
    .quote-extras-list li {
        font-size: 0.8125rem;
        padding: 0.5rem 0.625rem;
    }
    
    .quote-next-steps p {
        font-size: 0.8125rem;
    }
    
    /* Quote form intro - extra small */
    .quote-intro {
        font-size: 0.875rem;
        line-height: 1.65;
    }
    
    .quote-form-card h2 {
        font-size: clamp(1.25rem, 5.5vw, 1.5rem);
    }
    
    /* Hero section - extra small */
    .hero-media {
        margin-top: 1rem;
    }
    
    .hero-media img {
        max-height: 240px;
        border-radius: 16px;
    }
    
    /* CTA section - extra small */
    .cta-strip {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }
    
    .cta-strip h3 {
        font-size: 1rem;
    }
    
    .cta-strip p {
        font-size: 0.875rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    /* Single Product - Extra Small Mobile */
    .product-detail {
        gap: 1.5rem;
    }
    
    .product-gallery {
        gap: 1rem;
    }
    
    .product-gallery__main {
        border-radius: 18px;
    }
    
    .product-gallery__main img {
        max-height: 300px;
    }
    
    .product-gallery__zoom {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
        font-size: 0.875rem;
    }
    
    .product-gallery__arrow {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }
    
    .product-gallery__thumb {
        flex: 0 0 80px;
        min-width: 80px;
    }
    
    .product-gallery__thumb img {
        height: 80px;
    }
    
    .product-buy-box {
        padding: 1.5rem 1rem;
        border-radius: 18px;
        gap: 1.25rem;
    }
    
    .product-meta {
        font-size: 0.8125rem;
        gap: 0.625rem;
    }
    
    .product-price__main {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .product-price__vat {
        font-size: 0.8125rem;
    }
    
    .product-quantity input {
        min-height: 44px;
        padding: 0.625rem;
        font-size: 16px !important;
    }
    
    .product-qty-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .product-purchase-controls .btn {
        min-height: 48px;
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .product-accordion summary {
        font-size: 0.875rem;
    }
    
    .product-accordion__content {
        font-size: 0.8125rem;
    }
    
    .product-meta-list {
        font-size: 0.8125rem;
        gap: 0.75rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    /* Custom Fabrication Banner - Extra Small Mobile */
    .shop-banner {
        padding: 1.5rem 1rem;
        border-radius: 18px;
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .shop-banner__eyebrow {
        font-size: 0.65rem;
        margin-bottom: 0.625rem;
    }
    
    .shop-banner__title {
        font-size: clamp(1.25rem, 6vw, 1.5rem);
        margin-bottom: 0.875rem;
    }
    
    .shop-banner__description {
        font-size: 0.875rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }
    
    .shop-banner__media img {
        max-height: 240px;
        border-radius: 14px;
    }
    
    .shop-banner .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
        min-height: 44px;
    }
    
    /* Shop grid - Extra Small Mobile */
    .shop-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .shop-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .shop-item h3 {
        font-size: 0.875rem;
    }
    
    .shop-item img {
        max-height: 160px;
    }
    
    .stats-grid,
    .numbers-grid {
        grid-template-columns: 1fr !important;
    }
    
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
    
    /* Trusted section - extra small */
    .trusted-media__video video {
        height: 200px;
    }
    
    .trusted-client-card {
        padding: 1rem;
    }
    
    .trusted-stat {
        padding: 1rem;
    }
}

