/* Font Face */
@font-face {
    font-family: 'dinpro-medium';
    src: url('/fonts/171030032611DinPro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: auto;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    font-family: 'dinpro-medium', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}
html { overflow-x: clip; }
body { overflow-x: clip; }
/* clip (not hidden) so position:sticky works on descendants */

h1, h2, h3, h4, h5, h6 {
    font-family: 'dinpro-medium', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 38px;
    color: rgb(85, 85, 85);
    font-style: normal;
}

.main-content {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* ========== Page Loader ========== */
html.loader-active {
    overflow: hidden;
}
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.page-loader.loader-hidden {
    pointer-events: none;
}
.page-loader.loader-hidden .page-loader-center {
    opacity: 0;
}
.page-loader.loader-hidden .page-loader-bg {
    opacity: 0;
}
.page-loader.loader-hidden .page-loader-panel-left {
    transform: translateX(-100%);
}
.page-loader.loader-hidden .page-loader-panel-right {
    transform: translateX(100%);
}
.page-loader-bg {
    position: absolute;
    inset: 0;
    background: #0d2137;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
/* Two panels that slide left/right to reveal the page when loader ends */
.page-loader-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: #0d2137;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}
.page-loader-panel-left {
    left: 0;
}
.page-loader-panel-right {
    right: 0;
}
.page-loader-center {
    position: relative;
    z-index: 2;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease;
}
.page-loader-logo-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.page-loader-logo {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.75;
    filter: brightness(1.1) contrast(0.9);
}
.page-loader-logo-text-fallback-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.page-loader-logo-text-fallback-wrap .page-loader-logo-text:first-child {
    position: relative;
    z-index: 1;
}
.page-loader-logo-text-fallback-wrap .page-loader-logo-text-fill {
    position: absolute;
    inset: 0;
    z-index: 2;
}
/* Fill layer: masked by logo so white fills only inside the logo shape */
.page-loader-logo-fill-mask {
    position: absolute;
    inset: 0;
    z-index: 2;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    pointer-events: none;
}
.page-loader-logo-fill-mask .page-loader-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #fff;
    animation: loader-fill 1.2s ease-out forwards;
}
@keyframes loader-fill {
    to { height: 100%; }
}
/* Text fallback (Berel Aero): fill inside the text shape via clip-path */
.page-loader-logo-text {
    position: relative;
    z-index: 1;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(148, 168, 190, 0.9);
}
.page-loader-logo-text-fill {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    clip-path: inset(100% 0 0 0);
    animation: loader-text-fill 1.2s ease-out forwards;
}
@keyframes loader-text-fill {
    to { clip-path: inset(0 0 0 0); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
@-webkit-keyframes stuckMoveDown {
    from { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
    to { -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes stuckMoveDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 63px;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
}

.header.scrolled {
    position: fixed;
    top: 0;
    background: #000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transform: translateY(-100%);
}

.header.scrolled.scrolled-visible {
    -webkit-animation: stuckMoveDown .6s ease-out forwards;
    animation: stuckMoveDown .6s ease-out forwards;
}

.header-container,
.navbar {
    overflow: visible;
}

.header.scrolled .logo a,
.header.scrolled .nav-menu a {
    color: #fff;
}

.header.scrolled .nav-menu a:hover {
    opacity: 0.9;
    color: #fff;
}

.header.scrolled .hamburger-menu span {
    background: #fff;
}

/* Internal pages: dark header by default (reference background), sticky after scroll delay */
body.page-internal .header {
    background: #282A2E;
}
body.page-internal .header.scrolled {
    position: fixed;
    background: #282A2E;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transform: translateY(-100%);
}
body.page-internal .header.scrolled.scrolled-visible {
    -webkit-animation: stuckMoveDown .6s ease-out forwards;
    animation: stuckMoveDown .6s ease-out forwards;
}
body.page-internal .header .logo a,
body.page-internal .header .nav-menu a {
    color: #fff;
}
body.page-internal .header .hamburger-menu span {
    background: #fff;
}

.header-container {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    padding: 0 60px;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 63px;
    padding: 0;
}

.logo a {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin-left: auto;
    margin-right: 28px;
}

.nav-menu li {
    position: relative;
}

.nav-item-dropdown {
    overflow: visible;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.nav-link-with-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    transition: transform 0.3s;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #f5f5f5;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 10001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #f5f5f5;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    text-transform: none;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: #e0e0e0;
    opacity: 1;
}

.dropdown-menu-with-icons .dropdown-item-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
    object-fit: contain;
}

.dropdown-menu-with-icons a {
    display: flex;
    align-items: center;
}

/* Dropdown panel always dark text/icons on light background (even when header is scrolled/white nav) */
.header.scrolled .dropdown-menu,
.header.scrolled .dropdown-menu a,
.header.scrolled .dropdown-menu a:hover {
    color: #222;
}
.header.scrolled .dropdown-menu .dropdown-item-icon {
    filter: brightness(0);
}
.header.scrolled .dropdown-menu::before {
    border-bottom-color: #f5f5f5;
}

/* Internal pages: dropdown with white text to match dark header */
body.page-internal .dropdown-menu {
    background: #282A2E;
}
body.page-internal .dropdown-menu::before {
    border-bottom-color: #282A2E;
}
body.page-internal .dropdown-menu a,
body.page-internal .dropdown-menu a:hover {
    color: #fff;
}
body.page-internal .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}
body.page-internal .dropdown-menu .dropdown-item-icon {
    filter: brightness(0) invert(1);
}

/* Logo airplane animation – add class "logo-airplane" to the airplane element inside an SVG logo for continuous rotation */
.logo-airplane {
    animation: logo-plane-rotate 8s linear infinite;
    transform-origin: center;
}

@keyframes logo-plane-rotate {
    to { transform: rotate(360deg); }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-actions-sep {
    display: inline-block;
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.35);
    margin: 0 4px;
    flex-shrink: 0;
}

.header-cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8px 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
}
.header-cart-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.header-cart-icon {
    flex-shrink: 0;
}
.header-cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    color: #fff;
    background: #48b7e4;
    border-radius: 8px;
}

/* Cart drawer (slide-in from right) */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
body.cart-drawer-open .cart-drawer-overlay {
    opacity: 1;
    visibility: visible;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
body.cart-drawer-open {
    overflow: hidden;
}
body.cart-drawer-open .cart-drawer {
    transform: translateX(0);
}
.cart-drawer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}
.cart-drawer-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}
.cart-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.cart-drawer-close:hover {
    background: #f1f5f9;
    color: #0d2137;
}
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}
.cart-drawer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cart-drawer-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}
.cart-drawer-item:last-child {
    border-bottom: none;
}
.cart-drawer-item-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cart-drawer-item-part {
    font-weight: 600;
    color: #1e293b;
}
.cart-drawer-item-qty {
    font-size: 13px;
    color: #64748b;
}
.cart-drawer-item-price {
    font-weight: 600;
    color: #0d2137;
    white-space: nowrap;
}
.cart-drawer-total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #e5e7eb;
    font-size: 18px;
    color: #1e293b;
}
.cart-drawer-empty {
    margin: 0;
    color: #64748b;
    text-align: center;
    padding: 24px 0;
}
.cart-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 24px;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
}
.cart-drawer-btn {
    display: block;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.cart-drawer-btn-primary {
    background: #48b7e4;
    color: #fff;
}
.cart-drawer-btn-primary:hover {
    background: #3ba5d0;
    color: #fff;
}
.cart-drawer-btn-secondary {
    background: #f1f5f9;
    color: #0d2137;
}
.cart-drawer-btn-secondary:hover {
    background: #e2e8f0;
    color: #0d2137;
}

/* Checkout page */
.checkout-section {
    padding: 32px 0 48px;
    min-height: 60vh;
}
.checkout-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}
.checkout-page-title {
    margin: 0 0 24px 0;
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
}
.checkout-alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.checkout-alert-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}
.checkout-error-list {
    margin: 0 0 20px 0;
    padding: 12px 20px;
    background: #fef2f2;
    border-radius: 8px;
    color: #dc2626;
    list-style: none;
}
.checkout-form {
    display: block;
}
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}
@media (max-width: 900px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .checkout-sidebar {
        order: -1;
    }
}
.checkout-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.checkout-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.checkout-card-title {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}
.checkout-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.checkout-field-full {
    grid-column: 1 / -1;
}
@media (max-width: 500px) {
    .checkout-fields {
        grid-template-columns: 1fr;
    }
}
.checkout-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}
.checkout-required {
    color: #dc2626;
}
.checkout-input {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    line-height: 1.4;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.checkout-input:focus {
    outline: none;
    border-color: #48b7e4;
    box-shadow: 0 0 0 3px rgba(72, 183, 228, 0.2);
}
.checkout-input::placeholder {
    color: #9ca3af;
}
.checkout-payment {
    padding: 0;
}
.checkout-payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 0;
}
.checkout-payment-option input {
    width: 18px;
    height: 18px;
    accent-color: #48b7e4;
}
.checkout-payment-label {
    font-weight: 500;
    color: #1e293b;
}
.checkout-payment-note {
    margin: 0 0 30px 0;
    font-size: 14px;
    color: #64748b;
}
.checkout-bank-details { margin-top: 0; }
.checkout-bank-intro { margin: 0 0 16px; font-size: 14px; color: #475569; line-height: 1.5; }
.checkout-bank-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}
.checkout-bank-tab {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-family: inherit;
    margin-bottom: -1px;
}
.checkout-bank-tab:hover { color: #0d2137; }
.checkout-bank-tab.checkout-bank-tab-active {
    color: #0d2137;
    border-bottom-color: #0d2137;
}
.checkout-bank-panel { margin-bottom: 16px; }
.checkout-bank-label { margin: 12px 0 4px; font-size: 12px; color: #64748b; font-weight: 600; }
.checkout-bank-value { margin: 0; font-size: 15px; color: #1e293b; font-family: ui-monospace, monospace; }
.checkout-bank-notes {
    margin-top: 20px;
    padding: 16px;
    background: #fef3c7;
    border-radius: 8px;
    border: 1px solid #fcd34d;
    font-size: 14px;
    color: #92400e;
}
.checkout-bank-notes ul { margin: 8px 0 0; padding-left: 20px; }
.checkout-bank-notes li { margin-bottom: 4px; }
.checkout-hint { display: block; margin-top: 4px; font-size: 12px; color: #64748b; }
.checkout-receipt-chosen { margin: 8px 0 0; font-size: 14px; color: #0d2137; font-weight: 500; }
.checkout-receipt-preview { margin-top: 12px; }
.checkout-receipt-preview-img { max-width: 100%; width: auto; max-height: 200px; border: 1px solid #e2e8f0; border-radius: 8px; display: block; }
.checkout-error { display: block; margin-top: 4px; font-size: 13px; color: #dc2626; }
.checkout-actions-mobile {
    display: none;
    gap: 12px;
    margin-top: 8px;
}
@media (max-width: 900px) {
    .checkout-actions-mobile {
        display: flex;
        flex-wrap: wrap;
    }
    .checkout-summary-actions {
        display: none;
    }
}
.checkout-sidebar {
    position: sticky;
    top: 24px;
}
.checkout-summary-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.checkout-summary-title {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}
.checkout-summary-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 280px;
    overflow-y: auto;
}
.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}
.checkout-summary-item:last-child {
    border-bottom: none;
}
.checkout-summary-item-main {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.checkout-summary-part {
    font-weight: 600;
    color: #1e293b;
}
.checkout-summary-qty {
    font-size: 13px;
    color: #64748b;
}
.checkout-summary-price {
    font-weight: 600;
    color: #0d2137;
    white-space: nowrap;
}
.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 14px;
    color: #475569;
}
.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #e5e7eb;
    font-size: 18px;
    color: #1e293b;
}
.checkout-summary-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.checkout-btn {
    display: block;
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-sizing: border-box;
}
.checkout-btn-primary {
    background: #48b7e4;
    color: #fff;
}
.checkout-btn-primary:hover {
    background: #3ba5d0;
    color: #fff;
}
.checkout-btn-secondary {
    background: #f1f5f9;
    color: #0d2137;
}
.checkout-btn-secondary:hover {
    background: #e2e8f0;
    color: #0d2137;
}

/* Thank you / Order confirmation page */
.thank-you-section {
    padding: 48px 0 80px;
    min-height: 60vh;
    background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 30%, #ffffff 100%);
}
.thank-you-container {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}
.thank-you-hero {
    text-align: center;
    padding: 40px 24px 36px;
    margin-bottom: 24px;
}
.thank-you-icon {
    color: #0d9488;
    margin-bottom: 20px;
}
.thank-you-title {
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 700;
    color: #0d2137;
    letter-spacing: -0.02em;
}
.thank-you-lead {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.thank-you-invoice {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 32px;
    background: #fff;
    border: 2px solid #0d2137;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(13, 33, 55, 0.08);
}
.thank-you-invoice-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    font-weight: 600;
}
.thank-you-invoice-number {
    font-size: 28px;
    font-weight: 800;
    color: #0d2137;
    letter-spacing: 0.02em;
}
.thank-you-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    padding: 32px 36px 40px;
    margin-bottom: 32px;
}
.thank-you-card-title {
    margin: 0 0 24px;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}
.thank-you-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    margin-bottom: 28px;
}
.thank-you-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.thank-you-meta-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 600;
}
.thank-you-meta-value {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}
.thank-you-meta-total .thank-you-meta-value {
    font-size: 20px;
    color: #0d2137;
}
.thank-you-status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}
.thank-you-status-pending { background: #fef3c7; color: #92400e; }
.thank-you-status-processing { background: #dbeafe; color: #1e40af; }
.thank-you-status-shipped { background: #d1fae5; color: #065f46; }
.thank-you-status-delivered { background: #d1fae5; color: #065f46; }
.thank-you-status-cancelled { background: #f1f5f9; color: #64748b; }
.thank-you-table-wrap {
    overflow-x: auto;
    margin-bottom: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}
.thank-you-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.thank-you-table th,
.thank-you-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}
.thank-you-table thead th {
    background: #f8fafc;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
}
.thank-you-col-qty,
.thank-you-col-price {
    text-align: right;
}
.thank-you-table tfoot td {
    border-bottom: none;
    padding-top: 16px;
    font-weight: 600;
    color: #1e293b;
}
.thank-you-total-row {
    background: #f8fafc;
}
.thank-you-grand-total {
    font-size: 18px;
    color: #0d2137;
}
.thank-you-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 600px) {
    .thank-you-details-grid {
        grid-template-columns: 1fr;
    }
}
.thank-you-detail-block {
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}
.thank-you-detail-title {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
}
.thank-you-detail-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
}
.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.thank-you-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.thank-you-btn-primary {
    background: #0d2137;
    color: #fff;
    border: 2px solid #0d2137;
}
.thank-you-btn-primary:hover {
    background: #1a365d;
    color: #fff;
    border-color: #1a365d;
}
.thank-you-btn-secondary {
    background: #fff;
    color: #0d2137;
    border: 2px solid #cbd5e1;
}
.thank-you-btn-secondary:hover {
    background: #f8fafc;
    border-color: #0d2137;
    color: #0d2137;
}

/* Cart page */
.cart-page {
    padding: 120px 0 56px;
    min-height: 60vh;
    background: #f8fafc;
}
.cart-page-container {
    width: 100%;
    max-width: 1338px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}
.cart-page-header {
    margin-bottom: 28px;
}
.cart-page-title {
    margin: 0 0 6px 0;
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.02em;
}
.cart-page-subtitle {
    margin: 0;
    font-size: 15px;
    color: #64748b;
}
.cart-page-alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
}
.cart-page-alert-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}
.cart-page-alert-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}
.cart-page-empty {
    background: #fff;
    border-radius: 16px;
    padding: 56px 32px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.cart-page-empty-icon {
    color: #cbd5e1;
    margin-bottom: 20px;
}
.cart-page-empty-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
}
.cart-page-empty-text {
    margin: 0 0 24px 0;
    font-size: 15px;
    color: #64748b;
}
.cart-page-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}
@media (max-width: 900px) {
    .cart-page-layout {
        grid-template-columns: 1fr;
    }
    .cart-page-sidebar {
        order: -1;
    }
}
.cart-page-main {
    min-width: 0;
}
.cart-page-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    overflow: hidden;
}
.cart-page-table-wrap {
    overflow-x: auto;
    min-width: 0;
}
.cart-page-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    font-size: 14px;
}
.cart-page-table th,
.cart-page-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}
.cart-page-table tbody tr:last-child td {
    border-bottom: none;
}
.cart-page-table tbody tr:hover td {
    background: #fafbfc;
}
.cart-page-table th {
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    background: #f8fafc;
}
.cart-page-table td {
    color: #334155;
    vertical-align: middle;
}
.cart-page-col-qty {
    width: 80px;
    text-align: center;
}
.cart-page-col-price {
    width: 120px;
    text-align: right;
    white-space: nowrap;
}
.cart-page-part-num {
    font-weight: 600;
    color: #1e293b;
}
.cart-page-desc {
    color: #64748b;
}
.cart-page-subtotal {
    font-weight: 600;
    color: #0d2137;
}
.cart-page-col-action {
    white-space: nowrap;
}
.cart-page-qty-form {
    margin: 0;
}
.cart-page-qty-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-page-qty-input {
    width: 70px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    text-align: center;
    -moz-appearance: textfield;
    appearance: textfield;
}
.cart-page-qty-input::-webkit-outer-spin-button,
.cart-page-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.cart-page-qty-input:focus {
    outline: none;
    border-color: #0d2137;
    box-shadow: 0 0 0 2px rgba(13, 33, 55, 0.12);
}
.cart-page-qty-btn {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #0d2137;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.cart-page-qty-btn:hover {
    background: #1a365d;
}
.cart-page-remove-form {
    margin: 0;
}
.cart-page-remove-btn {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.cart-page-remove-btn:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #b91c1c;
}
.cart-page-sidebar {
    position: sticky;
    top: 24px;
}
.cart-page-summary {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.cart-page-summary-title {
    margin: 0 0 20px 0;
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e7eb;
}
.cart-page-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #64748b;
}
.cart-page-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 2px solid #e5e7eb;
    font-size: 18px;
    color: #1e293b;
}
.cart-page-summary-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
}
.cart-page-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    box-sizing: border-box;
}
.cart-page-btn:active {
    transform: scale(0.98);
}
.cart-page-btn-primary {
    background: #0d2137;
    color: #fff;
    box-shadow: 0 2px 8px rgba(13, 33, 55, 0.25);
}
.cart-page-btn-primary:hover {
    background: #1a365d;
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 33, 55, 0.3);
}
.cart-page-btn-secondary {
    background: #fff;
    color: #334155;
    border: 2px solid #e2e8f0;
}
.cart-page-btn-secondary:hover {
    background: #f8fafc;
    color: #1e293b;
    border-color: #cbd5e1;
}

