@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* --primary: #e01515; */
    --primary: #1d9de0;
    --secondary: #20166a;
    --third: #e01515;
    --dark: #171717;
    --dark-2: #242424;
    --text: #575757;
    --light: #f7f7f5;
    --border: #e8e8e8;
    --white: #ffffff;
    --surface: #f5f7fb;
    --ink: #202238;
    --muted: #62677a;
    --shadow-secondary: 0 8px 20px rgba(32, 22, 106, 0.25);
    --shadow-secondary-hover: 0 12px 28px rgba(32, 22, 106, 0.38);
    --shadow-secondary-sm: 0 4px 14px rgba(32, 22, 106, 0.22);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: clip;
    overflow-y: visible;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
}

h2 {
    font-size: 57px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

h3 {
    font-size: 21px;
    font-weight: 600;
}

h4 {
    font-weight: 700;
}

p {
    font-size: 16px;
    line-height: 1.75;
}

li {
    font-size: 16px;
}

a {
    text-decoration: none;
}

.container-custom {
    width: min(1240px, 92%);
    margin: auto;
}

/* =====================================================
               TOP BAR
            ===================================================== */

.topbar {
    background: var(--dark);
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
}

.topbar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar a {
    color: rgba(255, 255, 255, .9);
    transition: .3s;
}

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

.topbar i {
    margin-right: 6px;
    color: var(--primary);
}

/* =====================================================
               NAVBAR
            ===================================================== */

.main-navbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

.navbar-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.brand-text strong {
    display: block;
    font-size: 19px;
    color: var(--dark);
    line-height: 1.1;
}

.brand-text span {
    font-size: 10px;
    letter-spacing: 1.7px;
    color: #888;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #303030;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 13px 21px;
    border-radius: 4px;
}

.nav-cta:hover {
    background: var(--secondary);
}

.mobile-menu {
    display: none;
    border: 0;
    background: transparent;
    font-size: 25px;
}

/* =====================================================
            HOME PAGE HERO CAROUSEL BANNER
            ===================================================== */

.hero-carousel-section {
    width: 100%;
    overflow: hidden;
    background: #0f172a;
    line-height: 0;
}

#heroBannerCarousel {
    width: 100%;
}

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

.hero-banner-indicators {
    z-index: 5;
    bottom: 24px;
    margin-bottom: 0;
    gap: 8px;
}

.hero-banner-indicators button {
    width: 28px !important;
    height: 4px !important;
    border-radius: 2px !important;
    border: none !important;
    background-color: rgba(255, 255, 255, 0.45) !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

.hero-banner-indicators button.active {
    width: 44px !important;
    background-color: var(--primary, #1d9de0) !important;
}

.hero-carousel-btn {
    width: 65px;
    z-index: 5;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-carousel-btn:hover {
    opacity: 1;
}

.hero-carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.25s ease;
}

.hero-carousel-btn:hover .hero-carousel-arrow {
    background: var(--secondary, #20166a);
    border-color: var(--primary, #1d9de0);
    box-shadow: 0 4px 14px rgba(32, 22, 106, 0.35);
    transform: scale(1.08);
}

@media (max-width: 767px) {
    .hero-banner-indicators {
        bottom: 12px;
        gap: 5px;
    }
    .hero-banner-indicators button {
        width: 18px !important;
        height: 3px !important;
    }
    .hero-banner-indicators button.active {
        width: 28px !important;
    }
    .hero-carousel-btn {
        width: 40px;
    }
    .hero-carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
}

.hero {
    min-height: 650px;
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.hero-carousel-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

#heroBgCarousel {
    width: 100%;
    height: 100%;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-item.active .hero-slide-img {
    transform: scale(1.05);
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg,
        rgba(15, 23, 42, 0.94) 0%,
        rgba(15, 23, 42, 0.86) 42%,
        rgba(15, 23, 42, 0.45) 75%,
        rgba(15, 23, 42, 0.25) 100%);
    pointer-events: none;
}

/* Indicators */
.hero-carousel-dots {
    z-index: 5;
    bottom: 24px;
    margin-bottom: 0;
    gap: 8px;
}

.hero-carousel-dots button {
    width: 28px !important;
    height: 4px !important;
    border-radius: 2px !important;
    border: none !important;
    background-color: rgba(255, 255, 255, 0.35) !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

.hero-carousel-dots button.active {
    width: 44px !important;
    background-color: var(--primary, #1d9de0) !important;
}

/* Navigation Controls */
.hero-carousel-nav {
    width: 60px;
    z-index: 5;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.hero-carousel-nav:hover {
    opacity: 1;
}

.hero-nav-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s ease;
}

.hero-carousel-nav:hover .hero-nav-arrow {
    background: var(--secondary, #20166a);
    border-color: var(--primary, #1d9de0);
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .hero-overlay-gradient {
        background: linear-gradient(180deg,
            rgba(15, 23, 42, 0.94) 0%,
            rgba(15, 23, 42, 0.90) 50%,
            rgba(15, 23, 42, 0.82) 100%);
    }
    .hero-carousel-nav {
        display: none !important;
    }
}

.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(32, 22, 106, 0.35);
    filter: blur(100px);
    right: -150px;
    bottom: -150px;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 720px;
    color: #fff;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 24px;
}

.hero-tag span {
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.hero h1 {
    color: #fff;
    font-size: clamp(42px, 5.5vw, 78px);
    line-height: 1.02;
    letter-spacing: -3px;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero h1 em {
    color: var(--third);
    font-style: normal;
}

.hero-description {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    padding: 15px 25px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(32, 22, 106, 0.25);
}

.btn-primary-custom:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(32, 22, 106, 0.38);
}

.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, .5);
    color: #fff;
    padding: 14px 24px;
    border-radius: 4px;
    font-weight: 700;
    transition: .3s;
}

.btn-outline-custom:hover {
    background: #fff;
    color: var(--dark);
}

/* =====================================================
           HERO QUICK ENQUIRY FORM
        ===================================================== */
.hero-main-row {
    margin: 0;
    padding: 50px 0 30px;
}

.hero-form-card {
    background: rgba(22, 18, 56, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    z-index: 5;
}

.hero-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--third), transparent);
    border-radius: 2px;
}

.hero-form-header {
    margin-bottom: 20px;
}

.hero-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(29, 157, 224, 0.15);
    color: var(--third);
    border: 1px solid rgba(29, 157, 224, 0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-form-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.hero-form-header p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13.5px;
    margin-bottom: 0;
    line-height: 1.5;
}

.hero-form-group {
    margin-bottom: 16px;
}

.hero-form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 6px;
}

.hero-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-input-icon {
    position: absolute;
    left: 14px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    pointer-events: none;
    transition: color 0.25s ease;
}

.hero-form-control {
    width: 100%;
    height: 46px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 0 14px 0 38px;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: all 0.25s ease;
}

.hero-form-control::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.hero-form-control:focus {
    border-color: var(--third);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 3px rgba(29, 157, 224, 0.25);
    color: #ffffff;
}

.hero-input-wrap:focus-within .hero-input-icon {
    color: var(--third);
}

.hero-phone-wrap {
    display: flex;
    gap: 8px;
    width: 100%;
}

.hero-country-code {
    width: 110px;
    flex-shrink: 0;
    height: 46px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 0 8px 0 10px;
    color: #ffffff;
    font-family: inherit;
    font-size: 13.5px;
    outline: none;
    cursor: pointer;
    transition: all 0.25s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
}

.hero-country-code:focus {
    border-color: var(--third);
    background-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 3px rgba(29, 157, 224, 0.25);
}

.hero-country-code option {
    color: #1b154b;
    background: #ffffff;
}

.hero-form-submit {
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    background: var(--primary);
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(32, 22, 106, 0.25);
}

.hero-form-submit:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(32, 22, 106, 0.38);
}

.hero-form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11.5px;
    text-align: center;
}

.hero-form-footer i {
    color: var(--third);
    font-size: 13px;
}

/* =====================================================
               SECTION COMMON
            ===================================================== */

section {
    padding: 100px 0;
}

.section-label {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(34px, 4.5vw, 57px);
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-description {
    line-height: 1.8;
    font-size: 16px;
    color: #666;
}

/* =====================================================
               ABOUT
            ===================================================== */

.about-section {
    background: #fff;
}

.about-image {
    min-height: 560px;
    position: relative;
    background:
        linear-gradient(135deg, rgba(224, 21, 21, .05), rgba(0, 0, 0, .1)),
        url("../images/img-2.jpg") center/cover;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--primary);
    color: #fff;
    padding: 30px;
    width: 190px;
}

.about-badge strong {
    display: block;
    font-size: 36px;
}

.about-content {
    padding-left: 50px;
}

.about-content p {
    line-height: 1.85;
    margin-bottom: 22px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 35px 0;
}

.feature {
    display: flex;
    gap: 12px;
}

.feature-icon {
    flex: 0 0 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(224, 21, 21, .1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.feature strong {
    display: block;
    color: var(--dark);
    margin-bottom: 3px;
}

.feature span {
    font-size: 13px;
    line-height: 1.5;
}

/* =====================================================
               PRODUCTS
            ===================================================== */

.products-section {
    background: var(--light);
}

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 45px;
}

.section-heading-row .section-description {
    max-width: 530px;
}

.product-card {
    background: #fff;
    height: 100%;
    border: 1px solid #ececec;
    transition: .35s;
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .09);
}

.product-image {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 700;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.product-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-link {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

/* =====================================================
               WHAT WE DO
            ===================================================== */

.process-section {
    /* background: var(--dark); */
    color: #fff;
}

.process-section .section-title {
    color: #fff;
}

.process-section .section-description {
    color: rgba(255, 255, 255, .7);
}

.process-card {
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 28px;
    height: 100%;
}

.process-number {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.process-card h3 {
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 13px;
}

.process-card p {
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    font-size: 16px;
}

/* =====================================================
               WHY CHOOSE US
            ===================================================== */

.why-section {
    background: #fff;
}

.why-box {
    padding: 30px;
    border: 1px solid var(--border);
    height: 100%;
    transition: .3s;
}

.why-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.why-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 21, 21, .09);
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 25px;
}

.why-box h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* =====================================================
               INDUSTRIAL BANNER
            ===================================================== */

.industrial-section {
    padding: 0;
    position: relative;
}

.industrial-inner {
    min-height: 560px;
    background:
        linear-gradient(105deg,
            rgba(12, 12, 12, 0.95) 0%,
            rgba(18, 16, 24, 0.88) 50%,
            rgba(22, 18, 40, 0.78) 100%),
        url("../images/img-8.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 75px 0;
    position: relative;
}

.industrial-row {
    width: 100%;
    margin: 0;
}

.industrial-content {
    padding: 0;
}

.industrial-content .section-label {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.industrial-content h2 {
    color: #fff;
    font-size: clamp(34px, 4.5vw, 57px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.industrial-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

.industrial-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}

.industrial-list li {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.industrial-list i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 14px;
}

.industrial-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Industrial Feature Cards (Right Side) */
.industrial-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.industrial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 24px 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.industrial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: height 0.35s ease;
}

.industrial-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(29, 157, 224, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.industrial-card:hover::before {
    height: 100%;
}

.industrial-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(224, 21, 21, 0.15);
    border: 1px solid rgba(224, 21, 21, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.industrial-card:hover .industrial-card-icon {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 16px rgba(32, 22, 106, 0.3);
}

.industrial-card h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.industrial-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}

/* =====================================================
               INDUSTRIES
            ===================================================== */

.industries-section {
    background: var(--light);
}

.industry-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
}

.industry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 25%, rgba(0, 0, 0, .85));
}

.industry-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    color: #fff;
}

.industry-content h3 {
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 7px;
}

.industry-content p {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    margin: 0;
}

/* =====================================================
               COMMITMENT
            ===================================================== */

.commitment-section {
    background: #fff;
}

.commitment-box {
    padding: 30px 0;
    border-top: 1px solid var(--border);
}

.commitment-box h3 {
    font-size: 21px;
    font-weight: 600;
}

.commitment-box p {
    font-size: 16px;
    line-height: 1.7;
}

/* =====================================================
               APPROACH
            ===================================================== */

.approach-section {
    background: #f1eee9;
}

.approach-step {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.approach-number {
    font-size: 13px;
    color: var(--primary);
    font-weight: 800;
}

.approach-step h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px;
}

.approach-step p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

/* =====================================================
               RESOURCES
            ===================================================== */

.resources-section {
    background: #fff;
}

.resource-card {
    border: 1px solid var(--border);
    height: 100%;
    overflow: hidden;
    transition: .3s;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.resource-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.resource-content {
    padding: 25px;
}

.resource-content small {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
}

.resource-content h3 {
    font-size: 21px;
    font-weight: 600;
    margin: 10px 0;
}

.resource-content p {
    font-size: 16px;
    line-height: 1.7;
}

/* =====================================================
               FAQ
            ===================================================== */

.faq-section {
    background: var(--light);
    padding: 95px 0;
}

.faq-sticky-sidebar {
    position: sticky;
    top: 110px;
}



.faq-support-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.faq-btn-wa {
    background: #25d366;
    color: #ffffff !important;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-grow: 1;
    justify-content: center;
}

.faq-btn-wa:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.faq-btn-contact {
    background: var(--surface);
    color: var(--dark) !important;
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-grow: 1;
    justify-content: center;
}

.faq-btn-contact:hover {
    background: var(--secondary);
    color: #ffffff !important;
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(32, 22, 106, 0.25);
}

.faq-support-note {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 12px;
    color: #7b8092;
    font-weight: 500;
}

.faq-support-note i {
    color: #f59e0b;
}

.accordion-item {
    border: 0;
    border-bottom: 1px solid #ddd;
    background: transparent;
    border-radius: 0 !important;
}

.accordion-button {
    background: transparent;
    box-shadow: none !important;
    padding: 23px 0;
    color: var(--dark);
    font-weight: 700;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: transparent;
}

.accordion-body {
    padding: 0 30px 23px 0;
    font-size: 16px;
    line-height: 1.8;
}

/* =====================================================
               CONTACT CTA
            ===================================================== */

.contact-section {
    padding: 95px 0;
    background: linear-gradient(135deg, #0d0922 0%, #15103a 50%, #0a071c 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    right: -120px;
    top: -150px;
    pointer-events: none;
}

.contact-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 157, 224, 0.25) 0%, transparent 70%);
    left: 30%;
    bottom: -120px;
    pointer-events: none;
}

