:root {
    --ap-blue: #0641B7;
    --ap-blue-hover: #053391;
    --ap-blue-light: #eef2fa;
    --ap-red: #E30613;
    --ap-red-hover: #b5040e;
    --ap-red-light: #fff0f1;
    --ap-bg: #F5F7F8;
    --ap-card: #FFFFFF;
    --ap-border: #D8E0E6;
    --ap-text-primary: #101828;
    --ap-text-secondary: #475467;
    --ap-container: 1350px;
    --ap-shadow-sm: 0 2px 8px rgba(16, 24, 40, 0.05);
    --ap-shadow-md: 0 8px 24px rgba(16, 24, 40, 0.08);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: #ffffff;
    color: var(--ap-text-primary);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .hero-title, .section-heading, .font-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.8px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Layout Utilities */
.bl-container {
    width: min(var(--ap-container), calc(100% - 48px));
    margin: 0 auto;
}

.text-muted {
    color: var(--ap-text-secondary);
}

.text-danger {
    color: var(--ap-red);
}

.text-accent {
    color: var(--ap-red);
}

.text-white {
    color: #ffffff !important;
}

.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 16px !important; }
.mb-4 { margin-bottom: 24px !important; }
.mb-5 { margin-bottom: 40px !important; }
.mt-2 { margin-top: 8px !important; }
.mt-4 { margin-top: 24px !important; }
.mt-5 { margin-top: 40px !important; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }
.py-5 { padding-top: 60px; padding-bottom: 60px; }
.text-center { text-align: center !important; }
.w-100 { width: 100% !important; }

/* Buttons & Inputs */
.btn-primary-red {
    display: inline-flex;
    align-items: center;
    background: var(--ap-red);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid var(--ap-red);
}

.btn-primary-red:hover {
    background: var(--ap-red-hover);
    border-color: var(--ap-red-hover);
    transform: translateY(-1px);
}

.form-control-input,
.form-select-input {
    width: 100%;
    min-height: 38px;
    padding: 10px 14px;
    border: 1px solid var(--ap-border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    background: #ffffff;
    transition: all 0.2s ease;
}

.form-control-input:focus,
.form-select-input:focus {
    border-color: var(--ap-blue);
    box-shadow: 0 0 0 3px rgba(6, 65, 183, 0.12);
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--ap-text-primary);
    margin-bottom: 4px;
}

/* Utility grid row for form side-by-side fields */
.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.row > .col-md-6 {
    width: 100%;
}

/* Header Area styling */
.bl-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--ap-border);
    box-shadow: var(--ap-shadow-sm);
    transition: all 0.3s ease;
}

.bl-header.is-scrolled {
    padding: 10px 0;
}

.bl-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header-logo-img {
    height: 48px !important;
}

.bl-nav {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.8vw, 32px);
}

.bl-nav__link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--ap-text-primary);
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.bl-nav__link:hover {
    color: var(--ap-blue);
}

.bl-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--ap-blue);
    transition: width 0.2s ease;
}

.bl-nav__link:hover::after {
    width: 100%;
}

.bl-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--ap-text-primary);
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-dealer-login {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid var(--ap-blue);
    color: var(--ap-blue);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-dealer-login:hover {
    background: var(--ap-blue-light);
}

.btn-brochure {
    display: inline-flex;
    align-items: center;
    background: var(--ap-red);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-brochure:hover {
    background: var(--ap-red-hover);
}

/* Sections kicker and header styles */
.section-kicker {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--ap-red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-heading {
    font-size: clamp(32px, 3.8vw, 48px); /* slightly larger scale to accommodate Bebas Neue */
    color: var(--ap-text-primary);
    letter-spacing: 0.8px;
    line-height: 1.1;
}

/* Global Section Heights & Centering */
.about-section,
.products-section,
.whychoose-section,
.applications-section,
.process-section,
.certifications-section,
.dealers-section,
.testimonials-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.contact-section {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.9) 46%, rgba(229, 242, 255, 0.9) 100%),
        url('../images/footertop/footerbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(72px, 8vw, 108px) 0;
    position: relative;
}

.whychoose-section {
    padding-bottom: 0 !important;
    justify-content: flex-start;
    overflow: hidden;
}

.whychoose-section > .bl-container {
    padding-bottom: 0;
    margin-bottom: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.whychoose-section .grid-whychoose {
    flex-grow: 1;
}

.whychoose-worker-img {
    width: 100%;
    border-radius: 14px 14px 0 0;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    margin-top: auto;
    margin-bottom: 0;
}

/* 1. Hero Section Layout */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center right;
    min-height: 100vh;
    padding: 48px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: clamp(32px, 3.5vw, 56px);
    align-items: stretch;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 5px 13px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    width: fit-content;
}

.hero-title {
    font-size: clamp(44px, 4.6vw, 65px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: clamp(14px, 1.1vw, 16px);
    color: #e2e8f0;
    margin-bottom: 24px;
    max-width: 440px;
    line-height: 1.55;
    padding-left: 16px;
    border-left: 2px solid var(--ap-red);
}

.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.hero-actions-row .btn-primary-red {
    padding: 11px 22px;
    font-size: 13px;
}

.google-rating {
    display: flex;
    align-items: center;
}

.google-rating__img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: min(100%, 540px);
    margin-top: auto;
    background: rgba(15, 25, 40, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    overflow: hidden;
}

.stat-card {
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 20px 16px;
    color: #ffffff;
    text-align: left;
}

.stat-card:last-child {
    border-right: 0;
}

.stat-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: 0.8px;
}

.stat-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
}

.form-card {
    background: var(--ap-card);
    border-radius: 14px;
    padding: 24px 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--ap-border);
    width: 100%;
    margin-left: auto;
}

.form-card .form-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px !important;
}

.form-card .icon-wrap {
    background: #FEF0F0;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 8px;
    color: #E30613;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-card .icon-wrap i,
.form-card .icon-wrap svg {
    width: 18px;
    height: 18px;
}

.form-card .form-header h2 {
    font-size: 1.25rem !important;
    font-weight: 700;
    margin: 0;
    color: #101828;
    line-height: 1.25 !important;
}

.form-card .form-group.mb-3,
.form-card .mb-3 {
    margin-bottom: 10px !important;
}

.form-card .form-group.mb-4,
.form-card .mb-4 {
    margin-bottom: 12px !important;
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap i,
.input-icon-wrap svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ap-text-secondary);
    width: 14px;
    height: 14px;
}

