/* ===================================
   PRIME HUB PARTS - MASTER STYLESHEET
   Mobile-Optimized & Professional CSS
   =================================== */

/* ========== CSS VARIABLES ========== */
:root {
    --primary-red: #E31E24;
    --red-hover: #C11119;
    --dark-bg: #0a0a0a;
    --grey-dark: #1a1a1a;
    --grey-darker: #1a1a1a;
    --grey-mid: #666666;
    --grey-light: #f5f5f5;
    --white: #FFFFFF;
    --black: #000000;
    --transition: all 0.3s ease;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--white);
    color: var(--grey-mid);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header.scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .top-bar {
    display: none;
}

.inner-page .header {
    position: relative;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.inner-page .header .top-bar {
    background: transparent;
}

.inner-page .header .navbar {
    background: transparent;
}

/* Top Bar */
.top-bar {
    background: transparent;
    padding: 0.8rem 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
}

.top-bar-left a {
    color: var(--dark-bg);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-left a:hover {
    color: var(--primary-red);
}

.top-bar-right {
    display: flex;
    gap: 1rem;
}

.top-bar-right a {
    color: var(--dark-bg);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.top-bar-right a:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1001;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-bg);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-contact {
    display: none;
}

.nav-contact-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--grey-mid);
}

.nav-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--grey-mid);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.nav-contact-link i {
    color: var(--primary-red);
}

.nav-contact-link:hover {
    color: var(--primary-red);
}

.nav-contact-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.nav-contact-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--dark-bg);
    text-decoration: none;
    transition: var(--transition);
}

.nav-contact-social a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red) !important;
}

.nav-link i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.nav-link.enquiry-btn {
    background: var(--primary-red);
    color: var(--white) !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-link.enquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);
}

.nav-link.enquiry-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--red-hover);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.nav-link.enquiry-btn:hover::before {
    width: 250%;
    height: 250%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--white);
    min-width: 260px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 1rem;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.5rem;
    color: var(--grey-mid);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--grey-light);
    color: var(--primary-red) !important;
    padding-left: 2rem;
}

.dropdown-menu a i {
    font-size: 1rem;
    width: 20px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark-bg);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomEffect 20s ease-in-out infinite;
}

@keyframes zoomEffect {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0 4%;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
    text-transform: uppercase;
    color: var(--white);
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border-radius: 50px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-title span {
    color: var(--primary-red);
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.5);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--red-hover);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 250%;
    height: 250%;
}

.btn-primary.large {
    font-size: 1rem;
    padding: 1.4rem 3.5rem;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-red);
    width: 40px;
    border-radius: 20px;
}

/* ========== STATS SECTION ========== */
.equipment-overlay-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #fdf4f4 0%, #ffffff 60%);
    overflow: hidden;
}