.contact-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.contact-cta-content h2 {
    color: #fff;
    font-size: clamp(34px, 4.5vw, 57px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.contact-cta-content h2 em {
    font-style: normal;
    color: #ffdddd;
    display: block;
}

.contact-cta-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 580px;
}

.contact-cta-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.contact-btn-primary {
    background: #ffffff;
    color: var(--primary);
    padding: 15px 28px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-btn-primary:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.contact-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 14px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-cta-perks {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.contact-perk-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13.5px;
    font-weight: 600;
}

.contact-perk-item i {
    color: #ffffff;
    font-size: 15px;
}

/* Right Side Channels Card */
.contact-cta-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    padding: 30px 26px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
}

.cta-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding-bottom: 16px;
    margin-bottom: 18px;
}

.cta-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-header-title strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    display: inline-block;
}

.cta-status {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.14);
    padding: 3px 10px;
    border-radius: 12px;
}

.cta-channels-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-channel-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 13px 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.cta-channel-item:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateX(4px);
    color: #fff;
}

.cta-channel-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    margin-right: 14px;
    flex-shrink: 0;
    transition: 0.3s;
}

.cta-channel-icon.cta-icon-wa {
    background: rgba(37, 211, 102, 0.25);
    color: #25d366;
}

.cta-channel-item:hover .cta-channel-icon {
    background: #ffffff;
    color: var(--primary);
}

.cta-channel-item:hover .cta-channel-icon.cta-icon-wa {
    background: #25d366;
    color: #ffffff;
}

.cta-channel-info {
    flex-grow: 1;
}

.cta-channel-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-channel-value {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
}

.cta-channel-arrow {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    transition: all 0.25s ease;
}

.cta-channel-item:hover .cta-channel-arrow {
    color: #ffffff;
    transform: translate(2px, -2px);
}

.cta-location-item {
    cursor: default;
}

.cta-location-item:hover {
    transform: none;
    background: rgba(0, 0, 0, 0.16);
    border-color: rgba(255, 255, 255, 0.1);
}

.cta-location-item:hover .cta-channel-icon {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

/* =====================================================
               FOOTER
            ===================================================== */

footer {
    background: var(--primary);
    color: rgba(255, 255, 255, .88);
    padding-top: 75px;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand .brand-text strong {
    color: #fff;
}

.footer-brand p {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
    color: rgba(255, 255, 255, .88);
}

.footer-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 22px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 11px;
    font-size: 16px;
    color: rgba(255, 255, 255, .88);
}

.footer-links a {
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    transition: .3s;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .2);
    margin-top: 55px;
    padding: 22px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .82);
}

.socials {
    display: flex;
    gap: 9px;
}

.socials a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-radius: 6px;
    transition: .3s;
}

.socials a:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--primary);
}

/* =====================================================
               RESPONSIVE
            ===================================================== */

@media(max-width: 991px) {

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-card {
        display: none;
    }

    .about-content {
        padding-left: 0;
        padding-top: 60px;
    }

    .about-badge {
        right: 20px;
    }

    .section-heading-row {
        display: block;
    }

    .section-heading-row .section-description {
        margin-top: 15px;
    }

    .btn-primary-custom {
        width: 100%;
        justify-content: center;
    }

    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }
}

@media(max-width: 767px) {

    section {
        padding: 70px 0;
    }

    .topbar-left {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .topbar-right {
        gap: 15px;
    }

    .hero,
    .hero-content {
        min-height: 600px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 15px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 400px;
    }

    .about-badge {
        bottom: 15px;
    }

    .industrial-content {
        padding: 0;
    }

    .industrial-list {
        grid-template-columns: 1fr;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .brand-text span {
        font-size: 8px;
    }
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #303030;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: color .3s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle[aria-expanded="true"] {
    color: #e01515;
}

.nav-dropdown-toggle i {
    font-size: 10px;
    transition: transform .25s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i,
.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: grid;
    width: 275px;
    padding: 12px;
    border: 1px solid #ececec;
    border-top: 3px solid #e01515;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    gap: 3px;
    left: 50%;
    top: calc(100% + 24px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity .25s ease, transform .25s ease;
}

.nav-dropdown-menu::before {
    position: absolute;
    height: 27px;
    content: "";
    right: 0;
    bottom: 100%;
    left: 0;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-links .nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    color: #323645;
    font-size: 13px;
    font-weight: 600;
}

.nav-links .nav-dropdown-menu a::before {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: #1d9de0;
    content: "";
}

.nav-links .nav-dropdown-menu a:nth-child(even)::before {
    background: #20166a;
}

.nav-links .nav-dropdown-menu a:hover {
    background: #f5f7fb;
    color: #e01515;
}

.nav-links>a[aria-current="page"] {
    color: #e01515;
}

footer .brand-logo-crop {
    border-radius: 8px;
}

@media (max-width: 991px) {

    .nav-links,
    .nav-links.show {
        display: none !important;
    }

    .nav-dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        margin-top: 12px;
        border-top-width: 2px;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        display: none;
        transform: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: grid;
        transform: none;
    }
}

/* ========================= About Page ==================== */


.about-page {
    color: var(--text);
    background: var(--white);
    overflow: visible;
}

.about-page *,
.about-page *::before,
.about-page *::after {
    box-sizing: border-box;
}

.about-page a {
    text-decoration: none;
}

.about-container {
    width: min(1240px, 92%);
    margin: 0 auto;
}

.about-section {
    padding: 110px 0;
    position: relative;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 17px;
}

.about-label::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

.about-title {
    color: var(--dark);
    font-size: clamp(35px, 4.3vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 800;
    margin: 0 0 22px;
}

.about-title span {
    color: var(--primary);
}

.about-description {
    font-size: 16px;
    line-height: 1.85;
    color: #666;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 800;
    transition: .35s ease;
    border-radius: 4px;
}

.about-btn-red {
    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: 0 8px 20px rgba(32, 22, 106, 0.25);
}

.about-btn-red:hover {
    color: #fff;
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(32, 22, 106, 0.38);
}

.about-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .45);
}

.about-btn-outline:hover {
    color: var(--dark);
    background: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

.about-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(circle at 83% 25%,
            rgba(29, 157, 224, .32),
            transparent 25%),
        radial-gradient(circle at 75% 80%,
            rgba(224, 21, 21, .30),
            transparent 27%),
        linear-gradient(120deg,
            #0e0e0e 0%,
            #181818 50%,
            #111 100%);
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .035) 1px,
            transparent 1px);

    background-size: 65px 65px;
    opacity: .55;

    mask-image: linear-gradient(to bottom,
            black,
            transparent);
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    right: -250px;
    top: -180px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 0 0 70px rgba(255, 255, 255, .025),
        0 0 0 140px rgba(255, 255, 255, .018);
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    gap: 80px;
}

.about-hero-row {
    margin: 0;
    /* padding: 70px 0 50px; */
    position: relative;
    z-index: 2;
}

.about-hero-copy {
    position: relative;
    z-index: 2;
}

.about-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 25px;
}

.about-hero-label span {
    width: 36px;
    height: 2px;
    background: var(--primary);
}

.about-hero h1 {
    color: #fff;
    font-size: clamp(48px, 6vw, 62px);
    line-height: .98;
    letter-spacing: -4px;
    font-weight: 800;

    margin: 0 0 27px;
}

.about-hero h1 span {
    display: block;
    color: var(--third);
}

.about-hero-description {
    max-width: 650px;

    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.85;

    margin: 0 0 35px;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}


/* HERO ART */

.about-intro {
    background: #fff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-intro-side {
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: start;
}

.about-intro-image-wrap {
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.about-intro-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    display: block;
}

.about-intro-image-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.about-intro-content {
    width: 100%;
    max-width: 100%;
}

.about-intro-content h2 {
    color: var(--dark);

    font-size: clamp(35px, 4.5vw, 57px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -2.2px;

    margin: 0 0 30px;
}

.about-intro-content h2 span {
    color: var(--third);
}

.about-intro-content p {
    color: #626262;

    font-size: 16px;
    line-height: 1.9;

    margin: 0 0 20px;
}

.about-intro-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 45px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-highlight-item {
    padding: 25px 25px 25px 0;

    border-right: 1px solid var(--border);
}

.about-highlight-item:not(:first-child) {
    padding-left: 25px;
}

.about-highlight-item:last-child {
    border-right: 0;
}

.about-highlight-item strong {
    display: block;
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 6px;
}

.about-highlight-item span {
    color: #777;

    font-size: 13px;
    line-height: 1.5;
}

.about-story {
    background: var(--light);
}

.about-story-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;

    gap: 80px;

    align-items: center;
}

.about-story-visual {
    min-height: 590px;

    position: relative;

    background:
        linear-gradient(135deg,
            rgba(224, 21, 21, .10),
            rgba(0, 0, 0, .15)),
        url("../images/img-17.jpg") center/cover no-repeat;

    overflow: hidden;
}

