/* ============================================================
   BAB POWER WEBSITE
   CLEAN FINAL CSS
============================================================ */

/* ============================================================
   RESET
============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    color: #111827;
    background: #f4f6f8;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* ============================================================
   HEADER
============================================================ */

.site-header {
    width: 100%;
    height: 96px;
    background: #ffffff;
    position: relative;
    z-index: 1000;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
    width: 90%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
}


/* ============================================================
   LOGO
============================================================ */

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    flex-shrink: 0;
    text-decoration: none;
}

.logo img {
    width: 190px;
    height: auto;
}

.logo-tagline {
    margin-top: 5px;

    font-size: 11px;
    line-height: 1.2;

    color: #555555;

    white-space: nowrap;
}


/* ============================================================
   NAVIGATION
============================================================ */

.main-navigation {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 35px;

    margin-left: 40px;
}

.nav-link {
    height: 100%;

    display: flex;
    align-items: center;

    position: relative;

    font-size: 13px;
    font-weight: 600;

    color: #171717;

    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #0868c9;
}

.nav-link.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 21px;

    width: 100%;
    height: 2px;

    background: #0868c9;
}


/* ============================================================
   DROPDOWN
============================================================ */

.nav-dropdown {
    height: 100%;
    position: relative;
}

.dropdown-toggle {
    gap: 8px;
}

.dropdown-toggle i {
    font-size: 9px;
}

.dropdown-menu {
    position: absolute;

    top: 96px;
    left: -20px;

    width: 230px;

    padding: 10px 0;

    background: #ffffff;

    border-top: 3px solid #0868c9;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;

    padding: 12px 20px;

    font-size: 13px;

    color: #333333;
}

.dropdown-menu a:hover {
    color: #0868c9;
    background: #f3f7fb;
}


/* ============================================================
   HEADER ACTIONS
============================================================ */

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-left: auto;
}

.quote-button {
    background: #0868c9;
    color: #ffffff;

    padding: 14px 24px;

    border-radius: 9px;

    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.25s ease;
}

.quote-button:hover {
    background: #07569f;
    transform: translateY(-2px);
}

.search-button,
.mobile-menu-button {
    border: none;
    background: transparent;

    cursor: pointer;

    font-size: 20px;

    color: #202833;
}

.mobile-menu-button {
    display: none;
}


/* ============================================================
   MOBILE NAVIGATION
============================================================ */

.mobile-navigation {
    display: none;
}


/* ============================================================
   HERO
============================================================ */

.hero-section {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 40%,
            rgba(0, 105, 255, 0.45),
            transparent 28%
        ),
        linear-gradient(
            110deg,
            #010913 0%,
            #03172c 50%,
            #032c62 100%
        );
}

.hero-background {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 55%;
    height: 50%;

    opacity: 0.35;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 120, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(0, 120, 255, 0.12) 1px,
            transparent 1px
        );

    background-size: 40px 40px;
}

.hero-container {
    width: 85%;
    max-width: 1450px;

    min-height: 520px;

    margin: auto;

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
}


/* ============================================================
   HERO CONTENT
============================================================ */

.hero-content {
    width: 46%;

    color: #ffffff;

    padding: 10px 0;
}

.hero-content h1 {
    max-width: 600px;

    font-size: clamp(36px, 3.5vw, 52px);

    line-height: 1.03;

    font-weight: 800;

    letter-spacing: -2px;

    margin-bottom: 22px;
}

.blue-text {
    color: #0879dc;
}

.red-text {
    color: #ed3035;
}

.hero-content p {
    max-width: 500px;

    font-size: 15px;

    line-height: 1.8;

    color: #e0e8f0;

    margin-bottom: 28px;
}


/* ============================================================
   HERO BUTTONS
============================================================ */

.hero-buttons {
    display: flex;
    gap: 18px;
}

.primary-button,
.secondary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 14px 23px;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.25s ease;
}

.primary-button {
    color: #ffffff;
    background: #0878dc;
}

.primary-button:hover {
    background: #075fae;
    transform: translateY(-2px);
}

.secondary-button {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.85);
}

.secondary-button:hover {
    background: #ffffff;
    color: #052449;
}


/* ============================================================
   HERO PRODUCT
============================================================ */