.btn-aog-hotline {
    padding: 8px 19px;
    background: #48b7e4;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-aog-hotline:hover {
    background: #3ba5d0;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .btn-aog-hotline {
        font-size: 10px;
        padding: 10px 14px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .btn-aog-hotline {
        font-size: 9px;
        padding: 8px 12px;
        letter-spacing: 0.3px;
    }
}

.btn-get-in-touch {
    padding: 12px 24px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-get-in-touch:hover {
    background: #0052a3;
    transform: translateY(-3px);
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px 8px;
    border-radius: 4px;
    transition: background 0.25s, opacity 0.25s, transform 0.2s;
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.12);
    opacity: 1;
}

.hamburger-menu:active {
    transform: scale(0.96);
}

.hamburger-menu span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.header.scrolled .hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Light-background pages: default header stays transparent/white text; when scrolled use same dark sticky as elsewhere */
body.page-certifications .header:not(.scrolled) {
    background: transparent;
}

body.page-certifications .header.scrolled {
    background: #000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

body.page-certifications .logo a,
body.page-certifications .nav-menu a {
    color: #fff;
}

body.page-certifications .nav-menu a:hover {
    color: #fff;
    opacity: 0.9;
}

body.page-certifications .hamburger-menu span {
    background: #fff;
}

/* Hamburger turns into X when fullscreen menu is open – same on desktop and mobile */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile only: hide nav links, show hamburger */
@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s;
        z-index: 999;
    }

    .nav-menu.mobile-open {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 20px;
    }

    .nav-menu a {
        color: #333;
        font-size: 18px;
        display: block;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Full Screen Menu Popup – full width, black background (reference) */
.fullscreen-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100%;
    background: #000;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.fullscreen-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100vw;
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.fullscreen-menu-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 12px;
    z-index: 100001;
    transition: opacity 0.3s;
}

.fullscreen-menu-close:hover {
    opacity: 0.8;
}

.fullscreen-menu-close svg {
    width: 28px;
    height: 28px;
    display: block;
}

.fullscreen-menu-nav {
    width: 100%;
    max-width: 600px;
}

.fullscreen-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.fullscreen-menu-list > li {
    margin-bottom: 30px;
}

.fullscreen-menu-list > li:last-child {
    margin-bottom: 0;
}

.fullscreen-menu-list a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    display: inline-block;
}

.fullscreen-menu-list a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .fullscreen-menu-list > li {
        margin-bottom: 18px;
    }
    .fullscreen-menu-list a {
        font-size: 16px;
    }
    .fullscreen-menu-dropdown-trigger {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: none;
        border: none;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        padding: 0;
        font-family: inherit;
        transition: opacity 0.3s;
    }
}

/* Products & services dropdown in mobile menu – opens above and below parent so parent doesn’t move */
.fullscreen-menu-item-dropdown {
    margin-bottom: 30px;
}

.fullscreen-menu-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    transition: opacity 0.3s;
}

.fullscreen-menu-dropdown-trigger:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .fullscreen-menu-dropdown-trigger {
        font-size: 16px;
    }
}

.fullscreen-menu-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.fullscreen-menu-item-dropdown.open .fullscreen-menu-arrow {
    transform: rotate(180deg);
}

.fullscreen-menu-sublist {
    list-style: none;
    padding: 0;
    margin: 14px 0 0 0;
    padding-left: 20px;
    display: none;
}

.fullscreen-menu-item-dropdown.open .fullscreen-menu-sublist {
    display: block;
}

.fullscreen-menu-sublist li {
    margin-bottom: 12px;
}

.fullscreen-menu-sublist li:last-child {
    margin-bottom: 0;
}

.fullscreen-menu-sublist a {
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.92);
}

.fullscreen-menu-sublist a:hover {
    color: #fff;
    opacity: 1;
}

/* ============================================
   HOME PAGE SPECIFIC STYLES
   ============================================ */

/* SECTION 1: HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    contain: layout style paint;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translate(-50%, -50%);
    will-change: transform;
    z-index: 0;
    background: #000;
}

/* Poster visible first to avoid blank flash on slow connections */
.hero-poster {
    z-index: 0;
}
.hero-youtube-wrapper {
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease-in;
}
.hero-youtube-wrapper.hero-youtube-loaded {
    opacity: 1;
}
.hero-youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}
.hero-subtext {
    font-size: 20px;
    line-height: 1.5;
    margin: 16px 0 0;
    color: rgba(255,255,255,0.95);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Hide video controls */
.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.hero-fallback-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-fallback-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 1200px;
    padding: 0 40px;
}

.hero-headline {
    font-size: 55px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
    color: #fff;
}

.hero-search-line {
    width: 100%;
    max-width: 1150px;
    height: 1px;
    background: #fff;
    margin: 28px auto 24px auto;
}

.hero-search-form {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
}

.hero-search-bar {
    display: flex;
    align-items: stretch;
    gap: 14px;
}

.hero-search-input {
    flex: 1;
    min-width: 560px;
    padding: 14px 20px;
    font-size: 15px;
    color: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 8px;
    outline: none;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-search-input::placeholder {
    color: #a0aec0;
}

.hero-search-btn {
    width: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2d3748;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-search-btn:hover {
    background: #1a202c;
}

.hero-search-btn svg {
    width: 20px;
    height: 20px;
}

.hero-search-error {
    color: #fbbf24;
    font-size: 14px;
    margin: 10px 0 0 0;
    text-align: center;
}

.hero-search-input[aria-invalid="true"] {
    border-color: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.25);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.hero-scroll-indicator:hover {
    opacity: 0.7;
}

.hero-scroll-indicator img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* SECTION 1.5: LOCAL WORLDWIDE SECTION */
.local-worldwide-section {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.local-worldwide-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    background: #002b49;
    padding: 60px 40px;
    box-sizing: border-box;
}

.local-worldwide-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.local-worldwide-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 17px;
    line-height: 1.2;
    color: #fff;
}

.local-worldwide-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #fff;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-check-stock {
    display: inline-block;
    padding: 18px 45px;
    background: #00a8ff;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-check-stock:hover {
    background: #0090e0;
    transform: translateY(-3px);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 28px;
    padding-top: 24px;
}

.breadcrumb a {
    color: #48b7e4;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    color: #999;
    pointer-events: none;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

/* Breadcrumb on dark hero (e.g. lessors detail) */
.breadcrumb-hero {
    margin-bottom: 16px;
    justify-content: center;
}

.breadcrumb-hero a,
.breadcrumb-hero .breadcrumb-sep,
.breadcrumb-hero .breadcrumb-current {
    color: rgba(255, 255, 255, 0.95);
}

.breadcrumb-hero a:hover {
    color: #fff;
}

/* SECTION 2: SERVICES TABS */
.services-tabs-section {
    padding: 60px 0 80px;
    background: #fff;
}

.services-tabs-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    position: relative;
}

.service-tab {
    flex: 1;
    min-width: 150px;
    padding: 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease, transform 0.25s ease;
    position: relative;
    border-right: 3px solid #3bb5ea;
    pointer-events: auto;
    z-index: 1;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.service-tab:last-child {
    border-right: none;
}

.service-tab:hover {
    background: transparent;
    transform: translateY(-4px);
}

/* Tab hover: same color as active */
.service-tab:hover .tab-label,
.service-tab:hover .tab-label-main,
.service-tab:hover .tab-label-sub {
    color: #4bb1d8;
    text-decoration: underline;
}

.service-tab:hover .tab-icon-img {
    filter: brightness(0) saturate(100%) invert(67%) sepia(48%) saturate(2000%) hue-rotate(170deg) brightness(95%) contrast(85%);
}

.service-tab[data-active="true"] .tab-label-main,
.service-tab[data-active="true"] .tab-label-sub {
    color: #4bb1d8;
    text-decoration: underline;
}

.service-tab[data-active="true"] .tab-icon-img {
    filter: brightness(0) saturate(100%) invert(67%) sepia(48%) saturate(2000%) hue-rotate(170deg) brightness(95%) contrast(85%);
}

.tab-icon {
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-icon-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    transition: filter 0.3s;
}

.tab-label {
    font-size: 17px;
    font-weight: 500;
    font-family: 'dinpro-medium', sans-serif;
    color: #666;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.service-tab[data-active="true"] .tab-label {
    color: #4bb1d8;
    text-decoration: underline;
}

.tab-arrow {
    display: none;
    margin-left: auto;
    color: #666;
    transition: transform 0.3s, color 0.3s;
    pointer-events: none;
}

.tab-icon,
.tab-label {
    pointer-events: none;
}

.tab-accordion-content {
    display: none;
    width: 100%;
    padding: 20px 0;
    background: #fff;
}

.accordion-content-inner {
    padding: 0 20px;
}

.accordion-image {
    margin-top: 20px;
}

.accordion-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-content-left {
    padding-right: 40px;
}

.heading-with-line {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
}

.content-line {
    width: 4px;
    min-height: 38px;
    background: #48b7e4;
    flex-shrink: 0;
    align-self: flex-start;
}

.content-title {
    font-family: 'dinpro-medium', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 38px;
    color: rgb(85, 85, 85);
    font-style: normal;
    margin: 0;
}

.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.btn-learn-more {
    display: inline-block;
    padding: 14px 35px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-learn-more:hover {
    background: #0052a3;
    transform: translateY(-3px);
}

.services-content-right img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* SECTION 3: HERITAGE SECTION */
.heritage-section {
    padding: 80px 0 60px;
    background: #fff;
}

.heritage-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.heritage-image img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    border-radius: 4px;
}

.heritage-text h2 {
    font-family: 'dinpro-medium', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 38px;
    color: rgb(85, 85, 85);
    font-style: normal;
    margin-bottom: 30px;
}

.heritage-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* SECTION 4: Berel Aero DNA SECTION */
.dna-section {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.dna-white-top {
    height: 150px;
    background: #fff;
    width: 100%;
}

.dna-content-wrapper {
    background: #406077;
    padding: 80px 0 100px;
    position: relative;
}

.dna-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.dna-text {
    padding-left: 40px;
    color: #fff;
}

.dna-text .heading-with-line {
    margin-bottom: 10px;
}

.dna-text .content-line {
    min-height: 48px;
}

.dna-title {
    font-size: 48px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
    color: #fff;
}

.dna-description {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    opacity: 0.95;
}

.dna-image {
    position: relative;
    margin-top: -150px;
    z-index: 3;
}

.dna-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* SECTION 4.5: Berel Aero atrium shape */
.tda-atrium-section {
    min-height: 488px;
    background-image: url('../img/tda-atrium-shape.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

/* SECTION 5: LOCATIONS SLIDER */
.locations-section {
    padding: 100px 0;
    background: #fff;
}

.locations-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.locations-slider-wrapper {
    position: relative;
}

.locations-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
}

.locations-slider:hover .slider-arrow {
    opacity: 1;
    visibility: visible;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #002b49;
    color: #fff;
    border-color: #002b49;
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #0066cc;
}

.locations-text {
    padding-left: 40px;
}

.locations-text .heading-with-line {
    margin-bottom: 25px;
}

.locations-text h2 {
    font-family: 'dinpro-medium', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 38px;
    color: rgb(85, 85, 85);
    font-style: normal;
    margin: 0;
}

.locations-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* SECTION 6: TRUSTED QUALITY */
.trusted-quality-section {
    background-image: url(../img/wing-shape-blue.png);
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: 50% 50%;
    padding: 50px 0px 75px 0;
    position: relative;
    min-height: auto;
}

.trusted-quality-inner {
    position: relative;
    z-index: 1;
}

.trusted-quality-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.certificates-image {
    text-align: center;
    width: 700px;
    margin: 0 auto;
}

.certificates-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.trusted-quality-text {
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
    padding: 0px 0px 0px 34px;
}

.trusted-quality-text h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.8;
    color: #fff;
    padding-top: 26px;
}

.trusted-quality-text p {
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    opacity: 0.95;
}

/* SECTION 7: FULL WIDTH IMAGE */
.full-width-image-section {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.full-width-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTION 7.5: WELCOME TO OUR FAMILY */
.welcome-family-section {
    position: relative;
    background: #fff;
    padding: 0;
}

.welcome-family-content {
    padding: 80px 0;
    background: #fff;
}

.welcome-family-text {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
}

.welcome-family-text .heading-with-line {
    margin-bottom: 30px;
}

.welcome-family-title {
    font-family: 'dinpro-medium', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 38px;
    color: rgb(85, 85, 85);
    font-style: normal;
    margin: 0;
}

.welcome-family-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.btn-career-opportunities {
    display: inline-block;
    padding: 16px 40px;
    background: #004d99;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-career-opportunities:hover {
    background: #003d7a;
    transform: translateY(-3px);
}

.welcome-family-divider {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 0;
}

/* SECTION 8: STAY TUNED */
.stay-tuned-section {
    position: relative;
    padding: 100px 0;
    background: #e8e8e8;
}

.stay-tuned-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stay-tuned-text {
    padding-left: 40px;
}

.stay-tuned-text .heading-with-line {
    margin-bottom: 25px;
}

.stay-tuned-title {
    font-family: 'dinpro-medium', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 38px;
    color: rgb(85, 85, 85);
    font-style: normal;
    margin: 0;
}

.stay-tuned-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.stay-tuned-divider {
    width: 100%;
    height: 1px;
    background: #0066cc;
    margin-bottom: 30px;
}

.stay-tuned-linkedin {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-linkedin-follow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #0077b5;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    width: fit-content;
}

.btn-linkedin-follow svg {
    width: 20px;
    height: 20px;
}

.btn-linkedin-follow:hover {
    background: #005885;
}

.linkedin-followers {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.linkedin-cta-text {
    font-size: 16px;
    color: #0066cc;
    margin: 0;
    font-weight: 500;
}

.stay-tuned-devices {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.linkedin-devices-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    object-fit: contain;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e8e8e8;
    border: 1px solid #ccc;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #d0d0d0;
    color: #333;
    transform: translateY(-3px);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary {
    background: #0066cc;
    color: #fff;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-3px);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content-text p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}

.content-image img {
    width: 100%;
    border-radius: 8px;
}

/* Quality Section */
.quality-section {
    padding: 80px 0;
    background: #f0f0f0;
}

.quality-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.quality-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.quality-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.quality-card p {
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #0066cc;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-header p {
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'dinpro-medium', sans-serif;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

textarea.form-control {
    resize: vertical;
    font-family: 'dinpro-medium', sans-serif;
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

/* Footer */
.footer {
    background: #222;
    color: #fff;
    padding: 60px 0 20px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.footer-search-only {
    background: #000;
    padding: 16px 0;
}
.footer-search-only .container {
    text-align: center;
}
.footer-search-copyright {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 500;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ccc;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #fff;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.footer-logo {
    margin-top: 20px;
}

.footer-logo-image {
    max-width: 200px;
}
.footer-logo-image-white {
    filter: brightness(0) invert(1);
    height: auto;
    margin-bottom: 10px;
    display: block;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}

.footer-tagline {
    font-size: 14px;
    color: #ccc;
    margin: 10px 0 5px 0;
}

.footer-copyright {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

/* Page Header & Content */
.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.page-content {
    padding: 60px 0;
    min-height: 400px;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Careers page */
/* Careers breadcrumb / hero – page title only */
.careers-hero .service-hero-content {
    padding: 60px 24px 80px;
}

.careers-section {
    padding: 64px 0;
}

.careers-section-light {
    background: #fff;
}

.careers-section-grey {
    background: #f5f5f5;
}

.careers-section-title {
    font-size: 26px;
    font-weight: 700;
    color: #2d3a42;
    margin: 0 0 20px 0;
}

.careers-positions-heading {
    font-size: 28px;
    font-weight: 700;
    color: #2d3a42;
    margin: 0 0 32px 0;
}

.careers-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.career-job-card {
    background: #fff;
    padding: 0;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.career-job-card:hover {
    border-color: #48b7e4;
    box-shadow: 0 6px 20px rgba(72, 183, 228, 0.12);
}

.career-job-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3a42;
    margin: 0;
    padding: 20px 24px 12px;
    line-height: 1.3;
}

.career-job-card-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #f0f0f0;
    overflow: hidden;
}

.career-job-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.career-job-card-summary {
    padding: 0 24px;
}

.career-job-card-summary {
    font-size: 15px;
    line-height: 1.55;
    color: #555;
    margin: 0 0 18px 0;
    flex-grow: 1;
    padding-top: 16px;
}

.career-job-card-link {
    font-size: 14px;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
    margin-top: auto;
    padding: 0 24px 20px;
}

.career-job-card-link:hover {
    text-decoration: underline;
}

/* ========== News & Articles (frontend) ========== */
/* Featured News – after hero, 1 left + 2 right */
.news-featured-section {
    padding: 70px 0 60px;
}
.news-featured-heading {
    margin: 0 0 24px;
    font-size: 28px;
    font-weight: 700;
    color: #2d3a42;
}
.news-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    min-height: 420px;
}
.news-featured-grid .news-featured-card-main {
    grid-column: 1;
    grid-row: 1 / -1;
}
.news-featured-grid .news-featured-card-sub:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}
.news-featured-grid .news-featured-card-sub:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}
.news-featured-card {
    position: relative;
    display: block;
    min-height: 200px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}
.news-featured-card-main {
    min-height: 100%;
}
.news-featured-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}
.news-featured-card:hover .news-featured-bg {
    transform: scale(1.08);
}
.news-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}
.news-featured-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    min-height: 100%;
}
.news-featured-card-main .news-featured-content {
    padding: 32px;
}
.news-featured-date {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 8px;
}
.news-featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
    color: #fff;
}
.news-featured-card-main .news-featured-title {
    font-size: 1.85rem;
}
.news-featured-excerpt {
    font-size: 0.95rem;
    margin: 0 0 14px;
    opacity: 0.95;
    line-height: 1.45;
    max-width: 100%;
}
.news-featured-btn {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    align-self: flex-start;
    transition: background 0.2s, border-color 0.2s;
}
.news-featured-card:hover .news-featured-btn {
    background: rgba(255,255,255,0.35);
    border-color: #fff;
}
@media (max-width: 768px) {
    .news-featured-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 0;
    }
    .news-featured-grid .news-featured-card-main,
    .news-featured-grid .news-featured-card-sub:nth-child(2),
    .news-featured-grid .news-featured-card-sub:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
    }
    .news-featured-card {
        min-height: 280px;
    }
    .news-featured-card-main .news-featured-title {
        font-size: 1.5rem;
    }
}
/* News intro – vertical accent, theme colors */
.news-intro-block {
    padding: 60px 0;
}
.news-intro-inner {
    width: 100%;
}
.news-intro-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #2d3a42;
    line-height: 1.25;
}
.news-intro-accent {
    display: block;
    width: 6px;
    height: 36px;
    min-height: 36px;
    background: #48b7e4;
    flex-shrink: 0;
}
.news-intro-text {
    margin: 16px 0 0 0;
    font-size: 16px;
    line-height: 1.65;
    color: #555;
}
@media (max-width: 576px) {
    .news-intro-block {
        padding: 40px 0;
    }
    .news-intro-heading {
        font-size: 22px;
    }
    .news-intro-accent {
        height: 28px;
        min-height: 28px;
    }
}