.about-story-visual::before {
    content: "";

    position: absolute;
    inset: 20px;

    border: 1px solid rgba(255, 255, 255, .35);

    pointer-events: none;
}

.about-story-visual::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -60px;
    top: -60px;

    border-radius: 50%;

    background: var(--third);

    opacity: .75;

    mix-blend-mode: multiply;
}

.about-story-badge {
    position: absolute;

    left: 30px;
    bottom: 30px;

    width: min(400px, calc(100% - 60px));

    padding: 28px;

    background: rgba(23, 23, 23, .94);

    color: #fff;

    z-index: 2;
}

.about-story-badge small {
    display: block;

    color: var(--third);

    text-transform: uppercase;
    letter-spacing: 2px;

    font-size: 11px;
    font-weight: 800;

    margin-bottom: 10px;
}

.about-story-badge h3 {
    color: #fff;

    font-size: 21px;
    font-weight: 600;
    line-height: 1.2;

    margin: 0;
}

.about-story-content {
    max-width: 650px;
}

.about-story-content h2 {
    color: var(--dark);

    font-size: clamp(34px, 4.5vw, 57px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -2px;

    margin: 0 0 25px;
}

.about-story-content h2 span {
    color: var(--primary);
}

.about-story-content p {
    font-size: 16px;
    line-height: 1.85;

    margin-bottom: 20px;
}

.about-story-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 800;

    transition: .3s;
}

.about-story-link:hover {
    color: var(--secondary);
    gap: 15px;
}

.about-solutions {
    background: #fff;
}

.about-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    margin-bottom: 55px;
}

.about-heading-copy {
    max-width: 620px;
}

.about-heading-copy p {
    max-width: 550px;

    font-size: 16px;
    line-height: 1.8;
}

.about-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.about-solution-card {
    position: relative;

    min-height: 310px;

    padding: 32px;

    border: 1px solid var(--border);

    background: #fff;

    overflow: hidden;

    transition: .4s ease;
}

.about-solution-card:hover {
    transform: translateY(-9px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .10);
}

.about-solution-number {
    position: absolute;
    right: 24px;
    top: 18px;
    color: #ececec;
    font-size: 50px;
    font-weight: 800;
}

.about-solution-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(224, 21, 21, .08);

    color: var(--primary);

    font-size: 21px;

    margin-bottom: 55px;

    transition: .35s;
}

.about-solution-card:hover .about-solution-icon {
    color: #fff;
    background: var(--primary);

    transform: rotate(-5deg);
}

.about-solution-card h3 {
    color: var(--dark);

    font-size: 21px;

    margin: 0 0 12px;
}

.about-solution-card p {
    color: #6b6b6b;

    font-size: 16px;
    line-height: 1.75;

    margin: 0;
}

.about-dark-section {
    position: relative;

    background:
        radial-gradient(circle at 90% 15%,
            rgba(29, 157, 224, .16),
            transparent 25%),
        radial-gradient(circle at 10% 85%,
            rgba(224, 21, 21, .16),
            transparent 25%),
        var(--dark);

    color: #fff;

    overflow: hidden;
}

.about-dark-section::before {
    content: "PARISHA";
    position: absolute;
    right: -20px;
    bottom: -45px;
    color: rgba(255, 255, 255, .025);
    font-size: 190px;
    font-weight: 800;
    line-height: 1;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;

    position: relative;
    z-index: 2;
}

.about-dark-card {
    min-height: 510px;

    padding: 50px;

    background: #222;

    border: 1px solid rgba(255, 255, 255, .10);

    position: relative;

    overflow: hidden;
}

.about-dark-card::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -110px;
    bottom: -110px;

    border-radius: 50%;

    border: 50px solid rgba(255, 255, 255, .035);
}

.about-dark-card.blue {
    background:
        linear-gradient(145deg,
            #202020,
            #151515);
}

.about-dark-card.red {
    background:
        linear-gradient(145deg,
            rgba(224, 21, 21, .88),
            #191919 72%);
}

.about-dark-label {
    display: block;

    color: var(--third);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 28px;
}

.about-dark-card.red .about-dark-label {
    color: #fff;
}

.about-dark-card h2 {
    max-width: 520px;

    color: #fff;

    font-size: clamp(32px, 4vw, 57px);
    font-weight: 600;
    line-height: 1.1;

    letter-spacing: -1.5px;

    margin: 0 0 23px;
}

.about-dark-card p {
    max-width: 530px;

    color: rgba(255, 255, 255, .72);

    font-size: 16px;
    line-height: 1.85;

    margin-bottom: 20px;
}

.about-mission-list {
    list-style: none;

    padding: 0;
    margin: 30px 0 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px 25px;
}

.about-mission-list li {
    position: relative;

    padding-left: 22px;

    color: rgba(255, 255, 255, .82);

    font-size: 16px;
    line-height: 1.5;
}

.about-mission-list li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: var(--third);

    font-weight: 800;
}

.about-dark-card.red .about-mission-list li::before {
    color: #fff;
}


/* =========================================================
           VALUES SECTION
        ========================================================= */

.about-values {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
    position: relative;
    overflow: hidden;
    padding: 105px 0;
}

.about-values::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1240px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 21, 21, 0.25), rgba(29, 157, 224, 0.25), transparent);
}

.about-values-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.about-value-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 18px;
    padding: 34px 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.035);
    overflow: hidden;
}

.about-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(32, 22, 106, 0.09);
}

.about-value-card:hover::before {
    opacity: 1;
}

.about-value-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.about-value-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(224, 21, 21, 0.07);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.35s ease;
    border: 1px solid rgba(224, 21, 21, 0.12);
}

.about-value-card:hover .about-value-icon {
    background: linear-gradient(135deg, var(--primary), #b90e0e);
    color: #ffffff;
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 8px 20px rgba(32, 22, 106, 0.25);
    border-color: transparent;
}

.about-value-number {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #8c93a8;
    background: #f1f4fa;
    padding: 4px 12px;
    border-radius: 99px;
    transition: all 0.3s ease;
}

.about-value-card:hover .about-value-number {
    color: var(--secondary);
    background: rgba(32, 22, 106, 0.08);
}

.about-value-card h3 {
    color: var(--dark);
    font-size: 21px;
    font-weight: 600;
    margin: 0 0 12px;
    transition: color 0.3s ease;
}

.about-value-card:hover h3 {
    color: var(--secondary);
}

.about-value-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.about-value-accent {
    margin-top: 22px;
    height: 2px;
    width: 32px;
    background: #e2e8f0;
    border-radius: 2px;
    transition: all 0.35s ease;
}

.about-value-card:hover .about-value-accent {
    width: 60px;
    background: linear-gradient(90deg, var(--primary), var(--third));
}


.about-why {
    background: var(--light);
}

.about-why-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 80px;

    align-items: start;
}

.about-why-intro {
    position: sticky;
    top: 120px;
}

.about-why-intro h2 {
    color: var(--dark);

    font-size: clamp(36px, 4.5vw, 57px);
    font-weight: 600;

    line-height: 1.05;

    letter-spacing: -2px;

    margin: 0 0 22px;
}

.about-why-intro h2 span {
    color: var(--primary);
}

.about-why-intro p {
    max-width: 500px;

    font-size: 16px;
    line-height: 1.85;
}

.about-why-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    border-top: 1px solid var(--border);
}

.about-why-item {
    padding: 28px 25px;

    border-bottom: 1px solid var(--border);

    transition: .3s;
}

.about-why-item-full {
    grid-column: span 2;
}

.about-why-item:nth-child(odd) {
    border-right: 1px solid var(--border);
}

.about-why-item:hover {
    background: #fff;
}

.about-why-item>span {
    display: block;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    margin-bottom: 18px;
}

.about-why-item h3 {
    color: var(--dark);

    font-size: 21px;
    font-weight: 600;

    margin: 0 0 8px;
}

.about-why-item p {
    color: #707070;

    font-size: 16px;
    line-height: 1.65;

    margin: 0;
}


/* =========================================================
   WHO WE SERVE
   ========================================================= */

.about-serve {
    background: #fff;
}

.about-serve-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 3px;

    background: var(--border);

    border: 1px solid var(--border);
}

.about-serve-card {
    min-height: 220px;

    padding: 30px;

    background: #fff;

    position: relative;

    overflow: hidden;

    transition: .35s;
}

.about-serve-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -50px;
    bottom: -50px;

    border-radius: 50%;

    background: rgba(29, 157, 224, .08);

    transition: .35s;
}

.about-serve-card:hover {
    background: var(--dark);

    transform: translateY(-3px);

    z-index: 2;
}

.about-serve-card:hover::after {
    width: 170px;
    height: 170px;

    background: rgba(224, 21, 21, .18);
}

.about-serve-card small {
    display: block;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    margin-bottom: 55px;
}

.about-serve-card h3 {
    color: var(--dark);

    font-size: 21px;
    font-weight: 600;

    margin: 0 0 8px;

    position: relative;
    z-index: 2;
}

.about-serve-card p {
    color: #707070;

    font-size: 16px;
    line-height: 1.65;

    margin: 0;

    position: relative;
    z-index: 2;
}

.about-serve-card:hover h3 {
    color: #fff;
}

.about-serve-card:hover p {
    color: rgba(255, 255, 255, .68);
}


/* =========================================================
   ABOUT - MEET OUR TEAM / LEADERSHIP SECTION
   ========================================================= */
.about-team {
    padding: 100px 0;
    background: #ffffff;
}

.about-team-heading {
    text-align: center;
    margin-bottom: 55px;
}

.about-team-heading .about-title {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin: 12px 0 16px;
    letter-spacing: -1px;
}

.about-team-heading .about-title span {
    color: var(--primary);
}

.about-team-heading .about-description {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 auto;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.035);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(32, 22, 106, 0.18);
    box-shadow: 0 20px 45px rgba(32, 22, 106, 0.12);
}

.team-card-image-wrap {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    background: #f1f5f9;
}

.team-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

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

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-card-overlay {
    opacity: 1;
}

.team-social-links {
    display: flex;
    gap: 10px;
}

.team-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.team-social-links a:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.team-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.75);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(6px);
}

.team-card-body {
    padding: 24px 20px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-role {
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary);
    margin-bottom: 6px;
    display: block;
}

.team-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark, #0f172a);
    margin-bottom: 10px;
    line-height: 1.3;
}