.hero-product {
    width: 54%;

    height: 520px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.hero-product img {
    width: 95%;
    max-width: 700px;

    height: auto;

    object-fit: contain;

    filter: drop-shadow(
        -15px 20px 25px rgba(0, 0, 0, 0.45)
    );

    transition: 0.4s ease;
}

.hero-product img:hover {
    transform: scale(1.02);
}


/* ============================================================
   FEATURE SECTION
============================================================ */

.feature-section {
    background: #032b52;
    color: #ffffff;
}

.feature-container {
    width: 85%;
    max-width: 1450px;

    min-height: 84px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    min-height: 84px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 14px 25px;

    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    border: 2px solid #ffffff;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 19px;
}

.feature-content h3 {
    font-size: 12px;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 10px;

    line-height: 1.45;

    color: #d9e4ee;
}


/* ============================================================
   GENERAL SECTION
============================================================ */

.section-container {
    width: 85%;
    max-width: 1450px;

    margin: auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading h2 {
    font-size: 20px;

    font-weight: 800;

    color: #062b50;

    margin-bottom: 8px;
}

.section-heading span {
    display: block;

    width: 53px;
    height: 2px;

    margin: auto;

    background: #0868c9;
}


/* ============================================================
   PRODUCTS SECTION
============================================================ */

.products-section {
    background: #f4f6f8;

    padding: 35px 0 40px;
}


/* ============================================================
   BASIC PRODUCT GRID
============================================================ */

.products-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}

.product-card {
    min-height: 145px;

    position: relative;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px;

    background: #ffffff;

    border-radius: 6px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);

    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.product-image {
    width: 120px;
    height: 110px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f7f8f9;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.product-details {
    padding-right: 15px;
}

.product-details h3 {
    font-size: 12px;

    line-height: 1.3;

    font-weight: 800;

    color: #121820;

    margin-bottom: 8px;
}

.product-details p {
    font-size: 10px;

    line-height: 1.5;

    color: #5e6671;
}

.product-arrow {
    position: absolute;

    right: 12px;
    bottom: 12px;

    font-size: 12px;

    color: #555555;
}


/* ============================================================
   PRODUCT IMAGE SECTION
============================================================ */

.product-images-section {
    padding: 55px 0 60px;

    background: #ffffff;
}

.product-images-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px 25px;
}

.product-image-item {
    text-align: center;
}

.product-image-box {
    width: 100%;
    height: 190px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f7f8fa;

    overflow: hidden;

    cursor: pointer;

    transition: all 0.3s ease;
}

.product-image-box img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 15px;

    transition: transform 0.35s ease;
}

.product-image-item:hover .product-image-box img {
    transform: scale(1.06);
}

.product-image-item h3 {
    margin: 16px 0 0;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.4;

    color: #172033;

    text-transform: uppercase;
}


/* ============================================================
   PRODUCT SLIDER
============================================================ */

.products-slider-wrapper {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 20px;
}

.products-slider {
    width: 100%;

    flex: 1;

    min-width: 0;

    overflow: hidden;

    position: relative;
}

.products-track {
    display: flex !important;

    flex-direction: row !important;

    width: 100%;

    transition: transform 0.8s ease-in-out;

    will-change: transform;
}

.products-slide {
    flex: 0 0 100% !important;

    width: 100% !important;

    min-width: 100% !important;

    display: flex !important;

    flex-direction: row !important;

    gap: 24px;

    box-sizing: border-box;

    margin: 0;

    padding: 0;
}


/* ============================================================
   SLIDER PRODUCT CARDS
============================================================ */

.products-slide .product-card {
    position: relative;

    flex: 1 1 0 !important;

    width: 0;

    min-width: 0;

    min-height: auto;

    display: flex !important;

    flex-direction: column !important;

    align-items: stretch;

    gap: 0;

    padding: 0 !important;

    margin: 0;

    background: #ffffff;

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);

    text-decoration: none;

    transition: all 0.3s ease;
}

.products-slide .product-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.products-slide .product-image {
    position: relative;

    width: 100% !important;

    height: 220px !important;

    min-height: 220px !important;

    flex: 0 0 220px !important;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #f7f8fa;

    margin: 0 !important;

    padding: 0 !important;
}

.products-slide .product-image img {
    display: block !important;

    width: 100% !important;

    height: 100% !important;

    object-fit: contain;

    margin: 0 !important;

    padding: 10px;

    transition: transform 0.35s ease;
}

.products-slide .product-card:hover .product-image img {
    transform: scale(1.04);
}

.products-slide .product-details {
    position: relative;

    width: 100% !important;

    flex: 1 1 auto !important;

    padding: 20px 22px 50px !important;

    margin: 0 !important;

    overflow: visible !important;
}

.products-slide .product-details h3 {
    width: 100% !important;

    margin: 0 0 12px !important;

    padding: 0 !important;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 800;

    color: #121820;

    white-space: normal;

    overflow: visible;
}

.products-slide .product-details p {
    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    font-size: 14px;

    line-height: 1.6;

    color: #5e6671;

    white-space: normal;

    overflow: visible;
}

.products-slide .product-arrow {
    position: absolute !important;

    right: 20px !important;

    bottom: 18px !important;

    z-index: 5;

    font-size: 18px;

    color: #555555;
}


/* ============================================================
   VIEW ALL PRODUCTS BUTTON
============================================================ */

.view-all-products {
    width: 70px;
    height: 70px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0b5ed7;

    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    font-size: 32px;

    transition: all 0.3s ease;
}

.view-all-products:hover {
    transform: translateX(5px);

    background: #084298;
}


