/* ===========================
   GLOBALXPORT - DESIGN SYSTEM
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&display=swap');

/* ==============================
   LOGO IMAGES
   ============================== */
/* Header logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 84px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Footer logo */
.footer-logo-img {
    height: 46px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 14px;
}

/* Dark mode: invert logo background for white bg logos */
[data-theme="dark"] .logo-img,
[data-theme="dark"] .footer-logo-img {
    filter: brightness(0) invert(1);
}

/* ==============================
   X BRAND WATERMARK
   ============================== */
/* Hero X */
.hero-x-watermark {
    position: absolute;
    /* right: -40px; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    width: 100%;
    height: auto;
    opacity: 0.50;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    /* filter: brightness(10); */
}

/* CTA section X */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-x-watermark {
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 380px;
    height: auto;
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    filter: brightness(10);
    transform: rotate(-10deg);
}

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

/* Footer X (CSS background - no extra HTML needed) */
.site-footer::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: url('images/x.png') center/contain no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}


/* --- CSS VARIABLES --- */
:root {
    /* GlobalXport Brand Colors */
    --blue: #1C9EEC;
    --blue-dark: #0f8dd6;
    --blue-navy: #122C67;
    --blue-mid: #1A3F95;
    --dark: #35393C;
    --dark-2: #2b2e31;
    --dark-3: #404548;
    --gray: #555555;
    --gray-light: #A5AAB0;
    --gray-bg: #DBDFE2;
    --gray-bg-2: #f0f2f4;
    --gray-mid: #C5C7CB;
    --white: #FFFFFF;
    --green-wa: #25D366;
    --border: #C5C7CB;

    /* Shadows & Effects */
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --radius: 4px;
    --font: 'Poppins', sans-serif;
    --transition: 0.25s ease;
}

/* --- PRELOADER --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -1;
}

.preloader-logo {
    height: 70px;
    width: auto;
    margin-bottom: 24px;
    animation: pulse 1.5s infinite;
}

[data-theme="dark"] .preloader-logo {
    filter: brightness(0) invert(1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 14px;
    color: var(--gray);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font);
}

input,
select,
textarea {
    font-family: var(--font);
}

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

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.section-title span {
    color: var(--blue);
}

.divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(to right, var(--blue-navy), var(--blue));
    border-radius: 4px;
    margin: 0 auto 30px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: var(--radius);
    transition: all var(--transition);
    font-family: var(--font);
}

/* Primary - Blue */
.btn-primary {
    background: var(--blue);
    color: var(--white);
    border: 2px solid var(--blue);
}

.btn-primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(28, 158, 236, 0.35);
}

/* Green - WhatsApp */
.btn-green {
    background: var(--green-wa);
    color: var(--white);
    border: 2px solid var(--green-wa);
}

.btn-green:hover {
    background: #20bd5a;
    border-color: #20bd5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* Keep old class names for compatibility */
.btn-yellow {
    background: var(--blue);
    color: var(--white);
    border: 2px solid var(--blue);
}

.btn-yellow:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(28, 158, 236, 0.35);
}

/* Secondary - Dark */
.btn-dark {
    background: var(--dark);
    color: var(--white);
    border: 2px solid var(--dark);
}

.btn-dark:hover {
    background: var(--dark-2);
    border-color: var(--dark-2);
    transform: translateY(-1px);
}

/* Outline */
.btn-outline {
    border: 2px solid var(--blue);
    color: var(--blue);
    background: transparent;
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
}

/* Outline White (for dark backgrounds) */
.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

/* ==============================
   TOP BAR
   ============================== */