.team-bio {
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 16px;
    flex-grow: 1;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.team-tags span {
    background: #f8fafc;
    border: 1px solid #eef2f6;
    color: #475569;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

@media (max-width: 1199px) {
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .about-team {
        padding: 70px 0;
    }
    .about-team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .team-card-image-wrap {
        height: 250px;
    }
}

/* =========================================================
   COMMITMENT
   ========================================================= */

.about-commitment {
    padding: 0;

    background: var(--light);
}

.about-commitment-inner {
    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 70px;

    align-items: center;

    padding: 100px 0;
}

.about-commitment-content {
    max-width: 700px;
}

.about-commitment-content h2 {
    color: var(--dark);

    font-size: clamp(38px, 4.5vw, 57px);
    font-weight: 600;

    line-height: 1.05;

    letter-spacing: -2px;

    margin: 0 0 25px;
}

.about-commitment-content h2 span {
    display: block;

    color: var(--third);
}

.about-commitment-content p {
    max-width: 650px;

    font-size: 16px;
    line-height: 1.85;

    margin-bottom: 17px;
}

.about-promise-box {
    position: relative;

    padding: 45px;

    background: var(--dark);

    color: #fff;

    overflow: hidden;

    box-shadow: 0 30px 70px rgba(0, 0, 0, .15);
}

.about-promise-box::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    border: 45px solid rgba(29, 157, 224, .18);
}

.about-promise-box small {
    display: block;

    color: var(--third);

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 2px;

    margin-bottom: 18px;
}

.about-promise-box strong {
    display: block;
    max-width: 400px;
    color: #fff;
    font-size: 27px;
    line-height: 1.25;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.about-promise-line {
    height: 1px;

    width: 100%;

    background: rgba(255, 255, 255, .15);

    margin-bottom: 22px;
}

.about-promise-box a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #fff;

    font-size: 13px;
    font-weight: 800;

    transition: .3s;
}

.about-promise-box a:hover {
    color: var(--third);

    gap: 15px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.about-final {
    padding: 90px 0;

    background: #fff;
}

.about-final-card {
    min-height: 440px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    padding: 75px;

    background:
        linear-gradient(105deg,
            rgba(12, 12, 12, .96),
            rgba(23, 23, 23, .92) 60%,
            rgba(23, 23, 23, .72)),
        url("../images/img-8.jpg") center/cover no-repeat;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, .16);
}

.about-final-card::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -160px;
    top: -160px;

    border-radius: 50%;

    border: 70px solid rgba(29, 157, 224, .12);
}

.about-final-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: 100px;
    bottom: -100px;

    border-radius: 50%;

    background: rgba(224, 21, 21, .22);

    filter: blur(20px);
}

.about-final-content {
    max-width: 780px;

    position: relative;
    z-index: 2;
}