/* ============================================================
   IMAGE LIGHTBOX
============================================================ */

.image-lightbox {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.90);

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 40px;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 9999;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.image-lightbox img {
    max-width: 90vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    transform: scale(0.92);

    transition: transform 0.3s ease;
}

.image-lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-size: 22px;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    transition: all 0.25s ease;

    z-index: 2;
}

.lightbox-close:hover {
    background: #ffffff;
    color: #111111;
}


/* ============================================================
   ALL PRODUCTS PAGE
============================================================ */

.all-products-section {
    background: #f4f6f8;

    padding: 35px 0 45px;
}

.all-products-section .section-heading {
    margin-bottom: 30px;
}

.all-products-section .section-heading h1 {
    font-size: 34px;

    font-weight: 800;

    color: #0b2f55;

    text-align: center;

    margin: 0;
}

.all-products-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.all-products-grid .product-card {
    display: flex;

    flex-direction: column;

    background: #ffffff;

    border-radius: 12px;

    overflow: hidden;

    text-decoration: none;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.all-products-grid .product-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.13);
}

.all-products-grid .product-image {
    width: 100%;

    height: 230px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f7f8fa;

    overflow: hidden;
}

.all-products-grid .product-image img {
    width: 100%;

    height: 100%;

    object-fit: contain;

    padding: 20px;

    transition: transform 0.4s ease;
}

.all-products-grid .product-card:hover .product-image img {
    transform: scale(1.05);
}

.all-products-grid .product-details {
    padding: 22px 22px 25px;

    flex: 1;
}

.all-products-grid .product-details h3 {
    margin: 0 0 12px;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 800;

    color: #111827;
}

.all-products-grid .product-details p {
    margin: 0;

    font-size: 14px;

    line-height: 1.6;

    color: #667085;
}


/* ============================================================
   DATASHEET BUTTON
============================================================ */

.datasheet-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 18px;

    padding: 10px 16px;

    background: #0b5ed7;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.5px;

    border-radius: 5px;

    transition: all 0.3s ease;
}

.datasheet-button:hover {
    background: #d71920;

    color: #ffffff;

    transform: translateY(-2px);
}

.datasheet-button i {
    font-size: 14px;
}


/* ============================================================
   STATISTICS
============================================================ */

.statistics-section {
    width: 100%;

    background: #06345d;

    color: #ffffff;

    padding: 20px 0;
}

.statistics-container {
    width: 85%;

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    align-items: center;

    justify-content: center;
}

.statistics-container .stat-item {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    min-height: 80px;

    padding: 15px 28px;

    color: #ffffff;
}

.statistics-container .stat-item + .stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.statistics-container .stat-icon {
    width: auto;

    font-size: 38px;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;
}

.statistics-container .stat-item strong {
    display: block;

    font-size: 28px;

    font-weight: 800;

    color: #ffffff;

    line-height: 1.1;
}

.statistics-container .stat-item span {
    display: block;

    margin-top: 5px;

    font-size: 13px;

    font-weight: 500;

    color: #ffffff;

    letter-spacing: 0.3px;
}


/* ============================================================
   FOOTER
============================================================ */

.site-footer {
    background: #ffffff;

    color: #000000;

    margin-top: 0;
}

.footer-container {
    max-width: 1400px;

    margin: 0 auto;

    padding: 60px 50px 45px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1.3fr 1.3fr;

    gap: 60px;
}

.footer-column {
    display: flex;

    flex-direction: column;
}

.footer-column h3 {
    font-size: 16px;

    font-weight: 700;

    margin: 0 0 25px;

    color: #000000;

    letter-spacing: 0.5px;
}

.footer-company {
    padding-right: 30px;
}

.footer-logo {
    width: 180px;

    height: auto;

    margin-bottom: 20px;
}

.footer-company p {
    color: #555555;

    font-size: 14px;

    line-height: 1.8;

    margin: 0;

    max-width: 330px;
}

.footer-column a {
    color: #555555;

    text-decoration: none;

    font-size: 14px;

    margin-bottom: 13px;

    transition: 0.3s ease;
}

.footer-column a:hover {
    color: #000000;

    padding-left: 5px;
}


/* ============================================================
   FOOTER SOCIAL
============================================================ */

.footer-social {
    display: flex;

    flex-direction: row;

    gap: 10px;

    margin-top: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f1f1f1;

    border-radius: 4px;

    color: #000000;

    margin: 0;

    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #000000;

    color: #ffffff;

    padding-left: 0;
}


/* ============================================================
   FOOTER BOTTOM
============================================================ */

.footer-bottom {
    background: #062f55;

    max-width: none;

    margin: 0;

    padding: 20px 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;
}

.footer-bottom div {
    display: flex;

    gap: 25px;
}

.footer-bottom a {
    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    margin: 0;
}

.footer-bottom a:hover {
    color: #ffffff;

    padding-left: 0;
}


/* ============================================================
   BAB POWER INTRO LANDING SCREEN
============================================================ */

