/* --------------------------------------------------------------------------
   CENTRAL CORPORATE BRAND DESIGN SYSTEM SPECIFICATION VARIATION PROTOCOLS
   -------------------------------------------------------------------------- */
:root {
    --corporate-blue: #0b2545;
    --accent-navy: #134074;
    --crimson-red: #c1121f;
    --background-tint: #f8fafc;
    --text-slate-grey: #334155;
    --light-border-tint: #e2e8f0;
    --surface-white: #ffffff;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Base Initialization Metrics Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-tint);
    color: var(--text-slate-grey);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Master Component Framework Infrastructure Layouts */
.site-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 70px 0;
}

/* CARD SMOOTH STYLE RIG (Requested Rule 14 Implementation) */
.card-smooth-shadow {
    background: var(--surface-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-smooth);
}

.card-smooth-shadow:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

/* --------------------------------------------------------------------------
   STABLE ACTION PLATFORMS (Fixed Widgets Layouts with Tooltips Engine)
   -------------------------------------------------------------------------- */
.fixed-action-left {
    position: fixed;
    bottom: 30px;
    left: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.action-widget {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--surface-white);
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    position: relative;
    transition: var(--transition-smooth);
}

.action-widget:hover {
    transform: scale(1.15) rotate(10deg);
}

.whatsapp-color { background-color: #25d366; }
.call-color { background-color: #007bc4; }

/* Dynamic CSS Toolkit Native Tooltip Engine Implementation */
.action-widget::after, .scroll-to-top-widget::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 65px;
    background: #0f172a;
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.scroll-to-top-widget::after {
    left: auto;
    right: 65px;
}

.action-widget:hover::after, .scroll-to-top-widget:hover::after {
    opacity: 1;
}

.scroll-to-top-widget {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--corporate-blue);
    color: var(--surface-white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 9999;
    transition: var(--transition-smooth);
}

.scroll-to-top-widget.widget-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-widget:hover {
    background-color: var(--crimson-red);
    transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   BRAND NAVIGATION ROW PIPELINES (Header / Top Strip Config)
   -------------------------------------------------------------------------- */
.top-brand-strip {
    background-color: var(--surface-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--light-border-tint);
}

.strip-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-box-oc {
    background-color: var(--crimson-red);
    color: var(--surface-white);
    font-weight: 900;
    font-size: 24px;
    padding: 6px 14px;
    border-radius: 6px;
    letter-spacing: 1px;
}

.brand-name-group {
    display: flex;
    flex-direction: column;
}

.brand-main-text {
    color: var(--corporate-blue);
    font-weight: 800;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: 0;
}

.brand-sub-text {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}

.strip-directory-info {
    display: flex;
    gap: 30px;
}

.directory-node {
    display: flex;
    align-items: center;
    gap: 10px;
}

.directory-node i {
    color: var(--crimson-red);
    font-size: 20px;
}

.directory-node strong {
    display: block;
    color: var(--corporate-blue);
    font-size: 13px;
}

.directory-node p {
    color: #475569;
    font-size: 12px;
}

/* Master Header Navbar Integration Row */
.master-navigation-header {
    background-color: var(--corporate-blue);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.mobile-brand-display {
    display: none;
}

.mobile-header-action-cluster {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-header-login-trigger {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background-color: rgba(255,255,255,0.08);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mobile-header-login-trigger:hover {
    background-color: var(--crimson-red);
    border-color: var(--crimson-red);
}

.desktop-nav-inline-block {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    gap: 4px;
}

.d-nav-anchor,
.mega-trigger-btn {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    padding: 20px 10px;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.mega-trigger-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    height: 60px;
}

.d-nav-anchor:hover, .d-nav-anchor.active, .desktop-mega-shell:hover .mega-trigger-btn {
    color: var(--surface-white);
    background-color: rgba(255,255,255,0.08);
}

.desktop-mega-shell {
    position: static;
}

.desktop-mega-panel {
    position: absolute;
    top: 60px;
    left: 50%;
    width: min(1200px, calc(100vw - 44px));
    max-height: min(72vh, 650px);
    overflow-y: auto;
    transform: translateX(-50%) translateY(14px);
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-top: 4px solid var(--crimson-red);
    box-shadow: 0 24px 70px rgba(2, 6, 12, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1001;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.desktop-mega-shell:hover .desktop-mega-panel,
.desktop-mega-shell:focus-within .desktop-mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-grid-four-column {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px 42px;
    padding: 32px 36px 36px;
}

.compact-mega-panel {
    max-height: 360px;
}

.compact-grid {
    gap: 28px;
}

.blog-mega-panel {
    width: min(980px, calc(100vw - 44px));
    max-height: 430px;
}

.blog-menu-grid {
    gap: 18px;
}

.blog-layout-menu-card {
    background: #f8fafc;
    border: 1px solid var(--light-border-tint);
    border-radius: 8px;
    padding: 18px;
}

.blog-layout-menu-card h3 {
    margin-bottom: 12px;
}

.blog-layout-menu-card p {
    color: #64748b;
    font-size: 12.5px;
    line-height: 1.55;
    margin-top: 8px;
}

.mega-column-block h3 {
    color: #0f172a;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}

.mega-column-block a {
    color: #182235;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
}

.mega-column-block a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--crimson-red);
    flex: 0 0 auto;
    opacity: 0.45;
}

.mega-column-block a:hover {
    color: var(--crimson-red);
    transform: translateX(5px);
}

.d-nav-quote-trigger {
    background-color: var(--crimson-red);
    color: var(--surface-white);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition-smooth);
}

.d-nav-quote-trigger:hover {
    background-color: #a00f1a;
    transform: scale(1.04);
}

.hamburger-activation-trigger {
    display: none;
    color: var(--surface-white);
    font-size: 22px;
    cursor: pointer;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.hamburger-activation-trigger:hover {
    background-color: rgba(255,255,255,0.08);
}

/* --------------------------------------------------------------------------
   APP-STYLE LEFT MOBILE DRAWER CORE SYSTEM OVERRIDES (Requested Feature 2)
   -------------------------------------------------------------------------- */
.navigation-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: #051329;
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 5px 0 25px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.navigation-drawer.drawer-open {
    transform: translateX(0);
}

.drawer-header-panel {
    padding: 20px;
    background-color: var(--corporate-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.close-drawer-trigger {
    color: #94a3b8;
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-drawer-trigger:hover {
    color: var(--surface-white);
}

.drawer-links-stack {
    padding: 20px 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-accordion-menu-node {
    border-top: 1px solid rgba(255,255,255,0.04);
}

.mobile-submenu-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    color: #94a3b8;
    padding: 14px 25px 14px 21px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-left: 4px solid transparent;
    transition: var(--transition-smooth);
}

.mobile-submenu-trigger span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-submenu-trigger:hover,
.mobile-accordion-menu-node.submenu-open .mobile-submenu-trigger {
    color: #fff;
    background-color: rgba(255,255,255,0.04);
    border-left-color: var(--crimson-red);
}

.submenu-state-icon {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.mobile-submenu-panel {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(255,255,255,0.03);
    transition: max-height 0.32s ease;
}

.mobile-accordion-menu-node.submenu-open .mobile-submenu-panel {
    max-height: 420px;
}

.mobile-submenu-panel a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    padding: 10px 25px 10px 58px;
    font-size: 13.5px;
    font-weight: 600;
    border-left: 4px solid transparent;
    transition: var(--transition-smooth);
}

.mobile-submenu-panel a:hover {
    color: #fff;
    background-color: rgba(255,255,255,0.05);
}

.mobile-product-group {
    border-top: 1px solid rgba(255,255,255,0.05);
}

.product-mobile-group-trigger {
    width: 100%;
    border: 0;
    background: rgba(255,255,255,0.025);
    color: #e2e8f0;
    padding: 12px 14px 12px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.product-mobile-group-trigger:hover,
.mobile-product-group.product-group-open .product-mobile-group-trigger {
    color: #fff;
    background: rgba(193,18,31,0.16);
}

.product-group-icon {
    font-size: 12px;
    color: #fca5a5;
}

.product-mobile-link-panel {
    max-height: 0;
    overflow: hidden;
    background: rgba(2, 6, 12, 0.18);
    transition: max-height 0.28s ease;
}

.mobile-product-group.product-group-open .product-mobile-link-panel {
    max-height: 320px;
}

.product-mobile-link-panel a {
    padding-left: 56px;
    font-size: 13px;
}

.drawer-mobile-login-btn {
    margin: 18px 25px 0;
    color: #fff;
    background: linear-gradient(135deg, #134074, #c1121f);
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.drawer-link-item {
    color: #94a3b8;
    text-decoration: none;
    padding: 14px 25px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid transparent;
    transition: var(--transition-smooth);
}

.drawer-link-item:hover, .drawer-link-item.active {
    color: var(--surface-white);
    background-color: rgba(255,255,255,0.04);
    border-left-color: var(--crimson-red);
}

.drawer-quote-btn {
    margin: 20px 25px;
    background-color: var(--crimson-red);
    color: var(--surface-white);
    text-decoration: none;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ZERO BLUR BACKDROP CRITICAL FIX (Requested Rule 19 Engine Setup) */
.drawer-overlay-backdrop-shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6); /* Translucent dark cover only, no CSS filter blur */
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.drawer-overlay-backdrop-shadow.backdrop-visible {
    opacity: 1;
    visibility: visible;
}

/* Premium mobile drawer polish layer */
.navigation-drawer {
    width: 320px;
    max-width: 88vw;
    height: 100dvh;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(11,37,69,0.98), rgba(5,19,41,0.98)),
        radial-gradient(circle at top right, rgba(193,18,31,0.22), transparent 35%);
    box-shadow: 12px 0 42px rgba(2, 6, 12, 0.38);
}

.drawer-header-panel {
    padding: 18px 18px 16px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.drawer-links-stack {
    padding: 14px 12px 24px;
    gap: 8px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.35) rgba(255,255,255,0.08);
    padding-bottom: max(26px, env(safe-area-inset-bottom));
}

.drawer-link-item,
.mobile-accordion-menu-node {
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 9px;
    background: rgba(255,255,255,0.035);
    /*overflow: hidden;*/
}

.drawer-link-item {
    color: #d7e0ec;
    padding: 13px 14px;
    font-weight: 700;
}

.drawer-link-item:hover,
.drawer-link-item.active {
    background-color: rgba(255,255,255,0.09);
    transform: translateX(3px);
}

.mobile-submenu-trigger {
    color: #d7e0ec;
    padding: 13px 14px 13px 10px;
}

.mobile-submenu-trigger:hover,
.mobile-accordion-menu-node.submenu-open .mobile-submenu-trigger {
    background-color: rgba(255,255,255,0.09);
}

.mobile-submenu-panel {
    background-color: rgba(2, 6, 12, 0.2);
}

.mobile-accordion-menu-node.submenu-open > .mobile-submenu-panel {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-accordion-menu-node.product-menu-node.submenu-open > .mobile-submenu-panel {
    max-height: min(58vh, 430px);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.35) rgba(255,255,255,0.08);
}

.mobile-submenu-panel a {
    padding: 11px 14px 11px 45px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-left: 0;
}

.drawer-mobile-login-btn,
.drawer-quote-btn {
    margin: 8px 0 0;
    border-radius: 9px;
}

.navigation-drawer .mobile-accordion-menu-node.submenu-open:not(.product-menu-node) > .mobile-submenu-panel {
    max-height: min(48vh, 420px);
}


/* ADVANTAGES VERTICAL  SINGLE MENU - FIXED */
.advantages-mega-shell { position: relative; }
.advantages-dropdown-panel {
position: absolute;
top: 100%;
left: 0;
min-width: 260px;
background: #ffffff;
box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.2);
border-top: 3px solid #c1121f;
border-radius: 0 0 12px 12px;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.2s ease;
transform: translateY(-5px);
z-index: 10000;
}

.advantages-mega-shell:hover .advantages-dropdown-panel {
opacity: 1;
visibility: visible;
pointer-events: auto;
transform: translateY(0);
}

.advantages-vertical-menu {
display: flex !important;
flex-direction: column !important;
padding: 8px 0;
margin: 0;
list-style: none;
}

.advantages-menu-item {
display: flex !important;
align-items: center;
gap: 12px;
padding: 12px 20px !important;
color: #1e293b !important;
text-decoration: none !important;
font-weight: 600;
font-size: 14px;
border-bottom: 1px solid #eef2f6;
transition: all 0.2s ease;
background: #ffffff;
}

.advantages-menu-item:last-child {border-bottom: none;}
.advantages-menu-item i {width: 24px; color: #c1121f; font-size: 15px; text-align: center;}
.advantages-menu-item:hover {background: #f8fafc !important; color: #c1121f !important; padding-left: 26px !important;}
.advantages-menu-item:hover i { color: #c1121f; }
@media (max-width: 991px) {
.advantages-dropdown-panel { left: auto; right: 0; }
}

/* --------------------------------------------------------------------------
   IMAGE-ONLY CAROUSEL VIEWPORT (Requested Controls Rules)
   -------------------------------------------------------------------------- */
.hero-slider-carousel-viewport {
    height: clamp(430px, 42vw, 620px);
    position: relative;
    overflow: hidden;
    background-color: #000;
    padding: 0;
    margin: 0;
}

.carousel-track-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide-node {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s ease;
    z-index: 1;
}

.carousel-slide-node::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 11, 20, 0.08) 0%, rgba(5, 11, 20, 0.1) 65%, rgba(5, 11, 20, 0.42) 100%);
}

.carousel-slide-node.active-slide {
    opacity: 1;
    transform: scale(1.01);
    z-index: 2;
}

/* Navigation Arrows Hidden Default State (Desktop Hover Active) */
.carousel-hardware-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background-color: rgba(15, 23, 42, 0.6);
    color: var(--surface-white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
}

.hero-slider-carousel-viewport:hover .carousel-hardware-arrow {
    opacity: 1;
    visibility: visible;
}

.arrow-left-direction { left: 30px; }
.arrow-right-direction { right: 30px; }

.carousel-hardware-arrow:hover {
    background-color: var(--crimson-red);
    transform: translateY(-50%) scale(1.06);
}

.carousel-manual-indicators-row {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.indicator-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator-dot.active-dot {
    background-color: var(--crimson-red);
    width: 28px;
    border-radius: 6px;
}

/* --------------------------------------------------------------------------
   ABOUT SECTION LAYOUT ASYMMETRICAL BLOCKS
   -------------------------------------------------------------------------- */
.about-asymmetrical-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.about-narrative-card {
    padding: 40px;
}

.universal-section-accent-badge {
    color: var(--crimson-red);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.universal-section-main-heading {
    color: var(--corporate-blue);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-para-text {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-inline-points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inline-point-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.inline-point-item i {
    color: var(--crimson-red);
    font-size: 16px;
}

.inline-point-item p {
    font-weight: 700;
    color: var(--corporate-blue);
    font-size: 14px;
}

.about-interactive-multicard-layout {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stats-mini-informer-card {
    padding: 30px;
    border-radius: 12px;
    background: var(--surface-white);
    border: 1px solid var(--light-border-tint);
}

.active-border-highlight {
    border-left: 5px solid var(--crimson-red);
}

.informer-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background-color: rgba(193, 18, 31, 0.1);
    color: var(--crimson-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.stats-mini-informer-card h3 {
    color: var(--corporate-blue);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.stats-mini-informer-card p {
    color: #64748b;
    font-size: 13.5px;
    line-height: 1.6;
}

/* Centered Layout Header Framework Blocks */
.centered-heading-module {
    text-align: center;
    margin-bottom: 50px;
}

.centered-heading-module h2 {
    color: var(--corporate-blue);
    font-size: 32px;
    font-weight: 800;
}

.centered-badge-underline {
    width: 70px;
    height: 4px;
    background-color: var(--crimson-red);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* --------------------------------------------------------------------------
   WHY CHOOSE US SYSTEM BACKGROUND WITH GLASS LAYOUTS
   -------------------------------------------------------------------------- */
.why-choose-tint-background {
    background-color: #f1f5f9;
}

.why-choose-cards-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage-glass-card {
    padding: 35px 25px;
    background: var(--surface-white);
    text-align: center;
}

.advantage-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--corporate-blue);
    color: var(--surface-white);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.advantage-glass-card:hover .advantage-icon-wrapper {
    background-color: var(--crimson-red);
    transform: rotateY(360deg);
}

.advantage-glass-card h3 {
    color: var(--corporate-blue);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
}

.advantage-glass-card p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   INDUSTRIES WE SERVE MATRIX (Requested Setup Mapping Image Elements)
   -------------------------------------------------------------------------- */
.industries-serve-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.industries-header-flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    border-bottom: 3px solid var(--light-border-tint);
    padding-bottom: 15px;
}

.industries-section-title {
    color: #0f172a;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0;
}

.industries-call-now-action-btn {
    background-color: #b30000;
    color: var(--surface-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.industries-call-now-action-btn:hover {
    background-color: #800000;
}

.industries-graphics-quad-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-structural-show-card {
    background: var(--surface-white);
    padding: 12px;
    border-radius: 4px;
}

.industry-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.industry-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.industry-structural-show-card:hover .industry-image-wrapper img {
    transform: scale(1.08);
}

.industry-caption-title-box {
    padding-top: 15px;
    padding-bottom: 5px;
    color: #0f172a;
    font-weight: 800;
    font-size: 13.5px;
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   PRODUCT FLIP SECTOR ENGINE SETUP
   -------------------------------------------------------------------------- */
.products-flip-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-flip-card-node {
    background-color: transparent;
    height: 380px;
    perspective: 1000px;
}

.flip-card-inner-transformer {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.product-flip-card-node:hover .flip-card-inner-transformer {
    transform: rotateY(180deg);
}

.flip-card-front-face, .flip-card-back-face {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.flip-card-front-face {
    background-color: #bbb;
}

.flip-card-front-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.front-face-title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(11,37,69,0.95));
    color: var(--surface-white);
    padding: 25px 15px 15px;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

.flip-card-back-face {
    background-color: var(--corporate-blue);
    color: var(--surface-white);
    transform: rotateY(180deg);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.flip-card-back-face h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.flip-card-back-face p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.flip-card-spec-list {
    list-style: none;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    margin-bottom: 20px;
}

.flip-card-spec-list li {
    font-size: 12.5px;
    margin-bottom: 6px;
    color: #cbd5e1;
}

.flip-card-action-btn {
    background-color: var(--crimson-red);
    color: var(--surface-white);
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.flip-card-action-btn:hover {
    background-color: #900d16;
}

/* --------------------------------------------------------------------------
   VIDEO PRODUCTION WALKTHROUGH EMBED CONTAINER (Requested Setup Rule 21)
   -------------------------------------------------------------------------- */
.video-showcase-container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.video-player-frame-surface {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    line-height: 0;
}

.video-player-frame-surface video {
    width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   LIGHTBOX GRID MEDIA SECTOR FRAME
   -------------------------------------------------------------------------- */
.gallery-asymmetrical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-media-frame-card {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-media-frame-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.frame-hover-reveal-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 37, 69, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--surface-white);
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 20px;
    text-align: center;
}

.gallery-media-frame-card:hover .frame-hover-reveal-panel {
    opacity: 1;
}

.frame-hover-reveal-panel i {
    font-size: 26px;
    margin-bottom: 10px;
}

/* Lightbox Modal Backdrop Render Layout Overlay */
.lightbox-backdrop-blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-content-envelope {
    position: relative;
    max-width: 80%;
    max-height: 80%;
}

.lightbox-content-envelope img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-terminate-cross {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}

.lightbox-control-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 30px;
    cursor: pointer;
    padding: 20px;
    z-index: 20002;
    transition: var(--transition-smooth);
}

.lightbox-control-arrow:hover { color: #fff; }
.position-left { left: 40px; }
.position-right { right: 40px; }

.lightbox-meta-panel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    color: #fff;
}

.lightbox-action-share-btn {
    background-color: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.lightbox-action-share-btn:hover { background-color: var(--crimson-red); }

/* --------------------------------------------------------------------------
   NUMERICAL COUNTER DATA RUNTIME MODULE STRIP
   -------------------------------------------------------------------------- */
.metric-counter-banner-strip {
    background-color: var(--corporate-blue);
    padding: 50px 0;
}

.metric-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metric-numerical-card {
    text-align: center;
    color: var(--surface-white);
}

.metric-digit {
    font-size: 42px;
    font-weight: 900;
    color: var(--surface-white);
    line-height: 1.1;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   BLOG MODULE ARCHITECTURES GRID AND ACTIVE PAGINATION OVERLAY FLOW
   -------------------------------------------------------------------------- */
.single-blog-showcase-section {
    padding-top: 70px;
    padding-bottom: 35px;
}

.single-blog-reader-shell {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    overflow: hidden;
    border-radius: 8px;
}

.single-blog-feature-media {
    min-height: 380px;
    background: #e2e8f0;
}

.single-blog-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-blog-content-panel {
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-blog-content-panel h2 {
    color: var(--corporate-blue);
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.16;
    font-weight: 900;
    margin-bottom: 18px;
}

.single-blog-content-panel p {
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.single-blog-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.single-blog-meta-row span {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid var(--light-border-tint);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 12.5px;
    font-weight: 700;
}

.single-blog-meta-row i {
    color: var(--crimson-red);
    margin-right: 5px;
}

.single-blog-read-btn {
    align-self: flex-start;
    background: var(--crimson-red);
    color: #fff;
    border: 0;
    border-radius: 7px;
    padding: 13px 18px;
    font-size: 13.5px;
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.single-blog-read-btn:hover {
    background: #9d0f19;
    transform: translateY(-3px);
}

.blog-pagination-page-wrapper {
    display: none;
}

.blog-pagination-page-wrapper.active-page-node {
    display: block;
    animation: fadeInPage 0.4s ease-in-out forwards;
}

@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.blog-desktop-four-column-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.blog-grid-article-card {
    cursor: pointer;
}

.article-thumbnail-box {
    width: 100%;
    height: 170px;
    overflow: hidden;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    background-color: #cbd5e1;
}

.article-thumbnail-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-grid-article-card:hover .article-thumbnail-box img {
    transform: scale(1.06);
}

.article-metadata-content-pad {
    padding: 20px;
}

.article-date-stamp {
    font-size: 11px;
    font-weight: 700;
    color: var(--crimson-red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.article-metadata-content-pad h3 {
    color: var(--corporate-blue);
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    height: 42px;
    overflow: hidden;
}

.article-metadata-content-pad p {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 15px;
}

.article-expand-anchor {
    font-size: 12px;
    font-weight: 700;
    color: var(--crimson-red);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Pagination Control UI Elements Link Strips */
.pagination-controls-navigation-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-arrow-btn {
    background: var(--surface-white);
    border: 1px solid var(--light-border-tint);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    color: var(--corporate-blue);
    transition: var(--transition-smooth);
}

.pagination-arrow-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numeric-bullet {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid var(--light-border-tint);
    background: var(--surface-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--corporate-blue);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pagination-numeric-bullet.active-bullet, .pagination-numeric-bullet:hover {
    background-color: var(--crimson-red);
    color: var(--surface-white);
    border-color: var(--crimson-red);
}

/* Single Blog Expansion Layout Overlay Box Component */
.blog-overlay-reader-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.75);
    z-index: 20000;
    display: none;
}

.blog-reader-card-surface-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 650px;
    background-color: var(--surface-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.blog-reader-close-cross {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #64748b;
}

.sidebar-blog-layout-section {
    padding-top: 35px;
}

.sidebar-blog-grid-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.sidebar-blog-main-list {
    display: grid;
    gap: 18px;
}

.sidebar-blog-row-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 20px;
    padding: 16px;
    border-radius: 8px;
}

.sidebar-blog-row-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
}

.sidebar-blog-row-card span {
    color: var(--crimson-red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sidebar-blog-row-card h3 {
    color: var(--corporate-blue);
    font-size: 21px;
    line-height: 1.25;
    margin: 8px 0 10px;
}

.sidebar-blog-row-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.sidebar-blog-aside-card {
    padding: 24px;
    border-radius: 8px;
    position: sticky;
    top: 84px;
}

.sidebar-blog-aside-card h3 {
    color: var(--corporate-blue);
    font-size: 20px;
    margin-bottom: 16px;
}

.sidebar-blog-aside-card a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 14px;
    font-weight: 700;
}

.sidebar-blog-aside-card a i {
    color: var(--crimson-red);
}

.sidebar-support-box {
    margin-top: 18px;
    padding: 16px;
    border-radius: 8px;
    background: #f8fafc;
    border-left: 4px solid var(--crimson-red);
}

.sidebar-support-box strong {
    color: var(--corporate-blue);
}

.sidebar-support-box p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
    margin-top: 6px;
}

/* --------------------------------------------------------------------------
   FAQ SECTION ACCORDION MATRIX SLIDERS
   -------------------------------------------------------------------------- */
.faq-accordion-stack-panel {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-collapsible-node-card {
    overflow: hidden;
}

.faq-clickable-header-trigger {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--surface-white);
}

.faq-clickable-header-trigger h4 {
    color: var(--corporate-blue);
    font-size: 16px;
    font-weight: 700;
}

.faq-node-plus-minus-indicator {
    color: var(--crimson-red);
    font-size: 14px;
}

.faq-hidden-text-slide-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--surface-white);
}

.faq-collapsible-node-card.accordion-active .faq-hidden-text-slide-panel {
    max-height: 200px; /* Secure threshold constraint */
}

.faq-hidden-text-slide-panel p {
    padding: 0 30px 25px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
}

/* --------------------------------------------------------------------------
   CONTACT FORM ENTRY CHANNELS WITH GOOGLE IFRAME
   -------------------------------------------------------------------------- */
.contact-form-section-bg {
    background: transparent;
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-split-asymmetrical-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: start;
}

.contact-textual-guidelines h2 {
    color: var(--corporate-blue);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-textual-guidelines p {
    color: #475569;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-fast-link-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.fast-link-badge-card {
    background-color: var(--surface-white);
    border: 1px solid var(--light-border-tint);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.fast-link-badge-card i {
    color: var(--crimson-red);
    font-size: 20px;
}

.fast-link-badge-card p {
    margin: 0;
    color: var(--corporate-blue);
    font-weight: 700;
    font-size: 15px;
}

/* Google Map Integration Styling Framework (Requested Setup Rule 22) */
.google-map-iframe-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

.google-map-iframe-container iframe {
    display: block;
}

.contact-interactive-form-surface-card {
    padding: 40px;
}

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

.form-dual-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.heavy-production-form input, .heavy-production-form textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: #f8fafc;
    border: 1px solid var(--light-border-tint);
    border-radius: 6px;
    font-size: 14px;
    color: var(--corporate-blue);
    outline: none;
}

.heavy-production-form input:focus, .heavy-production-form textarea:focus {
    border-color: var(--crimson-red);
}

.form-submit-heavy-btn {
    background-color: var(--crimson-red);
    color: var(--surface-white);
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.form-submit-heavy-btn:hover {
    background-color: #9d0f19;
}

/* --------------------------------------------------------------------------
   PRE-FOOTER DEPLOYMENT CTA PLACED OUTSIDE FOOTER
   -------------------------------------------------------------------------- */
.pre-footer-deployment-cta {
    background:
        linear-gradient(135deg, rgba(248,250,252,0.98), rgba(226,232,240,0.9)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1600") center/cover;
    padding: 48px 0;
}

.deployment-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(226,232,240,0.95);
    border-left: 6px solid var(--crimson-red);
    border-radius: 8px;
    padding: 34px;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
}

.deployment-copy-block h2 {
    color: var(--corporate-blue);
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 12px;
}

.deployment-copy-block p {
    color: #475569;
    max-width: 720px;
    font-size: 15.5px;
    line-height: 1.65;
}

.deployment-action-cluster {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.deployment-primary-link,
.deployment-secondary-link {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 8px;
    padding: 13px 18px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.deployment-primary-link {
    background: var(--crimson-red);
    color: #fff;
}

.deployment-secondary-link {
    background: var(--corporate-blue);
    color: #fff;
}

.deployment-primary-link:hover,
.deployment-secondary-link:hover {
    transform: translateY(-4px);
    filter: brightness(1.08);
}

/* --------------------------------------------------------------------------
   INNER CONTACT PAGE AND BREADCRUMB SYSTEM
   -------------------------------------------------------------------------- */
.mobile-brand-link {
    text-decoration: none;
}

.contact-page-desktop-nav {
    justify-content: center;
    gap: 18px;
}

.inner-page-hero-breadcrumb {
    padding: 58px 0 64px;
    background:
        linear-gradient(90deg, rgba(5, 19, 41, 0.94), rgba(11, 37, 69, 0.82)),
        url("https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1600") center/cover;
    color: #fff;
}

.breadcrumb-chain {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 800;
}

.breadcrumb-chain a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-chain span {
    color: #cbd5e1;
}

.inner-page-hero-breadcrumb h1 {
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 14px;
}

.inner-page-hero-breadcrumb p {
    max-width: 720px;
    color: #dbeafe;
    font-size: 16px;
    line-height: 1.7;
}

.contact-page-info-section {
    padding-top: 54px;
    padding-bottom: 22px;
}

.contact-page-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.contact-info-card {
    padding: 28px;
    border-radius: 8px;
}

.contact-info-card > i {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: rgba(193, 18, 31, 0.1);
    color: var(--crimson-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.contact-info-card h3 {
    color: var(--corporate-blue);
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
}

.contact-page-form-band {
    padding-top: 48px;
}

.site-logo-img {
    width: 72px;
    max-height: 54px;
    object-fit: contain;
}

.footer-logo-img {
    width: 58px;
    max-height: 44px;
    object-fit: contain;
}

.content-page-section {
    padding: 62px 0;
}

.content-card-pad {
    padding: 34px;
    border-radius: 8px;
}

.content-card-pad h2,
.content-card-pad h3 {
    color: var(--corporate-blue);
    margin-bottom: 14px;
}

.content-card-pad p,
.content-card-pad li {
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
}

.content-card-pad ul {
    padding-left: 20px;
    margin-top: 12px;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.photo-gallery-grid img,
.video-gallery-frame video,
.video-gallery-frame iframe {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.photo-gallery-grid img {
    height: 220px;
    object-fit: cover;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.video-gallery-frame {
    padding: 14px;
    border-radius: 8px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.blog-detail-article img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 24px;
}

.blog-detail-article h1 {
    color: var(--corporate-blue);
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.12;
    margin-bottom: 16px;
}

.blog-detail-article p {
    color: #475569;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 18px;
}

@media (max-width: 1100px) {
    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-detail-layout,
    .video-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   SOVEREIGN 4-COLUMN FOOTER METRICS ENGINE (Requested Feature 16 Setup)
   -------------------------------------------------------------------------- */
.enterprise-master-footer {
    background-color: #050b14;
    color: #94a3b8;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-four-column-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column-card h4 {
    color: var(--surface-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-column-card h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--crimson-red);
}

.footer-text-pitch {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Colorful Social Links (Requested Setup Rule 16) */
.footer-colorful-social-media-strip {
    display: flex;
    gap: 12px;
}

.social-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.fb-brand-color { background-color: #3b5998; }
.linkedin-brand-color { background-color: #0077b5; }
.twitter-brand-color { background-color: #1da1f2; }
.youtube-brand-color { background-color: #ff0000; }

.social-icon-box:hover {
    transform: translateY(-4px) scale(1.08);
    filter: brightness(1.15);
}

.footer-directional-links-stack {
    list-style: none;
}

.footer-directional-links-stack li {
    margin-bottom: 12px;
}

.footer-directional-links-stack a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13.5px;
    transition: var(--transition-smooth);
}

.footer-directional-links-stack a:hover {
    color: var(--surface-white);
    padding-left: 5px;
}

.footer-directory-para-item {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-directory-para-item i {
    margin-top: 3px;
}

.footer-sovereign-legal-bar {
    background-color: #02060c;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
    font-size: 12.5px;
}

.legal-inner-split-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --------------------------------------------------------------------------
   UNIVERSAL CONTROL POPUP TRIGGER SYSTEM MODALS
   -------------------------------------------------------------------------- */
.universal-system-modal-backdrop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 11, 20, 0.8);
    z-index: 30000;
    display: none;
    align-items: center;
    justify-content: center;
}

.universal-modal-surface-card {
    background-color: var(--surface-white);
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.modal-dynamic-header-strip {
    background-color: var(--corporate-blue);
    padding: 16px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.modal-dynamic-header-strip h3 { font-size: 16px; font-weight: 700; }
.universal-modal-dismiss-cross { font-size: 24px; cursor: pointer; }

.modal-dynamic-body-pad {
    padding: 25px;
}

.modal-dynamic-body-pad p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.universal-modal-close-confirm-btn {
    background-color: var(--corporate-blue);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
}

/* --------------------------------------------------------------------------
   COMPREHENSIVE RESPONSIVE SCREEN REALLOCATION CONTROLLERS (Media Queries)
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
    .why-choose-cards-matrix, .industries-graphics-quad-grid, .blog-desktop-four-column-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-page-info-grid {
        grid-template-columns: 1fr 1fr;
    }
    .single-blog-reader-shell,
    .sidebar-blog-grid-layout {
        grid-template-columns: 1fr;
    }
    .sidebar-blog-aside-card {
        position: static;
    }
    .d-nav-anchor,
    .mega-trigger-btn,
    .d-nav-quote-trigger {
        font-size: 12px;
    }
    .d-nav-anchor,
    .mega-trigger-btn {
        padding-left: 7px;
        padding-right: 7px;
    }
    .desktop-nav-inline-block {
        gap: 2px;
    }
    .footer-four-column-grid-layout {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (min-width: 992px) {
    /* Hard code override layer loop logic configuration to prevent mobile strip leaks */
    .navigation-drawer {
        display: none !important;
    }
    .drawer-overlay-backdrop-shadow {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .top-brand-strip { display: none; }
    .desktop-nav-inline-block { display: none; }
    .mobile-header-action-cluster { display: flex; }
    .mobile-header-login-trigger { display: flex; }
    .hamburger-activation-trigger { display: flex; }
    .navbar-action-row { height: 58px; }
    
    .mobile-brand-display {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--surface-white);
        font-weight: 800;
        font-size: 16px;
    }
    
    .brand-box-oc-mini {
        background-color: var(--crimson-red);
        font-size: 14px;
        padding: 3px 8px;
        border-radius: 4px;
    }

    .about-asymmetrical-split-grid, .products-flip-cards-grid, .contact-split-asymmetrical-grid {
        grid-template-columns: 1fr;
    }
    .about-narrative-card { padding: 25px; }
    .hero-slider-carousel-viewport {
        height: 430px;
    }
    .carousel-hardware-arrow {
        opacity: 1;
        visibility: visible;
        width: 44px;
        height: 44px;
    }
    .arrow-left-direction { left: 14px; }
    .arrow-right-direction { right: 14px; }
    .deployment-cta-inner {
        grid-template-columns: 1fr;
    }
    .deployment-action-cluster {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .why-choose-cards-matrix, .industries-graphics-quad-grid, .blog-desktop-four-column-grid, .gallery-asymmetrical-grid, .footer-four-column-grid-layout, .metric-strip-grid, .contact-page-info-grid {
        grid-template-columns: 1fr;
    }
    .form-dual-input-row {
        grid-template-columns: 1fr;
    }
    .hero-slider-carousel-viewport { height: 150px; }
    .carousel-hardware-arrow {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
    .carousel-manual-indicators-row {
        bottom: 16px;
    }
    .navigation-drawer {
        width: min(88vw, 330px);
    }
    .product-mobile-group-trigger {
        padding-left: 34px;
    }
    .product-mobile-link-panel a {
        padding-left: 46px;
    }
    .inner-page-hero-breadcrumb {
        padding: 42px 0 48px;
    }
    .contact-info-card {
        padding: 22px;
    }
    .drawer-header-panel .brand-box-oc {
        font-size: 18px;
        padding: 5px 10px;
    }
    .single-blog-content-panel {
        padding: 24px;
    }
    .single-blog-feature-media {
        min-height: 230px;
    }
    .single-blog-meta-row {
        flex-direction: column;
    }
    .single-blog-read-btn {
        width: 100%;
    }
    .sidebar-blog-row-card {
        grid-template-columns: 1fr;
    }
    .sidebar-blog-row-card img {
        height: 190px;
    }
    .deployment-cta-inner {
        padding: 24px;
    }
    .deployment-action-cluster,
    .deployment-primary-link,
    .deployment-secondary-link {
        width: 100%;
    }
    .legal-inner-split-row { flex-direction: column; gap: 10px; text-align: center; }
}



.success-section{
    width:100%;
    padding:0;
    background:#111;
}

.success-box{
    width:100%;
    padding:100px 40px;
    text-align:center;
    background:#ffffff;
    border-top:10px solid #bd1014;
    box-shadow:0 0 40px rgba(0,0,0,0.5);
}

.success-icon{
    font-size:85px;
    color:#bd1014;
    margin-bottom:20px;
}

.success-box h2{
    font-size:40px;
    font-weight:800;
    color:#111;
    margin-bottom:10px;
}

.success-subtitle{
    font-size:22px;
    color:#bd1014;
    font-weight:600;
    margin-bottom:25px;
}

.success-box p{
    font-size:17px;
    color:#444;
    line-height:30px;
    margin-bottom:15px;
}

.success-info{
    margin:30px auto;
    max-width:600px;
    text-align:left;
    background:#f8f8f8;
    padding:20px 25px;
    border-left:5px solid #bd1014;
}

.success-info ul{
    margin:0;
    padding-left:18px;
}

.success-info li{
    margin-bottom:8px;
    color:#222;
    font-size:15px;
}

.success-footer-text{
    margin-top:20px;
    font-weight:500;
    color:#555;
}

.success-btn{
    display:inline-block;
    margin-top:30px;
    padding:15px 45px;
    background:#111;
    color:#fff !important;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    border:2px solid #111;
    transition:0.3s ease;
}

.success-btn:hover{
    background:#bd1014;
    border-color:#bd1014;
}


.quote-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.7);
    z-index:99999;
    overflow:auto;
}

.quote-modal-content{
    background:#fff;
    width:90%;
    max-width:700px;
    margin:50px auto;
    padding:30px;
    border-radius:12px;
    position:relative;
}

.quote-close{
    position:absolute;
    right:15px;
    top:10px;
    font-size:30px;
    cursor:pointer;
}

#captchaDisplay{
    background:#f3f3f3;
    font-weight:700;
    text-align:center;
}





 .terms-banner h1 {
            color: #fff;
            font-size: 55px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .terms-banner p {
            color: #ddd;
            font-size: 18px;
            margin: 0;
        }

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

        .terms-box {
            background: #fff;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
        }

        .terms-intro {
            font-size: 17px;
            line-height: 32px;
            color: #555;
            margin-bottom: 35px;
        }

        .terms-box h2 {
            font-size: 28px;
            color: #111;
            font-weight: 700;
            margin-top: 35px;
            margin-bottom: 15px;
            position: relative;
            padding-left: 18px;
        }

        .terms-box h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            width: 5px;
            height: 30px;
            background: #bb0b0b;
            border-radius: 10px;
        }

        .terms-box p {
            font-size: 16px;
            color: #555;
            line-height: 30px;
            margin-bottom: 18px;
        }

        .terms-box ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .terms-box ul li {
            font-size: 16px;
            color: #555;
            line-height: 30px;
            margin-bottom: 10px;
        }

        .highlight-box {
            background: #fff4f4;
            border-left: 5px solid #bb0b0b;
            padding: 25px;
            border-radius: 8px;
            margin-top: 40px;
        }

        .highlight-box p {
            margin: 0;
            color: #222;
            font-weight: 500;
            line-height: 30px;
        }

        .contact-box {
            background: #fafafa;
            padding: 25px;
            border-radius: 10px;
            margin-top: 20px;
        }

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

        .contact-box li {
            margin-bottom: 10px;
        }

        @media(max-width:768px) {

            .terms-banner {
                padding: 90px 0;
            }

            .terms-banner h1 {
                font-size: 38px;
            }

            .terms-banner p {
                font-size: 15px;
            }

            .terms-section {
                padding: 50px 0;
            }

            .terms-box {
                padding: 25px;
            }

            .terms-box h2 {
                font-size: 22px;
            }

            .terms-box p,
            .terms-box ul li {
                font-size: 15px;
                line-height: 28px;
            }
        }
        
        
        
        
        
 body { background: #f4f7fb; } .service-banner { position: relative; background: linear-gradient(rgba(6, 12, 24, 0.82), rgba(6, 12, 24, 0.82)), url('assets/image/breadcrumb-bg.jpg'); background-size: cover; background-position: center; padding: 50px 0 50px; overflow: hidden; } .service-banner::before { content: ""; position: absolute; width: 340px; height: 340px; background: rgba(255, 255, 255, 0.05); border-radius: 50%; top: -100px; right: -90px; } .service-banner::after { content: ""; position: absolute; width: 240px; height: 240px; background: rgba(255, 255, 255, 0.04); border-radius: 50%; bottom: -70px; left: -70px; } .service-banner .container { position: relative; z-index: 2; text-align: center; } .service-banner h1 { color: #fff; font-size: 60px; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; } .service-banner p { color: #ddd; font-size: 18px; line-height: 32px; max-width: 720px; margin: auto; } .service-section { padding: 90px 0; } .service-box { background: #fff; border-radius: 22px; padding: 60px; position: relative; overflow: hidden; box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08); } .service-box::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 8px; background: linear-gradient(90deg, #bb0b0b, #ff3b3b); } .intro-box { background: #fafafa; border-left: 5px solid #bb0b0b; padding: 30px; border-radius: 12px; margin-bottom: 45px; } .intro-box p { margin: 0; font-size: 17px; line-height: 34px; color: #555; } .service-block { margin-bottom: 40px; padding-bottom: 35px; border-bottom: 1px solid #ececec; } .service-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .service-block h2 { font-size: 30px; font-weight: 700; color: #111; margin-bottom: 20px; padding-left: 22px; position: relative; } .service-block h2::before { content: ""; position: absolute; left: 0; top: 5px; width: 6px; height: 34px; border-radius: 10px; background: #bb0b0b; } .service-block p { font-size: 16px; line-height: 31px; color: #555; margin-bottom: 18px; } .service-list { list-style: none; padding-left: 0; margin: 0; } .service-list li { position: relative; padding-left: 32px; margin-bottom: 14px; color: #555; line-height: 30px; font-size: 16px; } .service-list li::before { content: "\f00c"; font-family: FontAwesome; position: absolute; left: 0; top: 0; color: #bb0b0b; font-size: 15px; } .contact-box { margin-top: 50px; background: #f8f8f8; border-radius: 18px; padding: 35px; } .contact-box h3 { font-size: 28px; font-weight: 700; margin-bottom: 20px; color: #111; } .contact-box ul { list-style: none; padding-left: 0; margin: 0; } .contact-box ul li { font-size: 16px; margin-bottom: 14px; color: #555; } .contact-box ul li strong { color: #111; } .notice-box { margin-top: 45px; background: linear-gradient(135deg, #bb0b0b, #e61d1d); padding: 35px; border-radius: 16px; text-align: center; box-shadow: 0 12px 35px rgba(187, 11, 11, 0.25); } .notice-box p { color: #fff; font-size: 18px; line-height: 34px; margin: 0; font-weight: 500; } @media(max-width:991px) { .service-banner { padding: 120px 0 90px; } .service-banner h1 { font-size: 46px; } .service-box { padding: 40px; } } @media(max-width:768px) { .service-banner { padding: 90px 0 70px; } .service-banner h1 { font-size: 34px; } .service-banner p { font-size: 16px; line-height: 28px; } .service-section { padding: 60px 0; } .service-box { padding: 25px; border-radius: 16px; } .service-block h2 { font-size: 24px; line-height: 34px; } .service-block p, .service-list li, .intro-box p { font-size: 15px; line-height: 28px; } .notice-box { padding: 25px; } .notice-box p { font-size: 16px; line-height: 30px; } }
 
 
 