.input-icon-wrap .form-control-input {
    padding-left: 32px;
}

.radio-wrap {
    display: flex;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #F5F7F8;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    flex: 1;
    border: 1.5px solid var(--ap-border);
    transition: all 0.2s ease;
}

.radio-label:hover,
.radio-label:has(input[type="radio"]:checked) {
    border-color: var(--ap-red);
    background: var(--ap-red-light);
}

.radio-label input[type="radio"] {
    accent-color: var(--ap-red);
}

.radio-label span {
    font-size: 12px;
    font-weight: 600;
}

.partner-form-card [hidden] {
    display: none !important;
}

.partner-type-switch .radio-label {
    justify-content: flex-start;
}

.builder-form-card {
    max-width: 430px;
    padding: 22px 24px;
    border-radius: 18px;
}

.builder-form-card .form-header {
    gap: 12px;
    margin-bottom: 18px !important;
}

.builder-form-card .form-header h2 {
    font-size: 20px !important;
}

.builder-form-card .icon-wrap {
    width: 38px;
    height: 38px;
}

.builder-form-card .form-group.mb-3,
.builder-form-card .mb-3 {
    margin-bottom: 9px !important;
}

.builder-form-card .form-group.mb-4,
.builder-form-card .mb-4 {
    margin-bottom: 12px !important;
}

.builder-form-card .form-label {
    font-size: 10px;
    margin-bottom: 4px;
}

.builder-form-card .form-control-input,
.builder-form-card .form-select-input {
    min-height: 34px;
    padding: 8px 11px;
    border-radius: 6px;
    font-size: 10px;
}

.builder-form-card .input-icon-wrap .form-control-input {
    padding-left: 30px;
}

.builder-form-card .input-icon-wrap i,
.builder-form-card .input-icon-wrap svg {
    left: 10px;
    width: 12px;
    height: 12px;
}

.builder-form-card .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.builder-form-card .btn-submit-dealer {
    min-height: 38px;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 11px;
}

#dealer-inquiry-form .form-label,
#contractor-inquiry-form .form-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0;
    color: #374151;
    margin-bottom: 4px;
}

#dealer-inquiry-form .form-control-input,
#dealer-inquiry-form .form-select-input,
#contractor-inquiry-form .form-control-input,
#contractor-inquiry-form .form-select-input {
    font-size: 13px;
}

#dealer-inquiry-form .form-control-input::placeholder,
#contractor-inquiry-form .form-control-input::placeholder {
    font-size: 13px;
    opacity: 1;
}

.btn-submit-dealer {
    width: 100%;
    background: var(--ap-red);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    min-height: 42px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit-dealer:hover {
    background: var(--ap-red-hover);
    box-shadow: 0 8px 16px rgba(227, 6, 19, 0.25);
}
/* 2. About Section Layout */
.about-section {
    background: #F8F9FA;
}

.grid-about {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.about-left {
    display: flex;
    flex-direction: column;
}

.about-left .btn-primary-red {
    align-self: flex-start;
    margin-bottom: 32px;
}

.about-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ap-text-secondary);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1.5px solid #d8e0e6;
    padding-top: 32px;
}

.about-stat-item {
    padding: 0 24px;
    border-left: 1.5px solid #d8e0e6;
}

.about-stat-item h3 {
    font-size: clamp(40px, 4vw, 48px);
    font-weight: 400;
    color: #0641B7;
    margin-bottom: 6px;
    line-height: 1;
    letter-spacing: 0.8px;
    font-family: 'Bebas Neue', sans-serif;
}

.about-stat-item p {
    font-size: 13px;
    line-height: 1.4;
    color: #475467;
    font-family: 'IBM Plex Sans', sans-serif;
}

.count-number {
    display: inline-block;
}

.about-right {
    position: sticky;
    top: 100px;
}

.ceo-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border: none;
    position: relative;
    transition: all 0.3s ease;
}

.ceo-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top center;
}

.ceo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0641b7c2 0%, #053491c0 100%);
    color: #ffffff;
    padding: 24px;
    text-align: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.ceo-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.ceo-info p {
    font-size: 13px;
    opacity: 0.9;
}

/* 3. Products Section Layout */
.products-main-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.products-nav-sidebar {
    background: transparent;
    border-radius: 0;
    border: none;
    padding: 0;
    height: fit-content;
}

.category-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 340px;
    overflow-y: auto;
    padding-right: 20px;
    border-right: 2px solid #E2E8F0;
}

/* Custom premium scrollbar for category selector matching 5th image */
.category-list-wrapper::-webkit-scrollbar {
    width: 3px;
}

.category-list-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.category-list-wrapper::-webkit-scrollbar-thumb {
    background: var(--ap-blue);
    border-radius: 4px;
}

.category-list-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--ap-blue-hover);
}

.filter-item {
    width: 100%;
    text-align: left;
    background: none !important;
    border: none;
    padding: 4px 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--ap-text-secondary);
    cursor: pointer;
    transition: color 0.2s ease;
}

.filter-item:hover {
    color: var(--ap-blue);
}

.filter-item.active {
    color: var(--ap-blue);
    font-weight: 800;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: #F4F8FC;
    border-radius: 18px;
    border: 1px solid #E2EAF4;
    padding: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: #0641B7;
    box-shadow: 0 12px 30px rgba(6, 65, 183, 0.08);
}

.product-image-box {
    background: transparent;
    padding: 0;
    height: clamp(190px, 20vw, 240px);
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 20px;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-body {
    padding: 0 4px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ap-text-primary);
}

.product-body p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.view-range-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--ap-red);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
}

.view-range-link:hover {
    color: var(--ap-red-hover);
}

.product-card-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Products Swiper Controls Styling */
.btn-circle-arrow {
    background: #E8F1FF;
    border: none;
    color: #0641B7;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-circle-arrow:hover {
    background: #0641B7;
    color: #ffffff;
}

.products-swiper-pagination {
    display: none !important;
}

.products-swiper-pagination .swiper-pagination-bullet {
    background: #d1d5db;
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: all 0.2s ease;
}

.products-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--ap-blue);
    width: 24px;
    border-radius: 5px;
}

.products-grid-container,
.js-products-swiper,
.js-products-swiper .swiper-wrapper,
.js-products-swiper .swiper-slide {
    min-width: 0;
}

.js-products-swiper .swiper-slide {
    height: auto;
}

.js-products-swiper .swiper-wrapper {
    cursor: grab;
}