#landing-screen {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100vh;

    background: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 99999;

    opacity: 1;

    visibility: visible;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.landing-content {
    width: 90%;

    max-width: 850px;

    text-align: center;
}

.landing-logo {
    width: 180px;

    max-width: 70%;

    height: auto;

    margin: 0 auto 20px;
}

.landing-company {
    margin: 0 0 35px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #555555;
}

.landing-content h1 {
    margin: 0;

    font-size: clamp(42px, 7vw, 80px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;

    color: #111827;
}

.landing-content h1 span {
    color: #d71920;
}

.landing-text {
    margin: 28px auto 0;

    max-width: 650px;

    font-size: 17px;

    line-height: 1.7;

    color: #6b7280;
}

.loading-line {
    width: 220px;

    height: 3px;

    margin: 40px auto 18px;

    background: #e5e7eb;

    overflow: hidden;
}

.loading-progress {
    width: 0%;

    height: 100%;

    background: #d71920;

    animation: landingProgress 12s linear forwards;
}

@keyframes landingProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.loading-text {
    margin: 0;

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #9ca3af;
}


/* ============================================================
   CONTACT PAGE
============================================================ */

.contact-hero {
    width: 100%;

    padding: 110px 6% 90px;

    background: #f5f8fc;

    text-align: center;

    border-bottom: 1px solid #e5e7eb;
}

.contact-hero-content {
    max-width: 850px;

    margin: 0 auto;
}

.contact-small-title {
    margin: 0 0 15px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #0877d1;
}

.contact-hero h1 {
    margin: 0;

    font-size: clamp(42px, 6vw, 68px);

    line-height: 1.1;

    font-weight: 800;

    color: #111827;
}

.contact-hero h1 span {
    color: #0877d1;
}

.contact-hero-content > p:last-child {
    max-width: 650px;

    margin: 25px auto 0;

    font-size: 17px;

    line-height: 1.7;

    color: #6b7280;
}


/* ============================================================
   CONTACT MAIN SECTION
============================================================ */

.contact-section {
    width: 100%;

    padding: 90px 6%;

    background: #ffffff;
}

.contact-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 80px;

    align-items: start;
}

.contact-information {
    padding-top: 15px;
}

.contact-label {
    margin: 0 0 18px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #0877d1;
}

.contact-information h2 {
    margin: 0 0 25px;

    font-size: 42px;

    line-height: 1.15;

    font-weight: 800;

    color: #111827;
}

.contact-information h2 span {
    color: #0877d1;
}

.contact-description {
    max-width: 500px;

    margin-bottom: 40px;

    font-size: 16px;

    line-height: 1.8;

    color: #6b7280;
}


/* ============================================================
   CONTACT ITEMS
============================================================ */

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 28px;
}

.contact-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #eef6ff;

    color: #0877d1;

    border-radius: 8px;

    font-size: 20px;

    font-weight: 700;
}

.contact-item h3 {
    margin: 0 0 5px;

    font-size: 15px;

    font-weight: 700;

    color: #111827;
}

.contact-item a,
.contact-item p {
    margin: 0;

    font-size: 15px;

    line-height: 1.6;

    color: #6b7280;

    text-decoration: none;
}

.contact-item a:hover {
    color: #0877d1;
}


/* ============================================================
   CONTACT FORM
============================================================ */

