/* ============================================================
   SHB Rock Breaker - Main Stylesheet
   Primary: #F57C00 | Secondary: #111111
   Fonts: Montserrat (headings) | Poppins (body)
============================================================ */

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

/* ---------- CSS Variables ---------- */
:root {
    --primary: #f57c00;
    --primary-dark: #e65100;
    --primary-light: #ff9800;
    --secondary: #111111;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #0d0d0d;
    --white: #ffffff;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 50px rgba(0, 0, 0, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CUSTOM CURSOR  */
/* Hide default cursor */
body {
    cursor: none;
}

.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid #f57c00;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
    z-index: 99999;
}
html , body{
    overflow-x: hidden;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #f57c00;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 100000;
}

.cursor.active {
    width: 60px;
    height: 60px;
    background: rgba(12, 6, 0, 0.452);
}
/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* ============================================================
   NAVBAR
============================================================ */
#mainNav {
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    transition: all 0.1s ease;

    z-index: 1050;
}

#mainNav.scrolled {
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(15px);
    padding: 2px 0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.45);
}

/* =========================        
    slider
    ===========================  */
/* ================= HERO SLIDER ================= */

#heroSlider {
    margin-top: 100px;
}

.slider-img {
    height: 520px;
    object-fit: fill;
}

.carousel-item {
    transition: transform 1.2s ease;
}

.carousel-control-prev,
.carousel-control-next {
    width: 7%;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

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

@media (max-width: 992px) {
    .slider-img {
        height: 400px;
    }

    .carousel-caption h1 {
        font-size: 42px;
    }

    .carousel-caption p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .slider-img {
        height: 300px;
    }

    .carousel-caption {
        text-align: center;
    }

    .carousel-caption h1 {
        font-size: 32px;
    }

    .carousel-caption p {
        font-size: 16px;
    }

    .btn-lg {
        padding: 10px 22px;
        font-size: 15px;
    }

    .slider-tag {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .slider-img {
        height: 300px;
    }
}

/* =========================
   Brand
========================= */

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

.brand-logo {
    width: 60px;
    height: 60px;
    transition: all 0.35s ease;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.35s ease;
}

#mainNav.scrolled .brand-logo {
    width: 45px;
    height: 45px;
}

.brand-text .brand-name {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    line-height: 1.1;
    display: block;
    transition: all 0.35s ease;
}

.brand-text .brand-tagline {
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    transition: all 0.35s ease;
}

#mainNav.scrolled .brand-name {
    font-size: 16px;
}

#mainNav.scrolled .brand-tagline {
    font-size: 9px;
}

/* =========================
   Navigation
========================= */

.navbar-nav .nav-link {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 15px 13px !important;
    position: relative;
    transition: all 0.1s ease;
}

#mainNav.scrolled .nav-link {
    padding: 18px 14px !important;
    font-size: 12px;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#mainNav.scrolled .nav-link::after {
    bottom: 12px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

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

/* =========================
   CTA Button
========================= */

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: #fff !important;
    padding: 5px 5px !important;
    border-radius: 6px !important;
    margin-left: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    /* height: 60px; */
    transition: all 0.35s ease;
}

#mainNav.scrolled .nav-cta {
    padding: 8px 14px !important;
    margin-top: 10px;
    margin-bottom: 10px;
}

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

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    /* color: #f1f1f1; */
    box-shadow: 0 4px 15px rgba(255, 136, 0, 0.699);
}

/* =========================
   Mobile
========================= */

.navbar-toggler {
    border: 2px solid var(--primary);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F57C00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("/images/products/pockalne-rock-breaker.jpeg") center/cover no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-section:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        rgba(13, 13, 13, 0.842) 0%,
        rgba(13, 13, 13, 0.658) 60%,
        rgba(245, 123, 0, 0) 100%
    );
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 124, 0, 0.2);
    border: 1px solid rgba(245, 124, 0, 0.4);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-badge i {
    font-size: 10px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-num {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 20px;
    color: var(--primary);
}

@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary-shb {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-primary-shb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn-primary-shb:hover::before {
    transform: translateX(0);
}
.btn-primary-shb:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.45);
    color: #fff;
}