.js-products-swiper .swiper-wrapper:active {
    cursor: grabbing;
}


/* 4. Why Choose Section Layout */
.grid-whychoose {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: stretch;
    min-height: calc(100vh - 120px);
}

.whychoose-left {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.whychoose-left .btn-primary-red {
    align-self: flex-start;
    width: auto;
}


.whychoose-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-content: center;
    padding: clamp(28px, 5vh, 64px) 0;
}

.feature-card {
    background: #151922;
    border: 1px solid #2A3442;
    border-radius: 10px;
    padding: 16px 16px 14px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.feature-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 0;
    flex-direction: column;
}

.feature-card-header .feature-icon {
    margin-bottom: 10px !important;
}

.feature-card-header h3 {
    margin-bottom: 0 !important;
}

.feature-icon {
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.85);
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px !important;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.feature-card p {
    font-size: 12px;
    line-height: 1.8;
    color: #98A2B3;
    margin: 0;
}

/* 5. Applications Section Layout */
.applications-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
}

.apps-column-left,
.apps-column-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.apps-column-left .app-card {
    height: 575px;
}

.apps-column-right .app-card {
    height: 375px;
}

.app-card {
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--ap-shadow-md);
    position: relative;
    width: 100%;
}

.app-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 35%, rgba(0, 0, 0, 0.82) 100%);
    pointer-events: none;
}

.app-card-body {
    padding: 30px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.app-card-body h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.app-card-body p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

/* 6. Process Section — Timeline and Card Layout */
.process-pipe-visual {
    max-width: 1100px;
    margin: 0 auto;
}

.process-timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 20px;
}

.timeline-line {
    position: absolute;
    top: 41px; /* aligns with vertical center of 42px circles */
    left: 40px;
    right: 40px;
    height: 2px;
    background: #E30613; /* red timeline line */
    z-index: 1;
}

.timeline-markers {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.marker-circle {
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 2px solid #E30613;
    border-radius: 50%;
    color: #0641B7;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.marker-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #E30613;
    margin-top: 4px;
}

.process-steps-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.process-step-card {
    background: #ffffff;
    border: 1px solid #E4E7EC;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.process-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(6, 65, 183, 0.06);
    border-color: rgba(6, 65, 183, 0.2);
}

.step-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.process-step-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--ap-text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.8px;
}

.process-step-card p {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--ap-text-secondary);
    margin: 0;
}

.process-pipe-container img {
    width: min(100%, 900px);
    margin: 0 auto;
}


/* 7. Certifications Section */
.cert-cards-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 42px;
}

.cert-card {
    background: #ffffff;
    border: 1px solid #E4E7EC;
    border-radius: 8px;
    min-height: 280px;
    padding: 46px 20px 24px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 26px;
    background: url('../images/icons/toppart.png') no-repeat center top;
    background-size: 100% auto;
    z-index: 1;
}

.cert-card:hover {
    border-color: var(--ap-blue);
    box-shadow: 0 8px 24px rgba(6, 65, 183, 0.08);
    transform: translateY(-4px);
}

.cert-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cert-card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cert-card-icon--large {
    width: 100%;
    height: auto;
    max-width: 220px;
}

.cert-card-icon--large img {
    width: 100%;
    height: auto;
    max-height: none;
}

.cert-card--highlight {
    background: #ffffff;
    border: none;
    box-shadow: none;
    transform: none;
    position: relative;
    justify-content: center;
    min-height: 280px;
    padding: 0 12px;
}

.cert-card--highlight::before {
    display: none !important;
}

.cert-card--highlight:hover {
    border: none;
    box-shadow: none;
    transform: none;
}

.cert-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--ap-text-primary);
    margin-bottom: 12px;
    letter-spacing: 0.8px;
}

.cert-card p {
    font-size: 12.5px;
    line-height: 1.42;
    color: var(--ap-text-secondary);
    margin: 0;
}

/* Trust Badges Row */
.trust-badges-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid #E4E7EC;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 10px;
}

.trust-badge:not(:last-child) {
    border-right: 1px solid #E4E7EC;
}

.trust-badge-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-badge-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--ap-text-primary);
    font-weight: 700;
}

.trust-badge-text p {
    font-size: 11px;
    line-height: 1.4;
    color: var(--ap-text-secondary);
    margin: 0;
}


/* 8. Dealers Layout */
.dealers-section {
    background: #0B1724;
    color: #ffffff;
    padding: 72px 0;
}

.grid-dealers {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.dealers-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dealers-left .section-heading {
    color: #ffffff;
    margin-bottom: 22px !important;
}

.dealers-left .section-heading span {
    color: #8EA0B7;
}

.dealers-left p {
    color: #B8C3D1;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 18px 0;
}

.dealer-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0 28px;
}

.dealer-stat-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 16px 18px;
    text-align: center;
}

.dealer-stat-card h4 {
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 8px;
    letter-spacing: 0.8px;
}

.dealer-stat-card h4 span {
    color: var(--ap-red);
    font-size: 15px;
    margin-left: 2px;
}

.dealer-stat-card p {
    color: #8EA0B7;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.dealers-right img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

/* 9. Testimonials Swiper styling */
.testimonial-carousel-container {
    padding-bottom: 40px;
}

.testimonial-carousel-container .swiper-wrapper {
    cursor: grab;
}

.testimonial-carousel-container .swiper-wrapper:active {
    cursor: grabbing;
}

.testimonial-carousel-container .is-cloned-slide {
    opacity: 1;
    transform: none;
}

.card-testimonial {
    background: #ffffff;
    color: var(--ap-text-primary);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--ap-shadow-md);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote-icon {
    font-size: 56px;
    line-height: 0.8;
    color: var(--ap-red);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    margin-bottom: 0px;
    user-select: none;
}

.card-testimonial .quote {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ap-text-secondary);
    margin-bottom: 18px;
    font-style: normal;
}

.testimonial-stars {
    color: #F79009;
    font-size: 14px;
    margin-bottom: 22px;
    letter-spacing: 2.5px;
}

.partner-meta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.partner-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #111315;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.partner-avatar.blue-avatar {
    background: var(--ap-blue);
}

.partner-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.partner-info strong {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: var(--ap-text-primary);
    font-weight: 700;
    display: block;
}

.partner-info small {
    font-size: 12px;
    color: var(--ap-text-secondary);
}

.testimonial-swiper__pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.4);
    opacity: 1;
}

.testimonial-swiper__pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 24px;
    border-radius: 4px;
}