/* News filter / category bar */
.news-filter-bar {
    padding: 0 0 32px;
    border-bottom: 1px solid #e8e8e8;
}
.news-filter-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 8px;
    scrollbar-width: none;
}
.news-filter-nav::-webkit-scrollbar {
    display: none;
}
.news-filter-tab {
    display: inline-block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    background: #f5f6f8;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.news-filter-tab:hover {
    color: #2d3a42;
    background: #e8eaee;
}
.news-filter-tab.active {
    color: #fff;
    background: #0d2137;
    border-color: #0d2137;
}
.news-filter-tab.active:hover {
    color: #fff;
    background: #1a365d;
    border-color: #1a365d;
}
@media (max-width: 768px) {
    .news-filter-nav {
        flex-wrap: nowrap;
        gap: 10px;
        padding-bottom: 12px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .news-filter-tab {
        padding: 10px 16px;
        font-size: 13px;
        flex-shrink: 0;
    }
}

.news-section {
    padding: 60px 0 80px;
}
.news-empty {
    text-align: center;
    padding: 48px 24px;
}
.news-empty p {
    margin: 0 0 20px 0;
    color: #555;
    font-size: 16px;
}
.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.news-article-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
}
.news-article-card:hover {
    border-color: #48b7e4;
    box-shadow: 0 6px 20px rgba(72, 183, 228, 0.12);
}
.news-article-card-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #f0f0f0;
    overflow: hidden;
}
.news-article-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-article-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
}
.news-article-card-body {
    padding: 20px 24px 24px;
}
.news-article-card-date {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}
.news-article-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3a42;
    margin: 0 0 10px 0;
    line-height: 1.35;
}
.news-article-card-excerpt {
    font-size: 15px;
    line-height: 1.55;
    color: #555;
    margin: 0 0 14px 0;
}
.news-article-card-btn {
    display: inline-block;
    margin-top: 4px;
    padding: 12px 24px;
    background: #0d2137;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}
.news-article-card-btn:hover {
    background: #1a365d;
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 992px) {
    .news-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .news-cards-grid {
        grid-template-columns: 1fr;
    }
    .news-section {
        padding: 40px 0 60px;
    }
}

/* ========== Events page ========== */
.events-hero-content {
    max-width: 720px;
    margin: 0 auto;
}
.events-hero-subtitle {
    margin: 16px 0 0 0;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255,255,255,0.95);
}
@media (max-width: 768px) {
    .events-hero-subtitle {
        font-size: 15px;
    }
}

/* Events filter bar – same style as News */
.events-filter-bar {
    padding: 60px 0 32px;
    border-bottom: 1px solid #e8e8e8;
}
.events-filter-heading {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 700;
    color: #2d3a42;
}
.events-filter-desc {
    margin: 0 0 24px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    width: 100%;
}
.events-filter-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 8px;
    scrollbar-width: none;
}
.events-filter-nav::-webkit-scrollbar {
    display: none;
}
.events-filter-tab {
    display: inline-block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    background: #f5f6f8;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.events-filter-tab:hover {
    color: #2d3a42;
    background: #e8eaee;
}
.events-filter-tab.active {
    color: #fff;
    background: #0d2137;
    border-color: #0d2137;
}
.events-filter-tab.active:hover {
    color: #fff;
    background: #1a365d;
    border-color: #1a365d;
}
@media (max-width: 768px) {
    .events-filter-nav {
        flex-wrap: nowrap;
        gap: 10px;
        padding-bottom: 12px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .events-filter-tab {
        padding: 10px 16px;
        font-size: 13px;
        flex-shrink: 0;
    }
}

/* Events list – same structure as News */
.events-section {
    padding: 60px 0 80px;
}
.events-empty {
    text-align: center;
    padding: 48px 24px;
}
.events-empty p {
    margin: 0 0 20px 0;
    color: #555;
    font-size: 16px;
}
/* 2 events per row */
.events-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
@media (max-width: 768px) {
    .events-cards-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .events-section {
        padding: 40px 0 60px;
    }
}

/* Event card – image LEFT, info RIGHT */
.events-article-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
}
.events-article-card:hover {
    border-color: #48b7e4;
    box-shadow: 0 6px 20px rgba(72, 183, 228, 0.12);
}
.events-article-card-inner {
    display: flex;
    flex-direction: row;
    min-height: 200px;
}
.events-article-card-image-wrap {
    position: relative;
    flex: 0 0 42%;
    min-width: 0;
    background: #f0f0f0;
    overflow: hidden;
}
.events-article-card-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.events-article-card:hover .events-article-card-image {
    transform: scale(1.04);
}
.events-article-card-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
}
.events-article-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
}
.events-article-card-badge-upcoming {
    background: #0d2137;
}
.events-article-card-badge-past {
    background: #475569;
}
.events-article-card-body {
    flex: 1;
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.events-article-card-date {
    display: block;
    font-size: 13px;
    color: #48b7e4;
    font-weight: 600;
    margin-bottom: 8px;
}
.events-article-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3a42;
    margin: 0 0 8px 0;
    line-height: 1.35;
}
.events-article-card-location {
    font-size: 14px;
    color: #666;
    margin: 0 0 10px 0;
    display: none;
}
.events-article-card-excerpt {
    font-size: 15px;
    line-height: 1.55;
    color: #555;
    margin: 0 0 14px 0;
    flex: 1;
}
.events-article-card-btn {
    display: inline-block;
    margin-top: auto;
    padding: 5px 20px;
    background: #0d2137;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.25s;
    align-self: flex-start;
}
.events-article-card-btn:hover {
    background: #1a365d;
    color: #fff;
}
@media (max-width: 768px) {
    .events-article-card-inner {
        flex-direction: column;
        min-height: 0;
    }
    .events-article-card-image-wrap {
        flex: none;
        width: 100%;
        aspect-ratio: 16 / 10;
    }
    .events-article-card-image,
    .events-article-card-placeholder {
        min-height: 0;
        height: 100%;
    }
}

.events-section-heading {
    margin: 0 0 28px;
    font-size: 28px;
    font-weight: 700;
    color: #2d3a42;
}

/* Event detail page */
/* ========== Event single (detail) page ========== */
.events-detail-page {
    padding-bottom: 0;
}

/* Hero: full-width background image + overlay + content */
.events-detail-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.events-detail-hero-bg {
    position: absolute;
    inset: 0;
}
.events-detail-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.events-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 33, 55, 0.92) 0%, rgba(13, 33, 55, 0.5) 45%, rgba(13, 33, 55, 0.2) 100%);
}
.events-detail-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 48px 0 56px;
}
.events-detail-hero-content .container {
    max-width: 840px;
}
.events-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}
.events-detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}
.events-detail-breadcrumb a:hover {
    color: #fff;
}
.events-detail-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.6);
}
.events-detail-breadcrumb-current {
    color: #fff;
    font-weight: 600;
}
.events-detail-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.events-detail-badge-upcoming { background: #0d2137; }
.events-detail-badge-past { background: #475569; }
.events-detail-hero-date {
    display: block;
    font-size: 15px;
    color: #48b7e4;
    font-weight: 600;
    margin-bottom: 10px;
}
.events-detail-hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.events-detail-hero-location {
    margin: 0;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
}
@media (max-width: 768px) {
    .events-detail-hero {
        min-height: 360px;
    }
    .events-detail-hero-title {
        font-size: 26px;
    }
    .events-detail-hero-location {
        font-size: 15px;
    }
}

/* Main: sidebar + content */
.events-detail-main {
    padding: 56px 0 80px;
    background: #f8f9fb;
}
.events-detail-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: stretch;
}
.events-detail-sidebar {
    position: sticky;
    top: 24px;
    display: flex;
}
.events-detail-info-card {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
}
.events-detail-info-heading {
    font-size: 16px;
    font-weight: 700;
    color: #2d3a42;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #48b7e4;
}
.events-detail-info-list {
    margin: 0;
}
.events-detail-info-list dt {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 16px;
    margin-bottom: 4px;
}
.events-detail-info-list dt:first-child {
    margin-top: 0;
}
.events-detail-info-list dd {
    margin: 0;
    font-size: 15px;
    color: #2d3a42;
    font-weight: 500;
}
.events-detail-badge-inline {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
}
.events-detail-badge-inline.events-detail-badge-upcoming { background: #0d2137; }
.events-detail-badge-inline.events-detail-badge-past { background: #475569; }

.events-detail-feature-col {
    min-width: 0;
    min-height: 280px;
    display: flex;
}
.events-detail-feature {
    flex: 1;
    min-height: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #e8e8e8;
}
.events-detail-feature-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.events-detail-description {
    padding: 0 0 30px;
    background: #f8f9fb;
}
.events-detail-description-inner {
    background: #fff;
    border-radius: 10px;
    padding: 36px 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
}
.events-detail-lead {
    font-size: 18px;
    line-height: 1.65;
    color: #2d3a42;
    margin: 0 0 24px 0;
}
.events-detail-full {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin: 0;
}
.events-detail-full p {
    margin: 0 0 1em 0;
}
.events-detail-full p:last-child {
    margin-bottom: 0;
}
.events-detail-back {
    margin: 28px 0 48px 0;
}
.events-detail-back-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #0d2137;
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.2s;
}
.events-detail-back-link:hover {
    color: #48b7e4;
}

/* Two-column image section below description */
.events-detail-gallery {
    padding: 40px 0 80px;
    background: #f8f9fb;
}
.events-detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.events-detail-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    background: #e8e8e8;
}
.events-detail-gallery-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
@media (max-width: 768px) {
    .events-detail-gallery {
        padding: 32px 0 64px;
    }
    .events-detail-gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 992px) {
    .events-detail-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .events-detail-sidebar {
        position: static;
    }
}
@media (max-width: 576px) {
    .events-detail-main {
        padding: 40px 0 60px;
    }
    .events-detail-description-inner {
        padding: 24px 20px;
    }
    .events-detail-lead {
        font-size: 16px;
    }
}

/* Event Highlights gallery */
.events-highlights-section {
    padding: 60px 0 80px;
    background: #f8f9fb;
}
.events-highlights-section .events-section-heading {
    margin-bottom: 32px;
}
.events-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 992px) {
    .events-highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 576px) {
    .events-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
.events-highlight-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #e8e8e8;
}
.events-highlight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.events-highlight-item:hover img {
    transform: scale(1.05);
}

/* Events CTA */
.events-cta-section {
    padding: 70px 0 80px;
    background: #0d2137;
    color: #fff;
}
.events-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.events-cta-heading {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}
.events-cta-text {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}
.events-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
    color: #0d2137;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.events-cta-btn:hover {
    background: #48b7e4;
    color: #fff;
}

/* Admin events filter bar */
.admin-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 20px;
}
.admin-filter-tab {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    border-radius: 6px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    transition: color 0.2s, background 0.2s;
}
.admin-filter-tab:hover {
    color: #0d2137;
    background: #e2e8f0;
}
.admin-filter-tab.active {
    color: #fff;
    background: #0d2137;
    border-color: #0d2137;
}

/* News detail page */
.news-detail-page {
    padding-bottom: 60px;
}
.news-detail-article {
    max-width: 800px;
    margin: 0 auto;
}
.news-detail-header {
    padding: 100px 0 24px;
}
.news-detail-date {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}
.news-detail-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}
.news-detail-title-link {
    color: #2d3a42;
    text-decoration: none;
}
.news-detail-title-link:hover {
    color: #0d2137;
    text-decoration: underline;
}
.news-detail-image-wrap {
    margin-bottom: 32px;
    border-radius: 8px;
    overflow: hidden;
}
.news-detail-image-link {
    display: block;
    cursor: pointer;
}
.news-detail-image-link:hover .news-detail-image {
    opacity: 0.95;
}
.news-detail-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.2s;
}
.news-detail-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}
.news-detail-content h2 {
    font-size: 22px;
    margin: 1.5em 0 0.5em 0;
}
.news-detail-content h3 {
    font-size: 18px;
    margin: 1.25em 0 0.5em 0;
}
.news-detail-content p {
    margin: 0 0 1em 0;
}
.news-detail-content ul,
.news-detail-content ol {
    margin: 0 0 1em 0;
    padding-left: 1.5em;
}
.news-detail-back {
    margin: 2em 0 0 0;
}
.news-detail-back-link {
    font-size: 15px;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
}
.news-detail-back-link:hover {
    text-decoration: underline;
}

/* Careers CTA – TDA-style dark section */
.careers-cta-section {
    position: relative;
    padding: 72px 0;
    overflow: hidden;
}

.careers-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2a3a 0%, #2d3a42 100%);
    z-index: 0;
}

.careers-cta-section .container {
    position: relative;
    z-index: 2;
}

.careers-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.careers-cta-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px 0;
    letter-spacing: 0.02em;
}

.careers-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 28px 0;
    line-height: 1.5;
}

.careers-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #48b7e4;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.25s, transform 0.2s;
}

.careers-cta-btn:hover {
    background: #3aa5d4;
    color: #fff;
    transform: translateY(-2px);
}

/* Career role (job detail) page */
.careers-role-content {
    padding: 48px 0 64px;
}

.careers-role-intro {
    font-size: 17px;
    line-height: 1.65;
    color: #444;
    margin: 0 0 32px 0;
}

.careers-role-h2 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3a42;
    margin: 28px 0 14px 0;
}

.careers-role-h2:first-of-type {
    margin-top: 0;
}

.careers-role-list {
    margin: 0 0 8px 0;
    padding-left: 22px;
}

.careers-role-list li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.55;
    color: #444;
}

.careers-role-apply-text {
    font-size: 16px;
    color: #444;
    margin: 20px 0 6px 0;
}

.careers-role-email {
    margin: 0 0 24px 0;
    font-size: 17px;
}

.careers-role-email a {
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
}

.careers-role-email a:hover {
    text-decoration: underline;
}

.careers-role-cta {
    margin-top: 32px;
}

.btn-careers-apply {
    display: inline-block;
    padding: 14px 28px;
    background: #2d3a42;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    margin-right: 12px;
    margin-bottom: 10px;
    transition: background 0.25s;
}

.btn-careers-apply:hover {
    background: #1a2329;
    color: #fff;
}

.btn-careers-back {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: #2d3a42;
    border: 2px solid #2d3a42;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: background 0.25s, color 0.25s;
}

.btn-careers-back:hover {
    background: #2d3a42;
    color: #fff;
}

.careers-back-link {
    display: inline-block;
    margin-bottom: 16px;
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
}
.careers-back-link:hover {
    text-decoration: underline;
}
.container-narrow {
    max-width: 720px;
}
.career-role-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin: 24px 0;
}
.career-role-cta {
    margin-top: 32px;
}
.career-role-cta .btn-primary,
.career-role-cta .btn-secondary {
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 8px;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}
.career-role-cta .btn-primary {
    background: #0066cc;
    color: #fff;
}
.career-role-cta .btn-primary:hover {
    background: #0052a3;
    transform: translateY(-3px);
}
.career-role-cta .btn-secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}
.career-role-cta .btn-secondary:hover {
    background: #0066cc;
    color: #fff;
    transform: translateY(-3px);
}

.logo-strip-section {
    padding: 40px 0;
    background: #f8f8f8;
    border-top: 1px solid #eee;
}
.logo-strip-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 48px;
}
.logo-strip-img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}

/* ============================================
   SERVICE PAGE STYLES (Component Support, etc.)
   ============================================ */

.service-page {
    padding-top: 0;
}

/* Service Hero */
.service-hero {
    position: relative;
    min-height: 280.5px;
    /* height: 43vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-hero-image img,
.service-hero-img-plain {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image with Berel Aero logo overlay (for images that don't have logo baked in) */
.img-with-tda-logo {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.img-with-tda-logo img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.img-with-tda-logo-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 100px;
    max-width: 28%;
    z-index: 2;
    opacity: 0.92;
}
.img-with-tda-logo-badge img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}
.service-hero-image .img-with-tda-logo-badge {
    bottom: 20px;
    right: 20px;
    width: 110px;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.service-hero-title {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    margin-top: 31px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-transform: capitalize;
}

/* Services Overview Bar - matches home page design (icon + heading only, links to pages) */
.services-overview-bar {
    background: #fff;
    padding: 60px 0 0;
}

.services-overview-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    width: 800px;
    margin: 0 auto;
}

.service-overview-item {
    flex: 1;
    min-width: 150px;
    padding: 0;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    border-right: 3px solid #3bb5ea;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-overview-item:last-child {
    border-right: none;
}

.service-overview-item:hover {
    background: transparent;
    transform: translateY(-4px);
}

.service-overview-item .tab-icon {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-overview-item .tab-icon-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    transition: filter 0.3s;
}

.service-overview-item .tab-label {
    font-size: 17px;
    font-weight: 500;
    font-family: 'dinpro-medium', sans-serif;
    color: #666;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Active - light blue border highlight */
/*.service-overview-item.active {*/
/*    box-shadow: inset 0 0 0 2px #48b7e4;*/
/*}*/

/* Active & hover - light blue */
.service-overview-item.active .tab-label,
.service-overview-item:hover .tab-label {
    color: #4bb1d8;
    text-decoration: underline;
}

/* Default inactive - gray icon; active/hover - light blue */
.service-overview-item .tab-icon-img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(5%) saturate(500%);
}

.service-overview-item.active .tab-icon-img,
.service-overview-item:hover .tab-icon-img {
    filter: brightness(0) saturate(100%) invert(67%) sepia(48%) saturate(2000%) hue-rotate(170deg) brightness(95%) contrast(85%);
}

/* Service Section Base */
.service-section {
    padding: 80px 0;
}

.service-section-light {
    background: #fff;
}

.service-section-dark {
    background: #2d3a42;
}

.service-section-growing-inventories {
    padding-top: 65px;
    padding-bottom: 65px;
    background-color: rgba(0, 43, 73, 0.5);
}

.service-section-high-demand {
    padding-top: 0;
    padding-bottom: 65px;
    background-color: rgb(64, 96, 117);
    overflow: visible;
}

.service-section-high-demand-content {
    padding-top: 50px;
}