.btn-outline-shb {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 12px 32px;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-shb:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-orange {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
    color: #fff;
}

.btn-dark-shb {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-dark-shb:hover {
    background: #222;
    transform: translateY(-2px);
    color: #fff;
}

/* ============================================================
   SECTION UTILITIES
============================================================ */
.section-pad {
    padding: 90px 0;
}
.section-pad-sm {
    padding: 10px 0;
}

.section-header {
    margin-bottom: 56px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 124, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(245, 124, 0, 0.25);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}

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

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 620px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    margin: 14px 0 20px;
}

.section-divider.center {
    margin-left: auto;
    margin-right: auto;
}

.bg-dark-section {
    background: var(--bg-dark);
}
.bg-gray-section {
    background: var(--bg-light);
}
.bg-orange-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-wrap img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    height: 520px;
    width: 100%;
}

.about-badge-float {
    position: absolute;
    bottom: 28px;
    right: -20px;
    background: #fff;
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 130px;
}

.about-badge-float .num {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--primary);
    line-height: 1;
}

.about-badge-float .label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 42px;
    height: 42px;
    background: rgba(245, 124, 0, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

/* ============================================================
   PRODUCT CARDS
============================================================ */
.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

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

.product-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.product-card-body h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-card-body p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.7;
}

.product-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.product-card-features li {
    font-size: 12.5px;
    color: var(--text-muted);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card-features li i {
    color: var(--primary);
    font-size: 11px;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(245, 124, 0, 0.2);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(245, 124, 0, 0.12), rgba(245, 124, 0, 0.06));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin: 0 auto 18px;
    transition: var(--transition);
    border: 2px solid rgba(245, 124, 0, 0.15);
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.why-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.why-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================================
   COUNTER SECTION
============================================================ */
.counter-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 124, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.counter-card {
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.counter-card:last-child {
    border-right: none;
}

.counter-num {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.counter-suffix {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--primary);
}

.counter-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    display: block;
}

/* ============================================================
   APPLICATIONS
============================================================ */
.app-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 220px;
    cursor: pointer;
}

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

.app-card:hover img {
    transform: scale(1.1);
    animation: 0.5s ease-in-out;
}

.app-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.85) 0%, rgba(13, 13, 13, 0.2) 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    transition: var(--transition);
}

.app-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(245, 124, 0, 0.8), rgba(13, 13, 13, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.app-icon {
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px;
}

.app-label {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

/* ============================================================
   EXCAVATOR BRANDS
============================================================ */
.brand-item {
    background: #fff;
    border: 2px solid #eee;
    border-radius: var(--radius);
    padding: 18px 12px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
    /* font-size: 20px; */
    border-color: #0505052a;
}

.brand-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(245, 124, 0, 0.15);
    transform: translateY(-4px);
}

.brand-item .brand-name {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: var(--text-dark);
    display: block;
}

.brand-item .brand-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery-grid {
    display: grid;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(245, 124, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    background: rgba(245, 124, 0, 0.7);
}

.gallery-overlay i {
    font-size: 32px;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    opacity: 1;
    transform: scale(1);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 80px;
    color: rgba(245, 124, 0, 0.12);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 14px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================================
   FAQ
============================================================ */
.faq-item {
    border: 1px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(245, 124, 0, 0.3);
    box-shadow: 0 4px 20px rgba(245, 124, 0, 0.1);
}

.faq-question {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(245, 124, 0, 0.04);
}
.faq-item.active .faq-question {
    background: rgba(245, 124, 0, 0.06);
}

.faq-question h6 {
    font-size: 14.5px;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: rgba(245, 124, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 14px 22px 20px;
}

.faq-answer p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.8;
}

/* ============================================================
   CONTACT
============================================================ */
.contact-info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-card h6 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-control,
.form-select {
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.12);
    outline: none;
}

.form-label {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.map-placeholder {
    background: #eee;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
}

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

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 50%, #2a1500 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 124, 0, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: #080808;
    padding: 70px 0 0;
}

.footer-logo .brand-logo {
    width: 52px;
    height: 52px;
    font-size: 21px;
}
.footer-logo .brand-name {
    color: #fff;
    font-size: 19px;
}

.footer h5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

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

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

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

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

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

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

.footer-contact-item i {
    color: var(--primary);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-bottom span {
    color: var(--primary);
}

/* ============================================================
   FLOATING BUTTONS
============================================================ */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.12);
    color: #fff;
}

.float-whatsapp {
    background: #25d366;
}
.float-call {
    background: var(--primary);
}

#backToTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(245, 124, 0, 0.4);
    transition: var(--transition);
    display: none;
    align-items: center;
    justify-content: center;
}