.top-bar {
    background: var(--dark);
    color: var(--gray-light);
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-bar a:hover {
    color: var(--blue);
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.top-bar-phone i {
    color: var(--blue);
    font-size: 13px;
}

/* ==============================
   HEADER
   ============================== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--blue-navy) 0%, var(--blue-mid) 60%, var(--blue) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
    letter-spacing: -1px;
}

.logo-text {
    line-height: 1.1;
}

.logo-text .logo-main {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0px;
}

.logo-text .logo-main em {
    color: var(--blue);
    font-style: normal;
}

.logo-text .logo-sub {
    display: block;
    font-size: 9px;
    font-weight: 500;
    color: var(--gray-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Nav */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    border-radius: var(--radius);
    position: relative;
    transition: color var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.main-nav a:hover {
    color: var(--blue);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.main-nav a.active {
    color: var(--blue);
}

/* Header Contacts */
.header-contacts {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.contact-item-icon.wa {
    background: var(--green-wa);
    color: white;
}

.contact-item-icon.ph {
    background: var(--blue);
    color: var(--white);
}

.contact-item-text small {
    display: block;
    font-size: 10px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-text strong {
    font-size: 13px;
    color: var(--dark);
    font-weight: 600;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-login {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    transition: all var(--transition);
}

.header-login:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.cart-btn {
    position: relative;
    width: 38px;
    height: 38px;
    background: var(--blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
    transition: all var(--transition);
}

.cart-btn:hover {
    background: var(--blue-dark);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--blue-navy);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition);
}

/* ==============================
   HERO CAROUSEL
   ============================== */
.hero-section {
    position: relative;
    /* Adjust for top-bar (32px), header (~76px) and taller quote-bar tabs (~142px) */
    height: calc(100vh - 260px);
    display: flex;
    flex-direction: column;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Make quote-bar stick to the bottom of the hero section */
.quote-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* Faster fade transition between slides */
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
    transform: scale(1);
}

/* Ken Burns zoom effect on active slide */
.hero-slide.active img {
    animation: heroZoom 15s ease-out both;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to right, rgb(0 0 0 / 85%) 0%, rgba(18, 44, 103, 0.45) 40%, transparent 100%); */
}

.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-label {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 14px;
    margin-bottom: 16px;
    border-radius: 2px;
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 16px;
    /*text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);*/
    text-shadow: 2px 2px 5px BLACK;
}

.hero-title em {
    color: var(--blue);
    font-style: normal;
    font-weight: 900;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 300;
    max-width: 460px;
    margin-bottom: 28px;
    text-shadow: 2px 1px 2px BLACK;
}

.hero-btns {
    display: flex;
    gap: 12px;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.hero-dot.active {
    background: var(--blue);
    transform: scale(1.3);
}

/* Hero Arrows */
.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(28, 158, 236, 0.2);
    border: 2px solid rgba(28, 158, 236, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--blue);
    border-color: var(--blue);
}

/* ==============================
   QUOTE BAR
   ============================== */
.quote-bar {
    background: var(--blue-navy);
    padding: 0 0 30px 0;
    position: relative;
    width: 100%;
    z-index: 10;
    background-image: repeating-linear-gradient(60deg, transparent, transparent 10px, rgba(255, 255, 255, 0.025) 10px, rgba(255, 255, 255, 0.025) 20px);
}

.quote-bar .container {
    position: relative;
    z-index: 1;
}

.quote-form-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

/* Tabs Top Styling */
.quote-tabs-top {
    display: flex;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
}

.quote-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.5);
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 1px;
    /* Overlap border */
}

.quote-tab-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
}

.quote-tab-btn.active {
    color: var(--white);
    border-bottom-color: var(--blue);
    background: transparent;
}

.quote-form-label strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue);
}

.quote-form-label span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

.quote-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    flex-wrap: wrap;
}

.quote-form select {
    flex: 1;
    min-width: 140px;
    padding: 12px 36px 12px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: white;
    font-size: 13px;
    font-family: var(--font);
    transition: border-color var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231C9EEC' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

.quote-form select option {
    background: var(--blue-navy);
    color: white;
}

.quote-form select:focus {
    outline: none;
    border-color: var(--blue);
}

.quote-submit {
    padding: 12px 28px;
    background: var(--blue);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
    flex-shrink: 0;
}

.quote-submit:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(28, 158, 236, 0.4);
}