.service-section-high-demand .container.service-section-high-demand-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 60px;
    overflow: visible;
}

/* Image grid overlaps/breaks out of section to the left */
.service-section-high-demand-images {
    padding-left: 0;
}

.service-parts-grid-overlap {
    margin-left: -120px;
    margin-right: 40px;
}

.service-parts-grid-overlap img {
    width: 100%;
    height: auto;
    display: block;
}

.service-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-section-reverse {
    direction: rtl;
}

.service-section-reverse .service-section-content,
.service-section-reverse .service-section-image {
    direction: ltr;
}

.service-section-content {
    position: relative;
    padding-left: 24px;
}

.service-section-content .content-line-accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    min-height: 48px;
    background: #48b7e4;
}

.service-section-content .content-line-light {
    background: #48b7e4;
}

.content-line-accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    min-height: 48px;
    background: #48b7e4;
}

.service-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #555;
    margin: 0 0 24px 0;
    line-height: 1.3;
    padding-left: 20px;
}

.service-section-title-light {
    color: #fff;
}

.service-section-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #0066cc;
    margin: 8px 0 16px;
}

.service-section-subtitle-light {
    color: rgba(255,255,255,0.95);
    margin: 8px 0 16px;
}

.service-benefits-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.service-benefits-list li {
    margin-bottom: 16px;
    padding-left: 20px;
    position: relative;
}

.service-benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #0066cc;
}

.service-benefits-list-light li::before {
    color: #6eb5e8;
}

.service-section-dark .service-benefits-list li,
.service-section-dark .service-benefits-list li strong {
    color: #fff;
}
.service-section-dark .service-benefits-list li {
    opacity: 0.98;
}

/* Benefits list on light background (single service page) */
.service-benefits-list-light-bg {
    margin-top: 12px;
    margin-bottom: 24px;
}
.service-benefits-list-light-bg li,
.service-benefits-list-light-bg li strong {
    color: #444;
}

.service-page-content-section .service-section-subtitle {
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-page-content-section .services-content-wrapper {
    align-items: flex-start;
}

.service-page-content-section .container,
.service-page-content-section .services-content-wrapper,
.service-page-content-section .services-content-right {
    overflow: visible;
}

.service-content-image-sticky {
    position: sticky;
    top: 120px;
    width: 100%;
}
.service-content-image-sticky img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.service-section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-section-text-light {
    color: #fff;
    opacity: 0.95;
}

.service-section-image img {
    width: 100%;
    height: auto;
    display: block;
}

.message-from-ceo-video-wrap {
    display: block;
    position: relative;
}
.message-from-ceo-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    background: #000;
    object-fit: cover;
}
.message-from-ceo-video-fallback {
    align-items: center;
    justify-content:center;
    background: #f0f2f5;
    border-radius: 4px;
    padding: 24px;
    text-align: center;
}
.message-from-ceo-video-placeholder-text {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Read about CEO button */
.ceo-read-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #0d2137;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}
.ceo-read-more-btn:hover {
    background: #1a3658;
}
.ceo-read-more-btn:focus {
    outline: 2px solid #0d2137;
    outline-offset: 2px;
}

/* CEO bio popup – responsive, on top of header/footer and all overlays.
   Modal is moved to body by JS so it is not inside main’s stacking context. */
.ceo-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}
.ceo-modal-overlay[hidden] {
    display: none;
}
.ceo-modal {
    position: relative;
    width: 100%;
    max-width: 1250px;
    max-height: calc(100vh - 32px);
    margin: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.ceo-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f0f0f0;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    border-radius: 6px;
    padding: 0;
    z-index: 2;
}
.ceo-modal-close:hover {
    background: #e0e0e0;
    color: #000;
}
.ceo-modal-title {
    margin: 0;
    padding: 24px 56px 16px 24px;
    font-size: 22px;
    font-weight: 600;
    color: #2d3a42;
}
.ceo-modal-body {
    padding: 0 24px 24px;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
}
.ceo-modal-body p {
    margin: 0 0 1em 0;
    font-size: 15px;
    line-height: 1.65;
    color: #333;
}
.ceo-modal-body p:last-child {
    margin-bottom: 0;
}
@media (max-width: 480px) {
    .ceo-modal-overlay {
        padding: 12px;
    }
    .ceo-modal-title {
        padding: 20px 48px 12px 16px;
        font-size: 18px;
    }
    .ceo-modal-body {
        padding: 0 16px 20px;
    }
    .ceo-modal-body p {
        font-size: 14px;
    }
    .ceo-modal-close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

.service-section-image .img-with-tda-logo {
    height: auto;
}
.service-section-image .img-with-tda-logo-badge {
    width: 80px;
    bottom: 12px;
    right: 12px;
}

/* Portrait image: fixed height, vertically centered, face-friendly crop */
.service-section-image-portrait {
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-section-image-portrait img {
    width: 100%;
    max-width: 420px;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Service Parts Grid (4 images) */
.service-parts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-parts-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-parts-grid-single img {
    height: auto;
    min-height: 200px;
}

/* Cert badges */
.service-cert-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-left: 20px;
}

.cert-badge {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

/* Parts list */
.service-parts-list {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 20px 0;
}

.service-parts-list li {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    padding-left: 16px;
}

.service-parts-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #48b7e4;
}

/* Two-column parts list for High demand section */
.service-parts-list-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.service-link {
    color: #48b7e4;
    text-decoration: none;
    font-size: 16px;
    padding-left: 20px;
    display: inline-block;
    margin-top: 10px;
    transition: opacity 0.3s;
}

.service-link:hover {
    opacity: 0.8;
}

.service-section-content .service-link {
    padding-left: 20px;
}

.service-link-light {
    color: rgba(255, 255, 255, 0.95);
}

.service-link-light:hover {
    color: #fff;
}

/* Service CTA Button */
.btn-service-cta {
    display: inline-block;
    padding: 14px 35px;
    background: #48b7e4;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 20px;
    margin-top: 20px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-service-cta:hover {
    background: #3ba5d0;
    transform: translateY(-3px);
}

/* Aircraft diagram */
.service-aircraft-diagram img {
    width: 100%;
    height: auto;
    display: block;
}

/* Infographic */
.service-infographic {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.infographic-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px;
    background: #fff;
    color: #333;
    min-width: 120px;
}

.infographic-icon {
    color: #48b7e4;
}

.infographic-icon svg {
    width: 40px;
    height: 40px;
}

.infographic-connector {
    width: 40px;
    height: 4px;
    background: #48b7e4;
    flex-shrink: 0;
}

/* Footer CTA for service pages */
.btn-footer-cta {
    padding: 12px 24px;
    background: #48b7e4;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 15px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-footer-cta:hover {
    background: #3ba5d0;
    transform: translateY(-3px);
}

/* Asset Management - Aircraft Parts Marketing Section */
.service-section-aircraft-marketing {
    background-color: #2d3a42;
    padding: 65px 0;
}

.aircraft-marketing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.aircraft-marketing-column {
    display: flex;
    flex-direction: column;
}

.aircraft-marketing-image img {
    width: 100%;
    height: auto;
    display: block;
}

.aircraft-marketing-cta .btn-service-cta {
    margin-left: 20px;
}

/* Consignment Care Benefits */
.consignment-benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.consignment-benefits-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.consignment-benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #48b7e4;
}

.consignment-graphics {
    display: flex;
    align-items: center;
    justify-content: center;
}

.consignment-care-image {
    width: 100%;
    height: auto;
    display: block;
}

.consignment-concluding {
    margin-top: 24px !important;
}

/* 3PL - Services section */
.service-section-3pl-services {
    background-color: #8a9ba8;
}

.service-section-3pl-services .service-section-title {
    color: #2d3a42;
}

.service-section-3pl-services .service-section-text {
    color: #555;
}

.btn-3pl-cta {
    display: inline-block;
    padding: 14px 35px;
    background: #b8c4ce;
    color: #2d3a42;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 20px;
    margin-top: 10px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-3pl-cta:hover {
    background: #48b7e4;
    color: #fff;
    transform: translateY(-3px);
}

/* AOG Services - CTA buttons */
.aog-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.btn-aog-primary {
    display: inline-block;
    padding: 14px 35px;
    background: #48b7e4;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-aog-primary:hover {
    background: #3ba5d0;
    color: #fff;
    transform: translateY(-3px);
}

.btn-aog-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: #2d3a42;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-aog-secondary:hover {
    background: #1a2329;
    color: #fff;
    transform: translateY(-3px);
}

/* Engines page */
.engines-page .engine-section {
    padding: 65px 0;
    background: #fff;
}

.engines-page .engine-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.engines-page .engine-heading-with-line {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.engines-page .engine-content-line {
    width: 4px;
    min-height: 48px;
    background: #9fb4c2;
    border-radius: 2px;
    flex-shrink: 0;
}

.engines-page .engine-heading {
    font-size: 28px;
    font-weight: 700;
    color: #2d3a42;
    margin: 0;
    line-height: 1.25;
}

.engines-page .engine-para {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 18px 0;
}

.engines-page .engine-col-image {
    overflow: hidden;
    display: flex;
    min-height: 0;
}

.engines-page .engine-col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 4px;
}

.engines-page .btn-engine-cta {
    display: inline-block;
    margin-top: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #48b7e4 0%, #3ba5d0 100%);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s, transform 0.25s ease;
}

.engines-page .btn-engine-cta:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-2px);
}

.engine-subheading {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin: 24px 0 16px 0;
    padding-left: 20px;
}

.engine-offer-list {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 0;
}

.engine-offer-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.engine-offer-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #48b7e4;
}

/* Engine types we support */
.service-section-engine-types {
    background-color: #3c5a76;
    padding: 65px 0;
}

.engine-types-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 0 0;
}

.engine-types-line {
    width: 100%;
    max-width: 400px;
    height: 2px;
    background: #48b7e4;
    margin: 24px auto 50px auto;
}

.engine-types-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

.engine-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.engine-type-image {
    width: 100%;
    max-width: 260px;
    margin-bottom: 24px;
}

.engine-type-image img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    opacity: 0.9;
}

.engine-type-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.engine-type-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.engine-type-toggle:hover {
    opacity: 0.9;
}

.engine-type-chevron {
    font-size: 14px;
    color: #fff;
    transition: transform 0.3s, font-size 0.3s;
}

.engine-type-info.expanded .engine-type-chevron {
    transform: rotate(180deg);
    font-size: 20px;
}

.engine-type-label {
    color: #fff;
}

.engine-type-models {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 280px;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.engine-type-info.expanded .engine-type-models {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
    padding: 16px 20px;
}

.engine-type-models li {
    color: #fff;
    font-size: 15px;
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.engine-type-models li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #48b7e4;
}

/* NEW STOCK section */
.service-section-new-stock {
    padding: 65px 0;
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.new-stock-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/Growing inventories on a global Scale.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.new-stock-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 43, 73, 0.65);
    z-index: 1;
}

.service-section-new-stock .container {
    position: relative;
    z-index: 2;
}

.new-stock-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.new-stock-box {
    background: #fff;
    padding: 45px 40px;
    border-radius: 8px;
    max-width: 420px;
}

.new-stock-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d3a42;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.new-stock-text {
    font-size: 18px;
    font-weight: 600;
    color: #2d3a42;
    margin: 0 0 16px 0;
}

.new-stock-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 28px 0;
}

.btn-new-stock-cta {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #48b7e4 0%, #3ba5d0 100%);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.btn-new-stock-cta:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-3px);
}

.new-stock-features {
    padding-left: 0;
}

.new-stock-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-stock-list li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
}

.new-stock-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #48b7e4;
}

/* About page */
.about-page .service-hero-title {
    text-transform: capitalize;
}

.about-section {
    padding: 80px 0;
}

.about-section-light {
    background: #fff;
}

.about-section-dark {
    background: #2d3a42;
}

.about-section-grey {
    background: #f5f5f5;
}

.about-wingspan-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-slider-wrapper {
    position: relative;
}

.about-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
}

.about-slider .slider-arrow {
    border-color: #555;
    color: #555;
    opacity: 0;
}

.about-slider:hover .slider-arrow {
    opacity: 1;
}

.about-slider .slider-arrow:hover {
    background: #2d3a42;
    color: #fff;
    border-color: #2d3a42;
}

.about-slider .slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-slider .slider-slide.active {
    opacity: 1;
}

.about-slider .slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-slider-dots {
    margin-top: 20px;
}

.about-slider-dots .dot.active {
    background: #48b7e4;
}

.about-map-embed {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-map-embed iframe {
    display: block;
}

.about-map-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #48b7e4;
    text-decoration: none;
}

.about-map-link:hover {
    text-decoration: underline;
}

/* Join the family */
.about-join-family {
    padding: 80px 0;
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.about-join-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/building.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.about-join-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 58, 66, 0.75);
    z-index: 1;
}

.about-join-family .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-join-box {
    background: rgba(45, 58, 66, 0.9);
    padding: 50px 60px;
    border-radius: 4px;
    text-align: center;
    max-width: 560px;
}

.about-join-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
}

.about-join-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 28px 0;
}

.btn-about-join {
    display: inline-block;
    padding: 14px 35px;
    background: #48b7e4;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-about-join:hover {
    background: #3ba5d0;
    color: #fff;
    transform: translateY(-3px);
}

.about-structure-section {
    padding: 60px 0;
}

.about-structure-block {
    margin-top: 24px;
    padding: 32px;
    background: #f8f9fa;
    border-left: 4px solid #48b7e4;
}

.about-structure-parent {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.about-structure-children {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.about-structure-children span,
.about-structure-children a {
    font-size: 16px;
    color: #555;
}
.about-structure-children a {
    color: #48b7e4;
    text-decoration: none;
}
.about-structure-children a:hover {
    text-decoration: underline;
}

.about-execution-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.about-execution-step {
    padding: 20px;
    background: #f0f4f8;
    border-radius: 4px;
    font-weight: 600;
    color: #333;
}

.about-group-cards-intro {
    margin: 12px 0 32px 0;
    max-width: 700px;
}

.about-group-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.about-group-card {
    display: block;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.about-group-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: #48b7e4;
}

.about-group-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
    color: #48b7e4;
}

.about-group-card-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.about-group-card-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.about-group-card-cta {
    font-size: 13px;
    font-weight: 600;
    color: #48b7e4;
}

.btn-linkedin {
    display: inline-block;
    padding: 12px 28px;
    background: #0077b5;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    transition: background 0.3s;
}

.btn-linkedin:hover {
    background: #005582;
    color: #fff;
    transform: translateY(-3px);
}

.about-follow-link {
    margin-top: 12px;
}

.about-follow-link a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.about-follow-link a:hover {
    text-decoration: underline;
}

/* About page – hero (image only) */
.about-hero {
    min-height: 280px;
}


/* About – value statement (left text) + right image + 3 icon blocks */
.about-value-section .service-section-grid {
    align-items: start;
}
.about-value-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d3a42;
    margin: 0 0 8px 0;
}
.about-value-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    letter-spacing: 0.3px;
}
.about-value-intro {
    font-size: 17px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 24px 0;
}
.about-value-statement {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin: 0 0 32px 0;
    text-align: left;
}
.about-value-bullets {
    list-style: disc;
    margin: 0 0 0 1.25em;
    padding: 0;
}
.about-value-bullets li {
    font-size: 16px;
    color: #2d3a42;
    line-height: 1.8;
    margin-bottom: 4px;
}

/* About – mission & vision */
.about-mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 64px;
    align-items: start;
}
.about-mission-vision-block {
    position: relative;
    padding-left: 24px;
}
.about-mission-vision-block .content-line-accent {
    position: absolute;
    left: 0;
    top: 4px;
}
.about-mv-heading {
    font-size: 22px;
    font-weight: 700;
    color: #2d3a42;
    margin: 0 0 12px 0;
}
.about-mv-text {
    font-size: 16px;
    line-height: 1.65;
    color: #555;
    margin: 0;
}

/* About – timeline (card-based, professional) */
.about-timeline-section .service-section-title {
    margin-bottom: 12px;
    text-align: center;
}
.about-timeline-intro {
    font-size: 17px;
    color: #555;
    line-height: 1.5;
    margin: 0 auto 40px auto;
    max-width: 560px;
    text-align: center;
}
.about-timeline {
    margin: 0 auto;
    margin-top: 0;
    width: 100%;
    max-width: 680px;
}
.about-timeline-cards .about-timeline-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.about-timeline-cards .about-timeline-track::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 32px;
    bottom: 32px;
    width: 2px;
    background: linear-gradient(180deg, #48b7e4 0%, rgba(72, 183, 228, 0.4) 100%);
    z-index: 0;
    border-radius: 1px;
}
.about-timeline-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 24px 0;
}
.about-timeline-card:last-child {
    padding-bottom: 0;
}
.about-timeline-card-node {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 20px 0 0 19px;
    border-radius: 50%;
    background: #48b7e4;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(72, 183, 228, 0.35);
    flex-shrink: 0;
}
.about-timeline-card-inner {
    flex: 1;
    margin-left: 20px;
    background: #fff;
    border: 1px solid #e8ecef;
    border-radius: 8px;
    padding: 24px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.about-timeline-card:hover .about-timeline-card-inner {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(72, 183, 228, 0.25);
}
.about-timeline-card-year {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #48b7e4;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.about-timeline-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3a42;
    margin: 0;
    line-height: 1.4;
}

/* About – Why Berel Aero (bg image + overlay + cards) */
.about-why-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.about-why-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.about-why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 58, 66, 0.82);
    z-index: 1;
}
.about-why-container {
    position: relative;
    z-index: 2;
}
.about-why-heading {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 48px 0;
    text-align: center;
}
.about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 0;
}
.about-why-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 32px 24px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.about-why-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-4px);
}
.about-why-icon {
    display: inline-flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}
.about-why-icon svg {
    width: 44px;
    height: 44px;
}
.about-why-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}
.about-why-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