/* 11. Contact & CTA layouts */
.cta-banner {
    background: url('../images/footertop/1.webp') no-repeat right center;
    background-size: cover;
    position: relative;
    padding: 100px 0;
    color: #ffffff;
    border-top: 6px solid var(--ap-blue);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15, 17, 21, 0.483) 0%, rgba(15, 17, 21, 0.117) 60%, rgba(15, 17, 21, 0.1) 100%);
    z-index: 1;
}

.cta-banner .bl-container {
    position: relative;
    z-index: 2;
}

.cta-content-wrapper {
    max-width: 600px;
    text-align: left;
}

.cta-content-wrapper h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: 0.8px;
}

.cta-content-wrapper p {
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.6;
    color: #E8ECF3;
    margin-bottom: 32px;
}

.cta-btn-red {
    display: inline-block;
    background: #E30613;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #E30613;
}

.cta-btn-red:hover {
    background: #c30510;
    border-color: #c30510;
    transform: translateY(-2px);
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.95fr) minmax(320px, 1.25fr) minmax(340px, 1.28fr);
    gap: clamp(36px, 4.8vw, 72px);
    align-items: center;
}

.contact-image-col {
    display: flex;
    align-items: center;
}

.contact-image-col img {
    width: 100%;
    aspect-ratio: 0.78;
    min-height: 380px;
    max-height: 470px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, 0.1);
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
}

.contact-info-col h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 800;
    color: #030712;
    margin: 0;
    letter-spacing: 0;
    line-height: 1.1;
}

.contact-intro {
    font-size: 15px;
    line-height: 1.55;
    color: #4B5563;
    margin: 0;
    max-width: 480px;
}

.contact-list-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0;
}

.contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.list-item-icon-box {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E30613;
    flex-shrink: 0;
    background: transparent;
    transition: all 0.3s ease;
    margin-top: 1px;
}

.list-item-icon-box:hover {
    transform: translateY(-1px);
}

.list-item-icon-box i {
    width: 21px;
    height: 21px;
}

.list-item-content {
    font-size: 15px;
    color: #111827;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    line-height: 1.65;
}

.list-item-content a {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
}

.list-item-content a:hover {
    color: #E30613;
}

.contact-outro {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.65;
    color: #4B5563;
    margin: 0;
}

.contact-form-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-col .mb-3 {
    margin-bottom: 14px !important;
}

.contact-form-col .mb-4 {
    margin-bottom: 14px !important;
}

.contact-form-input {
    width: 100%;
    background: #ffffff;
    border: 1px solid #D5DADF;
    border-radius: 7px;
    padding: 18px 20px;
    font-size: 15px;
    color: #101828;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.contact-form-input:hover {
    border-color: #98A2B3;
}

.contact-form-input:focus {
    border-color: #0641B7;
    box-shadow: 0 0 0 4px rgba(6, 65, 183, 0.08), 0 1px 2px rgba(16, 24, 40, 0.05);
}

.contact-form-input::placeholder {
    color: #667085;
}

.contact-form-input[name="message"] {
    min-height: 138px;
    resize: none;
}

.contact-form-submit-btn {
    width: 100%;
    background: #E30613;
    color: #ffffff;
    border: none;
    border-radius: 7px;
    min-height: 58px;
    padding: 16px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.contact-form-submit-btn:hover {
    background: #c30510;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.2);
}

.contact-form-submit-btn:active {
    transform: translateY(0);
}

.form-control-input.is-invalid,
.form-select-input.is-invalid,
.contact-form-input.is-invalid {
    border-color: var(--ap-red) !important;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1) !important;
}

.form-control-input.is-valid,
.form-select-input.is-valid,
.contact-form-input.is-valid {
    border-color: #12B76A;
}

.field-error {
    margin-top: 5px;
    color: var(--ap-red);
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    line-height: 1.35;
}

.field-error:empty {
    display: none;
}

.form-feedback {
    margin: 8px 0 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    line-height: 1.45;
}

.form-feedback:empty {
    display: none;
}

.form-feedback.is-success {
    color: #067647;
}

.form-feedback.is-error {
    color: var(--ap-red);
}

.js-inquiry-form button[disabled] {
    cursor: not-allowed;
    opacity: 0.75;
}


/* Footer layout styles */
.bl-footer {
    background: #061019;
    color: #D8E2EC;
    padding: clamp(56px, 7vw, 88px) 0 0;
    border-top: 1px solid rgba(216, 224, 230, 0.08);
}

.bl-footer__grid {
    display: grid;
    grid-template-columns: minmax(250px, 1.2fr) minmax(140px, 0.65fr) minmax(150px, 0.7fr) minmax(260px, 0.95fr);
    gap: clamp(36px, 6vw, 92px);
    align-items: start;
    padding-bottom: clamp(46px, 6vw, 70px);
}

.bl-footer__logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}