.quote-submit-group {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .quote-submit-group {
        width: 100%;
    }

    .quote-submit-group .quote-submit {
        flex: 1;
    }
}

/* ==============================
   HOW IT WORKS
   ============================== */
.how-it-works {
    padding: 70px 0;
    background: var(--white);
}

.how-it-works .container {
    text-align: center;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

.how-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 36px);
    right: calc(12.5% + 36px);
    height: 2px;
    background: repeating-linear-gradient(to right, var(--blue) 0, var(--blue) 8px, transparent 8px, transparent 16px);
}

.step-card {
    text-align: center;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--blue-navy), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(28, 158, 236, 0.4);
}

.step-num {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--dark);
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}

/* ==============================
   BRANDS CAROUSEL
   ============================== */
.brands-section {
    padding: 50px 0;
    background: var(--gray-bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.brands-track-wrapper {
    overflow: hidden;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: scrollBrands 30s linear infinite;
    width: max-content;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
    flex-shrink: 0;
    border-right: 1px solid var(--border);
}

.brand-item img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition: filter var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==============================
   GALLERY
   ============================== */
.gallery-section {
    padding: 60px 0;
}

.carousel-gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 -10px;
}

.gallery-carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.gallery-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: rgba(28, 158, 236, 0.15);
    border: 2px solid rgba(28, 158, 236, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 0 15px rgba(28, 158, 236, 0.5);
}

.gallery-nav.prev {
    left: -60px;
}

.gallery-nav.next {
    right: -60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    flex: 0 0 calc(33.333% - 14px);
    height: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* .gallery-item:first-child removed for equal column layout */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 44, 103, 0.75) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-tag {
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 2px;
}

/* ==============================
   PRODUCTS (preview / cards)
   ============================== */
.products-preview {
    padding: 70px 0;
    background: var(--gray-bg-2);
}

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

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.product-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #f5f7fa;
}

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

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--blue);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 2px;
}

.product-card-body {
    padding: 14px;
}

.product-brand {
    font-size: 10px;
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.product-name {
    font-size: 14px;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.product-ref {
    font-size: 11px;
    color: var(--gray-light);
    font-weight: 300;
}

.price-comparison {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-br-label {
    color: var(--gray-light);
    font-size: 12px;
}

.price-br-val {
    color: var(--gray-light);
    text-decoration: line-through;
    font-weight: 500;
    font-size: 13px;
}

.price-gx-label {
    color: var(--dark);
    font-weight: 700;
    font-size: 12px;
}

.price-gx-val {
    color: #00b050;
    /* Strong positive green */
    font-weight: 800;
    font-size: 16px;
}

.product-card-footer {
    padding: 10px 14px;
    border-top: 1px solid var(--border);
}

.btn-quote {
    display: block;
    width: 100%;
    padding: 9px;
    background: var(--blue-navy);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-quote:hover {
    background: var(--blue);
}

/* ==============================
   CTA SECTION
   ============================== */
.cta-section {
    padding: 70px 0;
    background: var(--blue-navy);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 28px,
            rgba(28, 158, 236, 0.06) 28px, rgba(28, 158, 236, 0.06) 56px);
    text-align: center;
}

.cta-section .section-title {
    color: var(--white);
}

.cta-section .section-title span {
    color: var(--blue);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto 32px;
    font-weight: 300;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==============================
   FOOTER
   ============================== */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '🇺🇸';
    font-size: 280px;
    position: absolute;
    right: -30px;
    bottom: -50px;
    opacity: 0.03;
    line-height: 1;
}

.footer-top {
    padding: 56px 0 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.footer-logo .logo-icon {
    width: 44px;
    height: 44px;
    font-size: 16px;
    border-radius: 6px;
}

.footer-logo .logo-main {
    color: var(--white);
    font-size: 17px;
}

.footer-logo .logo-main em {
    color: var(--blue);
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
}

.footer-logo-area p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 14px;
    font-weight: 300;
}

.footer-address {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.9;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social-link {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: all var(--transition);
}

.social-link:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(28, 158, 236, 0.1);
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--blue);
    display: inline-block;
}

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

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
}

.footer-links a::before {
    content: '›';
    color: var(--blue);
    font-size: 18px;
    line-height: 1;
}

.footer-links a:hover {
    color: var(--blue);
}

.footer-phones li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    margin-bottom: 10px;
}