/* About – Our Values (left text + right image) */
.about-values-section .service-section-grid {
    align-items: center;
}
.about-values-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about-values-content .content-line-accent {
    left: 0;
    transform: none;
}
.about-values-section .service-section-title {
    margin-bottom: 24px;
}
.about-values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px 40px;
    margin-top: 0;
}
.about-values-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}
.about-values-icon {
    display: inline-flex;
    color: #48b7e4;
    flex-shrink: 0;
}
.about-values-icon svg {
    width: 36px;
    height: 36px;
}
.about-values-label {
    font-size: 16px;
    font-weight: 600;
    color: #2d3a42;
}
.btn-about-values-cta {
    display: inline-block;
    margin-top: 28px;
    padding: 14px 36px;
    background: #48b7e4;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}
.btn-about-values-cta:hover {
    background: #3ba5d0;
    color: #fff;
    transform: translateY(-2px);
}
.about-values-icon {
    display: inline-flex;
    color: #48b7e4;
    flex-shrink: 0;
}
.about-values-icon svg {
    width: 36px;
    height: 36px;
}
.about-values-label {
    font-size: 16px;
    font-weight: 600;
    color: #2d3a42;
}

/* About – CTA section */
/* About – CTA section (reference: bg image + overlay + central dark box) */
.about-cta-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.about-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.about-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 58, 66, 0.75);
    z-index: 1;
}
.about-cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
}
.about-cta-box {
    text-align: center;
    max-width: 560px;
    width: 100%;
    padding: 56px 48px;
    background: rgba(45, 58, 66, 0.92);
    border-radius: 4px;
}
.about-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
}
.about-cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 28px 0;
    line-height: 1.5;
}
.btn-about-cta {
    display: inline-block;
    padding: 14px 40px;
    background: #48b7e4;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}
.btn-about-cta:hover {
    background: #3ba5d0;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .about-mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-why-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .about-cta-box {
        padding: 40px 24px;
    }
    .about-hero-subtitle {
        font-size: 18px;
    }
    .about-hero-intro {
        font-size: 15px;
    }
    .about-why-grid {
        grid-template-columns: 1fr;
    }
    .about-values-grid {
        flex-direction: column;
        align-items: center;
    }
    .about-values-item {
        min-width: 0;
    }
}

/* Lessors Support page */
.lessors-page .service-hero-title {
    text-transform: none;
}

.lessors-section {
    padding: 80px 0;
}

.lessors-section-light {
    background: #fff;
}

.lessors-section-grey {
    background: #f5f5f5;
}

.lessors-section-dark {
    background: #1a1a2e;
    color: #fff;
}

.lessors-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #0066cc;
    margin: 8px 0 16px;
}

.lessors-subtitle-light {
    color: #7ec8e3;
}

.lessors-where-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.lessors-where-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.lessors-where-list li::before {
    content: "🔹";
    position: absolute;
    left: 0;
}

.lessors-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.lessors-hero-tagline {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 12px 0 0;
    max-width: 560px;
}

.lessors-intro-bullets {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.lessors-intro-bullets li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.lessors-intro-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #48b7e4;
    border-radius: 50%;
}

.lessors-intro-note {
    margin-top: 20px;
    font-size: 15px;
    color: #555;
}

/* 4 cards - Where we can help */
.lessors-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.lessors-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 28px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s, transform 0.25s;
}

.lessors-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.lessors-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #48b7e4;
    margin-bottom: 16px;
}

.lessors-card-icon svg {
    width: 40px;
    height: 40px;
}

.lessors-card-title {
    font-size: 17px;
    font-weight: 600;
    color: #2d3a42;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.lessors-card-text {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

.lessors-card-link {
    font-size: 14px;
    font-weight: 600;
    color: #0066cc;
}

.lessors-card:hover .lessors-card-link {
    text-decoration: underline;
}

/* Lessors Support detail page – layout sections */
.lessors-detail-page .lessors-detail-section {
    padding: 64px 0;
}

.lessors-detail-section-title {
    font-size: 22px;
    font-weight: 600;
    color: #2d3a42;
    margin: 0 0 20px 0;
}

.lessors-detail-section .service-section-content .content-line-accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    min-height: 48px;
    background: #48b7e4;
}

.lessors-detail-section .service-section-image img,
.lessors-detail-section .service-section-image-wrap {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Process section – step cards */
.lessors-process-heading {
    font-size: 26px;
    font-weight: 700;
    color: #2d3a42;
    text-align: center;
    margin: 0 0 12px 0;
}

.lessors-process-intro {
    font-size: 16px;
    color: #555;
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px auto;
    line-height: 1.5;
}

.lessors-process-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lessors-process-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 28px 22px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s, border-color 0.25s;
}

.lessors-process-card:hover {
    border-color: #48b7e4;
    box-shadow: 0 6px 20px rgba(72, 183, 228, 0.12);
}

.lessors-process-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #48b7e4;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.lessors-process-card-text {
    font-size: 15px;
    line-height: 1.55;
    color: #444;
    margin: 0;
}

.lessors-cta-back {
    display: inline-block;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 15px;
}

.lessors-cta-back:hover {
    color: #fff;
    text-decoration: underline;
}

.lessors-detail-h2 {
    font-size: 22px;
    font-weight: 600;
    color: #2d3a42;
    margin: 36px 0 16px 0;
}

.lessors-detail-h2:first-of-type {
    margin-top: 0;
}

.lessors-deliver-list,
.lessors-need-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
}

.lessors-deliver-list li,
.lessors-need-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #444;
}

.lessors-deliver-list li::before,
.lessors-need-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #48b7e4;
    font-weight: bold;
}

.lessors-process-list {
    margin: 0 0 8px 0;
    padding-left: 22px;
}

.lessors-process-list li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #444;
}

.lessors-page .service-link {
    display: inline-block;
    margin-top: 32px;
    color: #0066cc;
    text-decoration: none;
    font-size: 15px;
}

.lessors-page .service-link:hover {
    text-decoration: underline;
}

/* Redelivery modal */
.lessors-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lessors-modal {
    position: relative;
    background: #fff;
    border-radius: 8px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 32px 40px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.lessors-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f0f0f0;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #555;
    border-radius: 4px;
    padding: 0;
}

.lessors-modal-close:hover {
    background: #e0e0e0;
    color: #333;
}

.lessors-modal-title {
    font-size: 22px;
    font-weight: 600;
    color: #2d3a42;
    margin: 0 0 24px 0;
    padding-right: 40px;
}

.lessors-redelivery-form .lessors-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lessors-redelivery-form .lessors-form-group {
    margin-bottom: 20px;
}

.lessors-redelivery-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.lessors-redelivery-form input[type="text"],
.lessors-redelivery-form input[type="email"],
.lessors-redelivery-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
}

.lessors-redelivery-form input:focus,
.lessors-redelivery-form textarea:focus {
    outline: none;
    border-color: #48b7e4;
}

.lessors-redelivery-form textarea {
    min-height: 100px;
    resize: vertical;
}

.lessors-form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lessors-form-consent input {
    margin-top: 4px;
}

.lessors-form-consent label {
    margin-bottom: 0;
    font-weight: 400;
}

.lessors-form-submit {
    margin-top: 8px;
    padding: 12px 28px;
    background: #2d3a42;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.lessors-form-submit:hover {
    background: #1a2329;
}

/* Lessors Support detail page */
.lessors-detail-hero {
    padding: 40px 0 24px;
    background: #f5f5f5;
}

.lessors-detail-back {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 16px;
}

.lessors-detail-back:hover {
    text-decoration: underline;
}

.lessors-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3a42;
    margin: 0 0 8px 0;
}

.lessors-detail-subtitle {
    font-size: 18px;
    color: #555;
    margin: 0;
}

/* Where we can help tabs */
.lessors-tabs-heading {
    font-size: 28px;
    font-weight: 700;
    color: #2d3a42;
    text-align: center;
    margin: 0 0 32px 0;
}

.lessors-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
}

.lessors-tab {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: #fff;
    color: #666;
    border-radius: 25px;
    margin: 0 4px;
    transition: all 0.3s;
}

.lessors-tab:hover {
    background: #e8e8e8;
}

.lessors-tab.active {
    background: #48b7e4;
    color: #2d3a42;
}

.lessors-tab-content {
    display: none;
}

.lessors-tab-content.active {
    display: block;
}

.lessors-offer-list {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 16px 0;
}

.lessors-offer-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.lessors-offer-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #48b7e4;
}

/* Curious to see how we can help */
.lessors-curious {
    padding: 80px 0;
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.lessors-curious-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/Warehouse.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.lessors-curious-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.lessors-curious .container {
    position: relative;
    z-index: 2;
}

.lessors-curious-slider-wrapper {
    position: relative;
    padding-left: 64px;
    padding-right: 64px;
}

.lessors-curious-slider {
    position: relative;
    overflow: hidden;
}

.lessors-curious-slide {
    display: none;
}

.lessors-curious-slide.active {
    display: block;
}

.lessors-curious-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 2px solid #fff;
    color: #2d3a42;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lessors-curious:hover .lessors-curious-arrow {
    opacity: 1;
    visibility: visible;
}

.lessors-curious-arrow:hover {
    background: #48b7e4;
    color: #fff;
    border-color: #48b7e4;
}

.lessors-curious-prev {
    left: 0;
}

.lessors-curious-next {
    right: 0;
}

.lessors-curious-arrow svg {
    width: 24px;
    height: 24px;
}

.lessors-curious-heading {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 16px 0;
}

.lessors-curious-text {
    color: rgba(255,255,255,0.95);
    text-align: center;
    margin: 0 0 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.lessors-curious .lessors-cta-buttons {
    justify-content: center;
}

/* Lessors CTA section – cleaner design */
.lessors-cta-section {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
}

.lessors-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/Warehouse.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.lessors-cta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.lessors-cta-section .container {
    position: relative;
    z-index: 2;
}

.lessors-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.lessors-cta-heading {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.lessors-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 28px 0;
    line-height: 1.5;
}

.lessors-cta-section .lessors-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 0;
}

.lessors-cta-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}

.lessors-cta-btn-primary {
    background: #fff;
    color: #2d3a42;
    border: 2px solid #fff;
}

.lessors-cta-btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.lessors-cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.lessors-cta-btn-secondary:hover {
    background: #fff;
    color: #2d3a42;
    transform: translateY(-2px);
}

.lessors-curious-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lessors-curious-card {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.lessors-curious-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #2d3a42;
    margin: 0 0 24px 0;
}

.lessors-curious-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.lessors-curious-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.lessors-curious-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #48b7e4;
}

.lessors-curious-buttons {
    display: flex;
    gap: 16px;
}

.btn-lessors-learn {
    display: inline-block;
    padding: 12px 28px;
    background: #2d3a42;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-lessors-learn:hover {
    background: #1a2329;
    color: #fff;
    transform: translateY(-3px);
}

.btn-lessors-contact {
    display: inline-block;
    padding: 12px 28px;
    background: #fff;
    color: #2d3a42;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid #2d3a42;
    transition: all 0.3s;
}

.btn-lessors-contact:hover {
    background: #2d3a42;
    color: #fff;
    transform: translateY(-3px);
}

.lessors-curious-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.lessors-curious-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.lessors-curious-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.lessors-curious-dots .dot.active {
    background: #fff;
}

/* Lessors Contact form */
.lessors-form-intro {
    font-size: 16px;
    margin: 24px 0 8px 0;
    color: #555;
}

.lessors-email {
    color: #48b7e4;
    text-decoration: none;
}

.lessors-email:hover {
    text-decoration: underline;
}

.lessors-contact-container {
    /* Form centered via .lessors-form max-width + margin auto */
}

.lessors-form {
    max-width: 700px;
    width: 100%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.lessors-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.lessors-form .form-group {
    margin-bottom: 24px;
}

.lessors-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.lessors-form .form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.lessors-form .form-control:focus {
    outline: none;
    border-color: #48b7e4;
}

.lessors-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-lessors-submit {
    padding: 14px 40px;
    background: #2d3a42;
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-lessors-submit:hover {
    background: #1a2329;
}

.lessors-form .error-message {
    display: block;
    font-size: 13px;
    color: #c00;
    margin-top: 4px;
}

#lessors-contact .alert {
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 4px;
}

#lessors-contact .alert-danger {
    background: #fee;
    color: #c00;
}

#lessors-contact .alert-success {
    background: #efe;
    color: #080;
}

/* ========== Contact Page ========== */
.contact-page {
    padding-bottom: 0;
}

.contact-hero .service-hero-content {
    justify-content: flex-end;
    text-align: right;
    padding-right: 40px;
}

.contact-location-bar {
    background: #1a365d;
    padding: 0;
}

.contact-location-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.contact-location-tab {
    display: block;
    padding: 16px 28px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.contact-location-tab:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.contact-location-tab.active {
    background: #2c5282;
    color: #fff;
}

.contact-main {
    background: #fff;
    padding: 60px 0 80px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-info-block {
    position: relative;
    padding-left: 20px;
}

.contact-info-block .content-line-accent {
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 4px);
    min-height: 24px;
    background: #888;
}

.contact-block-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
}

.contact-address,
.contact-detail {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 6px 0;
}

.contact-link {
    color: #0066cc;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-section-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 12px 0;
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.contact-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2d3a42;
    color: #fff;
    transition: background 0.3s;
}

.contact-social-icon:hover {
    background: #48b7e4;
}

.contact-social-icon svg {
    width: 20px;
    height: 20px;
}

.contact-form-col {
    background: #fff;
}

.contact-form-heading {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0 0 24px 0;
}

.contact-form .alert {
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form .alert-danger {
    background: #fee;
    color: #c00;
}

.contact-form .alert-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form-control {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form-control:focus {
    outline: none;
    border-color: #48b7e4;
}

.contact-form-control.is-invalid {
    border-color: #c00;
}

.contact-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-recaptcha-row {
    margin-bottom: 16px;
}

.contact-recaptcha-placeholder {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #f9f9f9;
}

.contact-recaptcha-placeholder input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.contact-recaptcha-label {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
}

.contact-recaptcha-badge {
    margin-left: auto;
    font-size: 12px;
    color: #666;
}

.contact-consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.contact-consent-row label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
}

.contact-form-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-form-submit {
    padding: 14px 40px;
    background: #1a365d;
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form-submit:hover {
    background: #2c5282;
}

.contact-error {
    display: block;
    font-size: 13px;
    color: #c00;
    margin-top: 4px;
}

/* ========== Auth (Login / Register / Dashboard) ========== */
.auth-section {
    padding: 60px 0 80px;
    min-height: 60vh;
}

.auth-section:not(.register-section) .auth-box {
    max-width: 440px;
}

.auth-box {
    max-width: 100%;
    margin: 70px auto 0;
    padding: 44px 40px 40px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(13, 33, 55, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.auth-title {
    font-size: 26px;
    font-weight: 700;
    color: #0d2137;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.auth-box > .auth-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.auth-alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}
.auth-alert-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}
.auth-error-list {
    list-style: none;
    padding: 12px 16px;
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
}

.auth-form .contact-form-group {
    margin-bottom: 20px;
}

.auth-form .contact-form-group:last-of-type {
    margin-bottom: 28px;
}

.auth-quiz-wrap {
    margin-top: 24px;
    padding: 20px 20px 22px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.auth-quiz-wrap label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #0d2137;
    margin-bottom: 10px;
}

.auth-submit {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    background: #0d2137;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.05s;
}

.auth-submit:hover {
    background: #1a365d;
}

.auth-submit:active {
    transform: scale(0.99);
}

.auth-footer {
    margin: 0;
    font-size: 14px;
    text-align: center;
    color: #64748b;
}

.auth-footer a {
    color: #0d2137;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
    color: #1e3a5f;
}

.auth-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: normal;
    color: #475569;
    cursor: pointer;
}

/* Register page: full form matching reference */
.register-section .auth-box {
    max-width: 640px;
    padding: 40px 44px 36px;
}
.register-form .contact-form-group {
    margin-bottom: 18px;
}
.register-block {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e5e7eb;
}
.register-block-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
}
.register-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.register-required {
    color: #dc2626;
}
.register-verification-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin: 0 0 16px 0;
}
.register-phone-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
}
.register-phone-code .contact-form-control {
    padding: 10px 8px;
}
.register-newsletter-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
    font-size: 14px;
}
.register-checkbox-group {
    margin-bottom: 0;
}
.register-password-block {
    border-bottom: none;
}
.register-submit {
    margin-top: 8px;
    background: #334155;
}
.register-submit:hover {
    background: #475569;
}
select.contact-form-control {
    cursor: pointer;
    appearance: auto;
}
@media (max-width: 640px) {
    .auth-section {
        padding: 30px 0 60px;
    }
    .auth-section:not(.register-section) .auth-box {
        padding: 32px 24px 28px;
    }
    .register-section .auth-box {
        padding: 28px 20px 24px;
    }
    .register-row {
        grid-template-columns: 1fr;
    }
    .register-phone-row {
        grid-template-columns: 1fr;
    }
}

.dashboard-welcome {
    font-size: 18px;
    color: #2d3a42;
    margin: 0 0 8px 0;
}

/* Header auth links – match nav menu style */
.nav-auth-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 12px;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-auth-link:hover {
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
}

.header-logout-form {
    display: inline-block;
    margin: 0 12px 0 0;
}

.btn-logout {
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* Header Dashboard dropdown (logged-in: one menu with Settings, Logout, etc.) */
.header-dashboard-wrap {
    position: relative;
}
.header-dashboard-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.header-dashboard-trigger:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.header-dashboard-trigger:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}
.header-dashboard-chevron {
    flex-shrink: 0;
    transition: transform 0.2s;
}
#header-dashboard-toggle[aria-expanded="true"] .header-dashboard-chevron {
    transform: rotate(180deg);
}
.header-dashboard-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    min-width: 200px;
    padding: 8px 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 1000;
}
.header-dashboard-dropdown[hidden] {
    display: none !important;
}
.header-dashboard-item {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    color: #334155;
    text-decoration: none;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, color 0.15s;
}
.header-dashboard-item:hover {
    background: #f1f5f9;
    color: #0d2137;
}
.header-dashboard-divider {
    height: 1px;
    margin: 6px 0;
    background: #e5e7eb;
}
.header-dashboard-form {
    margin: 0;
}
.header-dashboard-logout {
    color: #dc2626 !important;
}
.header-dashboard-logout:hover {
    background: #fef2f2 !important;
    color: #dc2626 !important;
}

.fullscreen-logout-form {
    margin: 0;
}

.fullscreen-logout-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: inherit;
    cursor: pointer;
    padding: 0;
    text-align: left;
    text-decoration: underline;
}

.fullscreen-logout-btn:hover {
    opacity: 0.9;
}

/* ========== Search Parts ========== */
body.page-search {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body.page-search .main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
body.page-search .search-parts-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0 60px;
}
body.page-search .footer-search-only {
    margin-top: auto;
}

.search-parts-section {
    padding: 80px 0 60px;
    min-height: 50vh;
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    justify-content: center;
}

.search-parts-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}
.search-parts-has-results .search-parts-card {
    max-width: 100%;
}

.search-parts-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(13, 33, 55, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    padding: 40px 44px 44px;
    border: 1px solid rgba(13, 33, 55, 0.06);
    position: relative;
    overflow: hidden;
}
.search-parts-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d2137 0%, #1e3a5f 100%);
    border-radius: 16px 16px 0 0;
}