.bl-footer__logo img {
    width: auto;
    height: 46px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.bl-footer__intro {
    max-width: 290px;
    margin: 0;
    color: #9AA9B8;
    font-size: 13px;
    line-height: 1.75;
}

.bl-footer h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #E8EEF5;
    margin: 0 0 24px;
    letter-spacing: 4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.bl-footer__links {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.bl-footer__links a {
    width: fit-content;
    color: #98A7B6;
    font-size: 13px;
    line-height: 1.35;
    text-decoration: none;
}

.bl-footer__links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.bl-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.bl-footer__contact span,
.bl-footer__contact a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #9AA9B8;
    font-size: 12px;
    line-height: 1.55;
    text-decoration: none;
    max-width: 280px;
}

.bl-footer__contact span i,
.bl-footer__contact a i {
    width: 13px;
    height: 13px;
    color: var(--ap-red);
    flex-shrink: 0;
    margin-top: 3px;
    stroke-width: 2.4;
}

.bl-footer__contact a:hover {
    color: #ffffff;
}

.bl-social {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.bl-social a {
    background: rgba(255, 255, 255, 0.06);
    color: #C5D0DB;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.11);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.bl-social a:hover {
    background: var(--ap-red);
    color: #ffffff;
    border-color: var(--ap-red);
}

.bl-footer__bottom {
    padding: 24px 0 32px;
    border-top: 1px solid rgba(216, 224, 230, 0.12);
    color: #8D9BAA;
    font-size: 12px;
}

.bl-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.bl-footer__legal {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
    flex-wrap: wrap;
}

.bl-footer__legal a {
    color: #8D9BAA;
    font-size: 12px;
    text-decoration: none;
}

.bl-footer__legal a:hover {
    color: #ffffff;
}

/* Premium Waterfall Scroll Reveal Engine */
.reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-item.reveal-left {
    transform: translateX(-35px);
}

.reveal-item.reveal-right {
    transform: translateX(35px);
}

.reveal-item.is-revealed {
    opacity: 1;
    transform: translate(0) !important;
}

/* Responsiveness settings */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr 400px;
        gap: 28px;
    }

    .hero-title {
        font-size: clamp(36px, 5vw, 48px);
    }

    .form-card {
        padding: 20px 22px;
    }

    .bl-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 56px;
    }

    .contact-grid-layout {
        grid-template-columns: minmax(220px, 0.85fr) minmax(320px, 1fr);
        gap: 36px;
    }

    .contact-form-col {
        grid-column: 1 / -1;
    }

    .contact-form-col form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .contact-form-col .mb-3,
    .contact-form-col .mb-4,
    .contact-form-col .form-feedback,
    .contact-form-col .contact-form-submit-btn {
        margin: 0 !important;
    }

    .contact-form-col .mb-4,
    .contact-form-col .form-feedback,
    .contact-form-col .contact-form-submit-btn {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1180px) {
    .bl-header-container {
        height: 68px;
    }

    .header-logo-img {
        width: auto;
        height: 44px !important;
    }

    .about-section,
    .products-section,
    .whychoose-section,
    .applications-section,
    .process-section,
    .certifications-section,
    .dealers-section,
    .testimonials-section {
        min-height: auto;
    }

    .bl-menu-toggle {
        display: grid;
        width: 42px;
        height: 42px;
        padding: 0;
        place-items: center;
        flex: 0 0 42px;
        border-radius: 6px;
    }

    .bl-menu-toggle svg {
        width: 24px;
        height: 24px;
    }

    .bl-nav {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        overscroll-behavior: contain;
        background: #ffffff;
        border-bottom: 1px solid var(--ap-border);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px);
        transition: all 0.3s ease;
        box-shadow: var(--ap-shadow-md);
        z-index: 999;
    }
    
    .bl-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    
    .bl-nav__link {
        padding: 16px 20px;
        border-bottom: 1.5px solid var(--ap-border);
        min-height: auto;
        display: block;
    }
    
    .bl-nav__link::after {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-nav-actions {
        display: flex !important;
        padding: 14px 18px 18px !important;
    }

    .mobile-nav-actions .btn-dealer-login,
    .mobile-nav-actions .btn-brochure {
        width: 100%;
        min-height: 44px;
        justify-content: center;
        padding: 10px 18px;
        text-align: center;
    }
    
    .hero-section {
        min-height: auto;
        padding: 56px 0;
        background-position: center top;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-left {
        max-width: none;
    }

    .hero-badge {
        font-size: 9px;
        letter-spacing: 1.5px;
        padding: 5px 12px;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: clamp(38px, 8vw, 54px);
        line-height: 0.98;
        margin-bottom: 18px;
    }

    .hero-desc {
        max-width: 560px;
        font-size: clamp(14px, 2.4vw, 16px);
        line-height: 1.55;
        margin-bottom: 22px;
    }

    .hero-actions-row {
        gap: 20px;
        margin-bottom: 28px;
    }

    .google-rating__img {
        height: 44px;
    }

    .hero-stats {
        width: 100%;
        margin-top: 0;
    }

    .stat-card {
        padding: 18px 16px;
    }

    .stat-card h3 {
        font-size: clamp(30px, 6vw, 36px);
    }

    .form-card {
        max-width: 560px;
        margin: 0 auto;
    }

    .form-card .form-header h2 {
        font-size: clamp(18px, 3.6vw, 22px) !important;
    }
    
    .grid-about {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-right {
        position: static;
    }

    .ceo-card {
        max-width: 440px;
        margin: 0 auto;
    }

    .ceo-img {
        height: 380px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .products-main-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .products-nav-sidebar {
        order: -1;
        width: 100%;
        min-width: 0;
    }

    .category-list-wrapper {
        flex-direction: row;
        max-height: none;
        overflow-y: visible;
        overflow-x: auto;
        padding-right: 0;
        border-right: none;
        gap: 8px;
        padding: 0 2px 10px;
        margin: 0 -2px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-list-wrapper::-webkit-scrollbar {
        display: none;
    }

    .filter-item {
        white-space: nowrap;
        flex-shrink: 0;
        width: auto;
        text-align: center;
        padding: 8px 18px;
        font-size: 13px;
        border-radius: 30px;
        background: #ffffff !important;
        border: 1.5px solid var(--ap-border) !important;
        color: var(--ap-text-secondary);
        transition: all 0.2s ease;
    }

    .products-grid-container {
        width: 100%;
        overflow: visible !important;
    }

    .js-products-swiper {
        overflow: hidden;
        padding: 0 1px;
    }

    .product-card {
        border-radius: 12px;
        width: min(calc(100% - 28px), 430px);
        margin: 0 auto;
    }

    .product-image-box {
        height: clamp(210px, 42vw, 260px);
    }

    .filter-item:hover {
        border-color: var(--ap-blue) !important;
        color: var(--ap-blue);
    }

    .filter-item.active {
        background: var(--ap-blue) !important;
        border-color: var(--ap-blue) !important;
        color: #ffffff;
        font-weight: 700;
    }
    
    .grid-whychoose {
        grid-template-columns: 1fr;
        gap: 26px;
        min-height: 0;
    }

    .whychoose-section {
        padding-top: 56px;
    }

    .whychoose-section > .bl-container {
        flex-grow: 0;
    }

    .whychoose-left {
        height: auto;
    }

    .whychoose-worker-img {
        width: min(100%, 520px);
        margin: 18px auto 0;
        max-height: 440px;
    }

    .whychoose-right {
        align-content: start;
        padding: 0 0 36px;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .apps-column-left,
    .apps-column-right {
        gap: 20px;
    }
    
    .apps-column-left .app-card,
    .apps-column-right .app-card {
        height: clamp(300px, 48vw, 380px);
    }

    .app-card {
        background-position: center;
    }

    .app-card-body {
        padding: 26px;
    }

    .app-card-body h3 {
        font-size: 20px;
    }

    .app-card-body p {
        max-width: 620px;
        font-size: 13px;
    }

    .process-timeline-wrapper {
        display: none;
    }

    .process-section {
        padding: 64px 0 56px !important;
    }

    .process-section .reveal-group[style*="margin-bottom"] {
        margin-bottom: 34px !important;
    }

    .process-section .section-heading {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(32px, 6vw, 44px);
        line-height: 1.08;
    }

    .process-section .text-muted {
        max-width: 620px !important;
        font-size: 14px !important;
    }

    .process-pipe-container {
        margin: 18px 0 30px 0 !important;
    }

    .process-pipe-container img {
        width: min(100%, 760px);
    }

    .process-steps-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 18px;
    }

    .process-step-card {
        padding: 24px 16px;
        border-radius: 14px;
    }

    .process-step-card h4 {
        font-size: 17px;
    }

    .process-step-card p {
        font-size: 12px;
    }
    
    .cert-cards-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .cert-card {
        min-height: 250px;
        padding: 42px 16px 22px;
    }

    .cert-card-icon--large {
        max-width: 190px;
    }

    .cert-card--highlight {
        min-height: 250px;
    }

    .cert-card--highlight {
        transform: none;
    }

    .grid-dealers {
        grid-template-columns: 1fr;
    }
    
    .contact-grid-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .contact-image-col {
        height: auto;
        justify-content: center;
    }

    .contact-image-col img {
        width: min(100%, 420px);
        min-height: 0;
        max-height: none;
        aspect-ratio: 1.05;
    }

    .contact-info-col {
        align-items: center;
        text-align: center;
        gap: 22px;
    }

    .contact-list-items {
        align-items: center;
        width: 100%;
    }

    .contact-list-item {
        width: min(100%, 420px);
        text-align: left;
    }

    .contact-outro {
        max-width: 520px;
    }

    .contact-form-col form {
        display: block;
    }

}

@media (max-width: 640px) {
    .bl-container {
        width: min(var(--ap-container), calc(100% - 32px));
    }

    .hero-section {
        padding: 28px 0 42px;
        background-position: 58% top;
    }

    .hero-badge {
        font-size: 8px;
        letter-spacing: 1px;
        padding: 5px 11px;
        margin-bottom: 16px;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(32px, 10.8vw, 44px);
        line-height: 1.02;
        margin-bottom: 18px;
    }

    .hero-desc {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.55;
        padding-left: 14px;
        margin-bottom: 22px;
    }

    .hero-actions-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .hero-actions-row .btn-primary-red {
        padding: 11px 20px;
        font-size: 13px;
        min-height: 44px;
    }

    .google-rating__img {
        height: 42px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border-radius: 10px;
    }

    .hero-stats .stat-card {
        min-width: 0;
        min-height: 82px;
        padding: 13px 4px 11px;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 0;
    }

    .hero-stats .stat-card:last-child {
        border-right: 0;
    }

    .hero-stats .stat-card h3 {
        margin-bottom: 6px;
        font-size: clamp(22px, 7vw, 29px);
        line-height: 1;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .hero-stats .stat-card p {
        max-width: 66px;
        margin: 0 auto;
        font-size: clamp(6px, 1.8vw, 7.5px);
        line-height: 1.35;
        letter-spacing: 0.55px;
        overflow-wrap: normal;
    }

    .form-card {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .form-card .form-header {
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 14px !important;
    }

    .form-card .icon-wrap {
        width: 32px;
        height: 32px;
    }

    .form-card .form-header h2 {
        font-size: 18px !important;
        line-height: 1.2 !important;
    }

    .form-control-input,
    .form-select-input {
        min-height: 40px;
        font-size: 12px;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .form-label {
        font-size: 11px;
    }

    .btn-submit-dealer {
        min-height: 42px;
        font-size: 13px;
    }

    .row,
    .radio-wrap {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .partner-type-switch {
        flex-direction: row;
    }

    .partner-type-switch .radio-label {
        min-width: 0;
        padding: 8px;
    }

    .partner-type-switch .radio-label span {
        font-size: 10.5px;
        line-height: 1.2;
    }

    .builder-form-card {
        max-width: 100%;
        padding: 18px 16px;
        border-radius: 14px;
    }

    .builder-form-card .form-header {
        align-items: center;
        margin-bottom: 16px !important;
    }

    .builder-form-card .form-header h2 {
        font-size: 18px !important;
    }

    .builder-form-card .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .builder-form-card .form-control-input,
    .builder-form-card .form-select-input {
        min-height: 36px;
        font-size: 13px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .builder-form-card .form-label {
        font-size: 14px;
        line-height: 20px;
    }

    .builder-form-card .btn-submit-dealer {
        min-height: 40px;
        font-size: 11px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }

    .products-section {
        padding-top: 48px;
        padding-bottom: 56px;
    }

    .products-section .reveal-group[style*="margin-bottom"] {
        margin-bottom: 28px !important;
    }

    .section-heading {
        font-size: clamp(30px, 9vw, 38px);
    }

    .category-list-wrapper {
        gap: 8px;
        margin-right: -16px;
        padding-right: 16px;
    }

    .filter-item {
        padding: 8px 16px;
        font-size: 12px;
    }

    .product-card {
        padding: 16px;
        width: min(calc(100% - 28px), 420px);
    }

    .product-image-box {
        height: clamp(210px, 52vw, 250px);
        margin-bottom: 18px;
    }

    .products-carousel-controls {
        margin-top: 22px !important;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }

    .about-stat-item {
        padding: 0 16px;
    }

    .about-stat-item h3 {
        font-size: 28px;
    }
    
    .whychoose-right {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 10px;
    }

    .whychoose-section {
        padding-top: 48px;
    }

    .whychoose-left p {
        margin-bottom: 20px !important;
    }

    .whychoose-worker-img {
        margin-top: 10px;
        max-height: 390px;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .applications-section {
        padding-top: 48px;
        padding-bottom: 56px;
    }

    .applications-section > .bl-container > .reveal-group:first-child {
        align-items: flex-start !important;
        margin-bottom: 28px !important;
    }

    .applications-section .btn-primary-red {
        padding: 10px 18px;
        font-size: 13px;
    }

    .apps-column-left,
    .apps-column-right {
        gap: 24px;
    }

    .apps-column-left .app-card,
    .apps-column-right .app-card {
        height: clamp(300px, 92vw, 360px);
    }

    .app-card {
        border-radius: 12px;
        background-position: center;
    }

    .app-card::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 28%, rgba(0, 0, 0, 0.88) 100%);
    }

    .app-card-body {
        padding: 24px;
    }

    .app-card-body h3 {
        font-size: 20px;
        line-height: 1.05;
        margin-bottom: 10px;
    }

    .app-card-body p {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 13px;
        line-height: 1.48;
    }
    
    .process-steps-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        align-items: stretch;
    }

    .process-section {
        padding: 54px 0 48px !important;
    }

    .process-section .reveal-group[style*="margin-bottom"] {
        margin-bottom: 26px !important;
    }

    .process-section .section-kicker {
        font-size: 10px !important;
        letter-spacing: 1.6px !important;
    }

    .process-section .section-heading {
        display: block;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(30px, 8.2vw, 38px);
        line-height: 1.05;
        word-break: normal;
        overflow-wrap: normal;
    }

    .process-section .text-muted {
        max-width: 340px !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .process-pipe-container {
        margin: 22px 0 32px 0 !important;
    }

    .process-pipe-container img {
        width: min(100%, 360px);
    }

    .process-step-card {
        min-height: 244px;
        padding: 24px 14px;
        border-radius: 14px;
    }

    .step-card-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 14px;
    }

    .process-step-card h4 {
        font-size: 17px;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .process-step-card p {
        font-size: 12.5px;
        line-height: 1.55;
    }
    
    .cert-cards-row {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cert-card {
        min-height: 230px;
        padding: 42px 18px 22px;
    }

    .cert-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .cert-card-icon--large {
        max-width: 170px;
    }

    .cert-card--highlight {
        min-height: 210px;
    }

    .cert-card h4 {
        font-size: 16px;
    }

    .cert-card p {
        font-size: 12px;
    }

    .cert-card--highlight {
        transform: none;
    }
    
    .trust-badges-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-badge {
        padding: 0;
        border-right: none !important;
    }
    
    .bl-footer {
        padding-top: 48px;
    }

    .bl-footer__grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 38px;
        text-align: center;
    }

    .bl-footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bl-footer__logo {
        margin-bottom: 16px;
    }

    .bl-footer__logo img {
        height: 42px;
    }

    .bl-footer__intro {
        max-width: 330px;
        font-size: 12.5px;
    }

    .bl-social {
        justify-content: center;
        margin-top: 20px;
    }

    .bl-footer h3 {
        margin-bottom: 16px;
        letter-spacing: 3px;
    }

    .bl-footer__links {
        align-items: center;
        gap: 12px;
    }

    .bl-footer__contact {
        align-items: center;
        gap: 14px;
    }

    .bl-footer__contact span,
    .bl-footer__contact a {
        justify-content: center;
        max-width: 330px;
        text-align: left;
    }

    .bl-footer__bottom {
        padding: 22px 0 28px;
    }

    .bl-footer__bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 14px;
    }

    .bl-footer__legal {
        justify-content: center;
        gap: 16px 24px;
    }

    .ceo-img {
        height: 320px;
    }

    .contact-info-col h2 {
        font-size: 36px;
    }

    .contact-section {
        padding: 48px 0;
    }

    .contact-grid-layout {
        gap: 24px;
    }

    .contact-info-col h2 {
        font-size: 36px;
    }

    .contact-intro,
    .contact-outro {
        font-size: 14px;
        line-height: 1.55;
        max-width: 290px;
    }

    .contact-list-items {
        gap: 16px;
    }

    .contact-list-item {
        width: min(100%, 290px);
        gap: 12px;
    }

    .list-item-content {
        font-size: 14px;
        line-height: 1.45;
    }

    .contact-image-col img {
        width: min(100%, 300px);
        aspect-ratio: 1.45;
        border-radius: 16px;
    }

    .contact-form-input {
        min-height: 54px;
        padding: 15px 16px;
        font-size: 14px;
    }

    .contact-form-input[name="message"] {
        min-height: 118px;
    }

    .contact-form-submit-btn {
        min-height: 54px;
        font-size: 14px;
    }

    .whychoose-right {
        gap: 8px;
    }

    .feature-card {
        padding: 12px 12px 10px;
        min-width: 0;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 6px;
    }

    .feature-icon img {
        width: 40px;
        height: 40px;
    }

    .feature-card-header .feature-icon {
        margin-bottom: 6px !important;
    }

    .feature-card h3 {
        font-size: 12px;
        margin-bottom: 8px !important;
    }

    .feature-card p {
        font-size: 10.5px;
        line-height: 1.8;
    }
}

@media (max-width: 390px) {
    .contact-section {
        padding: 36px 0 44px;
    }

    .contact-grid-layout {
        gap: 20px;
    }

    .contact-image-col img {
        width: 100%;
        max-width: 282px;
        aspect-ratio: 1.55;
        border-radius: 14px;
    }

    .contact-info-col {
        gap: 18px;
    }

    .contact-info-col h2 {
        font-size: 32px;
        line-height: 1.08;
    }

    .contact-intro,
    .contact-outro {
        max-width: 270px;
        font-size: 13.5px;
    }

    .contact-list-items {
        gap: 14px;
    }

    .contact-list-item {
        width: min(100%, 270px);
        gap: 10px;
    }

    .list-item-icon-box {
        width: 20px;
        height: 20px;
    }

    .list-item-icon-box i {
        width: 18px;
        height: 18px;
    }

    .list-item-content {
        font-size: 13.5px;
    }

    .contact-form-col .mb-3 {
        margin-bottom: 10px !important;
    }

    .contact-form-col .mb-4 {
        margin-bottom: 10px !important;
    }

    .contact-form-input {
        min-height: 52px;
        padding: 14px 16px;
        border-radius: 7px;
        font-size: 13.5px;
    }

    .contact-form-input[name="message"] {
        min-height: 104px;
    }

    .contact-form-submit-btn {
        min-height: 52px;
        font-size: 13.5px;
    }

    .apps-column-left,
    .apps-column-right {
        gap: 18px;
    }

    .apps-column-left .app-card,
    .apps-column-right .app-card {
        height: 318px;
    }

    .app-card-body {
        padding: 22px;
    }

    .app-card-body h3 {
        font-size: 18px;
    }

    .app-card-body p {
        -webkit-line-clamp: 4;
        font-size: 12.5px;
    }

    .process-steps-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-step-card {
        min-height: auto;
    }
}

/* ==========================================
   PRODUCTS MEGA MENU SYSTEM
   ========================================== */

/* Chevron arrow on header nav links */
.nav-chevron-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    transition: transform 0.25s ease;
    pointer-events: none;
}

/* Desktop Only Mega Menu Styles */
@media (min-width: 1181px) {
    .bl-nav__item--has-megamenu {
        position: static; /* Important: allows mega menu absolute to span full header width */
        height: 100%;
        display: flex;
        align-items: center;
    }

    .bl-nav__item--has-megamenu:hover .nav-chevron-icon {
        transform: rotate(180deg);
        color: var(--ap-blue);
    }

    .bl-megamenu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid var(--ap-border);
        border-bottom: 2px solid var(--ap-blue);
        box-shadow: var(--ap-shadow-md);
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    /* Invisible bridge to prevent cursor gap drop */
    .bl-megamenu::before {
        content: '';
        position: absolute;
        top: -15px;
        left: 0;
        right: 0;
        height: 15px;
        background: transparent;
    }

    .bl-nav__item--has-megamenu:hover .bl-megamenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .bl-megamenu__inner {
        display: flex;
        position: relative;
        min-height: 480px;
        padding: 0 !important;
        background: #ffffff;
    }

    .megamenu-sidebar {
        width: 320px;
        background: #F8FAFC;
        border-right: 1px solid var(--ap-border);
        padding: 24px 0;
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
    }

    .megamenu-category-group {
        position: static; /* Allows products grid to size to bl-megamenu__inner */
    }

    .megamenu-cat-link {
        width: 100%;
        background: none;
        border: none;
        outline: none;
        text-align: left;
        padding: 14px 28px;
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
        font-size: 14px;
        color: var(--ap-text-primary);
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .megamenu-cat-link:hover,
    .megamenu-category-group.active .megamenu-cat-link {
        background: #ffffff;
        color: var(--ap-blue);
        font-weight: 600;
    }

    .megamenu-arrow-icon {
        width: 16px;
        height: 16px;
        opacity: 0;
        color: var(--ap-blue);
        transform: translateX(-6px);
        transition: all 0.2s ease;
    }

    .megamenu-cat-link:hover .megamenu-arrow-icon,
    .megamenu-category-group.active .megamenu-cat-link .megamenu-arrow-icon {
        opacity: 1;
        transform: translateX(0);
    }

    .megamenu-products-wrapper {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 320px;
        right: 0;
        padding: 32px;
        background: #ffffff;
        display: none;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        overflow-y: auto;
    }

    .megamenu-category-group.active .megamenu-products-wrapper {
        display: grid;
    }

    .megamenu-empty-state {
        grid-column: span 4;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        color: var(--ap-text-secondary);
        font-family: 'IBM Plex Sans', sans-serif;
        font-size: 14px;
    }

    .megamenu-product-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #ffffff;
        border: 1px solid #f1f5f9;
        border-radius: 8px;
        padding: 20px 16px;
        text-align: center;
        text-decoration: none;
        transition: all 0.25s ease;
    }

    .megamenu-product-card:hover {
        border-color: var(--ap-blue-light);
        background: var(--ap-blue-light);
        box-shadow: var(--ap-shadow-sm);
        transform: translateY(-3px);
    }

    .megamenu-product-title {
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: var(--ap-text-primary);
        text-transform: uppercase;
        margin-bottom: 16px;
        letter-spacing: 0.5px;
    }

    .megamenu-product-img {
        width: 100%;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
        overflow: hidden;
    }

    .megamenu-product-img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.25s ease;
    }

    .megamenu-product-card:hover .megamenu-product-img img {
        transform: scale(1.06);
    }

    .megamenu-product-desc {
        font-family: 'IBM Plex Sans', sans-serif;
        font-size: 12px;
        color: var(--ap-text-secondary);
        line-height: 1.4;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* Mobile & Tablet Responsive Accordion Mega Menu Styles */
@media (max-width: 1180px) {
    .bl-nav__item--has-megamenu {
        width: 100%;
        border-bottom: 1.5px solid var(--ap-border);
    }

    .bl-nav__item--has-megamenu .bl-nav__link {
        border-bottom: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 20px;
    }

    .bl-nav__item--has-megamenu.is-active .nav-chevron-icon {
        transform: rotate(180deg);
        color: var(--ap-blue);
    }

    .bl-megamenu {
        display: none;
        width: 100%;
        background: #F8FAFC;
        border-top: 1px solid var(--ap-border);
    }

    .bl-nav__item--has-megamenu.is-active .bl-megamenu {
        display: block;
    }

    .bl-megamenu__inner {
        padding: 0 !important;
    }

    .megamenu-sidebar {
        width: 100%;
    }

    .megamenu-category-group {
        border-bottom: 1px solid var(--ap-border);
    }

    .megamenu-category-group:last-child {
        border-bottom: none;
    }

    .megamenu-cat-link {
        width: 100%;
        background: #F8FAFC;
        border: none;
        outline: none;
        text-align: left;
        padding: 14px 20px;
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
        font-size: 14px;
        color: var(--ap-text-primary);
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .megamenu-category-group.active .megamenu-cat-link {
        color: var(--ap-blue);
        background: #ffffff;
        font-weight: 600;
    }

    .megamenu-arrow-icon {
        width: 14px;
        height: 14px;
        transition: transform 0.25s ease;
    }

    .megamenu-category-group.active .megamenu-cat-link .megamenu-arrow-icon {
        transform: rotate(90deg);
        color: var(--ap-blue);
    }

    .megamenu-products-wrapper {
        display: none;
        background: #ffffff;
        padding: 16px 20px;
        grid-template-columns: 1fr;
        gap: 12px;
        border-top: 1px solid #f1f5f9;
    }

    .megamenu-category-group.active .megamenu-products-wrapper {
        display: grid;
    }

    .megamenu-empty-state {
        color: var(--ap-text-secondary);
        font-family: 'IBM Plex Sans', sans-serif;
        font-size: 13px;
        padding: 8px 0;
    }

    .megamenu-product-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 12px;
        background: #f8fafc;
        border-radius: 6px;
        text-decoration: none;
    }

    .megamenu-product-title {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: var(--ap-text-primary);
        margin-bottom: 4px;
        text-transform: uppercase;
    }

    .megamenu-product-img {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        border-radius: 4px;
        padding: 4px;
        flex-shrink: 0;
    }

    .megamenu-product-img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .megamenu-product-desc {
        font-family: 'IBM Plex Sans', sans-serif;
        font-size: 12px;
        color: var(--ap-text-secondary);
        line-height: 1.4;
        margin: 0;
    }

    /* Tablet 2 columns grid optimization */
    @media (min-width: 600px) {
        .megamenu-products-wrapper {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
    }
}