.footer-phones li strong {
    color: var(--white);
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.footer-phone-icon {
    color: var(--blue);
    font-size: 13px;
    margin-top: 2px;
}

.footer-bottom {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--blue);
}

/* ==============================
   FLOATING WHATSAPP
   ============================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-float-btn {
    width: 56px;
    height: 56px;
    background: var(--green-wa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    animation: pulseWa 2.5s infinite;
    transition: transform var(--transition);
    text-decoration: none;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
}

.whatsapp-float-tooltip {
    background: var(--dark);
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulseWa {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 4px 32px rgba(37, 211, 102, 0.75);
    }
}

/* ==============================
   BACK TO TOP
   ============================== */
#backToTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(28, 158, 236, 0.3);
    border: none;
    outline: none;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: var(--blue-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(28, 158, 236, 0.5);
}


/* ==============================
   PAGE HERO (inner pages)
   ============================== */
.page-hero {
    background: var(--blue-navy);
    background-image: linear-gradient(135deg, var(--blue-navy) 0%, var(--dark) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpolygon points='20 0 40 10 40 30 20 40 0 30 0 10'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-label {
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.page-hero h1 {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    font-size: 12px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--blue);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
    color: var(--blue);
}

/* ==============================
   ABOUT PAGE
   ============================== */
.about-section {
    padding: 70px 0;
}

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

.about-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.about-content p {
    margin-bottom: 16px;
    line-height: 1.85;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.stat-number {
    font-size: 34px;
    font-weight: 900;
    color: var(--blue);
}

.stat-label {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    font-weight: 400;
}

.sidebar-widget {
    background: var(--dark);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.sidebar-widget-header {
    background: var(--blue-navy);
    padding: 12px 18px;
}

.sidebar-widget-header h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.5px;
}

.sidebar-steps {
    padding: 16px 18px;
}

.sidebar-step {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sidebar-step:last-child {
    border-bottom: none;
}

.sidebar-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-step p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
}

.sidebar-step strong {
    display: block;
    color: white;
    margin-bottom: 2px;
    font-weight: 600;
    font-size: 13px;
}

.sidebar-contact-widget {
    background: var(--blue-mid);
    border-radius: var(--radius);
    padding: 22px;
    text-align: center;
}

.sidebar-contact-widget h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.sidebar-contact-widget p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
    font-weight: 300;
}

.sidebar-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.25);
    color: white;
    padding: 11px 18px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all var(--transition);
}

.sidebar-wa-btn:hover {
    background: rgba(0, 0, 0, 0.45);
    transform: translateY(-1px);
}

/* ==============================
   PRODUCTS PAGE
   ============================== */
.products-page {
    padding: 60px 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

.filter-widget {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 18px;
}

.filter-widget-header {
    background: var(--blue-navy);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-widget-header h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-widget-body {
    padding: 14px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid var(--gray-bg);
    cursor: pointer;
}

.filter-item:last-child {
    border-bottom: none;
}

.filter-item input[type="checkbox"] {
    accent-color: var(--blue);
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.filter-item label {
    font-size: 13px;
    color: var(--gray);
    cursor: pointer;
    flex: 1;
    font-weight: 400;
}

.filter-item span {
    font-size: 11px;
    color: var(--gray-light);
    background: var(--gray-bg-2);
    padding: 2px 7px;
    border-radius: 10px;
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 12px;
}

.products-count {
    font-size: 13px;
    color: var(--gray);
    font-weight: 300;
}

.products-count strong {
    color: var(--dark);
    font-weight: 600;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--dark);
    cursor: pointer;
    font-family: var(--font);
}

.products-grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--gray);
    cursor: pointer;
    transition: all var(--transition);
    background: white;
}