.search-parts-card-head {
    margin-bottom: 28px;
}
.search-parts-title {
    font-size: 28px;
    font-weight: 700;
    color: #0d2137;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.search-parts-intro {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.search-parts-message {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    list-style: none;
}
.search-parts-message-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.search-parts-message-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding-left: 18px;
}
.search-parts-message-error li {
    margin: 2px 0 0 0;
}
.search-parts-message-error li:first-child {
    margin-top: 0;
}

.search-parts-form {
    margin-bottom: 32px;
}

.search-parts-bar {
    display: flex;
    gap: 12px;
    max-width: 100%;
    align-items: stretch;
}
.search-parts-input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}
.search-parts-input::placeholder {
    color: #94a3b8;
}
.search-parts-input:focus {
    outline: none;
    border-color: #0d2137;
    box-shadow: 0 0 0 3px rgba(13, 33, 55, 0.12);
}
.search-parts-submit {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #0d2137;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.05s;
    white-space: nowrap;
}
.search-parts-submit:hover {
    background: #1a365d;
}
.search-parts-submit:active {
    transform: scale(0.98);
}
.search-parts-multi-btn {
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #0d2137;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.search-parts-multi-btn:hover {
    background: #f8fafc;
    border-color: #0d2137;
    color: #0d2137;
}

.search-multi-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.search-multi-modal[hidden] {
    display: none;
}
.search-multi-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.search-multi-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(13, 33, 55, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 28px;
    border: 1px solid rgba(13, 33, 55, 0.08);
}
.search-multi-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    padding: 0;
    font-size: 24px;
    line-height: 1;
    color: #64748b;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.search-multi-close:hover {
    color: #1e293b;
    background: #f1f5f9;
}
.search-multi-title {
    margin: 0 0 16px 0;
    font-size: 22px;
    font-weight: 700;
    color: #0d2137;
}
.search-multi-header {
    background: #0d2137;
    color: #fff;
    padding: 10px 14px;
    margin: 0 0 12px 0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
}
.search-multi-instruction {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #64748b;
}
.search-multi-instruction code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
}
.search-multi-form {
    margin: 0;
}
.search-multi-textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.5;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    resize: vertical;
    box-sizing: border-box;
    margin-bottom: 16px;
}
.search-multi-textarea:focus {
    outline: none;
    border-color: #0d2137;
    box-shadow: 0 0 0 2px rgba(13, 33, 55, 0.1);
}
.search-multi-textarea::placeholder {
    color: #94a3b8;
}
.search-multi-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.search-multi-cancel {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.search-multi-cancel:hover {
    background: #e2e8f0;
}
.search-multi-submit {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #0d2137;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.search-multi-submit:hover {
    background: #1a365d;
}

.search-parts-empty-wrap {
    padding: 28px 0;
    text-align: center;
}
.search-parts-empty-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #0d2137 0%, transparent 100%);
    margin: 0 auto 24px;
    border-radius: 2px;
}
.search-parts-empty {
    font-size: 17px;
    color: #334155;
    margin: 0 0 8px 0;
    font-weight: 500;
}
.search-parts-empty strong {
    color: #0d2137;
    font-weight: 600;
}
.search-parts-empty-hint {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 20px 0;
    line-height: 1.4;
}
.search-parts-ask-team-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #0d2137;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.05s;
}
.search-parts-ask-team-btn:hover {
    background: #1a365d;
}
.search-parts-ask-team-btn:active {
    transform: scale(0.98);
}
.search-parts-ask-team-intro {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}
.search-parts-ask-team-intro strong {
    color: #0d2137;
}
.search-parts-ask-team-account-note,
.search-parts-ask-team-guest-note {
    margin: 0 0 14px 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}
.search-parts-ask-team-account-note {
    padding: 10px 12px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 6px;
    color: #0369a1;
}
.search-multi-form input[readonly] {
    background: #f8fafc;
    color: #475569;
    cursor: default;
}

.search-parts-table-wrap {
    overflow-x: auto;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.search-parts-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.search-parts-table th,
.search-parts-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.search-parts-table tbody tr:last-child td {
    border-bottom: none;
}
.search-parts-table tbody tr:hover td {
    background: #f8fafc;
}

.search-parts-table th {
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    background: #f1f5f9;
}

.search-parts-table td {
    color: #334155;
    background: #fff;
    transition: background 0.15s;
}

/* Cart Qty input and Add to Cart in search results */
.cart-qty-input {
    width: 4.5rem;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    text-align: center;
    -moz-appearance: textfield;
    appearance: textfield;
}
.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.cart-qty-input:focus {
    outline: none;
    border-color: #0d2137;
    box-shadow: 0 0 0 2px rgba(13, 33, 55, 0.12);
}
.cart-qty-form {
    display: inline-block;
}
.btn-add-to-cart {
    display: inline-block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: #0d2137;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.05s ease;
}
.btn-add-to-cart:hover {
    background: #1a365d;
    color: #fff;
}
.btn-add-to-cart:active {
    transform: scale(0.98);
}
.btn-add-to-cart-disabled {
    cursor: not-allowed;
    opacity: 0.7;
    background: #94a3b8 !important;
    pointer-events: none;
}
.search-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

/* Add to cart success modal */
.cart-added-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.cart-added-modal[hidden] {
    display: none !important;
}
.cart-added-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    cursor: pointer;
}
.cart-added-box {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 36px 32px 32px;
    text-align: center;
    animation: cart-added-appear 0.25s ease;
}
@keyframes cart-added-appear {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.cart-added-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 24px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.cart-added-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}
.cart-added-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: #0d9488;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-added-icon-cart {
    width: 40px;
    height: 40px;
}
.cart-added-title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}
.cart-added-part-name {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 600;
    color: #0d2137;
    line-height: 1.4;
}
.cart-added-part-name:empty {
    display: none;
}
.cart-added-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #64748b;
}
.login-required-modal .cart-added-box {
    padding-bottom: 28px;
}
.login-required-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}
.login-required-actions .admin-btn {
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-request-pricing {
    display: inline-block;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: #48b7e4;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
}

.btn-request-pricing:hover {
    background: #3ba5d0;
    color: #fff;
}
.search-price-request-link {
    color: #1a365d;
    font-weight: 600;
    text-decoration: none;
}
.search-price-request-link:hover {
    text-decoration: underline;
}
.search-part-requested {
    color: #64748b;
    font-style: italic;
}

.search-parts-pagination {
    margin-top: 20px;
}

.search-parts-pagination nav ul.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-parts-pagination nav ul.pagination li {
    display: inline-block;
}

.search-parts-pagination nav ul.pagination a,
.search-parts-pagination nav ul.pagination span {
    display: inline-block;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #334155;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.search-parts-pagination nav ul.pagination a:hover {
    background: #f8fafc;
    border-color: #0d2137;
    color: #0d2137;
}

.search-parts-pagination nav ul.pagination li.active span,
.search-parts-pagination nav ul.pagination li.disabled span {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #64748b;
    cursor: default;
}
.search-parts-pagination nav ul.pagination li.active span {
    background: #0d2137;
    border-color: #0d2137;
    color: #fff;
}

.pricing-request-text {
    margin: 0 0 16px 0;
    font-size: 16px;
    color: #2d3a42;
}

/* Search page – mobile responsive */
@media (max-width: 768px) {
    body.page-search .search-parts-section,
    .search-parts-section {
        padding: 32px 0 40px;
    }
    .search-parts-container {
        padding: 0 16px;
        max-width: 100%;
    }
    .search-parts-card {
        padding: 28px 20px 32px;
        border-radius: 12px;
    }
    .search-parts-card::before {
        height: 3px;
        border-radius: 12px 12px 0 0;
    }
    .search-parts-card-head {
        margin-bottom: 22px;
    }
    .search-parts-title {
        font-size: 24px;
    }
    .search-parts-bar {
        flex-wrap: wrap;
        max-width: none;
    }
    .search-parts-input {
        width: 100%;
        min-width: 0;
    }
    .search-parts-submit,
    .search-parts-multi-btn {
        flex: 1;
        min-width: 120px;
    }
    .search-parts-empty-wrap {
        padding: 24px 0;
    }
    .search-parts-empty {
        font-size: 16px;
    }
    .search-parts-table-wrap {
        margin-left: -16px;
        margin-right: -16px;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }
    .search-parts-table {
        font-size: 13px;
        min-width: 720px;
    }
    .search-parts-table th,
    .search-parts-table td {
        padding: 10px 12px;
    }
    .cart-qty-input {
        width: 3.5rem;
        padding: 8px 6px;
    }
    .btn-add-to-cart {
        padding: 8px 14px;
        font-size: 12px;
    }
    .search-parts-pagination nav ul.pagination a,
    .search-parts-pagination nav ul.pagination span {
        padding: 6px 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .search-parts-section {
        padding: 24px 0 32px;
    }
    body.page-search .search-parts-section {
        padding: 24px 0 32px;
    }
    .search-parts-container {
        padding: 0 12px;
    }
    .search-parts-card {
        padding: 24px 16px 28px;
    }
    .search-parts-title {
        font-size: 22px;
    }
    .search-parts-bar {
        flex-direction: column;
        gap: 10px;
    }
    .search-parts-submit,
    .search-parts-multi-btn {
        width: 100%;
    }
    .search-parts-table th,
    .search-parts-table td {
        padding: 8px 10px;
        font-size: 12px;
    }
    .search-multi-box {
        margin: 16px;
        padding: 20px 16px;
    }
    .cart-added-box {
        margin: 12px;
    }
}

@media (max-width: 992px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    .contact-hero .service-hero-content {
        text-align: center;
        padding-right: 0;
    }
}

/* ========== Certifications Page ========== */
.certifications-page {
    background: #fff;
}

.certifications-main {
    padding: 150px 0 80px;
}

.certifications-heading {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 24px 0;
}

.certifications-contact-list {
    text-align: center;
    margin: 0 0 40px 0;
}

.certifications-contact-line {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin: 0 0 6px 0;
}

.certifications-intro {
    text-align: center;
    font-size: 15px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.certifications-section {
    margin-bottom: 56px;
}

.certifications-section:last-child {
    margin-bottom: 0;
}

.certifications-section-lines {
    height: 2px;
    background: #48b7e4;
    max-width: 80%;
    margin: 0 auto 20px auto;
}

.certifications-section-lines:first-of-type {
    margin-bottom: 16px;
}

.certifications-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
}

.certifications-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 48px;
    margin-top: 28px;
}

.certifications-logos-single {
    justify-content: center;
}

.certifications-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.25s;
}

.certifications-logo-link:hover {
    opacity: 0.9;
}

.certifications-logo-img {
    max-width: 180px;
    width: auto;
    height: auto;
    max-height: 240px;
    object-fit: contain;
    display: block;
}

.certifications-logo-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: 12px;
}

/* ========== Group Companies Page ========== */
.group-companies-page .service-hero-title {
    text-transform: none;
}

.group-companies-section {
    padding: 80px 0 100px;
    background: #fff;
}

.group-companies-intro {
    text-align: center;
    margin-bottom: 48px;
}

.group-companies-parent-desc {
    font-size: 16px;
    color: #555;
    margin-top: 8px;
}

.group-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.group-company-card {
    display: block;
    padding: 28px 24px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.group-company-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: #48b7e4;
}

.group-company-icon {
    color: #48b7e4;
    margin-bottom: 16px;
}

.group-company-icon svg {
    display: block;
}

.group-company-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.group-company-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.group-company-cta {
    font-size: 13px;
    font-weight: 600;
    color: #48b7e4;
}

/* ========== Placeholder / Under Development Page ========== */
.placeholder-content {
    padding: 80px 0 100px;
    background: #f8f9fa;
}

.placeholder-box {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.placeholder-heading {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
}

.placeholder-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.placeholder-text:last-of-type {
    margin-bottom: 28px;
}

.btn-placeholder-cta {
    display: inline-block;
    padding: 14px 32px;
    background: #48b7e4;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-placeholder-cta:hover {
    background: #3ba5d0;
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .certifications-logos {
        gap: 32px;
    }
    .certifications-logo-img {
        max-width: 140px;
        max-height: 200px;
    }
}

@media (max-width: 576px) {
    .contact-location-tabs {
        flex-direction: column;
    }
    .contact-location-tab {
        text-align: center;
    }
}

/* ========== Legal / Footer Information Pages ========== */
.legal-page {
    background: #fff;
}

.legal-main {
    padding: 150px 0 80px;
}

.legal-title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 0 0 12px 0;
}

.legal-updated {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 0 0 40px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 20px 0;
}

.legal-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 32px 0 12px 0;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-link {
    color: #48b7e4;
    text-decoration: none;
}

.legal-link:hover {
    text-decoration: underline;
}

/* ========== Team Page (Our Leadership) ========== */
.team-page {
    background: #fff;
}

.team-hero-overlay {
    background: rgba(0, 0, 0, 0.55);
}

.team-hero-content {
    text-align: center;
    padding: 0 20px;
}

.team-hero-title {
    margin: 0;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.team-hero-subtitle {
    margin: 10px 0 0;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.team-main {
    padding: 64px 0 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: start;
}

.team-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 0 0 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s, border-color 0.3s;
    overflow: hidden;
}

.team-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #ddd;
}

.team-card-image-wrap {
    width: 100%;
    height: 550px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.team-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.35s ease;
}

.team-card:hover .team-card-image {
    transform: translateY(-12px);
}

.team-card-name {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin: 10px 16px 0;
    line-height: 1.3;
}

.team-card-title {
    font-size: 14px;
    font-weight: 400;
    color: #555;
    margin: 4px 16px 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .team-main {
        padding: 48px 0 64px;
    }
    .team-hero-title {
        font-size: 32px;
    }
    .team-hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .team-main {
        padding: 40px 0 56px;
    }
    .team-card {
        padding-bottom: 16px;
    }
    .team-card-name {
        margin-top: 10px;
        font-size: 17px;
    }
    .team-card-title {
        margin-top: 4px;
        font-size: 14px;
    }
    .team-hero-title {
        font-size: 28px;
    }
    .team-hero-subtitle {
        font-size: 15px;
        margin-top: 8px;
    }
}

/* Repair Management - Get de-stressed infographic */
.repair-process-infographic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.repair-process-steps {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 500px;
}

.repair-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.repair-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #48b7e4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #48b7e4;
}

.repair-step-icon svg {
    width: 28px;
    height: 28px;
}

.repair-shop-text {
    font-size: 8px;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
}

.repair-step-label {
    font-size: 12px;
    color: #666;
}

.repair-step-connector {
    width: 20px;
    height: 2px;
    background: #48b7e4;
}

/* Repair Management - Solutions from A-Z */
.service-section-solutions {
    background-color: #2d3a42;
    padding: 65px 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.solutions-icons-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
}

.solutions-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.solutions-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

.solutions-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #48b7e4;
}

.btn-solutions-cta {
    display: inline-block;
    padding: 14px 35px;
    background: #fff;
    color: #2d3a42;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 20px;
    margin-top: 10px;
    transition: background 0.3s, color 0.3s;
}

.btn-solutions-cta:hover {
    background: #48b7e4;
    color: #fff;
    transform: translateY(-3px);
}

.solutions-disclaimer {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 12px 0 0 20px;
}

/* Repair Management - A well-oiled machine slider */
.repair-slider-wrapper {
    position: relative;
}

.repair-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
}

.repair-slider .slider-arrow {
    opacity: 0.8;
    visibility: visible;
    border-color: #333;
    color: #333;
}

.repair-slider:hover .slider-arrow {
    opacity: 1;
    background: #fff;
    border-color: #fff;
    color: #333;
}

.repair-slider .slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.repair-slider .slider-slide.active {
    opacity: 1;
}

.repair-slider .slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.repair-slider-dots {
    margin-top: 16px;
}

.repair-slider-dots .dot {
    background: #ccc;
}

.repair-slider-dots .dot.active {
    background: #48b7e4;
}