.contact-form-wrapper {
    padding: 45px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 12px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header p {
    margin: 0 0 8px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #0877d1;
}

.contact-form-header h2 {
    margin: 0;

    font-size: 30px;

    font-weight: 800;

    color: #111827;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    font-weight: 600;

    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #d9dee5;

    border-radius: 6px;

    background: #ffffff;

    color: #111827;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input {
    height: 48px;
}

.form-group textarea {
    min-height: 130px;

    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0877d1;

    box-shadow:
        0 0 0 3px rgba(8, 119, 209, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}


/* ============================================================
   CONTACT SUBMIT BUTTON
============================================================ */

.contact-submit {
    width: 100%;

    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border: none;

    border-radius: 6px;

    background: #0877d1;

    color: #ffffff;

    font-family: inherit;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.contact-submit span {
    font-size: 20px;

    transition:
        transform 0.2s ease;
}

.contact-submit:hover {
    background: #0565b4;

    transform: translateY(-1px);
}

.contact-submit:hover span {
    transform: translateX(4px);
}


/* ============================================================
   CONTACT CTA
============================================================ */

.contact-cta {
    max-width: 1200px;

    margin: 0 auto 80px;

    padding: 45px 55px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: #071c34;

    border-radius: 12px;
}

.contact-cta p {
    margin: 0 0 8px;

    color: #8bb9df;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;
}

.contact-cta h2 {
    margin: 0;

    color: #ffffff;

    font-size: 27px;

    line-height: 1.3;
}

.cta-button {
    flex-shrink: 0;

    padding: 15px 25px;

    border-radius: 6px;

    background: #0877d1;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: background 0.2s ease;
}

.cta-button:hover {
    background: #0565b4;
}


/* ============================================================
   GET A QUOTE PAGE
============================================================ */

.quote-hero {
    width: 100%;

    padding: 90px 6% 75px;

    background: #f5f8fc;

    text-align: center;

    border-bottom: 1px solid #e5e7eb;
}

.quote-hero-content {
    max-width: 800px;

    margin: 0 auto;
}

.quote-small-title {
    margin: 0 0 14px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #0877d1;
}

.quote-hero h1 {
    margin: 0;

    font-size: clamp(42px, 6vw, 66px);

    line-height: 1.1;

    font-weight: 800;

    color: #111827;
}

.quote-hero h1 span {
    color: #0877d1;
}

.quote-hero-content > p:last-child {
    max-width: 650px;

    margin: 22px auto 0;

    font-size: 16px;

    line-height: 1.7;

    color: #6b7280;
}


/* ============================================================
   QUOTE SECTION
============================================================ */

.quote-section {
    width: 100%;

    padding: 85px 6%;

    background: #ffffff;
}

.quote-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 75px;

    align-items: start;
}

.quote-information {
    padding-top: 15px;
}

.quote-label {
    margin: 0 0 16px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #0877d1;
}

.quote-information h2 {
    margin: 0 0 22px;

    font-size: 40px;

    line-height: 1.18;

    font-weight: 800;

    color: #111827;
}

.quote-information h2 span {
    color: #0877d1;
}

.quote-description {
    max-width: 500px;

    margin: 0 0 35px;

    font-size: 16px;

    line-height: 1.8;

    color: #6b7280;
}

.quote-info-item {
    margin-bottom: 25px;
}

.quote-info-item strong {
    display: block;

    margin-bottom: 6px;

    font-size: 14px;

    font-weight: 700;

    color: #111827;
}

.quote-info-item a,
.quote-info-item p {
    margin: 0;

    font-size: 15px;

    line-height: 1.6;

    color: #6b7280;

    text-decoration: none;
}

.quote-info-item a:hover {
    color: #0877d1;
}


/* ============================================================
   QUOTE FORM
============================================================ */

.quote-form-wrapper {
    padding: 42px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 12px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.quote-form-header {
    margin-bottom: 30px;
}

.quote-form-header p {
    margin: 0 0 8px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #0877d1;
}

.quote-form-header h2 {
    margin: 0 0 8px;

    font-size: 28px;

    font-weight: 800;

    color: #111827;
}

.quote-form-header span {
    font-size: 12px;

    color: #9ca3af;
}

.quote-form {
    width: 100%;
}

.quote-form .form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.quote-form .form-group {
    margin-bottom: 20px;
}

.quote-form .form-group label {
    display: block;

    margin-bottom: 7px;

    font-size: 13px;

    font-weight: 600;

    color: #374151;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d9dee5;

    border-radius: 6px;

    background: #ffffff;

    color: #111827;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.quote-form input,
.quote-form select {
    height: 48px;

    padding: 0 14px;
}

.quote-form textarea {
    min-height: 140px;

    padding: 13px 14px;

    resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: #0877d1;

    box-shadow:
        0 0 0 3px rgba(8, 119, 209, 0.1);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #9ca3af;
}


/* ============================================================
   QUOTE SUBMIT
============================================================ */

.quote-submit {
    width: 100%;

    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border: none;

    border-radius: 6px;

    background: #0877d1;

    color: #ffffff;

    font-family: inherit;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.quote-submit span {
    font-size: 20px;

    transition:
        transform 0.2s ease;
}

.quote-submit:hover {
    background: #0565b4;

    transform: translateY(-1px);
}

.quote-submit:hover span {
    transform: translateX(4px);
}


/* ============================================================
   PRODUCT DETAILS POPUP
============================================================ */

.product-details-modal {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.65);

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 99999;
}

.product-details-modal.active {
    opacity: 1;

    visibility: visible;
}

.product-details-popup {
    position: relative;

    width: 100%;

    max-width: 700px;

    max-height: 85vh;

    overflow-y: auto;

    background: #ffffff;

    border-radius: 14px;

    padding: 45px 50px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25);

    transform:
        translateY(25px)
        scale(0.96);

    transition:
        transform 0.3s ease;
}

.product-details-modal.active .product-details-popup {
    transform:
        translateY(0)
        scale(1);
}

.product-details-close {
    position: absolute;

    top: 16px;

    right: 18px;

    width: 38px;
    height: 38px;

    border: none;

    border-radius: 50%;

    background: #f2f2f2;

    color: #333333;

    font-size: 18px;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    transition: all 0.25s ease;
}

.product-details-close:hover {
    background: #e30613;

    color: #ffffff;

    transform: rotate(90deg);
}

.product-details-popup h2 {
    margin: 0;

    padding-right: 35px;

    font-size: 28px;

    font-weight: 800;

    color: #123b68;

    line-height: 1.25;
}

.product-details-line {
    width: 55px;

    height: 4px;

    background: #e30613;

    margin: 15px 0 25px;

    border-radius: 5px;
}

.product-details-popup p {
    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    color: #555555;

    white-space: pre-line;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1250px) {

    .header-container,
    .hero-container,
    .feature-container,
    .section-container,
    .statistics-container {
        width: 92%;
    }

    .main-navigation {
        gap: 22px;

        margin-left: 25px;
    }

    .products-grid {
        gap: 10px;
    }

    .product-card {
        flex-direction: column;

        text-align: center;

        padding-bottom: 25px;
    }

    .product-image {
        width: 100%;
    }

    .product-details {
        padding: 0 10px;
    }
}


/* ============================================================
   TABLET / SMALL DESKTOP
============================================================ */

@media (max-width: 1100px) {

    .all-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-images-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1000px) {

    .site-header {
        height: 80px;
    }

    .main-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .quote-button {
        padding: 11px 15px;
    }

    .hero-container {
        flex-direction: column;

        padding: 45px 0;
    }

    .hero-content {
        width: 100%;

        text-align: center;
    }

    .hero-content p {
        margin-left: auto;

        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-product {
        width: 100%;

        height: 380px;
    }

    .feature-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item:nth-child(2) {
        border-right: none;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Slider */
    .products-slide {
        display: grid !important;

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }

    .products-slide .product-card {
        width: 100%;

        flex: none !important;
    }

    /* Statistics */
    .statistics-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-information {
        text-align: center;
    }

    .contact-description {
        margin-left: auto;

        margin-right: auto;
    }

    .contact-item {
        justify-content: center;

        text-align: left;
    }

    .contact-cta {
        margin-left: 6%;

        margin-right: 6%;

        flex-direction: column;

        align-items: flex-start;
    }

    /* Quote */
    .quote-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .quote-information {
        text-align: center;
    }

    .quote-description {
        margin-left: auto;

        margin-right: auto;
    }

    .quote-info-item {
        text-align: center;
    }
}


/* ============================================================
   DESKTOP — ALL PRODUCTS COMPACT VIEW
============================================================ */

@media (min-width: 1101px) {

    .all-products-section {
        padding: 25px 0 30px;

        min-height: calc(100vh - 80px);
    }

    .all-products-section .section-heading {
        margin-bottom: 18px;
    }

    .all-products-section .section-heading h1 {
        font-size: 28px;
    }

    .all-products-grid {
        grid-template-columns: repeat(4, 1fr);

        gap: 12px;
    }

    .all-products-grid .product-image {
        height: 120px;
    }

    .all-products-grid .product-image img {
        padding: 10px;
    }

    .all-products-grid .product-details {
        padding: 12px 15px 14px;
    }

    .all-products-grid .product-details h3 {
        font-size: 14px;

        margin-bottom: 6px;
    }

    .all-products-grid .product-details p {
        font-size: 11px;

        line-height: 1.35;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    /* Header */
    .header-container {
        width: 90%;
    }

    .logo {
        min-width: auto;
    }

    .logo img {
        width: 145px;
    }

    .logo-tagline {
        font-size: 9px;
    }

    .quote-button {
        padding: 10px 12px;

        font-size: 11px;
    }

    .quote-button i {
        display: none;
    }

    .search-button {
        display: none;
    }


    /* Mobile Navigation */
    .mobile-navigation {
        position: absolute;

        top: 80px;

        left: 0;

        width: 100%;

        background: #ffffff;

        z-index: 999;

        display: none;

        flex-direction: column;

        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .mobile-navigation.open {
        display: flex;
    }

    .mobile-navigation > a,
    .mobile-dropdown-button {
        width: 100%;

        padding: 17px 25px;

        text-align: left;

        font-size: 13px;

        font-weight: 600;

        color: #222222;

        background: #ffffff;

        border: none;

        border-bottom:
            1px solid #eeeeee;
    }

    .mobile-dropdown-button {
        display: flex;

        align-items: center;

        justify-content: space-between;

        cursor: pointer;
    }

    .mobile-dropdown-content {
        display: none;

        background: #f5f7f9;
    }

    .mobile-dropdown-content.open {
        display: block;
    }

    .mobile-dropdown-content a {
        display: block;

        padding: 13px 40px;

        font-size: 12px;

        color: #444444;

        border-bottom:
            1px solid #e6e6e6;
    }


    /* Hero */
    .hero-section {
        min-height: auto;
    }

    .hero-container {
        width: 90%;
    }

    .hero-content h1 {
        font-size: 40px;

        letter-spacing: -1.5px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: center;
    }

    .primary-button,
    .secondary-button {
        width: 220px;
    }

    .hero-product {
        height: 290px;
    }


    /* Features */
    .feature-container {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.2);
    }


    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }


    /* Slider */
    .products-slider-wrapper {
        gap: 10px;
    }

    .products-slide {
        display: grid !important;

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .products-slide .product-card {
        width: 100%;

        min-width: 0;
    }

    .products-slide .product-image {
        height: 200px !important;

        min-height: 200px !important;

        flex-basis: 200px !important;
    }

    .products-slide .product-details {
        padding: 18px 20px 45px !important;
    }

    .products-slide .product-details h3 {
        font-size: 17px;
    }

    .products-slide .product-details p {
        font-size: 13px;
    }

    .view-all-products {
        width: 55px;

        height: 55px;

        font-size: 25px;
    }


    /* Product Images */
    .product-images-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px 15px;
    }


    /* Statistics */
    .statistics-container {
        width: 95%;

        grid-template-columns: 1fr;
    }

    .statistics-container .stat-item {
        gap: 10px;

        border-left: none !important;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.2);
    }

    .statistics-container .stat-item:last-child {
        border-bottom: none;
    }

    .statistics-container .stat-icon {
        font-size: 28px;
    }

    .statistics-container .stat-item strong {
        font-size: 21px;
    }

    .statistics-container .stat-item span {
        font-size: 10px;
    }


    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;

        padding: 45px 25px 35px;

        gap: 35px;
    }

    .footer-company {
        padding-right: 0;
    }

    .footer-bottom {
        padding: 20px 25px;

        flex-direction: column;

        align-items: flex-start;
    }

    .footer-bottom div {
        flex-direction: column;

        gap: 10px;
    }


    /* Landing */
    .landing-logo {
        width: 145px;
    }

    .landing-company {
        font-size: 10px;

        letter-spacing: 2px;

        margin-bottom: 28px;
    }

    .landing-content h1 {
        font-size: 43px;

        letter-spacing: -1px;
    }

    .landing-text {
        font-size: 15px;

        padding: 0 10px;
    }

    .loading-line {
        width: 180px;
    }


    /* Contact */
    .contact-hero {
        padding: 80px 20px 65px;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-information h2 {
        font-size: 34px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .contact-cta {
        padding: 35px 25px;

        margin-bottom: 50px;
    }

    .contact-cta h2 {
        font-size: 23px;
    }


    /* Quote */
    .quote-hero {
        padding: 70px 20px 55px;
    }

    .quote-section {
        padding: 55px 20px;
    }

    .quote-information h2 {
        font-size: 33px;
    }

    .quote-form-wrapper {
        padding: 25px 20px;
    }

    .quote-form .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    /* Lightbox */
    .image-lightbox {
        padding: 20px;
    }

    .image-lightbox img {
        max-width: 95vw;

        max-height: 85vh;
    }

    .lightbox-close {
        top: 15px;

        right: 15px;
    }


    /* Product Popup */
    .product-details-modal {
        padding: 18px;
    }

    .product-details-popup {
        padding: 38px 25px 30px;

        border-radius: 12px;

        max-height: 90vh;
    }

    .product-details-popup h2 {
        font-size: 22px;
    }

    .product-details-popup p {
        font-size: 14px;

        line-height: 1.7;
    }

    .product-details-close {
        width: 34px;

        height: 34px;

        top: 12px;

        right: 12px;
    }
}


/* ============================================================
   VERY SMALL MOBILE
============================================================ */

@media (max-width: 450px) {

    .product-images-grid {
        grid-template-columns: 1fr;
    }

    .product-image-box {
        height: 210px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-product {
        height: 250px;
    }

    .quote-button {
        padding: 9px 10px;
    }

    .logo img {
        width: 130px;
    }
}

/* ============================================================
   PRODUCT ACTION BUTTONS
   FINAL OVERRIDE
============================================================ */

.all-products-grid .product-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* ============================================================
   READ MORE + DATASHEET BUTTON
============================================================ */

.all-products-grid .product-details .product-details-button,
.all-products-grid .product-details .datasheet-button,
.product-details-button,
.datasheet-button {

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 145px !important;
    height: 42px !important;

    margin-top: 14px !important;
    padding: 0 17px !important;

    gap: 8px !important;

    border: 0 !important;
    border-radius: 6px !important;

    background: #0b5ed7 !important;

    color: #ffffff !important;

    font-family: "Inter", Arial, Helvetica, sans-serif !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    line-height: 1 !important;
    letter-spacing: 0.3px !important;

    text-decoration: none !important;

    cursor: pointer !important;

    box-shadow: 0 3px 8px rgba(11, 94, 215, 0.18) !important;

    opacity: 1 !important;
    visibility: visible !important;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease !important;
}


/* ============================================================
   READ MORE ICON
============================================================ */

.all-products-grid .product-details .product-details-button i,
.product-details-button i {

    font-size: 12px !important;

    color: #ffffff !important;

    transition: transform 0.25s ease !important;
}


/* ============================================================
   DATASHEET ICON
============================================================ */

.all-products-grid .product-details .datasheet-button i,
.datasheet-button i {

    font-size: 13px !important;

    color: #ffffff !important;
}


/* ============================================================
   HOVER
============================================================ */

.all-products-grid .product-details .product-details-button:hover,
.all-products-grid .product-details .datasheet-button:hover,
.product-details-button:hover,
.datasheet-button:hover {

    background: #d71920 !important;

    color: #ffffff !important;

    transform: translateY(-2px) !important;

    box-shadow:
        0 6px 15px rgba(215, 25, 32, 0.25) !important;
}


/* ============================================================
   HOVER ICON
============================================================ */

.product-details-button:hover i {

    transform: translateX(4px) !important;
}


/* ============================================================
   WHEN BOTH BUTTONS EXIST
============================================================ */

.product-details-button + .datasheet-button {

    margin-top: 10px !important;
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .all-products-grid .product-details .product-details-button,
    .all-products-grid .product-details .datasheet-button,
    .product-details-button,
    .datasheet-button {

        min-width: 140px !important;

        height: 40px !important;

        padding: 0 14px !important;

        font-size: 11px !important;
    }

}
/* ============================================================
   PRODUCT BUTTONS — FINAL STYLING
============================================================ */

.product-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}


/* READ MORE BUTTON */

.read-more-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 10px 18px;

    border: 1px solid #0d6efd !important;
    border-radius: 6px !important;

    background: #0d6efd !important;
    color: #ffffff !important;

    font-family: "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;

    line-height: 1;
    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* READ MORE HOVER */

.read-more-btn:hover {
    background: #084298 !important;
    border-color: #084298 !important;
    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 5px 12px rgba(13, 110, 253, 0.25);
}


/* DATASHEET BUTTON */

.datasheet-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 10px 18px;

    border: 1px solid #dc3545 !important;
    border-radius: 6px !important;

    background: #ffffff !important;
    color: #dc3545 !important;

    font-family: "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;

    line-height: 1;
    text-decoration: none !important;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* DATASHEET HOVER */

.datasheet-btn:hover {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 5px 12px rgba(220, 53, 69, 0.25);
}


/* BUTTON ACTIVE */

.read-more-btn:active,
.datasheet-btn:active {
    transform: translateY(0);
    box-shadow: none;
}


/* REMOVE DEFAULT BUTTON APPEARANCE */

.read-more-btn {
    appearance: none;
    -webkit-appearance: none;
}


/* MOBILE */

@media (max-width: 576px) {

    .product-buttons {
        gap: 8px;
    }

    .read-more-btn,
    .datasheet-btn {
        min-height: 38px;
        padding: 9px 14px;
        font-size: 12px;
    }

}

/* ============================================================
   PRODUCT BUTTONS - FINAL OVERRIDE
============================================================ */

.product-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

/* READ MORE BUTTON */

.product-buttons .read-more-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    min-width: 110px;
    height: 42px;

    padding: 0 18px;

    border: 2px solid #0057b8 !important;
    border-radius: 6px !important;

    background: #0057b8 !important;
    color: #ffffff !important;

    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;

    line-height: 1;
    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-buttons .read-more-btn:hover {
    background: #ffffff !important;
    color: #0057b8 !important;
    border-color: #0057b8 !important;

    transform: translateY(-2px);

    box-shadow: 0 5px 12px rgba(0, 87, 184, 0.20);
}


/* DATASHEET BUTTON */

.product-buttons .datasheet-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    min-width: 125px;
    height: 42px;

    padding: 0 18px;

    border: 2px solid #d62828 !important;
    border-radius: 6px !important;

    background: #a91f1f !important;
    color: #ffffff !important;

    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;

    line-height: 1;
    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-buttons .datasheet-btn:hover {
    background: #ffffff !important;
    color: #d62828 !important;
    border-color: #d62828 !important;

    transform: translateY(-2px);

    box-shadow: 0 5px 12px rgba(214, 40, 40, 0.20);
}


/* MOBILE */

@media (max-width: 576px) {

    .product-buttons {
        gap: 10px;
    }

    .product-buttons .read-more-btn,
    .product-buttons .datasheet-btn {
        min-width: 105px;
        height: 40px;
        padding: 0 14px;
        font-size: 13px;
    }

}

/* ============================================================
   FOOTER CONTACT DETAILS - FINAL FIX
============================================================ */

.footer-contact {
    min-width: 0;
}

.footer-contact h3 {
    margin-bottom: 24px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin: 0 0 10px 0;

    line-height: 1.45;
    font-size: 16px;
}

.footer-contact p i {
    width: 18px;
    min-width: 18px;

    margin-top: 4px;

    text-align: center;
    font-size: 17px;
}

.footer-contact p:last-of-type {
    margin-bottom: 18px;
}

/* SOCIAL ICONS */

.footer-contact .footer-social {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 14px;
}

.footer-contact .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 6px;

    text-decoration: none;

    transition: 0.25s ease;
}

.footer-contact .footer-social a i {
    margin: 0;
    font-size: 17px;
}