#backToTop.show {
    display: flex;
}
#backToTop:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
}

/* ============================================================
   PAGE HERO (Inner pages)
============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%);
    padding: 140px 0 70px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.pexels.com/photos/16567021/pexels-photo-16567021.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=600&w=1400")
        center/cover no-repeat;
    opacity: 0.15;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}
.breadcrumb-item a {
    color: var(--primary);
}
.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   PRODUCT PAGE SPECIFICS
============================================================ */
.product-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 400px;
}

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

.product-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 13, 13, 0.75) 0%, rgba(13, 13, 13, 0.2) 100%);
    display: flex;
    align-items: center;
    padding: 40px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}
.spec-table th,
.spec-table td {
    padding: 12px 16px;
    border: 1px solid #eee;
    font-size: 13.5px;
    text-align: left;
}
.spec-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}
.spec-table tr:nth-child(even) td {
    background: rgba(245, 124, 0, 0.04);
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 124, 0, 0.1);
    color: var(--primary-dark);
    border: 1px solid rgba(245, 124, 0, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    margin: 4px;
}

/* ============================================================
   BLOG CARDS
============================================================ */
.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

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

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

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

.blog-tag {
    background: rgba(245, 124, 0, 0.1);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    margin-bottom: 10px;
}

.blog-card-body h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.5;
}

.blog-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
}

.blog-meta i {
    color: var(--primary);
}

/* ============================================================
   LIGHTBOX OVERLAY
============================================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-inner img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 10px 16px !important;
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
    .nav-cta {
        margin-left: 16px;
        margin-top: 4px;
        margin-bottom: 10px;
    }
    .hero-stats {
        gap: 20px;
    }
    .about-badge-float {
        right: 10px;
    }
    .counter-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .counter-card:last-child {
        border-bottom: none;
    }
    .contact-form-wrap {
        padding: 24px;
    }
}

@media (max-width: 767.98px) {
    .section-pad {
        padding: 60px 0;
    }
    .hero-title {
        font-size: 1.9rem;
    }
    .hero-stats {
        gap: 16px;
    }
    .hero-stat .stat-num {
        font-size: 1.6rem;
    }
    .about-img-wrap img {
        height: 320px;
    }
    .about-badge-float {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .product-banner {
        height: 260px;
    }
    .contact-form-wrap {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-stats {
        justify-content: center;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Progress bar style for loading */
.topbar-strip {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    padding: 6px 0;
    font-size: 12px;
    color: #fff;
}

.topbar-strip a {
    color: rgba(255, 255, 255, 0.85);
}
.topbar-strip a:hover {
    color: #fff;
}

/* Company scolling  */
.brand-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brand-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollBrands 25s linear infinite;
}

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

.brand-item {
    flex: 0 0 220px;
    padding: 25px;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@keyframes scrollBrands {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