/* Get de-stressed section slider */
.get-stressed-slider .slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive - Service Pages */
@media (max-width: 768px) {
    .service-hero-title {
        font-size: 28px;
    }

    .services-overview-row {
        flex-direction: column;
    }

    .service-overview-item {
        min-width: 100%;
        border-right: none;
        border-bottom: 3px solid #3bb5ea;
        padding: 25px 20px;
    }

    .service-overview-item:last-child {
        border-bottom: none;
    }

    .service-overview-item .tab-icon-img {
        width: 60px;
        height: 60px;
    }

    .service-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-section-reverse {
        direction: ltr;
    }

    .service-section {
        padding: 50px 0;
    }

    .service-parts-grid {
        grid-template-columns: 1fr;
    }

    .service-parts-grid img {
        height: 150px;
    }

    .service-parts-list-two-col {
        grid-template-columns: 1fr;
    }

    .service-section-high-demand .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-parts-grid-overlap {
        margin-left: 0;
        margin-right: 0;
    }

    .aircraft-marketing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .aircraft-marketing-cta {
        order: -1;
    }

    .consignment-graphics {
        order: -1;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solutions-icons {
        order: -1;
    }

    .repair-process-steps {
        justify-content: center;
    }

    .repair-slider {
        height: 300px;
    }

    .engines-page .engine-two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .engines-page .engine-col-image img {
        height: 220px;
        min-height: 220px;
    }

    .engine-types-grid {
        grid-template-columns: 1fr;
    }

    .new-stock-grid {
        grid-template-columns: 1fr;
    }

    .new-stock-box {
        max-width: none;
    }

    .about-wingspan-row {
        grid-template-columns: 1fr;
    }

    .about-slider {
        height: 300px;
    }

    .about-join-box {
        padding: 40px 24px;
    }

    .lessors-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .lessors-curious-row {
        grid-template-columns: 1fr;
    }

    .lessors-curious-image {
        order: -1;
    }

    .lessors-form-row {
        grid-template-columns: 1fr;
    }

    .lessors-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .lessors-process-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-infographic {
        flex-direction: column;
        align-items: flex-start;
    }

    .infographic-connector {
        width: 4px;
        height: 30px;
        margin-left: 58px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-search-line {
        max-width: 100%;
        margin: 20px 0 18px 0;
    }

    .hero-search-form {
        max-width: 100%;
    }

    .hero-search-input {
        min-width: 0;
        padding: 12px 16px;
        font-size: 14px;
    }

    .hero-search-btn {
        width: 48px;
    }

    .content-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .contact-wrapper {
        padding: 30px 20px;
    }

    .lessors-cards {
        grid-template-columns: 1fr;
    }

    .careers-cards-grid {
        grid-template-columns: 1fr;
    }

    .lessors-cta-section .lessors-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .lessors-cta-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .lessors-detail-page .lessors-detail-section {
        padding: 48px 0;
    }

    .lessors-process-heading {
        font-size: 22px;
    }

    .lessors-process-intro {
        margin-bottom: 28px;
    }

    .lessors-process-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lessors-process-card {
        padding: 22px 20px;
    }

    /* Home Page Responsive */
    .services-tabs-row {
        flex-direction: column;
        overflow-x: visible;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        margin-bottom: 0;
    }

    .services-tabs-section {
        padding: 40px 0;
    }

    .services-tabs-row {
        background: #f5f5f5;
        border-radius: 8px;
        padding: 10px;
    }

    .service-tab {
        min-width: auto;
        width: 100%;
        padding: 15px 20px;
        border-right: none;
        border-bottom: none;
        border-radius: 4px;
        margin-bottom: 8px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
        background: #fff;
        cursor: pointer;
        position: relative;
        text-align: left;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        transition: all 0.3s;
    }
    
    .service-tab > .tab-icon {
        flex-shrink: 0;
        order: 1;
    }
    
    .service-tab > .tab-label {
        flex: 1;
        order: 2;
        min-width: 0;
    }
    
    .service-tab > .tab-arrow {
        flex-shrink: 0;
        order: 3;
        margin-left: auto;
    }
    
    .service-tab > .tab-accordion-content {
        order: 4;
        width: 100%;
        flex-basis: 100%;
        pointer-events: auto;
    }
    
    .service-tab > .tab-accordion-content * {
        pointer-events: auto;
    }

    .service-tab:last-child {
        margin-bottom: 0;
    }

    .service-tab:hover {
        box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    }

    .tab-icon {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tab-icon-img {
        width: 40px;
        height: 40px;
    }

    .tab-label {
        flex: 1;
        text-align: left;
        margin-top: 0;
        text-decoration: underline;
        color: #333;
        font-size: 14px;
        line-height: 1.4;
        margin-left: 0;
        margin-right: auto;
    }

    .tab-arrow {
        display: block;
        flex-shrink: 0;
        width: 12px;
        height: 12px;
        margin-left: auto;
    }

    .service-tab[data-accordion-open="true"] .tab-arrow {
        transform: rotate(180deg);
    }

    .tab-accordion-content {
        width: 100%;
        padding: 0;
        background: #fff;
        border-top: 1px solid #e0e0e0;
        margin-top: 15px;
        display: none !important;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    
    .service-tab[data-accordion-open="true"] .tab-accordion-content {
        display: block !important;
        max-height: 5000px !important;
        opacity: 1 !important;
        padding: 20px 0 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .service-tab[data-accordion-open="false"] .tab-accordion-content {
        display: none !important;
        max-height: 0 !important;
        opacity: 0 !important;
        padding: 0 !important;
        visibility: hidden !important;
    }

    .accordion-content-inner {
        padding: 0 20px;
    }

    .accordion-content-inner .heading-with-line {
        margin-bottom: 15px;
    }

    .accordion-content-inner .content-title {
        font-size: 20px;
        margin-bottom: 15px;
        color: #333;
    }

    .accordion-content-inner .content-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #666;
    }

    .accordion-content-inner .btn-learn-more {
        font-size: 12px;
        padding: 10px 20px;
        margin-bottom: 20px;
        display: inline-block;
    }

    .accordion-image {
        margin-top: 20px;
        width: 100%;
    }

    .accordion-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 4px;
    }

    .services-tabs-section .services-content-wrapper {
        display: none !important;
    }

    .service-page-content-section .services-content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .service-page-content-section .services-content-right {
        order: -1;
    }
    .service-content-image-sticky {
        position: static;
    }
    
    /* Ensure accordion content is visible when open */
    .service-tab .tab-accordion-content {
        position: relative;
        z-index: 1;
    }

    .services-content-left {
        padding-right: 0;
    }

    .heritage-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dna-white-top {
        height: 100px;
    }

    .dna-content-wrapper {
        padding: 60px 0 80px;
    }

    .dna-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dna-text {
        padding-left: 0;
    }

    .dna-image {
        margin-top: 0;
    }

    .dna-title {
        font-size: 36px;
    }

    .dna-description {
        font-size: 16px;
    }

    .locations-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .locations-text {
        padding-left: 0;
    }

    .stay-tuned-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stay-tuned-text {
        padding-left: 0;
    }

    .stay-tuned-devices {
        margin-top: 40px;
    }

    .linkedin-devices-image {
        max-width: 100%;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }


    .trusted-quality-content-wrapper {
        padding: 0 15px;
    }

    .trusted-quality-text h2 {
        font-size: 32px;
    }

    .trusted-quality-text p {
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Local Worldwide Section Responsive */
    .local-worldwide-section {
        min-height: 500px;
    }

    .local-worldwide-overlay {
        padding: 50px 20px;
    }

    .local-worldwide-title {
        font-size: 32px;
    }

    .local-worldwide-text {
        font-size: 16px;
    }

    .btn-check-stock {
        padding: 14px 30px;
        font-size: 12px;
    }

    /* Welcome Family Section Responsive */
    .welcome-family-content {
        padding: 60px 0;
    }

    .welcome-family-text {
        padding-left: 0;
    }

    .welcome-family-title {
        font-size: 32px;
    }

    .welcome-family-description {
        font-size: 16px;
    }

    .btn-career-opportunities {
        padding: 14px 30px;
        font-size: 12px;
    }
}

/* ========== Repair Management clone layout (TDA-style) ========== */

.repair-clone-section {
    padding: 80px 0;
}
.repair-clone-section-1,
.repair-clone-section-3 {
    background: #fff;
}
.repair-clone-section-2 {
    background: #406075;
    color: #fff;
}

.repair-clone-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}
.repair-clone-two-col-reverse {
    direction: rtl;
}
.repair-clone-two-col-reverse > * {
    direction: ltr;
}

.repair-clone-heading {
    font-size: 32px;
    font-weight: 700;
    color: #2d3a42;
    margin: 0 0 24px 0;
    line-height: 1.25;
}
.repair-clone-heading-light {
    color: #fff;
}
.repair-clone-para {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 22px;
}
.repair-clone-para-light {
    color: rgba(255, 255, 255, 0.92);
}

.btn-repair-clone {
    display: inline-block;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    margin-top: 8px;
}
.btn-repair-clone-dark {
    background: #1a365d;
    color: #fff;
}
.btn-repair-clone-dark:hover {
    background: #0d2137;
    color: #fff;
    transform: translateY(-2px);
}
.btn-repair-clone-light {
    background: #fff;
    color: #1a365d;
}
.btn-repair-clone-light:hover {
    background: #f0f4f8;
    color: #1a365d;
    transform: translateY(-2px);
}

.repair-clone-col-image {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.repair-clone-section-1 .repair-slider-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
}

.repair-clone-section-1 .repair-slider {
    flex: 1;
    min-height: 220px;
}

.repair-clone-col-image img {
    width: 100%;
    height: 100%;
}

/* Workflow diagram */
.repair-clone-workflow {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    aspect-ratio: 1;
}
.workflow-node {
    position: absolute;
    width: 28%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #c5d0d9;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 2;
}
.workflow-node-1 { top: 5%;  left: 5%;  }
.workflow-node-2 { top: 5%;  right: 5%; left: auto; }
.workflow-node-3 { bottom: 5%; right: 5%; left: auto; top: auto; }
.workflow-node-4 { bottom: 5%; left: 5%;  top: auto; }
.workflow-icon-wrap {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.workflow-icon {
    width: 100%;
    height: 100%;
    color: #555;
}
.workflow-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #555;
    margin-top: 4px;
    text-align: center;
    line-height: 1.2;
}
.workflow-connectors {
    position: absolute;
    inset: 15%;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    z-index: 1;
    color: #c5d0d9;
    pointer-events: none;
}
.workflow-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.workflow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c5d0d9;
    transition: background 0.3s;
}
.workflow-dot.active {
    background: #1a365d;
}

/* Icon grid (Section 2) */
.repair-clone-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 320px;
}
.repair-clone-icon-item {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
}
.repair-clone-icon-item svg {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    color: #fff;
}
.icon-caption {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.icon-text {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}
.repair-clone-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}
.repair-clone-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.6;
}
.repair-clone-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6eb5e8;
    font-weight: bold;
}
.repair-clone-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
}

@media (max-width: 992px) {
    .repair-clone-two-col,
    .repair-clone-two-col-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }
    .repair-clone-col-diagram {
        order: -1;
    }
    .repair-clone-section-1 .repair-clone-col-image {
        order: -1;
    }
    .repair-clone-col-image img {
        height: 180px;
        min-height: 180px;
    }
    .repair-clone-workflow {
        max-width: 280px;
    }
    .repair-clone-icon-grid {
        max-width: 100%;
    }
}

/* ========== Component Support clone layout (reference: first 3 sections) ========== */

.component-support-clone .service-hero-title {
    text-transform: capitalize;
}

.comp-support-section {
    padding: 80px 0;
}

.comp-support-section-1 {
    background: #fff;
}

.comp-support-section-highdemand {
    background: #9fb4c2;
}

.comp-support-section-2 {
    background: #6b8fa3;
}

.comp-support-section-2 .comp-support-two-col,
.comp-support-section-highdemand .comp-support-two-col {
    align-items: stretch;
}

.comp-support-narrow {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.comp-support-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.comp-support-col {
    min-width: 0;
}

.comp-support-heading {
    font-size: 28px;
    font-weight: 700;
    color: #2d3a42;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.comp-support-heading-light {
    color: #fff;
}

.comp-support-subheading {
    font-size: 20px;
    font-weight: 700;
    color: #2d3a42;
    margin: 24px 0 12px 0;
    line-height: 1.3;
}

.comp-support-para {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 18px;
}

.comp-support-para-light {
    color: rgba(255, 255, 255, 0.92);
}

.comp-support-zegels {
    margin-top: 24px;
    max-width: 280px;
}

.comp-support-zegels img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.comp-support-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.comp-badge-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 4px;
    opacity: 0.85;
}

.comp-support-main-img {
    width: 100%;
    margin-bottom: 16px;
}

.comp-support-main-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 4px;
}

.comp-support-grid-four {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.comp-support-section-1 .comp-support-col-image .comp-support-grid-four,
.comp-support-col-grid .comp-support-grid-four {
    margin-bottom: 0;
}

.comp-support-grid-four img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.comp-support-section-highdemand .comp-support-grid-four {
    gap: 14px;
}

.comp-support-single-img {
    width: 100%;
}

.comp-support-col-grid .comp-support-single-img {
    display: flex;
    min-height: 0;
}

.comp-support-single-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.comp-support-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    column-count: 2;
    column-gap: 24px;
}

.comp-support-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    break-inside: avoid;
}

.comp-support-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4bb1d8;
    font-weight: bold;
}

.comp-support-link {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.comp-support-link:hover {
    color: #fff;
    opacity: 0.9;
    text-decoration: underline;
}

.comp-support-col-image {
    overflow: hidden;
    display: flex;
    min-height: 0;
}

.comp-support-col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 4px;
}

.comp-support-section-2 .comp-support-col-text {
    padding-right: 10px;
}

.comp-support-section-highdemand .comp-support-heading,
.comp-support-section-highdemand .comp-support-para,
.comp-support-section-highdemand .comp-support-list li {
    color: #2d3a42;
}

@media (max-width: 992px) {
    .comp-support-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .comp-support-section-highdemand .comp-support-col-grid {
        order: -1;
    }
    .comp-support-section-highdemand .comp-support-grid-four img {
        height: 180px;
    }
    .comp-support-single-img img {
        height: 180px;
    }
    .comp-support-section-1 .comp-support-col-image img,
    .comp-support-col-image img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .comp-support-list {
        column-count: 1;
    }
}

/* ========== AOG Services clone layout (reference: Airborne + Quick service sections) ========== */

.aog-clone .service-hero-title {
    text-transform: capitalize;
}

.aog-clone-section {
    padding: 80px 0;
}

.aog-clone-section-1 {
    background: #fff;
}

.aog-clone-section-2 {
    background: #2d3a42;
}

.aog-clone-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.aog-clone-two-col-reverse {
    direction: rtl;
}

.aog-clone-two-col-reverse > * {
    direction: ltr;
}

.aog-clone-heading-wrap {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.aog-clone-line {
    flex-shrink: 0;
    width: 4px;
    min-height: 48px;
    background: #3bb5ea;
}

.aog-clone-line-light {
    background: #3bb5ea;
}

.aog-clone-heading {
    font-size: 28px;
    font-weight: 700;
    color: #2d3a42;
    margin: 0;
    line-height: 1.3;
}

.aog-clone-heading-light {
    color: #fff;
}

.aog-clone-para {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 18px;
}

.aog-clone-para-light {
    color: rgba(255, 255, 255, 0.92);
}

.aog-clone-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.btn-aog-clone {
    display: inline-block;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.btn-aog-clone-primary {
    background: #25B4D0;
    color: #fff;
}

.btn-aog-clone-primary:hover {
    background: #1e9bb5;
    color: #fff;
    transform: translateY(-2px);
}

.btn-aog-clone-secondary {
    background: #1a2630;
    color: #fff;
}

.btn-aog-clone-secondary:hover {
    background: #0d1520;
    color: #fff;
    transform: translateY(-2px);
}

.aog-clone-col-image img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .aog-clone-two-col,
    .aog-clone-two-col-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }
    .aog-clone-section-2 .aog-clone-col-image {
        order: -1;
    }
}

/* ========== Admin (under /admin) – standalone, no site header/footer ========== */
.admin-body,
.dashboard-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #f5f6f8;
}
.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 24px;
    background: #0d2137;
    color: #fff;
    flex-shrink: 0;
}
.admin-topbar-logo {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.admin-topbar-dropdown-wrap {
    position: relative;
}
.admin-topbar-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.95);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.admin-topbar-icon-btn:hover {
    background: rgba(255,255,255,0.16);
    color: #fff;
}
.admin-topbar-bell {
    position: relative;
}
.admin-topbar-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: #fff;
    background: #dc2626;
    border: 2px solid #0d2137;
    border-radius: 999px;
}
.admin-topbar-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
}
.admin-topbar-avatar:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.5);
}
.admin-topbar-avatar-initials {
    display: block;
    line-height: 1;
}
.admin-topbar-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    padding: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08), 0 10px 25px -5px rgba(0,0,0,0.1);
    z-index: 1000;
}
.admin-topbar-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 16px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
    transform: rotate(45deg);
}
.admin-topbar-dropdown[hidden] {
    display: none !important;
}
.admin-dropdown-header {
    padding: 14px 16px 10px;
}
.admin-dropdown-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
}
.admin-dropdown-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}
.admin-dropdown-role {
    display: block;
    font-size: 12px;
    color: #64748b;
}
.admin-dropdown-divider {
    height: 1px;
    margin: 0;
    background: #f1f5f9;
}
.admin-topbar-dropdown-msg {
    padding: 12px 16px 8px;
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #475569;
}
.admin-dropdown-msg-empty {
    padding: 12px 16px;
}
.admin-topbar-dropdown-cta {
    display: block;
    padding: 10px 16px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #0d2137;
    text-decoration: none;
    transition: color 0.2s;
}
.admin-topbar-dropdown-cta:hover {
    color: #1e40af;
}
.admin-topbar-dropdown-profile .admin-topbar-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    margin: 0;
    font-size: 14px;
    color: #334155;
    text-decoration: none;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, color 0.15s;
}
.admin-topbar-dropdown-profile .admin-topbar-dropdown-item:hover {
    background: #f8fafc;
    color: #0d2137;
}
.admin-dropdown-icon {
    width: 18px;
    font-size: 14px;
    opacity: 0.85;
    flex-shrink: 0;
}
.admin-topbar-dropdown-profile .admin-topbar-dropdown-form {
    margin: 0;
}
.admin-topbar-dropdown-logout {
    color: #dc2626 !important;
}
.admin-topbar-dropdown-logout:hover {
    background: #fef2f2 !important;
    color: #dc2626 !important;
}
.admin-topbar-dropdown-logout .admin-dropdown-icon {
    opacity: 1;
}
.admin-topbar-link {
    padding: 8px 14px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.admin-topbar-link:hover,
.admin-topbar-link.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.admin-topbar-form {
    margin: 0;
    display: inline;
}
.admin-topbar-logout {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.admin-body .admin-wrap {
    min-height: calc(100vh - 56px);
}
.admin-wrap,
.dashboard-wrap {
    display: flex;
    min-height: 100vh;
}
.dashboard-wrap {
    min-height: 100vh;
}
.dashboard-body .admin-wrap.dashboard-wrap {
    min-height: calc(100vh - 56px);
}
.admin-sidebar {
    width: 220px;
    min-width: 220px;
    background: #0d2137;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 24px 0;
}
.admin-sidebar-header {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 16px;
}
.admin-sidebar-logo {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.admin-sidebar-nav {
    flex: 1;
}
.admin-body .admin-sidebar .admin-sidebar-nav {
    padding-top: 20px;
}
.dashboard-body .admin-sidebar .admin-sidebar-nav {
    padding-top: 20px;
}
.dashboard-profile-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 56px - 64px);
    padding: 32px 0;
}
.dashboard-profile-card {
    width: 100%;
    max-width: 480px;
}
.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}
.admin-nav-item:hover,
.admin-nav-item.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.admin-nav-icon {
    opacity: 0.9;
    font-size: 14px;
}
.admin-nav-dropdown-wrap {
    position: relative;
}
.admin-nav-item-trigger {
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}
.admin-nav-item-trigger .admin-nav-chevron {
    margin-left: auto;
    transition: transform 0.2s;
}
.admin-nav-dropdown-wrap.open .admin-nav-item-trigger .admin-nav-chevron {
    transform: rotate(180deg);
}
.admin-nav-dropdown {
    padding: 4px 0 4px 36px;
    background: rgba(0,0,0,0.2);
    border-left: 2px solid rgba(255,255,255,0.2);
    margin-left: 12px;
}
.admin-nav-dropdown-item {
    display: block;
    padding: 8px 16px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}