.page-btn:hover,
.page-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    font-weight: 700;
}

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-page {
    padding: 70px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 56px;
}

.contact-form-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-form-section p {
    color: var(--gray);
    margin-bottom: 26px;
    font-weight: 300;
}

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

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group label span {
    color: var(--blue);
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--dark);
    font-family: var(--font);
    transition: border-color var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--blue);
}

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

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

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(28, 158, 236, 0.4);
}

.contact-info-card {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 18px;
    color: white;
}

.contact-info-card h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.contact-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 34px;
    height: 34px;
    background: rgba(28, 158, 236, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 14px;
    flex-shrink: 0;
}

.contact-detail-text small {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-detail-text strong {
    font-size: 13px;
    color: white;
    font-weight: 500;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.hours-table {
    width: 100%;
}

.hours-table tr td {
    padding: 6px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
}

.hours-table tr td:last-child {
    text-align: right;
    color: var(--blue);
    font-weight: 600;
}

/* ==============================
   RESPONSIVE
   ============================== */
.mobile-menu-extra,
.mobile-contact-bar {
    display: none !important;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-steps::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

    .about-grid .about-sidebar {
        display: none;
    }

    /* ── GALLERY CAROUSEL (Tablet) ── */
    .gallery-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {

    /* ── HERO ── */
    .hero-section {
        height: auto;
        min-height: 50vh;
    }

    .hero-carousel {
        height: 60vh;
    }

    .hero-slide-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-desc {
        text-align: center;
        max-width: 90%;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-label {
        font-size: 10px;
    }

    .hero-prev,
    .hero-next {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    /* ── TOP BAR ── */
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .top-bar-left,
    .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* ── HEADER ── */
    .header-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .main-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        max-width: 80vw;
        height: 100vh;
        background: #000;
        z-index: 1001;
        transition: right 0.3s ease;
        padding-top: 70px;
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
        overflow-y: auto;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav a {
        padding: 16px 20px;
        color: #fff;
        border-bottom: 1px solid #222;
        font-size: 14px;
        letter-spacing: 0.5px;
        display: block;
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: #fff;
        background: #111;
    }
    .main-nav a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 40px;
        border: 2px solid #000;
        background: #000;
        cursor: pointer;
        z-index: 1002;
    }
    .mobile-menu-btn span {
        width: 24px;
        height: 3px;
        background: #fff;
        border-radius: 1px;
        transition: all var(--transition);
    }

    .header-contacts {
        display: none;
    }

    .logo-img {
        height: 50px;
    }

    /* Extras in mobile menu */
    .mobile-menu-extra {
        display: block !important;
        padding: 24px 20px;
    }
    .mobile-menu-extra .menu-client-title {
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        margin-bottom: 20px;
    }
    .mobile-menu-extra .menu-contact-item {
        margin-bottom: 16px;
    }
    .mobile-menu-extra .menu-contact-item .m-label {
        display: block;
        color: var(--blue);
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 4px;
    }
    .mobile-menu-extra .menu-contact-item .m-val {
        display: block;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
    }

    /* Mobile Contact Bar (under header) */
    .mobile-contact-bar {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #f0f2f4;
        padding: 12px 15px;
        border-bottom: 1px solid #e1e4e8;
    }
    .mobile-contact-bar a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--gray);
        font-weight: 600;
        font-size: 14px;
    }
    .mobile-contact-bar i {
        background: #25D366;
        color: white;
        width: 24px;
        height: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 14px;
    }

    /* Hide top bar */
    .top-bar {
        display: none !important;
    }

    /* ── QUOTE BAR (Home) ── */
    .quote-bar {
        position: relative;
    }

    .quote-tabs-top {
        flex-direction: column;
        gap: 0;
        border-bottom: none;
    }

    .quote-tab-btn {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 3px solid transparent;
        justify-content: flex-start;
        padding: 12px 16px;
        font-size: 13px;
    }

    .quote-tab-btn.active {
        border-bottom-color: rgba(255, 255, 255, 0.1);
        border-left-color: var(--blue);
        background: rgba(255, 255, 255, 0.05);
    }

    .quote-form {
        flex-direction: column !important;
        gap: 10px;
    }

    .quote-form select,
    .quote-form input {
        width: 100% !important;
        min-width: unset !important;
    }

    .quote-submit {
        width: 100%;
    }

    /* ── SECTIONS ── */
    .section-title {
        font-size: 22px;
    }

    .how-steps {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 24px 20px;
    }

    /* ── PRODUCTS ── */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        display: none;
    }

    /* ── GALLERY CAROUSEL ── */
    .gallery-item {
        flex: 0 0 100%;
        height: 280px;
    }

    .gallery-nav.prev {
        left: 0;
    }

    .gallery-nav.next {
        right: 0;
    }

    .carousel-gallery-wrapper {
        padding: 0 10px;
    }

    /* ── CTA ── */
    .cta-section {
        padding: 40px 0;
    }

    .cta-section p {
        font-size: 13px;
        max-width: 90%;
        margin: 0 auto;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    /* ── CONTACT PAGE ── */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* ── PAGE HERO (inner pages) ── */
    .page-hero h1 {
        font-size: 28px;
    }

    .page-hero p {
        font-size: 13px;
    }

    /* ── FOOTER ── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* ── ABOUT ── */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-grid .about-sidebar {
        display: none;
    }

    /* ── QUOTE FORM WRAPPER ── */
    .quote-form-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    /* ── QUOTE MODAL ── */
    .quote-modal-box {
        max-width: 100% !important;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
        padding: 20px 16px;
    }

    .quote-modal-overlay {
        padding: 0;
    }

    .quote-modal-title {
        font-size: 18px;
    }

    .quote-modal-box .quote-tabs-top {
        flex-direction: column;
        gap: 0;
        border-bottom: none;
    }

    .quote-modal-box .quote-tab-btn {
        font-size: 12px;
        padding: 10px 12px;
        border-bottom: 1px solid var(--border);
        border-left: 3px solid transparent;
        justify-content: flex-start;
    }

    .quote-modal-box .quote-tab-btn.active {
        border-left-color: var(--blue);
        background: rgba(28, 158, 236, 0.06);
    }

    .modal-tab-form {
        flex-direction: column !important;
    }

    .modal-tab-form select {
        width: 100% !important;
        min-width: unset !important;
    }

    .quote-modal-fields .form-row {
        flex-direction: column !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
    }

    .hero-carousel {
        height: 55vh;
    }

    .hero-desc {
        font-size: 13px;
    }

    .hero-label {
        font-size: 9px;
        padding: 3px 10px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-grid-2 {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item {
        height: 200px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 20px;
    }

    .page-hero h1 {
        font-size: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .price-comparison {
        font-size: 12px;
    }

    .step-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .stat-number {
        font-size: 28px;
    }

    .cta-section .section-title {
        font-size: 20px;
    }
}

/* ==============================
   THEME TOGGLE BUTTON
   ============================== */
.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--dark);
    transition: all var(--transition);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    border-color: var(--blue);
    background: rgba(28, 158, 236, 0.08);
    transform: rotate(20deg) scale(1.05);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    position: absolute;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.theme-toggle .icon-sun {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.theme-toggle .icon-moon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

/* ==============================
   DARK MODE  (data-theme="dark")
   ============================== */
[data-theme="dark"] {
    --white: #0f1117;
    --gray-bg-2: #161a22;
    --gray-bg: #1c2130;
    --border: #2a3045;
    --dark: #e0e4ef;
    --dark-2: #c8cedd;
    --dark-3: #adb5cb;
    --gray: #8a93ad;
    --gray-light: #5e6882;
    --gray-mid: #2a3045;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.55);
}

/* Body & backgrounds */
[data-theme="dark"] body {
    background: #0f1117;
    color: #8a93ad;
}

[data-theme="dark"] .site-header {
    background: #161a22;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .logo-text .logo-main {
    color: #e0e4ef;
}

[data-theme="dark"] .main-nav a {
    color: #c8cedd;
}

[data-theme="dark"] .header-login {
    border-color: #2a3045;
    color: #c8cedd;
}

[data-theme="dark"] .mobile-menu-btn span {
    background: #c8cedd;
}

/* Cards & surfaces */
[data-theme="dark"] .product-card {
    background: #161a22;
    border-color: #2a3045;
}

[data-theme="dark"] .product-card-img {
    background: #1c2130;
}

[data-theme="dark"] .product-card-footer {
    border-color: #2a3045;
}

[data-theme="dark"] .filter-widget {
    border-color: #2a3045;
}

[data-theme="dark"] .filter-widget-body {
    background: #161a22;
}

[data-theme="dark"] .filter-item {
    border-color: #2a3045;
}

[data-theme="dark"] .filter-item label {
    color: #8a93ad;
}

[data-theme="dark"] .filter-item span {
    background: #1c2130;
    color: #5e6882;
}

[data-theme="dark"] .sort-select {
    background: #161a22;
    border-color: #2a3045;
    color: #c8cedd;
}

[data-theme="dark"] .page-btn {
    background: #161a22;
    border-color: #2a3045;
    color: #8a93ad;
}

[data-theme="dark"] .stat-item {
    border-color: #2a3045;
    background: #161a22;
}

/* Sections */
[data-theme="dark"] .how-it-works {
    background: #0f1117;
}

[data-theme="dark"] .products-preview {
    background: #0d1018;
}

[data-theme="dark"] .brands-section {
    background: #0d1018;
    border-color: #2a3045;
}

[data-theme="dark"] .brand-item {
    border-color: #2a3045;
}

[data-theme="dark"] .brand-item img {
    filter: grayscale(100%) opacity(0.35) brightness(2);
}

[data-theme="dark"] .brand-item:hover img {
    filter: grayscale(0%) opacity(1) brightness(1);
}

/* Titles & text */
[data-theme="dark"] .section-title {
    color: #e0e4ef;
}

[data-theme="dark"] .step-card h3 {
    color: #e0e4ef;
}

[data-theme="dark"] .about-content h2 {
    color: #e0e4ef;
}

[data-theme="dark"] .product-name {
    color: #e0e4ef;
}

[data-theme="dark"] .contact-item-text strong {
    color: #e0e4ef;
}

[data-theme="dark"] .products-count strong {
    color: #e0e4ef;
}

[data-theme="dark"] .form-group label {
    color: #e0e4ef;
}

/* Forms */
[data-theme="dark"] .form-control {
    background: #161a22;
    border-color: #2a3045;
    color: #e0e4ef;
}

[data-theme="dark"] .form-control:focus {
    border-color: var(--blue);
}

/* Theme Toggle button state in dark mode */
[data-theme="dark"] .theme-toggle {
    border-color: #2a3045;
    color: #e0e4ef;
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(28, 158, 236, 0.12);
}

[data-theme="dark"] .theme-toggle .icon-sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

[data-theme="dark"] .theme-toggle .icon-moon {
    opacity: 1;
    transform: rotate(0) scale(1);
}


/* Main nav underline visibility */
[data-theme="dark"] .main-nav a::after {
    background: var(--blue);
}

/* Transition all color changes smoothly */
body,
.site-header,
.product-card,
.filter-widget,
.filter-widget-body,
.form-control,
.sort-select,
.page-btn,
.stat-item,
.brands-section,
.how-it-works,
.products-preview,
.section-title,
.step-card h3,
.about-content h2,
.product-name {
    transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

/* ==============================
   QUOTE MODAL
   ============================== */
.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.quote-modal-overlay.active {
    display: flex;
}

.quote-modal-box {
    background: var(--white);
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

[data-theme="dark"] .quote-modal-box {
    background: var(--dark-2);
    color: var(--white);
}

.quote-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gray-light);
    cursor: pointer;
    transition: color 0.2s;
}

.quote-modal-close:hover {
    color: var(--dark);
}

[data-theme="dark"] .quote-modal-close:hover {
    color: var(--white);
}

.quote-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

[data-theme="dark"] .quote-modal-title {
    color: var(--white);
}

.quote-modal-desc {
    font-size: 13.5px;
    color: var(--gray);
    margin-bottom: 20px;
}

[data-theme="dark"] .quote-modal-desc {
    color: rgba(255, 255, 255, 0.7);
}

.quote-modal-summary {
    background: var(--gray-bg-2);
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 20px;
    border-left: 3px solid var(--blue);
}

[data-theme="dark"] .quote-modal-summary {
    background: var(--dark-3);
}

.summary-item {
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--dark);
}

.summary-item:last-child {
    margin-bottom: 0;
}

[data-theme="dark"] .summary-item {
    color: var(--white);
}

.summary-item strong {
    color: var(--blue-navy);
}

[data-theme="dark"] .summary-item strong {
    color: var(--gray-light);
}

.quote-modal-fields label {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--dark);
}

[data-theme="dark"] .quote-modal-fields label {
    color: var(--white);
}

/* ==============================
   QUOTE MODAL – TAB OVERRIDES
   ============================== */
.quote-modal-box .quote-tabs-top {
    border-bottom: 2px solid var(--gray-bg);
}

.quote-modal-box .quote-tab-btn {
    color: var(--gray);
    background: transparent;
    border-bottom: 3px solid transparent;
    font-size: 13px;
    padding: 12px 14px;
    text-transform: uppercase;
}

.quote-modal-box .quote-tab-btn:hover {
    color: var(--dark);
    background: var(--gray-bg-2);
}

.quote-modal-box .quote-tab-btn.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
    background: rgba(28, 158, 236, 0.05);
}

/* Modal form selects with visible styling */
.quote-modal-box .modal-tab-form select {
    padding: 10px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--dark);
    font-size: 13px;
    font-family: var(--font);
    cursor: pointer;
    transition: border-color var(--transition);
}

.quote-modal-box .modal-tab-form select:focus {
    border-color: var(--blue);
    outline: none;
}

/* Dark mode overrides for modal tabs */
[data-theme="dark"] .quote-modal-box .quote-tabs-top {
    border-bottom-color: var(--gray-mid);
}

[data-theme="dark"] .quote-modal-box .quote-tab-btn {
    color: var(--gray-light);
}

[data-theme="dark"] .quote-modal-box .quote-tab-btn:hover {
    color: var(--dark);
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .quote-modal-box .quote-tab-btn.active {
    color: var(--blue);
    background: rgba(28, 158, 236, 0.1);
}

[data-theme="dark"] .quote-modal-box .modal-tab-form select {
    background: var(--dark-3);
    border-color: var(--gray-mid);
    color: var(--dark);
}

/* PARTNERS SLIDER */
.partners-section {
    padding: 60px 0;
    background: white;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #eee;
}

[data-theme="dark"] .partners-section {
    background: #0f1117;
    border-bottom-color: #2a3045;
}

.partners-title {
    text-align: center;
    color: var(--dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
}

[data-theme="dark"] .partners-title {
    color: #e0e4ef;
}

.partners-slider {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.partners-slider::before,
.partners-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

[data-theme="dark"] .partners-slider::before {
    background: linear-gradient(to right, rgba(15, 17, 23, 1) 0%, rgba(15, 17, 23, 0) 100%);
}

[data-theme="dark"] .partners-slider::after {
    background: linear-gradient(to left, rgba(15, 17, 23, 1) 0%, rgba(15, 17, 23, 0) 100%);
}

.partners-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    animation: scroll-partners 30s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    width: 200px;
    flex-shrink: 0;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

[data-theme="dark"] .partner-logo img {
    filter: grayscale(100%) opacity(0.3) brightness(2);
}

[data-theme="dark"] .partner-logo:hover img {
    filter: grayscale(0%) opacity(1) brightness(1);
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 6));
        /* Half of the array */
    }
}