.about-final-content small {
    color: var(--third);

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-final-content h2 {
    color: #fff;

    font-size: clamp(38px, 5vw, 60px);
    font-weight: 700;

    line-height: .98;

    letter-spacing: -2px;

    margin: 17px 0 20px;
}

.about-final-content p {
    max-width: 700px;

    color: rgba(255, 255, 255, .75);

    font-size: 16px;
    line-height: 1.8;

    margin: 0;
}

.about-final-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 32px;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes aboutFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes aboutFloatSmall {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-intro-side {
        position: static !important;
    }

    .about-intro-number {
        display: none;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-story-visual {
        min-height: 500px;
    }

    .about-solution-grid,
    .about-values-grid,
    .about-serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-mission-grid {
        grid-template-columns: 1fr;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-why-intro {
        position: static;
    }

    .about-why-intro h2 {
        font-size: clamp(28px, 6vw, 42px);
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .about-why-list {
        grid-template-columns: 1fr;
    }

    .about-why-item {
        grid-column: auto !important;
        border-right: 0 !important;
        padding: 22px 20px;
    }

    .about-why-item-full {
        grid-column: auto !important;
    }

    .about-commitment-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


@media (max-width: 768px) {

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

    .about-hero {
        min-height: auto;
    }

    .about-hero-inner {
        padding: 80px 0;
    }

    .about-hero h1 {
        font-size: clamp(43px, 12vw, 65px);
        letter-spacing: -3px;
    }

    .about-hero-description {
        font-size: 16px;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-intro-content h2 {
        font-size: clamp(26px, 7vw, 36px);
        line-height: 1.2;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .about-intro-content p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .about-intro-highlight {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .about-highlight-item {
        padding: 20px 0 !important;

        border-right: 0;

        border-bottom: 1px solid var(--border);
    }

    .about-highlight-item:last-child {
        border-bottom: 0;
    }

    .about-heading-row {
        display: block;

        margin-bottom: 40px;
    }

    .about-heading-copy {
        margin-bottom: 20px;
    }

    .about-solution-grid,
    .about-values-grid,
    .about-serve-grid {
        grid-template-columns: 1fr;
    }

    .about-dark-card {
        min-height: auto;

        padding: 35px;
    }

    .about-mission-list {
        grid-template-columns: 1fr;
    }

    .about-why-intro h2 {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.2;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .about-why-intro p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-why-list {
        grid-template-columns: 1fr;
    }

    .about-why-item {
        grid-column: auto !important;
        border-right: 0 !important;
        padding: 20px 16px;
    }

    .about-why-item-full {
        grid-column: auto !important;
    }

    .about-why-item h3 {
        font-size: 18px;
    }

    .about-why-item p {
        font-size: 14.5px;
    }

    .about-commitment-inner {
        padding: 80px 0;
    }

    .about-final {
        padding: 60px 0;
    }

    .about-final-card {
        min-height: auto;

        padding: 50px 30px;
    }

    .hero-main-row {
        padding: 30px 0 20px;
    }

    .hero-form-card {
        padding: 26px 20px;
        margin-top: 20px;
    }

    .industrial-inner {
        padding: 50px 0;
    }

    .industrial-cards-grid {
        margin-top: 30px;
    }

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

    .contact-cta-card {
        margin-top: 30px;
        padding: 24px 20px;
    }

    .faq-sticky-sidebar {
        position: static;
    }
}


@media (max-width: 480px) {

    .about-container {
        width: min(100% - 30px, 1240px);
    }

    .about-hero-actions,
    .about-final-actions {
        flex-direction: column;
    }

    .about-btn {
        width: 100%;
    }

    .about-story-visual {
        min-height: 390px;
    }

    .about-story-badge {
        left: 18px;
        right: 18px;
        bottom: 18px;

        width: auto;

        padding: 20px;
    }

    .about-story-badge h3 {
        font-size: 21px;
    }

    .about-dark-card {
        padding: 28px;
    }

    .about-promise-box {
        padding: 32px;
    }

    .about-promise-box strong {
        font-size: 22px;
    }

    .about-final-content h2 {
        font-size: 42px;
    }

    .hero-country-code {
        width: 95px;
        padding: 0 4px 0 8px;
        font-size: 12.5px;
    }

    .hero-form-card {
        padding: 22px 16px;
    }

    .hero-form-header h3 {
        font-size: 20px;
    }

    .industrial-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-btn-primary,
    .contact-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .contact-cta-perks {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-cta-card {
        padding: 20px 16px;
    }

    .cta-channel-value {
        font-size: 13.5px;
    }
}

/* =========================================================
           PAGE HERO (SHARED FOR FAQ & BLOGS)
        ========================================================= */
.page-hero {
    background:
        radial-gradient(circle at 83% 25%,
            rgba(29, 157, 224, .32),
            transparent 25%),
        radial-gradient(circle at 75% 80%,
            rgba(224, 21, 21, .30),
            transparent 27%),
        linear-gradient(120deg,
            #0e0e0e 0%,
            #181818 50%,
            #111 100%);
    padding: 100px 0 75px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .035) 1px,
            transparent 1px);
    background-size: 65px 65px;
    opacity: .55;
    mask-image: linear-gradient(to bottom,
            black,
            transparent);
    pointer-events: none;
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    right: -250px;
    top: -180px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 0 0 70px rgba(255, 255, 255, .025),
        0 0 0 140px rgba(255, 255, 255, .018);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--third, #1d9de0);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-hero h1 {
    color: #ffffff;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.page-hero h1 span {
    color: var(--primary, #e01515);
}

.page-hero .hero-description {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    font-size: 14.5px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.btn-primary-custom {
    background: var(--primary, #1d9de0);
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 8px 20px rgba(32, 22, 106, 0.25);
}

.btn-primary-custom:hover {
    background: var(--secondary, #20166a);
    color: #ffffff;
    border-color: var(--secondary, #20166a);
    box-shadow: 0 12px 28px rgba(32, 22, 106, 0.38);
    transform: translateY(-2px);
}

/* =========================================================
           FAQ PAGE STYLES
        ========================================================= */
.faq-section {
    padding: 85px 0;
    background: #f8fafc;
}

.faq-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.faq-cat-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 10px 20px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-cat-btn:hover {
    border-color: var(--third, #1d9de0);
    color: var(--secondary, #20166a);
    transform: translateY(-2px);
}

.faq-cat-btn.active {
    background: var(--secondary, #20166a);
    border-color: var(--secondary, #20166a);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(32, 22, 106, 0.25);
}

.faq-accordion .accordion-item {
    border: 1px solid #e7ecf5;
    border-radius: 14px !important;
    margin-bottom: 16px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    border-color: rgba(29, 157, 224, 0.35);
}

.faq-accordion .accordion-button {
    padding: 20px 24px;
    font-size: 17.5px;
    font-weight: 600;
    color: var(--dark, #0f172a);
    background: #ffffff;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-accordion .accordion-button .faq-btn-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
    padding-right: 12px;
    text-align: left;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #f8fafc;
    color: var(--secondary, #20166a);
    border-bottom: 1px solid #edf2f7;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-question-text {
    color: var(--secondary, #20166a);
}

.faq-accordion .accordion-button::after {
    filter: grayscale(1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
}

.faq-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(224, 21, 21, 0.08);
    color: var(--primary, #e01515);
    flex-shrink: 0;
    display: inline-block;
    line-height: 1.3;
}

.faq-question-text {
    font-size: 16.5px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--dark, #0f172a);
    flex: 1;
}

.faq-accordion .accordion-body {
    padding: 22px 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

@media (max-width: 768px) {
    .faq-accordion .accordion-button {
        padding: 16px 18px;
    }

    .faq-accordion .accordion-button .faq-btn-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-right: 8px;
    }

    .faq-question-text {
        font-size: 15px;
        line-height: 1.45;
    }

    .faq-accordion .accordion-body {
        padding: 16px 18px;
        font-size: 14.5px;
        line-height: 1.7;
    }

    .faq-category-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .faq-cat-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

.faq-sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 34px 28px;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.sidebar-card-badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary, #e01515);
    background: rgba(224, 21, 21, 0.08);
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.faq-sidebar-card h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark, #0f172a);
}

.faq-sidebar-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 24px;
}

.faq-contact-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-channel-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-channel-link:hover {
    background: #ffffff;
    border-color: var(--third, #1d9de0);
    box-shadow: 0 6px 18px rgba(29, 157, 224, 0.12);
    transform: translateX(4px);
}

.faq-channel-link small {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8c93a8;
}

.faq-channel-link strong {
    font-size: 14.5px;
    color: var(--dark, #0f172a);
}

/* =========================================================
           BLOGS LISTING STYLES
        ========================================================= */
.blogs-section {
    padding: 85px 0;
    background: #f8fafc;
}

.blogs-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
}

.blog-cat-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 10px 22px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-cat-btn:hover {
    border-color: var(--third, #1d9de0);
    color: var(--secondary, #20166a);
    transform: translateY(-2px);
}

.blog-cat-btn.active {
    background: var(--secondary, #20166a);
    border-color: var(--secondary, #20166a);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(32, 22, 106, 0.25);
}

/* Featured Blog Card */
.blog-featured-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
    margin-bottom: 50px;
    transition: all 0.35s ease;
}

.blog-featured-card:hover {
    border-color: rgba(29, 157, 224, 0.35);
    box-shadow: 0 20px 50px rgba(32, 22, 106, 0.09);
}

.featured-img-wrap {
    position: relative;
    height: 100%;
    min-height: 380px;
}

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

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary, #e01515);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
}

.featured-content {
    padding: 40px;
}

.blog-meta-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.blog-tag {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(29, 157, 224, 0.1);
    color: var(--third, #1d9de0);
    padding: 4px 12px;
    border-radius: 6px;
}

.blog-date {
    font-size: 13px;
    color: #8c93a8;
}

.featured-content h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.featured-content h2 a {
    color: var(--dark, #0f172a);
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-content h2 a:hover {
    color: var(--primary, #e01515);
}

.featured-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 24px;
}

.featured-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #edf2f7;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.author-meta {
    display: flex;
    align-items: center;
    font-size: 13.5px;
    color: #64748b;
}

.author-meta .dot {
    margin: 0 8px;
    color: #cbd5e1;
}

.blog-read-more {
    color: var(--primary, #e01515);
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--secondary, #20166a);
    transform: translateX(4px);
}

/* 3-Column Blog Cards */
.blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.035);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(29, 157, 224, 0.35);
    box-shadow: 0 20px 40px rgba(32, 22, 106, 0.09);
}

.blog-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-category {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12.5px;
    color: #8c93a8;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.blog-card-title a {
    color: var(--dark, #0f172a);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary, #e01515);
}

.blog-card-excerpt {
    font-size: 15px;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
    margin-top: auto;
}

.blog-card-link {
    color: var(--primary, #e01515);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: var(--secondary, #20166a);
    transform: translateX(4px);
}

/* Advisory Banner at bottom of blogs */
.blog-advisory-section {
    padding: 75px 0 95px;
    background: #f8fafc;
}

.advisory-card {
    background: linear-gradient(135deg, #0d0922 0%, #1c1448 60%, #0d0922 100%);
    border-radius: 20px;
    padding: 48px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.advisory-badge {
    display: inline-flex;
    align-items: center;
    color: var(--third, #1d9de0);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* =========================================================
           BLOG DETAIL PAGE STYLES
        ========================================================= */
.blog-detail-hero {
    background: linear-gradient(135deg, #0d0922 0%, #15103a 60%, #0c071e 100%);
    padding: 95px 0 65px;
    position: relative;
}

.blog-breadcrumb .breadcrumb {
    margin-bottom: 24px;
}

.blog-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13.5px;
}

.blog-breadcrumb .breadcrumb-item.active {
    color: var(--third, #1d9de0);
    font-size: 13.5px;
}

.blog-header-content {
    max-width: 860px;
}

.blog-meta-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.category-pill {
    background: var(--primary, #e01515);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 6px;
}

.meta-pill {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.blog-header-content h1 {
    color: #ffffff;
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.blog-author-strip {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--third, #1d9de0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.author-info strong {
    display: block;
    color: #ffffff;
    font-size: 14.5px;
}

.author-info small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12.5px;
}

.blog-detail-body-section {
    padding: 70px 0;
    background: #ffffff;
}

.blog-article-card {
    background: #ffffff;
}

.article-featured-image {
    margin-bottom: 40px;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
}

.article-content {
    font-size: 17px;
    line-height: 1.85;
    color: #334155;
}

.article-content h2,
.article-content h3 {
    color: var(--dark, #0f172a);
    margin: 35px 0 16px;
}

.article-content p {
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.85;
}

.article-content blockquote {
    border-left: 4px solid var(--primary, #e01515);
    background: #f8fafc;
    padding: 24px 28px;
    border-radius: 0 14px 14px 0;
    font-size: 18px;
    font-style: italic;
    color: var(--dark, #0f172a);
    margin: 30px 0;
}

.article-tags-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 24px 0;
    margin-top: 30px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.tags-label {
    font-weight: 700;
    color: var(--dark, #0f172a);
    font-size: 14px;
}

.tags-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.article-tag {
    background: #f1f5f9;
    color: #475569;
    font-size: 12.5px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 99px;
}

.article-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    margin-top: 35px;
}

.bio-avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(224, 21, 21, 0.1);
    color: var(--primary, #e01515);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.bio-text h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark, #0f172a);
}

.bio-text p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.65;
    color: #64748b;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px;
}

.sidebar-widget h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark, #0f172a);
}

.advisory-widget {
    background: linear-gradient(135deg, #0d0922 0%, #1d154d 100%);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.advisory-widget h4 {
    color: #ffffff;
}

.advisory-widget p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.widget-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(29, 157, 224, 0.15);
    color: var(--third, #1d9de0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recent-post-item {
    display: flex;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-post-item:hover {
    transform: translateX(4px);
}

.recent-post-item img {
    width: 70px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-info h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark, #0f172a);
    margin: 4px 0 0;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.recent-post-item:hover .recent-post-info h6 {
    color: var(--primary, #e01515);
}

.sidebar-contact-btn {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--dark, #0f172a);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-contact-btn:hover {
    border-color: var(--secondary, #20166a);
    color: var(--secondary, #20166a);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(32, 22, 106, 0.15);
}

.related-blogs-section {
    padding: 85px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

/* =========================================================
           MOBILE OFFCANVAS DRAWER (RIGHT TO LEFT) & VIEWPORT FIXES
        ========================================================= */

/* Prevent any horizontal gap / overflow on all screen sizes without breaking sticky */
html {
    overflow-x: clip;
}

body {
    overflow-x: clip;
    overflow-y: visible;
    width: 100%;
    position: relative;
}

.brand-link {
    display: inline-flex;
    align-items: center;
}

.navbar-logo {
    height: 70px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Offcanvas Drawer */
.mobile-offcanvas {
    max-width: 320px;
    width: 85vw;
    background: #ffffff;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
    border-left: 1px solid #edf2f7;
    z-index: 1060;
}

.mobile-offcanvas .offcanvas-header {
    padding: 20px 22px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offcanvas-brand img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.offcanvas-close-btn {
    font-size: 13px;
    padding: 10px;
    border-radius: 8px;
    background-color: #f1f5f9;
    opacity: 0.85;
    transition: all 0.25s ease;
}

.offcanvas-close-btn:hover {
    background-color: #e2e8f0;
    opacity: 1;
    transform: rotate(90deg);
}

.mobile-offcanvas .offcanvas-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.offcanvas-nav-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.offcanvas-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--dark, #0f172a);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.offcanvas-nav-link:hover,
.offcanvas-nav-link.active {
    background: rgba(224, 21, 21, 0.08);
    color: var(--primary, #e01515);
}

.offcanvas-nav-link i {
    width: 22px;
    color: var(--primary, #e01515);
}

/* Accordion in Offcanvas for Paints */
.offcanvas-accordion-item {
    border-radius: 10px;
    overflow: hidden;
}

.offcanvas-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    background: transparent;
    border: none;
    color: var(--dark, #0f172a);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.offcanvas-accordion-btn:hover {
    background: #f8fafc;
    color: var(--primary, #e01515);
}

.offcanvas-accordion-btn i:first-child {
    width: 22px;
    color: var(--primary, #e01515);
}

.offcanvas-accordion-btn .chevron-arrow {
    font-size: 11px;
    transition: transform 0.3s ease;
    color: #94a3b8;
}

.offcanvas-accordion-btn:not(.collapsed) .chevron-arrow {
    transform: rotate(180deg);
    color: var(--primary, #e01515);
}

.offcanvas-subnav {
    display: flex;
    flex-direction: column;
    padding: 4px 0 8px 36px;
    gap: 4px;
}

.offcanvas-sub-link {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    color: #475569;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.offcanvas-sub-link:hover {
    color: var(--primary, #e01515);
    background: #f8fafc;
    transform: translateX(4px);
}

.offcanvas-contact-info {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: #64748b;
}

.contact-info-item i {
    width: 16px;
    color: var(--primary, #e01515);
}

.contact-info-item a {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-item a:hover {
    color: var(--primary, #e01515);
}

.offcanvas-socials {
    display: flex;
    gap: 10px;
}

.offcanvas-socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.offcanvas-socials a:hover {
    background: var(--primary, #e01515);
    color: #ffffff;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .main-navbar .navbar-inner {
        min-height: 64px;
        padding: 0 4px;
    }

    .navbar-logo {
        height: 80px;
        max-width: 160px;
    }

    .nav-links {
        display: none !important;
    }

    .nav-cta {
        display: none !important;
    }

    .mobile-menu {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 8px;
        background: rgba(32, 22, 106, 0.06);
        color: var(--secondary, #20166a);
        font-size: 20px;
        cursor: pointer;
        border: 0;
        transition: all 0.25s ease;
    }

    .mobile-menu:hover {
        background: var(--primary, #e01515);
        color: #ffffff;
    }

    .topbar-left span:last-child {
        display: none;
    }

    .contact-content {
        padding-right: 0 !important;
    }

    .contact-form-column {
        position: static !important;
        margin-top: 40px;
    }

    .contact-main {
        padding: 50px 0 70px;
    }

    .contact-hero {
        min-height: auto;
        padding: 50px 0 60px !important;
        flex-direction: column;
    }

    .contact-hero h1,
    .hero-title {
        font-size: clamp(28px, 7vw, 42px) !important;
        line-height: 1.2 !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 16px !important;
    }

    .contact-hero p,
    .hero-lead {
        font-size: 15px !important;
        line-height: 1.7 !important;
        margin-bottom: 20px !important;
    }
}

.hero-meta-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-meta-bar .meta-item {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 6px 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13.5px;
    font-weight: 500;
}

.hero-meta-bar .meta-item i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-meta-bar {
        gap: 8px;
    }

    .hero-meta-bar .meta-item {
        font-size: 12px;
        padding: 4px 10px;
    }
}

/* =============================== Contact Us ======================== */

/* =========================================================
           CONTACT PAGE BASE & VARIABLES
        ========================================================= */
.contact-page {
    color: var(--text, #333333);
    background: #fdfdfd;
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page h4 {
    color: var(--secondary, #1b154b);
    letter-spacing: -0.5px;
}

.contact-page h3 {
    font-size: 21px;
    font-weight: 600;
}

.contact-page h4 {
    font-weight: 700;
}

/* =========================================================
           HERO SECTION
        ========================================================= */
.contact-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
    background:
        radial-gradient(circle at 83% 25%,
            rgba(29, 157, 224, .32),
            transparent 25%),
        radial-gradient(circle at 75% 80%,
            rgba(224, 21, 21, .30),
            transparent 27%),
        linear-gradient(120deg,
            #0e0e0e 0%,
            #181818 50%,
            #111 100%);
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .035) 1px,
            transparent 1px);
    background-size: 65px 65px;
    opacity: .55;
    mask-image: linear-gradient(to bottom,
            black,
            transparent);
    pointer-events: none;
}

.contact-hero::after {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    right: -250px;
    top: -180px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 0 0 70px rgba(255, 255, 255, .025),
        0 0 0 140px rgba(255, 255, 255, .018);
    pointer-events: none;
}

.contact-hero-inner {
    position: relative;
    z-index: 2;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--third, #1d9de0);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: currentColor;
}

.contact-hero h1 {
    margin: 0 0 20px;
    color: var(--white, #ffffff);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
}

.contact-hero h1 span {
    color: var(--primary, #e01515);
}

.contact-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
}

.hero-bottom-line {
    width: 72px;
    height: 4px;
    margin-top: 30px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--primary, #e01515), var(--third, #1d9de0));
}

/* =========================================================
           MAIN LAYOUT & STICKY COLUMN FIX
        ========================================================= */
.contact-page {
    overflow: visible !important;
}

.contact-main {
    position: relative;
    padding: 90px 0 110px;
    background: #ffffff;
    overflow: visible !important;
}

.contact-main-row {
    align-items: flex-start;
    /* Ensures columns do not force equal stretching */
}

.contact-content {
    padding-right: 30px;
}

/* Sticky column wrapper */
.contact-form-column {
    position: -webkit-sticky;
    position: sticky;
    top: 105px;
    /* Distance below the sticky header navbar */
    z-index: 20;
    align-self: flex-start;
    height: fit-content;
}

/* =========================================================
           STICKY FORM CARD
        ========================================================= */
.contact-form-card {
    position: relative;
    overflow: hidden;
    padding: 40px 34px;
    border-radius: 16px;
    background: var(--secondary, #1b154b);
    box-shadow: 0 24px 60px rgba(27, 21, 75, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form-card::before {
    position: absolute;
    content: "";
    width: 220px;
    height: 220px;
    border: 30px solid rgba(29, 157, 224, 0.12);
    border-radius: 50%;
    right: -80px;
    top: -80px;
    pointer-events: none;
}

.contact-form-card::after {
    position: absolute;
    content: "";
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(224, 21, 21, 0.25);
    left: -60px;
    bottom: -60px;
    filter: blur(40px);
    pointer-events: none;
}

.contact-form-content {
    position: relative;
    z-index: 2;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(29, 157, 224, 0.35);
    background: rgba(29, 157, 224, 0.12);
    color: var(--third, #1d9de0);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-form-card h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-form-card p.form-subtitle {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13.5px;
    line-height: 1.6;
}

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

.contact-form-group label {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12.5px;
    font-weight: 600;
}

.contact-form-control,
.contact-country-code {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    outline: none;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

textarea.contact-form-control {
    height: auto;
    padding: 12px 14px;
    resize: vertical;
}

.contact-form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.contact-form-control:focus,
.contact-country-code:focus {
    border-color: var(--third, #1d9de0);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(29, 157, 224, 0.25);
}

.phone-row {
    display: grid;
    grid-template-columns: 115px 1fr;
    gap: 8px;
}

.contact-country-code {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
}

.contact-country-code option {
    color: #222222;
    background: #ffffff;
}

.contact-submit {
    width: 100%;
    min-height: 50px;
    margin-top: 6px;
    padding: 12px 22px;
    border: none;
    border-radius: 4px;
    background: var(--primary, #e01515);
    color: #ffffff;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    background: var(--third, #1d9de0);
    color: var(--secondary, #1b154b);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 157, 224, 0.3);
}

.contact-form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11.5px;
    line-height: 1.4;
    justify-content: center;
}

.contact-form-note i {
    color: var(--third, #1d9de0);
}

/* =========================================================
   CONTACT CARDS (QUICK REACH & FACILITIES)
========================================================= */
.contact-reach-block {
    margin-bottom: 45px;
}

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

.contact-facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 14px;
}

.reach-card {
    position: relative;
    padding: 18px 20px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e8ecf2;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.reach-card:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.channel-card:hover {
    border-color: #1d9de0;
}

.channel-card-whatsapp:hover {
    border-color: #25D366;
}

.facility-card:hover {
    border-color: #e01515;
}

.reach-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 17px;
    transition: transform 0.25s ease;
}

.reach-card:hover .reach-icon {
    transform: scale(1.08);
}

.reach-icon-phone {
    background: rgba(32, 22, 106, 0.08);
    color: var(--secondary, #20166a);
}

.reach-icon-whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
}

.reach-icon-email {
    background: rgba(29, 157, 224, 0.12);
    color: var(--primary, #1d9de0);
}

.reach-icon-location {
    background: rgba(224, 21, 21, 0.1);
    color: #e01515;
}

.reach-meta {
    flex: 1;
    min-width: 0;
}

.reach-label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 3px;
}

.reach-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    word-break: break-word;
}

.reach-card:hover .reach-value {
    color: #0f172a;
}

.facility-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.facility-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.facility-card:hover .facility-badge {
    background: rgba(224, 21, 21, 0.08);
    color: #e01515;
    border-color: rgba(224, 21, 21, 0.2);
}

.reach-address {
    font-size: 13px;
    line-height: 1.45;
    color: #334155;
    font-weight: 500;
    margin: 4px 0 8px;
}

.reach-direction {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #e01515;
    transition: gap 0.2s ease;
}

.reach-card:hover .reach-direction {
    gap: 9px;
}

/* Legacy quick-card fallback */
.quick-card {
    padding: 20px 22px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quick-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.quick-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(29, 157, 224, 0.12);
    color: var(--third, #1d9de0);
    font-size: 16px;
}

.quick-meta h4 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
}

.quick-meta p,
.quick-meta a {
    margin: 0;
    font-size: 13.5px;
    color: var(--muted, #64748b);
    text-decoration: none;
    line-height: 1.5;
}

.quick-meta a:hover {
    color: var(--primary, #e01515);
}

/* =========================================================
           CONTENT HEADING & INDUSTRY SECTIONS
        ========================================================= */
.contact-heading {
    margin-bottom: 35px;
}

.contact-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4.5vw, 57px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--dark, #171717);
}

.contact-heading h2 span {
    color: var(--primary, #e01515);
}

.contact-heading p {
    margin: 0;
    color: var(--muted, #64748b);
    font-size: 16px;
    line-height: 1.8;
}

.industry-section {
    margin-bottom: 60px;
}

.industry-copy p {
    margin-bottom: 16px;
    color: var(--text, #333333);
    font-size: 16px;
    line-height: 1.8;
}

.industry-panel {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    padding: 30px;
    border-radius: 12px;
    background: var(--surface, #f8fafc);
}

.industry-panel h3 {
    margin: 0 0 20px;
    font-size: 21px;
    font-weight: 600;
}

.industry-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.industry-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink, #1e293b);
}

.industry-list li i {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(224, 21, 21, 0.1);
    color: var(--primary, #e01515);
    font-size: 10px;
}

/* =========================================================
           PROCESS SECTION (WORKFLOW STEPS)
        ========================================================= */
.process-section {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid #eef2f6;
}

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

.process-card {
    position: relative;
    padding: 30px 26px 24px;
    border-radius: 4px;
    border: 1px solid #e5eaf2;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.035);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(32, 22, 106, 0.09);
}

.process-card:hover::before {
    opacity: 1;
}

.process-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.process-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    transition: all 0.35s ease;
}

.process-card.step-1 .process-icon-wrap {
    background: rgba(224, 21, 21, 0.08);
    color: var(--primary, #e01515);
    border: 1px solid rgba(224, 21, 21, 0.15);
}

.process-card.step-2 .process-icon-wrap {
    background: rgba(29, 157, 224, 0.08);
    color: var(--third, #1d9de0);
    border: 1px solid rgba(29, 157, 224, 0.18);
}

.process-card.step-3 .process-icon-wrap {
    background: rgba(32, 22, 106, 0.08);
    color: var(--secondary, #20166a);
    border: 1px solid rgba(32, 22, 106, 0.15);
}

.process-card.step-4 .process-icon-wrap {
    background: rgba(16, 185, 129, 0.09);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.18);
}

.process-card:hover .process-icon-wrap {
    transform: scale(1.1) rotate(-4deg);
    color: #ffffff !important;
}

.process-card.step-1:hover .process-icon-wrap {
    background: linear-gradient(135deg, #e01515, #bd0e0e);
    box-shadow: 0 8px 18px rgba(224, 21, 21, 0.3);
    border-color: transparent;
}

.process-card.step-2:hover .process-icon-wrap {
    background: linear-gradient(135deg, #1d9de0, #0c7dbb);
    box-shadow: 0 8px 18px rgba(29, 157, 224, 0.3);
    border-color: transparent;
}

.process-card.step-3:hover .process-icon-wrap {
    background: linear-gradient(135deg, #20166a, #150e4a);
    box-shadow: 0 8px 18px rgba(32, 22, 106, 0.3);
    border-color: transparent;
}

.process-card.step-4:hover .process-icon-wrap {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 18px rgba(16, 185, 129, 0.3);
    border-color: transparent;
}

.process-step-tag {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #8c93a8;
    background: #f1f4fa;
    padding: 4px 12px;
    border-radius: 99px;
    transition: all 0.3s ease;
}

.process-card:hover .process-step-tag {
    color: var(--secondary, #20166a);
    background: rgba(32, 22, 106, 0.08);
}

.process-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    font-weight: 600;
    color: var(--dark, #171717);
    transition: color 0.3s ease;
}

.process-card:hover h3 {
    color: var(--secondary, #20166a);
}

.process-card p {
    margin: 0 0 18px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    flex-grow: 1;
}

.process-card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed #e8ecf3;
}

.process-footer-badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: #7b8599;
    transition: color 0.3s ease;
}

.process-card:hover .process-footer-badge {
    color: var(--primary, #e01515);
}

/* =========================================================
           CONVERSATION / CTA SECTION
        ========================================================= */
.conversation-section {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0922 0%, #15103a 50%, #0a071c 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.conversation-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 157, 224, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.conversation-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 21, 21, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.conversation-copy h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(34px, 4.5vw, 57px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.conversation-copy h2 span {
    color: var(--third, #1d9de0);
}

.conversation-copy p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
}

.conversation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.conversation-actions a {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
}

.primary-action {
    background: var(--primary, #1d9de0);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(32, 22, 106, 0.25);
}

.primary-action:hover {
    background: var(--secondary, #20166a);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(32, 22, 106, 0.38);
}

.secondary-action {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.secondary-action:hover {
    border-color: var(--third, #1d9de0);
    background: var(--third, #1d9de0);
    color: #ffffff;
    transform: translateY(-3px);
}

.conversation-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    padding-top: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13.5px;
    font-weight: 600;
}

.trust-item i {
    color: var(--third, #1d9de0);
    font-size: 14px;
}

/* Right Column Support Card */
.conversation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px 28px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 2;
}

.conversation-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(29, 157, 224, 0.15);
    border: 1px solid rgba(29, 157, 224, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--third, #1d9de0);
    font-size: 20px;
}

.conversation-card-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.conversation-channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
}

.conversation-channel:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(29, 157, 224, 0.4);
    transform: translateX(4px);
}

.conversation-channel-static {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.channel-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(224, 21, 21, 0.15);
    color: var(--primary, #e01515);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.conversation-channel:hover .channel-icon {
    background: var(--primary, #e01515);
    color: #ffffff;
}

.channel-info {
    flex-grow: 1;
}

.channel-info small {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11.5px;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.channel-info strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.channel-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.conversation-channel:hover .channel-arrow {
    color: #ffffff;
    transform: translateX(3px);
}

/* =========================================================
   CONTACT GOOGLE MAP SECTION
   ========================================================= */
.contact-map-section {
    padding: 0 0 90px;
    background: #ffffff;
}

.contact-map-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 36px 40px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
}

.contact-map-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.contact-map-header .map-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--dark, #0f172a);
    margin: 6px 0;
    letter-spacing: -0.5px;
}

.contact-map-header .map-title span {
    color: var(--primary);
}

.contact-map-header .map-subtitle {
    color: #64748b;
    font-size: 14.5px;
}

.contact-map-iframe-wrap {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.contact-map-iframe-wrap iframe {
    width: 100%;
    min-height: 440px;
    display: block;
    border: 0;
}

@media (max-width: 768px) {
    .contact-map-section {
        padding-bottom: 60px;
    }
    .contact-map-card {
        padding: 24px 18px;
        border-radius: 16px;
    }
    .contact-map-iframe-wrap iframe {
        min-height: 320px;
    }
}

/* =========================================================
           RESPONSIVE BREAKPOINTS
        ========================================================= */
@media (max-width: 991px) {
    .contact-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contact-form-column {
        position: relative;
        top: auto;
        margin-top: 20px;
    }

    .contact-channels-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-facilities-grid {
        grid-template-columns: 1fr;
    }

    .contact-quick-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .contact-channels-grid {
        grid-template-columns: 1fr;
    }

    .contact-facilities-grid {
        grid-template-columns: 1fr;
    }

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

    .process-grid,
    .industry-list {
        grid-template-columns: 1fr;
    }

    .conversation-actions a {
        width: 100%;
    }
}

/* =========================================================
           MEGA DROPDOWN MENU (MATCHING IMAGE 1)
        ========================================================= */
.nav-dropdown.mega-dropdown {
    position: static;
}

.mega-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
    border-top: 1px solid #f1f5f9;
    border-bottom: 2px solid var(--primary, #e01515);
    padding: 35px 0 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
}

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

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.mega-menu-col {
    display: flex;
    flex-direction: column;
}

.mega-col-title-link {
    text-decoration: none;
    display: block;
}

.mega-col-title {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--secondary, #20166a);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
    cursor: pointer;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mega-title-icon {
    font-size: 11px;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;
    color: var(--primary, #e01515);
}

.mega-col-title-link:hover .mega-col-title {
    color: var(--primary, #e01515);
}

.mega-col-title-link:hover .mega-title-icon {
    opacity: 1;
    transform: translateX(0);
}

.mega-col-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary, #e01515);
    transition: width 0.3s ease;
}

.mega-col-title-link:hover .mega-col-title::after {
    width: 50px;
}

.mega-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-col-links li a {
    color: #475569;
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}

.mega-col-links li a:hover {
    color: var(--primary, #e01515);
    transform: translateX(4px);
}

/* =========================================================
           PRODUCT PAGE HERO GLASS CARD
        ========================================================= */
.product-hero-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.product-hero-glass-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.hero-card-icon-badge {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    box-shadow: 0 4px 15px rgba(32, 22, 106, 0.25);
    flex-shrink: 0;
}

/* =========================================================
           PRODUCTS CATALOG SECTION
        ========================================================= */
.products-catalog-section {
    padding: 95px 0 105px;
    background: #f8fafc;
}

/* Sidebar Navigation (Left Column) */
.catalog-sidebar-col {
    align-self: stretch;
    position: relative;
}

.catalog-sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 20;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.catalog-sidebar-card::-webkit-scrollbar {
    width: 4px;
}

.catalog-sidebar-card::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.catalog-sidebar-group {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.catalog-sidebar-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-group-heading-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--secondary, #20166a);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 6px;
}

.sidebar-heading-arrow {
    font-size: 11px;
    opacity: 0.4;
    transition: all 0.25s ease;
}

.sidebar-group-heading-btn:hover {
    background: #f8fafc;
    color: var(--primary, #e01515);
}

.sidebar-group-heading-btn:hover .sidebar-heading-arrow {
    opacity: 1;
    transform: translateX(3px);
    color: var(--primary, #e01515);
}

.sidebar-group-heading-btn.active {
    background: rgba(32, 22, 106, 0.08);
    color: var(--secondary, #20166a);
}

.sidebar-group-heading-btn.active .sidebar-heading-arrow {
    opacity: 1;
    color: var(--primary, #e01515);
}

.sidebar-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.catalog-item-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s ease;
}

.catalog-item-btn:hover {
    color: var(--primary, #e01515);
    background: #f8fafc;
    transform: translateX(3px);
}

.catalog-item-btn.active {
    background: rgba(224, 21, 21, 0.08);
    color: var(--primary, #e01515);
    font-weight: 700;
}

/* Category Overview View Mode */
.category-header-banner {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px 34px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    margin-bottom: 24px;
}

.cat-eyebrow-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.category-badge-pill {
    display: inline-block;
    background: rgba(32, 22, 106, 0.08);
    color: var(--secondary, #20166a);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(32, 22, 106, 0.15);
}

.cat-count-pill {
    display: inline-block;
    background: rgba(224, 21, 21, 0.08);
    color: var(--primary, #e01515);
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
}

.cat-main-title {
    font-size: clamp(24px, 3.2vw, 34px);
    font-weight: 800;
    color: var(--dark, #0f172a);
    letter-spacing: -0.6px;
    margin-bottom: 12px;
    line-height: 1.25;
}

.cat-main-description {
    font-size: 15.5px;
    line-height: 1.75;
    color: #64748b;
    margin-bottom: 0;
    max-width: 900px;
}

/* Category Products Grid Cards */
.category-grid-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.category-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    border-color: rgba(32, 22, 106, 0.25);
}

.category-grid-card.is-focused-product {
    border-color: var(--primary, #1d9de0) !important;
    box-shadow: 0 0 0 4px rgba(32, 22, 106, 0.22), 0 16px 36px rgba(15, 23, 42, 0.12) !important;
    animation: pulseCard 1s ease-in-out 2;
}

@keyframes pulseCard {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.grid-card-media {
    height: 240px;
    background: #f1f5f9;
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 100%;
}

.grid-card-img {
    width: 100%;
    height: 100%;
    max-height: none;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-grid-card:hover .grid-card-img {
    transform: scale(1.06);
}

.grid-card-price-row {
    margin-top: auto;
    padding-top: 12px;
    margin-bottom: 8px;
    border-top: 1px dashed #e2e8f0;
}

.grid-card-price-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark, #0f172a);
}

.grid-card-price {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary, #1d9de0);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(32, 22, 106, 0.2);
}

.btn-add-cart-primary {
    background: var(--primary, #1d9de0) !important;
    border: 1px solid var(--primary, #1d9de0) !important;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(32, 22, 106, 0.25);
    text-decoration: none !important;
}

.btn-add-cart-primary:hover {
    background: var(--secondary, #20166a) !important;
    border-color: var(--secondary, #20166a) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(32, 22, 106, 0.38);
}

.btn-add-cart-primary.btn-added-feedback {
    background: #16a34a !important;
    border-color: #16a34a !important;
    color: #ffffff !important;
}

.grid-card-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.grid-card-badge {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--secondary, #20166a);
    margin-bottom: 6px;
    display: block;
}

.grid-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark, #0f172a);
    line-height: 1.35;
    margin-bottom: 8px;
}

.grid-card-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 12px;
    flex-grow: 1;
}

.grid-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.grid-tag {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 4px;
}

.btn-grid-action {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--dark, #0f172a);
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    cursor: pointer;
}

.category-grid-card:hover .btn-grid-action,
.btn-grid-action:hover {
    background: var(--primary, #1d9de0);
    border-color: var(--primary, #1d9de0);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(32, 22, 106, 0.25);
}

/* Single Product View Mode */
.btn-back-to-cat {
    background: transparent;
    border: none;
    color: var(--secondary, #20166a);
    font-size: 14.5px;
    font-weight: 700;
    padding: 6px 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease;
}

.btn-back-to-cat:hover {
    color: var(--primary, #1d9de0);
    transform: translateX(-3px);
}

.catalog-showcase-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 44px 38px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
    transition: opacity 0.25s ease, transform 0.3s ease;
}

.showcase-img-container {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.showcase-img {
    max-height: 320px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
    transition: transform 0.35s ease;
}

.showcase-img:hover {
    transform: scale(1.04);
}

.showcase-info-pane {
    padding-left: 10px;
}

.showcase-category-pill {
    display: inline-block;
    background: #f1f5f9;
    color: var(--secondary, #20166a);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
    border: 1px solid #e2e8f0;
}

.showcase-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: var(--dark, #0f172a);
    line-height: 1.25;
    margin-bottom: 14px;
}

.showcase-description {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 24px;
}

.showcase-select-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.select-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #64748b;
}

.showcase-select {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark, #0f172a);
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.showcase-select:focus {
    border-color: var(--secondary, #20166a);
    box-shadow: 0 0 0 3px rgba(32, 22, 106, 0.15);
    background-color: #ffffff;
}

.showcase-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #64748b;
    text-transform: uppercase;
}

.price-val {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary, #1d9de0);
    letter-spacing: -0.5px;
}

.showcase-actions-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.showcase-btn-primary {
    background: var(--primary, #1d9de0);
    color: #ffffff !important;
    font-size: 14.5px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 10px;
    border: 1px solid transparent;
    box-shadow: 0 8px 20px rgba(32, 22, 106, 0.25);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.showcase-btn-primary:hover {
    background: var(--secondary, #20166a);
    box-shadow: 0 12px 28px rgba(32, 22, 106, 0.38);
    transform: translateY(-2px);
}

.showcase-btn-secondary {
    background: #f1f5f9;
    color: var(--dark, #0f172a) !important;
    font-size: 14.5px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.showcase-btn-secondary:hover {
    background: #ffffff;
    border-color: var(--secondary, #20166a);
    color: var(--secondary, #20166a) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.offcanvas-group-title-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--secondary, #20166a);
    margin-top: 10px;
    margin-bottom: 4px;
    padding: 6px 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.offcanvas-group-title-btn:hover {
    color: var(--primary, #1d9de0);
}

@media (max-width: 991px) {
    .mega-dropdown-menu {
        display: none !important;
    }

    .catalog-showcase-card,
    .category-header-banner {
        padding: 24px 18px;
    }

    .catalog-sidebar-card {
        position: static;
        margin-bottom: 24px;
    }
}

/* =========================================================
           NAV CART BUTTON & BADGE
        ========================================================= */
.nav-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 17px;
    position: relative;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(32, 22, 106, 0.2);
}

.nav-cart-btn:hover {
    background: var(--secondary, #20166a);
    border-color: var(--secondary, #20166a);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(32, 22, 106, 0.35);
}

.cart-badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary, #e01515);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0b0b12;
    transition: all 0.2s ease;
}

.cart-badge-count.has-items {
    background: #e01515;
    animation: pulse-cart 0.4s ease;
}

@keyframes pulse-cart {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* =========================================================
           CART TOAST NOTIFICATION
        ========================================================= */
.cart-toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    background: #0f172a;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-toast-notification.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cart-toast-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-toast-content .toast-icon {
    font-size: 24px;
    color: #22c55e;
}

.cart-toast-content .toast-body {
    display: flex;
    flex-direction: column;
}

.cart-toast-content .toast-body strong {
    font-size: 14px;
    color: #ffffff;
}

.cart-toast-content .toast-body span {
    font-size: 12.5px;
    color: #94a3b8;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast-checkout-btn {
    background: var(--primary, #e01515);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.toast-checkout-btn:hover {
    background: #b91010;
}

.btn-added-feedback {
    background: #22c55e !important;
    color: #ffffff !important;
    border-color: #22c55e !important;
}

/* =========================================================
           CART DRAWER OFFCANVAS (SMOOTH & ZERO HORIZONTAL OVERFLOW)
        ========================================================= */
.cart-drawer-offcanvas,
.offcanvas {
    z-index: 100002 !important;
}

.offcanvas-backdrop {
    z-index: 100001 !important;
}

.modal {
    z-index: 100010 !important;
}

.modal-backdrop {
    z-index: 100009 !important;
}

.cart-drawer-offcanvas {
    width: 420px !important;
    max-width: 92vw !important;
    overflow: hidden !important;
    box-shadow: -8px 0 35px rgba(0, 0, 0, 0.25) !important;
}

.cart-drawer-offcanvas .offcanvas-body {
    overflow-x: hidden !important;
    padding: 0 !important;
}

.cart-drawer-items {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: 10px 18px !important;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f8fafc;
    -webkit-overflow-scrolling: touch;
}

.cart-drawer-items::-webkit-scrollbar {
    width: 5px;
}

.cart-drawer-items::-webkit-scrollbar-track {
    background: #f8fafc;
}

.cart-drawer-items::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.cart-drawer-items::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.cart-drawer-item {
    width: 100%;
    transition: background 0.15s ease;
}

.cart-drawer-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
    display: block;
}

.cart-drawer-item-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 3px;
}

.btn-drawer-step {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    border: none;
    background: transparent;
}

.btn-drawer-step:hover {
    color: var(--primary, #e01515);
}

.cart-drawer-footer {
    background: #ffffff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.04);
}

/* =========================================================
           FLOATING ACTION BUTTONS (FAB DOCK ON RIGHT SIDE)
        ========================================================= */
.floating-action-dock {
    position: fixed;
    right: 24px;
    bottom: 30px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.fab-group-secondary {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

/* Auto-hide FAB dock when cart drawer or modal is open */
body.offcanvas-open .floating-action-dock,
body:has(.offcanvas.show) .floating-action-dock,
body:has(.modal.show) .floating-action-dock {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    transform: translateX(80px);
}

.fab-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff !important;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.fab-btn i {
    font-size: 19px;
    transition: transform 0.25s ease;
}

.fab-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.fab-label {
    position: absolute;
    right: 58px;
    background: #0f172a;
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fab-label::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #0f172a;
}

.fab-btn:hover .fab-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Specific Button Themes */
.fab-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.fab-whatsapp:hover {
    background: linear-gradient(135deg, #2ae06c 0%, #16a392 100%);
}

.fab-toggle {
    background: linear-gradient(135deg, #e01515 0%, #20166a 100%);
}

.fab-toggle:hover {
    background: linear-gradient(135deg, #ff2a2a 0%, #2a1f8c 100%);
}

.fab-call {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
}

.fab-call:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
}

.fab-email {
    background: linear-gradient(135deg, #e01515 0%, #b91010 100%);
}

.fab-email:hover {
    background: linear-gradient(135deg, #ff2a2a 0%, #d41212 100%);
}

.fab-quote {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.fab-quote:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.fab-review {
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
}

.fab-review:hover {
    background: linear-gradient(135deg, #5b95f5 0%, #1765cc 100%);
}

.fab-scroll {
    background: linear-gradient(135deg, #334155 0%, #0f172a 100%);
}

.fab-scroll:hover {
    background: linear-gradient(135deg, #475569 0%, #1e293b 100%);
}

.fab-scroll.is-go-top {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .floating-action-dock {
        right: 14px;
        bottom: 16px;
        gap: 0;
    }

    .fab-btn {
        width: 44px;
        height: 44px;
    }

    .fab-whatsapp {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    }

    .fab-btn i {
        font-size: 20px;
    }

    .fab-label {
        display: none;
    }
}

/* =========================================================
           FOOTER CONTACT ICONS & TEXT VISIBILITY
        ========================================================= */
footer .footer-links li i {
    color: #ffffff !important;
    font-size: 15px;
    opacity: 1 !important;
}

footer .footer-links li a,
footer .footer-links li span {
    color: #ffffff !important;
    font-size: 14.5px;
    opacity: 0.95 !important;
    text-decoration: none !important;
}

footer .footer-links li a:hover {
    color: #ffffff !important;
    opacity: 1 !important;
    text-decoration: underline !important;
}

/* =========================================================
   GLOBAL BUTTON SECONDARY BOX-SHADOW STANDARDIZATION
   ========================================================= */
.btn-primary-custom,
.btn-custom,
.btn-primary,
.primary-action,
.about-btn-red,
.hero-form-submit,
.btn-add-cart-primary,
.showcase-btn-primary,
button.btn-primary,
a.btn-primary-custom,
.toast-checkout-btn {
    box-shadow: 0 8px 20px rgba(32, 22, 106, 0.22) !important;
}

.btn-primary-custom:hover,
.btn-custom:hover,
.btn-primary:hover,
.primary-action:hover,
.about-btn-red:hover,
.hero-form-submit:hover,
.btn-add-cart-primary:hover,
.showcase-btn-primary:hover,
button.btn-primary:hover,
a.btn-primary-custom:hover,
.toast-checkout-btn:hover {
    box-shadow: 0 12px 28px rgba(32, 22, 106, 0.35) !important;
}

/* =========================================================
   INTERIOR PAINT DETAIL & VIEW DETAILS BUTTON
   ========================================================= */
.btn-view-details {
    background: #ffffff !important;
    border: 1.5px solid var(--primary, #1d9de0) !important;
    color: var(--primary, #1d9de0) !important;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-view-details:hover {
    background: var(--primary, #1d9de0) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(29, 157, 224, 0.25);
}

.hero-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.highlight-pill {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 16px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    backdrop-filter: blur(8px);
}

.transition-hover {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(16, 16, 24, 0.08) !important;
    border-color: rgba(29, 157, 224, 0.3) !important;
}

.surface-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.surface-card:hover {
    transform: translateY(-4px);
    border-color: rgba(224, 21, 21, 0.4) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* =========================================================
   ECOMMERCE PRODUCT DETAIL PAGE (PDP) STYLES
   ========================================================= */
.pdp-mini-hero {
    background: #101018;
    padding: 35px 0 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pdp-gallery-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.pdp-gallery-main .carousel-inner {
    border-radius: 16px;
    overflow: hidden;
}

.pdp-main-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pdp-gallery-main:hover .pdp-main-img {
    transform: scale(1.02);
}

.pdp-carousel-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    color: #1e293b;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.88;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    z-index: 6;
}

.pdp-carousel-btn:hover {
    background: #ffffff;
    color: var(--primary, #e01515);
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.pdp-carousel-btn.carousel-control-prev {
    left: 14px;
}

.pdp-carousel-btn.carousel-control-next {
    right: 14px;
}

.pdp-thumb-strip {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.pdp-thumb-btn {
    width: 75px;
    height: 75px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    background: #f1f5f9;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pdp-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdp-thumb-btn.active,
.pdp-thumb-btn:hover {
    border-color: var(--primary, #1d9de0);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 157, 224, 0.25);
}

.pdp-option-btn {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #334155;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pdp-option-btn:hover {
    border-color: var(--primary, #1d9de0);
    color: var(--primary, #1d9de0);
}

.pdp-option-btn.active {
    background: rgba(29, 157, 224, 0.08);
    border-color: var(--primary, #1d9de0);
    color: var(--primary, #1d9de0);
    box-shadow: 0 2px 8px rgba(29, 157, 224, 0.15);
}

.pdp-qty-stepper {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
}

.pdp-qty-btn {
    width: 44px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease;
}

.pdp-qty-btn:hover {
    background: #e2e8f0;
}

.pdp-qty-input {
    width: 50px;
    height: 100%;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
}

.btn-buy-now {
    background: #171717 !important;
    border: 1.5px solid #171717 !important;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.btn-buy-now:hover {
    background: #000000 !important;
    border-color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pdp-trust-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
}

.pdp-save-badge {
    background: #dcfce7 !important;
    color: #15803d !important;
    border: 1px solid #86efac !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    padding: 3px 9px !important;
    border-radius: 6px !important;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(22, 163, 74, 0.1);
}

/* =========================================================
   PDP PRODUCT GALLERY HOVER ZOOM INDICATOR
========================================================= */
.pdp-gallery-main .carousel-item {
    cursor: zoom-in;
    position: relative;
}

.pdp-gallery-main .carousel-item img {
    transition: transform 0.35s ease;
}

.pdp-gallery-main:hover .carousel-item.active img {
    transform: scale(1.02);
}

.pdp-gallery-zoom-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 6;
    background: rgba(15, 23, 42, 0.75);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.pdp-gallery-main:hover .pdp-gallery-zoom-badge {
    background: rgba(224, 21, 21, 0.9);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* =========================================================
   GLOBAL PRODUCT IMAGE LIGHTBOX MODAL WITH ZOOM & PAN
========================================================= */
.pdp-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s ease;
}

.pdp-lightbox-modal.is-active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

body.pdp-lightbox-open {
    overflow: hidden !important;
}

.pdp-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 18, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pdp-lightbox-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 24px;
}

/* Lightbox Header */
.pdp-lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 16px;
    background: rgba(15, 23, 42, 0.75);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.pdp-lightbox-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.pdp-lightbox-counter {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pdp-lightbox-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pdp-lightbox-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pdp-lb-tool-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.pdp-lb-tool-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    transform: translateY(-1px);
}

.pdp-lb-tool-btn.pdp-lb-close-btn {
    background: rgba(224, 21, 21, 0.2);
    border-color: rgba(224, 21, 21, 0.4);
    color: #ff6b6b;
}

.pdp-lb-tool-btn.pdp-lb-close-btn:hover {
    background: #e01515;
    border-color: #e01515;
    color: #ffffff;
    transform: scale(1.05);
}

.pdp-lb-zoom-level {
    font-size: 12.5px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    min-width: 46px;
    text-align: center;
    user-select: none;
}

/* Lightbox Stage */
.pdp-lightbox-stage {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 10px 0;
}

.pdp-lightbox-canvas {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    user-select: none;
    touch-action: none;
}

.pdp-lightbox-img {
    max-width: 86%;
    max-height: 72vh;
    object-fit: contain;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: zoom-in;
    transform-origin: center center;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.6));
    user-select: none;
    -webkit-user-drag: none;
}

.pdp-lightbox-img.is-zoomed {
    cursor: grab;
    max-width: none;
    max-height: none;
}

.pdp-lightbox-img.is-panning {
    cursor: grabbing !important;
    transition: none !important;
}

/* Carousel Prev / Next Navigation Arrows */
.pdp-lb-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.75);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    outline: none;
}

.pdp-lb-nav-btn:hover {
    background: var(--primary, #1d9de0);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(29, 157, 224, 0.45);
}

.pdp-lb-prev {
    left: 20px;
}

.pdp-lb-next {
    right: 20px;
}

/* Lightbox Helper Hint */
.pdp-lightbox-hint {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.75);
    color: rgba(255, 255, 255, 0.75);
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
    pointer-events: none;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    z-index: 5;
}

/* Thumbnails Strip */
.pdp-lightbox-thumbs-wrap {
    display: flex;
    justify-content: center;
    padding: 6px 0 0;
}

.pdp-lightbox-thumbs {
    display: flex;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(15, 23, 42, 0.75);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    max-width: 95vw;
    overflow-x: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.pdp-lb-thumb-item {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.22s ease;
    opacity: 0.6;
    background: #ffffff;
    padding: 3px;
    flex-shrink: 0;
}

.pdp-lb-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pdp-lb-thumb-item:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

.pdp-lb-thumb-item.is-active {
    opacity: 1;
    border-color: var(--primary, #1d9de0);
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(29, 157, 224, 0.4);
}

@media (max-width: 768px) {
    .pdp-lightbox-container {
        padding: 12px;
    }

    .pdp-lightbox-header {
        padding: 8px 12px;
    }

    .pdp-lb-tool-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .pdp-lb-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .pdp-lb-prev {
        left: 6px;
    }

    .pdp-lb-next {
        right: 6px;
    }

    .pdp-lb-thumb-item {
        width: 44px;
        height: 44px;
    }

    .pdp-lightbox-hint {
        font-size: 10.5px;
        padding: 4px 12px;
    }
}

/* =========================================================
   LEGAL PAGES (PRIVACY POLICY & TERMS AND CONDITIONS)
========================================================= */
.legal-page {
    background: #f8fafc;
}

.legal-section-title {
    font-size: 21px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #f1f5f9;
}

.section-number {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(224, 21, 21, 0.1);
    color: #e01515;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-list li {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.legal-list li i {
    margin-top: 4px;
    flex-shrink: 0;
}

.legal-nav-link {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.legal-nav-link:hover {
    color: #e01515;
    background: rgba(224, 21, 21, 0.06);
    transform: translateX(4px);
}

.legal-document-card {
    border: 1px solid #e2e8f0;
}

.legal-intro-box {
    border: 1px solid #e2e8f0;
}

.legal-contact-card {
    border: 1px solid #e2e8f0;
}

@media (max-width: 991px) {
    .legal-document-card {
        padding: 24px 18px !important;
    }
}