.admin-nav-dropdown-item:hover,
.admin-nav-dropdown-item.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.admin-sidebar-footer {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 16px;
}
.admin-sidebar-footer .admin-nav-item {
    padding: 8px 20px;
    font-size: 14px;
}
.admin-logout-form {
    margin: 0;
}
.admin-logout-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.admin-main {
    flex: 1;
    padding: 32px 40px;
    background: #f5f6f8;
}
.admin-page-title {
    font-size: 26px;
    margin-bottom: 8px;
    color: #1a365d;
}
.admin-page-lead {
    color: #64748b;
    margin-bottom: 24px;
    font-size: 15px;
}
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.admin-stat-card {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.admin-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #0d2137;
}
.admin-stat-label {
    font-size: 14px;
    color: #64748b;
}
.admin-two-cols-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .admin-two-cols-50 {
        grid-template-columns: 1fr;
    }
}
.admin-two-cols-50 .admin-block {
    margin-bottom: 0;
}
.admin-block {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin-bottom: 24px;
}
.admin-block-title {
    font-size: 18px;
    margin-bottom: 16px;
    color: #333;
}
.admin-block-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}
.admin-link {
    color: #1a365d;
    font-weight: 600;
    text-decoration: none;
}
.admin-link:hover {
    text-decoration: underline;
}
.admin-order-states {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}
.admin-order-state-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    min-width: 120px;
}
.admin-order-state-value {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}
.admin-order-state-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 4px;
}
.admin-table-wrap {
    overflow-x: auto;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.admin-table th,
.admin-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.admin-table th {
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
}
.admin-col-actions {
    white-space: nowrap;
}
.admin-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 2px;
    border-radius: 6px;
    background: #e2e8f0;
    color: #334155;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}
.admin-btn-icon:hover {
    background: #1a365d;
    color: #fff;
}
.admin-btn-icon-danger:hover {
    background: #b91c1c;
    color: #fff;
}
.admin-inline-form {
    display: inline;
}
.admin-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}
.admin-badge-pending { background: #fef3c7; color: #92400e; }
.admin-badge-uploaded { background: #dbeafe; color: #1e40af; }
.admin-badge-verified { background: #d1fae5; color: #065f46; }
.admin-badge-approved { background: #d1fae5; color: #065f46; }
.admin-badge-rejected { background: #fee2e2; color: #b91c1c; }
.admin-badge-quoted { background: #dbeafe; color: #1e40af; }
.admin-badge-ordered { background: #d1fae5; color: #065f46; }
.admin-badge-closed { background: #f1f5f9; color: #475569; }
.admin-empty {
    color: #64748b;
    padding: 16px 0;
}
.admin-muted {
    color: #94a3b8;
    font-style: italic;
}
.admin-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.admin-page-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}
.admin-parts-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 200px;
    max-width: 360px;
}
.admin-parts-search-input {
    flex: 1;
    min-width: 120px;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-family: inherit;
}
.admin-parts-search-input:focus {
    outline: none;
    border-color: #0d2137;
}
.admin-parts-search-input::placeholder {
    color: #94a3b8;
}
.admin-form {
    max-width: 560px;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.admin-form .contact-form-group {
    margin-bottom: 20px;
}
.admin-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.admin-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.admin-form-group {
    margin-bottom: 20px;
}
.admin-form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}
.admin-form-group .admin-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}
.admin-form-group .admin-input:focus {
    outline: none;
    border-color: #0d2137;
}
.admin-hint {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #64748b;
}
.admin-required { color: #dc2626; }
.admin-error { display: block; margin-top: 4px; font-size: 13px; color: #dc2626; }
.admin-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.admin-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.admin-modal-box {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
}
.admin-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    font-size: 24px;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    padding: 0;
}
.admin-modal-close:hover { color: #1e293b; }
.admin-modal-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: #0d2137;
}
.admin-modal-desc {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}
.admin-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.admin-back-link { margin-bottom: 16px; font-size: 15px; }
.admin-back-link a { color: #1a365d; text-decoration: none; font-weight: 500; }
.admin-back-link a:hover { text-decoration: underline; }
.admin-quote-sent-tick {
    display: inline-block;
    color: #059669;
    font-weight: bold;
    font-size: 1.1em;
}
.admin-message-block { white-space: pre-wrap; max-width: 480px; }
.admin-filter-wrap { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: 16px 20px; }
.admin-filter-form { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 12px 20px; }
.admin-filter-row { display: flex; flex-direction: column; gap: 4px; }
.admin-filter-label { font-size: 12px; font-weight: 600; color: #64748b; }
.admin-filter-input { min-width: 140px; padding: 8px 10px; font-size: 14px; }
.admin-filter-actions { display: flex; gap: 8px; align-items: flex-end; }
.admin-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.admin-btn-primary {
    background: #0d2137;
    color: #fff;
}
.admin-btn-primary:hover {
    background: #1a365d;
    color: #fff;
}
.admin-btn-secondary {
    background: #e2e8f0;
    color: #334155;
}
.admin-btn-secondary:hover {
    background: #cbd5e1;
    color: #1e293b;
}
.admin-btn-danger {
    background: #dc2626;
    color: #fff;
}
.admin-btn-danger:hover {
    background: #b91c1c;
    color: #fff;
}
.admin-users-section {
    margin-bottom: 40px;
}
.admin-users-section:last-child {
    margin-bottom: 0;
}
.admin-users-section-title {
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}
.admin-users-section-desc {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #64748b;
}
.admin-users-search-info {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #64748b;
}
.admin-users-search-info a {
    color: #48b7e4;
    text-decoration: none;
}
.admin-users-search-info a:hover {
    text-decoration: underline;
}
.admin-users-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.admin-users-actions .admin-inline-form {
    margin: 0;
}

/* User dashboard: My Orders */
.orders-dashboard-subtitle {
    margin: 0 0 24px 0;
    font-size: 14px;
    color: #64748b;
}
.orders-tabs-wrap {
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}
.orders-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.orders-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}
.orders-tab:hover {
    color: #0d2137;
}
.orders-tab-active {
    color: #0d2137;
    border-bottom-color: #48b7e4;
}
.orders-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    font-size: 12px;
    font-weight: 600;
    background: #e2e8f0;
    color: #475569;
    border-radius: 11px;
}
.orders-tab-active .orders-tab-count {
    background: #48b7e4;
    color: #fff;
}
.orders-filter-bar {
    margin-bottom: 24px;
}
.orders-filter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.orders-filter-label {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}
.orders-filter-input {
    width: 140px;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
}
.orders-filter-input:focus {
    outline: none;
    border-color: #48b7e4;
}
.orders-filter-sep {
    color: #cbd5e1;
    font-weight: 300;
    padding: 0 4px;
}
.orders-filter-select {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    min-width: 130px;
}
.orders-filter-select:focus {
    outline: none;
    border-color: #48b7e4;
}
.orders-filter-btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #0d2137;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}
.orders-filter-btn:hover {
    background: #1a365d;
}
.orders-filter-clear {
    font-size: 14px;
    color: #48b7e4;
    text-decoration: none;
}
.orders-filter-clear:hover {
    text-decoration: underline;
}
.orders-empty {
    padding: 32px 24px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    text-align: center;
}
.orders-empty-text {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #475569;
}
.orders-empty-link {
    color: #48b7e4;
    text-decoration: none;
}
.orders-empty-link:hover {
    text-decoration: underline;
}
.orders-table-wrap {
    margin-bottom: 20px;
}
.orders-status-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: capitalize;
}
.orders-status-pending {
    background: #fef3c7;
    color: #92400e;
}
.orders-status-processing {
    background: #dbeafe;
    color: #1e40af;
}
.orders-status-shipped {
    background: #e0e7ff;
    color: #3730a3;
}
.orders-status-delivered {
    background: #d1fae5;
    color: #065f46;
}
.orders-status-cancelled {
    background: #fee2e2;
    color: #b91c1c;
}
.orders-view-btn {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #48b7e4;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s;
}
.orders-view-btn:hover {
    background: #3ba5d0;
    color: #fff;
}
.orders-pagination {
    margin-top: 16px;
}

.admin-order-update-box {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}
.admin-order-update-title {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}
.admin-order-update-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.admin-order-status-select {
    min-width: 180px;
}

/* Admin Order Show (detail) page */
.admin-order-show .admin-page-title {
    margin-bottom: 0;
}
.admin-order-show-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}
.admin-order-show-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}
.admin-order-show-overview-block {
    margin-bottom: 24px;
}
.admin-order-show-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}
.admin-order-show-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.admin-order-show-stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
}
.admin-order-show-stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #0d2137;
}
.admin-order-show-stat-meta {
    font-size: 13px;
    color: #64748b;
}
.admin-order-show-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
@media (max-width: 900px) {
    .admin-order-show-grid {
        grid-template-columns: 1fr;
    }
}
.admin-order-show-block {
    margin-bottom: 0;
}
.admin-order-show-dl {
    margin: 0;
}
.admin-order-show-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px 20px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    align-items: start;
}
.admin-order-show-row:last-child {
    border-bottom: none;
}
.admin-order-show-row dt {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}
.admin-order-show-row dd {
    margin: 0;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}
.admin-order-show-payment-status {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #475569;
}
.admin-order-show-payment-status .admin-badge {
    margin-left: 6px;
}
.admin-order-show-receipt-file {
    margin-bottom: 12px;
}
.admin-order-show-receipt-filename {
    font-size: 13px;
    color: #64748b;
    word-break: break-all;
}
.admin-order-show-receipt-preview {
    margin-bottom: 16px;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: auto;
}
.admin-order-show-receipt-img {
    max-width: 100%;
    width: auto;
    max-height: 320px;
    display: block;
    border-radius: 6px;
}
.admin-order-show-receipt-view-link {
    margin: 0 0 16px 0;
}
.admin-order-show-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.admin-order-show-actions .admin-inline-form {
    display: inline-block;
}
.admin-order-show-items-block {
    margin-bottom: 24px;
}
.admin-order-show-items-block .admin-order-show-section-title {
    margin-bottom: 12px;
}
.admin-order-show-update-label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}
.admin-order-update-box .admin-order-update-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

/* Admin Orders list: tabs and filters */
.admin-orders-subtitle {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #64748b;
}
.admin-orders-tabs-wrap {
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}
.admin-orders-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.admin-orders-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}
.admin-orders-tab:hover {
    color: #0d2137;
}
.admin-orders-tab-active {
    color: #0d2137;
    border-bottom-color: #48b7e4;
}
.admin-orders-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 600;
    background: #e2e8f0;
    color: #475569;
    border-radius: 10px;
}
.admin-orders-tab-active .admin-orders-tab-count {
    background: #48b7e4;
    color: #fff;
}
.admin-orders-filter-bar {
    margin-bottom: 20px;
}
.admin-orders-filter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.admin-orders-filter-label {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}
.admin-orders-filter-input {
    width: 140px;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
}
.admin-orders-filter-input:focus {
    outline: none;
    border-color: #48b7e4;
}
.admin-orders-filter-sep {
    color: #cbd5e1;
    font-weight: 300;
    padding: 0 4px;
}
.admin-orders-filter-select {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    min-width: 130px;
}
.admin-orders-filter-select:focus {
    outline: none;
    border-color: #48b7e4;
}
.admin-orders-filter-clear {
    font-size: 14px;
    color: #48b7e4;
    text-decoration: none;
}
.admin-orders-filter-clear:hover {
    text-decoration: underline;
}
.admin-orders-empty {
    padding: 28px 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    text-align: center;
}
.admin-orders-empty-text {
    margin: 0 0 8px 0;
    font-size: 15px;
    color: #475569;
}
.admin-orders-empty-link {
    color: #48b7e4;
    text-decoration: none;
}
.admin-orders-empty-link:hover {
    text-decoration: underline;
}
.admin-orders-status-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
}
.admin-orders-status-pending {
    background: #fef3c7;
    color: #92400e;
}
.admin-orders-status-processing {
    background: #dbeafe;
    color: #1e40af;
}
.admin-orders-status-shipped {
    background: #e0e7ff;
    color: #3730a3;
}
.admin-orders-status-delivered {
    background: #d1fae5;
    color: #065f46;
}
.admin-orders-status-cancelled {
    background: #fee2e2;
    color: #b91c1c;
}

.admin-alert {
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}
.admin-alert-success { background: #d1fae5; color: #065f46; }
.admin-alert-error { background: #fee2e2; color: #b91c1c; }
.admin-error-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 14px 18px;
    background: #fee2e2;
    color: #b91c1c;
    border-radius: 6px;
    font-size: 14px;
}
.admin-required { color: #b91c1c; }
.admin-text-muted { color: #64748b; font-weight: normal; }
.admin-pagination {
    margin-top: 20px;
}
.admin-pagination nav {
    display: block;
}
.admin-pagination nav ul.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.admin-pagination nav ul.pagination li {
    display: inline-block;
}
.admin-pagination nav ul.pagination a,
.admin-pagination nav ul.pagination span {
    display: inline-block;
    min-width: 36px;
    padding: 8px 12px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #334155;
    text-decoration: none;
    background: #fff;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.admin-pagination nav ul.pagination a:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}
.admin-pagination nav ul.pagination li.active span {
    background: #0d2137;
    border-color: #0d2137;
    color: #fff;
    font-weight: 600;
}
.admin-pagination nav ul.pagination li.disabled span {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
}

.admin-news-col-thumb {
    width: 72px;
}
.admin-news-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}
.admin-news-no-thumb {
    color: #94a3b8;
}
.admin-form-hint {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}
.admin-form-current-image {
    margin-bottom: 8px;
}
.admin-form-current-image img.admin-news-edit-thumb {
    max-width: 200px;
    height: auto;
    border-radius: 4px;
    display: block;
    margin-bottom: 4px;
}
.admin-form-current-image span {
    font-size: 13px;
    color: #64748b;
}
.admin-quill-wrap {
    min-height: 240px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}
.admin-quill-wrap .ql-editor {
    min-height: 220px;
}

/* ========== User Dashboard ========== */
.dashboard-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
}
.dashboard-welcome {
    font-size: 16px;
    color: #475569;
    margin-bottom: 24px;
}
.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}
.dashboard-link-card {
    display: inline-block;
    padding: 14px 24px;
    background: #f1f5f9;
    color: #1e293b;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.dashboard-link-card:hover {
    background: #e2e8f0;
    color: #0d2137;
}
.dashboard-link-admin {
    background: #0d2137;
    color: #fff;
}
.dashboard-link-admin:hover {
    background: #1a365d;
    color: #fff;
}
.dashboard-block {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.dashboard-block-title {
    font-size: 18px;
    margin-bottom: 4px;
    color: #333;
}
.dashboard-block-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}
.dashboard-orders-summary {
    margin-bottom: 16px;
}
.dashboard-orders-totals {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 13px;
    color: #64748b;
    margin: 0;
}
.dashboard-orders-totals strong {
    color: #1e293b;
}
.dashboard-link-more {
    display: inline-block;
    margin-top: 12px;
}
.dashboard-table-wrap {
    overflow-x: auto;
}
.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.dashboard-table th,
.dashboard-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.dashboard-table th {
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
}
.dashboard-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}
.dashboard-badge-pending { background: #fef3c7; color: #92400e; }
.dashboard-badge-quoted { background: #dbeafe; color: #1e40af; }
.dashboard-badge-ordered { background: #d1fae5; color: #065f46; }
.dashboard-badge-closed { background: #f1f5f9; color: #475569; }
.dashboard-back-link {
    margin-bottom: 16px;
    font-size: 15px;
}
.dashboard-back-link a {
    color: #1a365d;
    text-decoration: none;
    font-weight: 500;
}
.dashboard-back-link a:hover {
    text-decoration: underline;
}
.dashboard-empty {
    color: #64748b;
    padding: 16px 0;
}
.dashboard-link {
    color: #1a365d;
    font-weight: 600;
    text-decoration: none;
}
.dashboard-link:hover {
    text-decoration: underline;
}
.dashboard-pagination {
    margin-top: 16px;
}
.dashboard-pagination nav {
    display: block;
}
.dashboard-pagination nav ul.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.dashboard-pagination nav ul.pagination li {
    display: inline-block;
}
.dashboard-pagination nav ul.pagination a,
.dashboard-pagination nav ul.pagination span {
    display: inline-block;
    min-width: 36px;
    padding: 8px 12px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #334155;
    text-decoration: none;
    background: #fff;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.dashboard-pagination nav ul.pagination a:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}
.dashboard-pagination nav ul.pagination li.active span {
    background: #0d2137;
    border-color: #0d2137;
    color: #fff;
    font-weight: 600;
}
.dashboard-pagination nav ul.pagination li.disabled span {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
}
.dashboard-alert {
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}
.dashboard-alert-success { background: #d1fae5; color: #065f46; }
.dashboard-alert-error { background: #fee2e2; color: #b91c1c; }
.nav-admin-link {
    font-weight: 600;
}
@media (max-width: 768px) {
    .admin-wrap { flex-direction: column; }
    .admin-sidebar {
        width: 100%;
        min-width: 0;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 16px;
        gap: 8px;
    }
    .admin-sidebar-header { padding: 0 12px 12px; margin-bottom: 12px; }
    .admin-sidebar-nav { display: flex; flex-wrap: wrap; order: 1; width: 100%; }
    .admin-sidebar-footer { width: 100%; border-top: none; padding-top: 0; }
    .admin-main { padding: 20px 16px; }
    .admin-form-row { grid-template-columns: 1fr; }
    .admin-content-block { padding: 0; }
    .admin-page-title { font-size: 22px; }
    .admin-table-wrap { margin-left: -16px; margin-right: -16px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .admin-table { font-size: 13px; min-width: 560px; }
    .admin-table th,
    .admin-table td { padding: 10px 12px; }
    .dashboard-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .dashboard-table { min-width: 520px; font-size: 13px; }
    .dashboard-table th,
    .dashboard-table td { padding: 10px 12px; }
    .dashboard-link-card { padding: 16px 20px; font-size: 15px; }
    .dashboard-block { padding: 20px 16px; }
    .pricing-request-detail-table { font-size: 14px; }
    .pricing-request-detail-table th,
    .pricing-request-detail-table td { padding: 10px 12px; }
    .admin-topbar { padding: 0 16px; }
    .dashboard-back-link { margin-bottom: 12px; font-size: 14px; }
}

@media (max-width: 480px) {
    .admin-main { padding: 16px 12px; }
    .admin-content-block.pricing-requests-dashboard,
    .admin-content-block { padding: 0; }
    .admin-page-title { font-size: 20px; }
    .admin-table { min-width: 480px; }
    .admin-table th,
    .admin-table td { padding: 8px 10px; font-size: 12px; }
    .dashboard-table { min-width: 440px; font-size: 12px; }
    .dashboard-table th,
    .dashboard-table td { padding: 8px 10px; }
    .dashboard-link-card { padding: 14px 16px; font-size: 14px; }
    .dashboard-block { padding: 16px 12px; }
    .orders-dashboard-subtitle { font-size: 14px; }
    .admin-topbar { padding: 0 12px; height: 52px; }
    .admin-topbar-logo { font-size: 18px; }
    .pricing-request-add-to-cart .cart-qty-form { flex-wrap: wrap; gap: 8px; }
    .pricing-request-add-to-cart .cart-qty-input { max-width: 80px; }
    .btn-add-to-cart { padding: 8px 14px; font-size: 12px; }
    .dashboard-pagination nav ul.pagination a,
    .dashboard-pagination nav ul.pagination span { padding: 6px 10px; font-size: 12px; }
}