.equipment-overlay-section::after {
    content: '';
    position: absolute;
    inset: 20px 10px;
    background: radial-gradient(circle at top right, rgba(227, 30, 36, 0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.equipment-overlay-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
}

.equipment-overlay-text .equipment-overlay-tag {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 1.2rem;
}

.equipment-overlay-text h2 {
    font-size: 3rem;
    color: var(--dark-bg);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.equipment-overlay-text p {
    font-size: 1.05rem;
    color: var(--grey-mid);
    line-height: 1.8;
}

.equipment-overlay-points {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.equipment-overlay-points li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    font-weight: 600;
    color: var(--grey-mid);
}

.equipment-overlay-points i {
    color: var(--primary-red);
    font-size: 0.8rem;
    margin-top: 0.35rem;
}

.equipment-overlay-visuals {
    position: relative;
    min-height: 420px;
}

.equipment-img {
    position: absolute;
    max-width: 70%;
    height: auto;
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.25));
    mix-blend-mode: multiply;
    opacity: 0.9;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.equipment-img.img-1 {
    top: 0;
    right: 5%;
    z-index: 3;
}

.equipment-img.img-2 {
    bottom: -10%;
    left: 0;
    z-index: 2;
    opacity: 0.7;
}

.equipment-img.img-3 {
    top: 20%;
    left: 35%;
    z-index: 1;
    opacity: 0.5;
}

.equipment-overlay-visuals:hover .equipment-img {
    transform: translateY(-5px);
}

.equipment-overlay-visuals:hover .equipment-img.img-1 {
    transform: translate(10px, -15px);
}

.equipment-overlay-visuals:hover .equipment-img.img-2 {
    transform: translate(-10px, 10px);
}

.equipment-overlay-visuals:hover .equipment-img.img-3 {
    transform: translateY(-10px);
    opacity: 0.65;
}

@media (max-width: 1024px) {
    .equipment-overlay-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .equipment-overlay-visuals {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .equipment-overlay-section {
        padding: 3.5rem 0;
    }

    .equipment-overlay-text h2 {
        font-size: 2.2rem;
    }

    .equipment-overlay-visuals {
        min-height: 300px;
    }

    .equipment-img {
        position: absolute;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .equipment-overlay-text h2 {
        font-size: 1.8rem;
    }

    .equipment-overlay-points {
        gap: 0.7rem;
    }

    .equipment-overlay-visuals {
        min-height: 260px;
    }
}

.stats-section {
    background: var(--dark-bg);
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 6rem 0;
    background: var(--grey-darker);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 15px;
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.4);
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    color: var(--dark-bg);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title span {
    color: var(--primary-red);
}

.about-section .section-title.about-title {
    color: var(--white);
}

.section-text {
    color: var(--grey-mid);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--grey-mid);
    font-weight: 600;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
    padding: 6rem 0;
    background: var(--grey-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--grey-mid);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.product-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.product-image {
    margin-bottom: 2rem;
}

.product-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-red);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    background: var(--dark-bg);
    transform: rotateY(360deg);
}

.product-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.product-desc {
    color: var(--grey-mid);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.product-link:hover {
    gap: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========== BRANDS SECTION ========== */
.brands-section {
    padding: 5rem 0;
    background: var(--grey-darker);
    overflow: hidden;
}

.brands-slider-wrapper {
    overflow: hidden;
    margin-top: 3rem;
}

.brands-slider {
    display: flex;
    gap: 3rem;
    animation: slideInfinite 30s linear infinite;
}

@keyframes slideInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-item {
    min-width: 200px;
    height: 100px;
    background: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.brand-item img {
    max-width: 80%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-item:hover {
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--grey-dark) 100%);
    padding: 6rem 0;
    position: relative;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.6);
    padding: 5rem 0 0;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 0.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact i {
    color: var(--primary-red);
    width: 20px;
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-red);
}

/* ========== FLOATING BUTTONS ========== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6);
        transform: scale(1.05);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 2rem;
    color: var(--white);
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    width: 50px;
    height: 50px;
    background: var(--dark-bg);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE: TABLET ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 3%;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-wrapper {
        gap: 3rem;
    }
    
    .about-image img {
        height: 450px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ========== RESPONSIVE: MOBILE ========== */
@media (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar {
        display: none;
    }
    
    /* Mobile Navigation */
    .nav-container {
        padding: 0.8rem 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Mobile Menu Overlay - dark blurred theme (same on all pages) */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        padding: 120px 0 2rem;
        transition: left 0.4s ease;
        gap: 0;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        align-items: stretch;
    }

    .nav-contact {
        display: flex;
        flex-direction: column;
        padding: 0 2rem 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-contact {
        display: flex;
        flex-direction: column;
        padding: 0 2rem 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-contact-title {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
        margin-bottom: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .nav-contact-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        transition: var(--transition);
    }
    
    .nav-contact-link i {
        color: var(--primary-red);
    }
    
    .nav-contact-link:hover {
        color: var(--primary-red);
    }
    
    .nav-contact-social {
        display: flex;
        gap: 0.6rem;
        margin-top: 0.8rem;
        justify-content: flex-start;
    }
    
    .nav-contact-social a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: var(--transition);
    }
    
    .nav-contact-social a:hover {
        border-color: var(--primary-red);
        background: var(--primary-red);
        color: var(--white);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav-link {
        padding: 1.2rem 2rem;
        display: flex;
        justify-content: flex-start;
        width: 100%;
        color: rgba(255, 255, 255, 0.95);
        font-size: 1.1rem;
    }
    
    .nav-link:hover {
        background: rgba(227, 30, 36, 0.1);
        color: var(--primary-red);
    }

    /* ENQUIRY button row in mobile menu (match About page) */
    .nav-item-enquiry {
        border-bottom: none;
        padding: 1.5rem 2rem 1rem;
    }
    
    .nav-link.enquiry-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1rem 2rem;
        background: var(--primary-red);
        color: var(--white);
        border-radius: 50px;
    }
    
    .nav-link.enquiry-btn:hover {
        background: var(--red-hover);
        transform: translateY(-2px);
        color: var(--white);
    }
    
    /* Mobile Dropdown */
    .dropdown-toggle {
        position: relative;
        justify-content: space-between;
        padding-right: 3rem;
    }
    
    .dropdown-toggle i {
        position: absolute;
        right: 2rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        background: rgba(255, 255, 255, 0.03);
        margin: 0;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 1000px;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu a {
        padding: 1rem 3rem;
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
    }
    
    .dropdown-menu a:hover {
        background: rgba(227, 30, 36, 0.15);
        padding-left: 3.5rem;
    }
    
    .nav-item-enquiry {
        border-bottom: none;
        padding: 1.5rem 2rem 1rem;
    }
    
    .nav-link.enquiry-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        height: 100vh;
        min-height: 550px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-tag {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }
    
    .slider-dots {
        bottom: 2rem;
        gap: 0.6rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
    
    /* Stats Section Mobile */
    .stats-section {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 4rem 0;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-image img {
        height: 350px;
    }
    
    .about-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }
    
    .badge-number {
        font-size: 2.5rem;
    }
    
    .badge-text {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Products Section Mobile */
    .products-section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 2.5rem 1.5rem;
    }
    
    .product-icon {
        width: 80px;
        height: 80px;
    }
    
    .product-icon i {
        font-size: 2rem;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    /* Brands Section Mobile */
    .brands-section {
        padding: 4rem 0;
    }
    
    .brand-item {
        min-width: 150px;
        height: 80px;
    }
    
    .brand-item img {
        max-height: 50px;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .btn-primary.large {
        padding: 1.2rem 2.5rem;
        font-size: 0.9rem;
        width: auto;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 4rem 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-col {
        text-align: center;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-col:last-child {
        border-bottom: none;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-logo-text {
        font-size: 1.1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 0;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    /* Floating Buttons Mobile */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-float i {
        font-size: 1.6rem;
    }
    
    .scroll-top {
        right: 1.5rem;
        bottom: 6rem;
        width: 45px;
        height: 45px;
    }
}

/* ========== RESPONSIVE: SMALL MOBILE ========== */
@media (max-width: 480px) {
    .container {
        padding: 0 5%;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .about-image img {
        height: 280px;
    }
    
    .about-badge {
        padding: 1rem;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .product-card {
        padding: 2rem 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 0.9rem;
    }
    
    .btn-primary.large {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
}

/* ========== LANDSCAPE MOBILE ========== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        padding: 0 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: auto;
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .slider-dots {
        bottom: 1.5rem;
    }
}

/* ========== SMOOTH SCROLLING OPTIMIZATION ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .top-bar,
    .hamburger,
    .slider-dots,
    .whatsapp-float,
    .scroll-top {
        display: none !important;
    }
    
    .navbar {
        position: static;
        box-shadow: none;
    }
    
    .hero-section {
        height: auto;
        page-break-after: always;
    }
    
    .footer {
        page-break-before: always;
    }
}
/* ========== EQUIPMENT PARTS BANNER (Above Footer) ========== */

.equipment-parts-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-parts-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .equipment-parts-img {
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .equipment-parts-img {
        object-fit: contain;
    }
}

/* ========== HOME NAV LINK ACTIVE STATE ========== */
.nav-link.active {
    color: var(--primary-red) !important;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
}

@media (max-width: 768px) {
    .nav-link.active::after {
        display: none;
    }
}

/* ========== NAVIGATION ALIGNMENT FIX ========== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
    padding: 0;
}

.nav-link {
    white-space: nowrap;
}

@media (min-width: 769px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .nav-menu {
        flex: 1;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }
}
.equipment-parts-banner {
    background: var(--dark-bg); /* Match footer background */
}