/* Global Heading Styles */
h1, h2, h3, h4, h5, h6,
.section-title,
.gallery-title,
.page-header h1,
.hero-title,
.hero-subtitle {
    font-family: 'TheanoDidot-Regular', 'Cinzel', 'Georgia', serif !important;
    font-size: 30px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Specific heading overrides */
.section-title {
    font-size: 30px !important;
}

.gallery-title {
    font-size: 30px !important;
}

.page-header h1 {
    font-size: 30px !important;
}

.hero-title {
    font-size: 30px !important;
}

.hero-subtitle {
    font-size: 30px !important;
}

/* Subheadings */
h4, h5, h6,
.feature-card h3,
.testimonial-author h4,
.team-card h3,
.value-card h3,
.vm-card h3,
.range-col h4,
.product-info h3,
.spec-card h3,
.cta-section h2,
.contact-info h2,
.about-text h2,
.about-content-full h2 {
    font-family: Arial, sans-serif !important;
    font-size: 20px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 130px;
}

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

.navbar .container {
    padding-left: 0;
    padding-right: 20px;
}

.navbar .logo {
    margin-left: 0;
    position: relative;
    left: -120px;
}

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

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

/* Top Bar */
.top-bar {
    background: #000000; /* Black */
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    padding: 5px 0;
    font-size: 14px;
}

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

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

.top-bar-item {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
    font-size: 13px;
    position: relative;
}

.top-bar-item:hover {
    color: #f59e0b;
}

.top-bar-item i {
    font-size: 16px;
}

.top-bar-item .fa-whatsapp {
    color: #25d366;
}

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

.social-icon {
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    font-size: 14px;
}

.social-icon:hover {
    background: #f59e0b;
    color: var(--white);
    transform: translateY(-2px);
}

/* Tooltip styles */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 10002;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip:hover .tooltiptext,
.tooltip.show .tooltiptext {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Mobile tooltip adjustments */
@media (max-width: 768px) {
    .tooltip .tooltiptext {
        position: fixed;
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 250px;
        z-index: 9999;
        background-color: rgba(0, 0, 0, 0.9);
        border-radius: 8px;
        padding: 12px 16px;
        font-size: 14px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    
    .tooltip .tooltiptext::after {
        display: none;
    }
}

/* Floating WhatsApp Tooltip - pointer-events: none so it never steals taps on mobile */
.floating-whatsapp-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #302c4f;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-right: 10px;
    pointer-events: none;
}

.floating-whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #302c4f;
}

/* Floating WhatsApp Popup */
.floating-whatsapp-popup {
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-whatsapp-popup.show {
    opacity: 1;
    pointer-events: all;
}

.floating-whatsapp-popup .popup-content {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 10px 14px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    animation: slideInRight 0.3s ease;
    max-width: 220px;
}

.floating-whatsapp-popup .popup-content i {
    font-size: 18px;
}

@keyframes slideInRight {
    from {
        transform: translateX(20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .floating-whatsapp-tooltip {
        font-size: 11px;
        padding: 6px 10px;
        margin-right: 8px;
    }
    
    .floating-whatsapp-popup .popup-content {
        font-size: 13px;
        padding: 10px 14px;
    }
}

@media (max-width: 768px) {
    .floating-whatsapp-tooltip {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 100%;
        transform: translateX(-50%);
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 9px;
        padding: 5px 6px;
        max-width: 160px;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
    }
    
    .floating-whatsapp-tooltip::after {
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        border-left-color: transparent;
        border-top-color: #302c4f;
    }
    
    .floating-whatsapp-popup .popup-content {
        font-size: 11px;
        padding: 6px 10px;
        max-width: 180px;
        text-align: center;
        gap: 6px;
    }
    
    .floating-whatsapp-popup .popup-content i {
        font-size: 14px;
    }
    
    .floating-whatsapp-popup .popup-content span {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp-tooltip {
        font-size: 8px;
        padding: 4px 5px;
        max-width: 140px;
        margin-bottom: 6px;
    }
    
    .floating-whatsapp-popup .popup-content {
        font-size: 10px;
        padding: 5px 8px;
        max-width: 160px;
        gap: 4px;
    }
    
    .floating-whatsapp-popup .popup-content i {
        font-size: 12px;
    }
    
    .floating-whatsapp-popup .popup-content span {
        font-size: 9px;
    }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 34px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 6px 0;
    min-height: 82px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    padding: 5px 0;
    min-height: 65px;
    top: 0;
    background: rgba(255, 255, 255, 0.99);
}

.navbar.scrolled .logo img {
    width: 60px;
    max-height: 60px;
}

.navbar.scrolled .logo-subtext {
    font-size: 5px;
}

.navbar.scrolled .nav-menu > li > a {
    font-size: 16px;
    padding: 5px 12px;
}

.navbar.scrolled ~ .top-bar {
    display: none;
}

body {
    padding-top: 116px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.logo {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
    margin-right: auto;
    padding-left: 0;
    transform: translateX(-120px);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo img {
    width: 100px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
    margin-top: 3px;
}

.logo-subtext {
    font-size: 7px;
    color: #302b50;
    line-height: 1.2;
    font-weight: 500;
    margin-left: 2px; /* tiny shift to align with logo text */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-left: auto;
}

.nav-menu > li > a {
    font-family: Arial, sans-serif !important;
    font-size: 18px;
    font-weight: 500;
    color: #000000 !important; /* Black */
    padding: 4px 12px;
    border-radius: 6px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: capitalize;
    position: relative;
}

.nav-menu > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #DAA520;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-menu > li > a:hover {
    background: #DAA520 !important; /* Mustard yellow */
    color: #000000 !important; /* Black text on hover */
    transform: translateY(-1px);
}

.nav-menu > li > a:hover::before {
    width: 80%;
}

.nav-menu a.active {
    color: #000000 !important; /* Black text */
    background: #DAA520 !important; /* Mustard yellow */
    font-weight: 600;
}

.nav-menu a.active::before {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: auto;
    order: 3;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #0e141c;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger:hover span {
    background: #DAA520;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: var(--transition);
    margin-left: 2px;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 320px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    font-family: 'Raleway', 'Helvetica Neue', 'Arial', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    position: relative;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #DAA520;
    transform: scaleY(0);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu li a:hover {
    background: rgba(218, 165, 32, 0.1) !important;
    color: #000000 !important; /* Black text */
    padding-left: 30px;
}

.dropdown-menu li a:hover::before {
    transform: scaleY(1);
}

/* Hide mobile-only dropdown items on desktop */
.dropdown-menu li.mobile-only {
    display: none;
}

/* Hero Section */
.hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Blurred Banner Section */
.blurred-banner-section {
    position: relative;
    width: 100%;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blurred-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blurred-banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.05); /* Scale up slightly to avoid blur edges */
}

.blurred-banner-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4); /* Lighter overlay to show more of the image */
    padding: 40px 20px;
    text-align: center;
}

.blurred-banner-overlay .container {
    max-width: 900px;
    position: relative;
    z-index: 3;
}

.blurred-banner-title {
    font-family: Arial, sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.blurred-banner-text {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
}

.blurred-banner-description {
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    max-width: 800px;
    margin: 0 auto 25px auto;
}

.blurred-banner-btn {
    display: inline-block;
    background: #DAA520; /* Mustard yellow */
    color: #000000;
    padding: 6px 18px;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-shadow: none;
}

.blurred-banner-btn:hover {
    background: #C4951D; /* Darker yellow */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    color: #000000;
}

.blurred-banner-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Responsive Design for Blurred Banner */
@media (max-width: 768px) {
    .blurred-banner-section {
        min-height: 250px;
    }
    
    .blurred-banner-overlay {
        min-height: 250px;
        padding: 30px 15px;
    }
    
    .blurred-banner-title {
        font-size: 1.8rem !important;
        margin-bottom: 12px;
    }
    
    .blurred-banner-text {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .blurred-banner-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .blurred-banner-btn {
        padding: 6px 18px;
        font-size: 0.8rem;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .blurred-banner-section {
        min-height: 220px;
    }
    
    .blurred-banner-overlay {
        min-height: 220px;
        padding: 25px 15px;
    }
    
    .blurred-banner-title {
        font-size: 1.5rem !important;
        margin-bottom: 10px;
    }
    
    .blurred-banner-text {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .blurred-banner-description {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .blurred-banner-btn {
        padding: 6px 16px;
        font-size: 0.75rem;
        margin-top: 10px;
    }
    
    .blurred-banner-btn i {
        font-size: 1rem;
        margin-right: 6px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 6px 18px; /* smaller overall size */
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
}

.btn-primary {
    background: #000000; /* black background */
    color: #ffffff;
}

.btn-primary:hover {
    background: #DAA520; /* mustard yellow on hover */
    color: #000000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

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

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

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials specific heading spacing */
.testimonials .section-title {
    margin-bottom: 20px;
    margin-top: 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: -30px;
    margin-bottom: 40px;
}

/* Features Section */
.features {
    padding: 40px 0;
    background: var(--bg-light);
}

.features .section-title {
    color: #000000; /* Black */
    font-family: Arial, sans-serif !important;
    margin-top: -10px !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #DAA520; /* Mustard yellow */
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 2.5rem;
    color: #000000; /* Black */
    margin-bottom: 8px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #000000; /* Black */
}

.feature-card p {
    color: #000000; /* Black */
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* Gallery Preview */
.gallery-preview {
    padding: 18px 0 22px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
}

.gallery-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(218, 165, 32, 0.03) 10px,
        rgba(218, 165, 32, 0.03) 20px
    );
    pointer-events: none;
}

.gallery-preview .section-title {
    color: #DAA520 !important; /* Mustard yellow */
    font-family: Arial, sans-serif !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
}

.gallery-preview .container {
    position: relative;
    z-index: 1;
}

/* Showcase slider */
.showcase-slider {
    position: relative;
    padding: 0 50px;
}

.showcase-viewport {
    overflow: hidden;
    border-radius: 15px;
}

.showcase-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr 1fr 1fr 1fr; /* 4 visible items */
    gap: 25px;
    transition: transform 0.4s ease;
    padding: 10px;
}

.showcase-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #DAA520; /* Mustard yellow */
    color: #000000;
    border: 2px solid #000000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.showcase-arrow:hover {
    background: #000000;
    color: #DAA520;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 12px rgba(218, 165, 32, 0.4);
}

.showcase-arrow.prev { left: 0; }
.showcase-arrow.next { right: 0; }

/* Small button utility */
.btn-small {
    padding: 8px 14px !important;
    font-size: 0.9rem !important;
    line-height: 1 !important;
}

/* Gallery CTA spacing and color */
.gallery-cta {
    margin-top: 14px;
}

.gallery-preview .btn-outline-heading {
    background: #DAA520;
    border: 2px solid #000000;
    color: #000000;
    font-family: Arial, sans-serif !important;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.gallery-preview .btn-outline-heading:hover {
    background: #000000;
    color: #DAA520;
    border-color: #DAA520;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(218, 165, 32, 0.35);
}

.btn-outline-heading {
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    background: transparent;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 3px solid #DAA520;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(218, 165, 32, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: #DAA520;
    box-shadow: 0 12px 30px rgba(218, 165, 32, 0.4), 0 0 0 2px rgba(218, 165, 32, 0.5);
}

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

.gallery-item .product-image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    margin: 12px;
    border-radius: 10px;
    padding: 15px;
    min-height: 0;
    position: relative;
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05);
    padding: 0 !important;
}

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

/* Gallery captions */
.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, #DAA520 100%);
    color: #000000;
    padding: 15px 14px;
    font-size: 1rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}

/* Testimonials Section - Modern Design */
.testimonials {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    padding: 40px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.testimonials .section-title {
    color: #000000; /* Black */
    font-family: Arial, sans-serif !important;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23cbd5e1" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23cbd5e1" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23cbd5e1" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23cbd5e1" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23cbd5e1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.testimonials-slider {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.testimonials-track {
    /* Keep track as wide as its content so the animation can scroll all cards */
    display: inline-flex;
    width: max-content;
    animation: slideTestimonials 75s linear infinite;
    gap: 20px;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .testimonials-track {
        animation: slideTestimonials 28s linear infinite;
    }
}

.testimonial-card {
    flex-shrink: 0;
    width: 380px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    /* Reduce bottom space inside card */
    padding: 18px 20px 10px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #0e141c;
    border-radius: 16px 16px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.testimonial-content {
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 4rem;
    color: #3b82f6;
    opacity: 0.3;
    font-family: 'TheanoDidot-Regular', serif;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.55;
    color: #374151;
    font-style: italic;
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Reserve space so author aligns consistently */
    min-height: calc(1.55em * 4);
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 18px;
    margin-top: auto;
    margin-bottom: 12px;
}

.testimonial-author h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.2;
}

@keyframes slideTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Desktop - Reduce testimonials section height */
@media (min-width: 769px) {
    .testimonials {
        padding: 30px 0 40px 0;
    }
    
    .testimonial-card {
        padding: 14px 18px 8px 18px;
    }
    
    .testimonials-track {
        padding: 15px 0;
    }
    
    .testimonial-content p {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 30px 0 40px 0;
    }
    
    .testimonials-slider {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        border-radius: 15px;
    }
    
    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }
    
    .testimonials-track {
        gap: 15px;
        animation: slideTestimonials 28s linear infinite;
        padding: 15px 10px;
        width: max-content;
    }
    
    .testimonial-card {
        width: calc(100vw - 60px);
        max-width: 320px;
        min-width: 280px;
        padding: 16px 15px 10px 15px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        padding-left: 15px;
        margin-bottom: 15px;
        line-height: 1.6;
        min-height: calc(1.6em * 4);
    }
    
    .testimonial-content::before {
        font-size: 3rem;
        top: -8px;
        left: -3px;
    }
    
    .testimonial-author {
        padding-left: 15px;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .testimonial-author h4 {
        font-size: 0.95rem;
    }
}

/* Company Logos Section */
.company-logos {
    background: var(--white);
    padding: 20px 0 80px 0;
    overflow: hidden;
}

.company-logos .section-title {
    color: #000000; /* Black */
    font-family: Arial, sans-serif !important;
    display: inline-block !important;
    width: auto !important;
    margin-bottom: 20px !important;
}

.logos-disclaimer {
    text-align: center;
    color: #6b7280;
    font-size: 0.8rem;
    margin-top: -5px;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: bold;
    opacity: 0.85;
}

.logos-container {
    margin-top: 20px;
    position: relative;
}

.logos-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .logos-track {
        animation: scroll 8s linear infinite;
    }
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    min-width: 200px;
    height: 100px;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logo-item img {
    max-width: 100%;
    max-height: 72px;
    object-fit: contain;
    transition: var(--transition);
}

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 110px 0; /* increased height */
    text-align: center;
}

/* Page Header with Banner Image */
.page-header .page-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-header:has(.page-banner) {
    padding: 0;
    background: transparent !important;
    display: block;
    overflow: hidden;
    position: relative;
}

.page-header:has(.page-banner)::before {
    display: none !important;
}

/* Banner header with reliable overlay (no :has support needed) */
.banner-header {
    position: relative;
    padding: 0;
    background: transparent;
    overflow: hidden;
}

.banner-header .page-banner {
    width: 100%;
    height: 400px;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.banner-header .banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0 24px;
    z-index: 2;
}

.banner-header h1 {
    color: white !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    line-height: 1.2;
}

.banner-header p {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    max-width: 900px;
    margin-top: 4px !important;
    margin-bottom: 0 !important;
    line-height: 1.3;
}

/* Contact Page Header */
body:has(.contact-section) .page-header {
    background: var(--text-dark);
}

/* Contact page heading */
body:has(.contact-section) .page-header h1 {
    font-family: Arial, sans-serif !important;
    font-size: 20px !important;
}

/* Contact section subheadings */
body:has(.contact-section) .contact-text h3 {
    font-family: Arial, sans-serif !important;
    font-size: 20px !important;
}

/* About page headings color */
body:has(.about-section) .page-header h1 {
    color: white !important;
}

body:has(.about-section) .gallery-title,
body:has(.about-section) .vm-card h3,
body:has(.about-section) .section-title,
body:has(.about-section) .range-col h4,
body:has(.about-section) .compliance-text h3 {
    color: #302c4f !important;
}

/* More specific overrides for about page */
body:has(.about-section) .product-range-section .section-title,
body:has(.about-section) .vision-mission-section .vm-card h3,
body:has(.about-section) .photo-gallery .gallery-title,
body:has(.about-section) .range-grid .range-col h4 {
    color: #000000 !important; /* Black */
    font-family: Arial, sans-serif !important;
}

body:has(.about-section) .photo-gallery .gallery-title {
    border-bottom: 3px solid #DAA520; /* Mustard yellow underline */
    padding-bottom: 5px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

/* Reduce social icon size on contact page */
body:has(.contact-section) .social-icons-large a {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
}

/* Reduce space above Find Us section */
body:has(.contact-section) .map-section {
    padding-top: 20px;
    padding-bottom: 40px;
}

/* Find Us heading on contact page */
body:has(.contact-section) .map-section .section-title {
    color: #000000 !important; /* Black */
    font-family: Arial, sans-serif !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

/* Product Pages Header */
body:has(.product-category-section) .page-header {
    background: var(--text-dark);
}

/* Products page banner */
body:has(.page-header) .page-header:not(:has(.page-banner)) {
    background: var(--text-dark);
    position: relative;
}

/* Only show background image if page-header doesn't have page-banner */
body:has(.page-header) .page-header:not(:has(.page-banner))::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('products/product_banner.png') center/cover no-repeat;
    opacity: 0.25; /* subtle over blue */
}

body:has(.page-header) .page-header > .container {
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white !important;
}

/* Override for banner header to reduce spacing */
.banner-header h1 {
    margin-bottom: 0 !important;
}

.banner-header p {
    margin-top: 4px !important;
}

.page-header p {
    font-size: 1.2rem;
}

/* Products Section */
.products-section {
    padding: 80px 0;
}

/* Top products */
.top-products {
    padding: 20px 0 15px 0;
    text-align: center;
}

.top-products .container {
    text-align: center;
}

.top-products .section-title {
    color: #000000 !important; /* Black */
    font-family: Arial, sans-serif !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    display: inline-block !important;
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-bottom: 3px solid #DAA520 !important; /* Mustard yellow underline */
    padding-bottom: 5px !important;
}

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

.top-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.top-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.top-image {
    height: 200px;
    background: #ffffff; /* Pure white */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.top-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

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

.top-info {
    padding: 14px 14px 16px 14px;
}

.top-info h3 {
    font-family: Arial, sans-serif !important;
    font-size: 20px !important;
    margin: 0 0 8px 0;
    color: var(--text-dark);
}

.top-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .top-grid { grid-template-columns: repeat(2, 1fr); }
    .top-image { height: 180px; }
}

@media (max-width: 600px) {
    .top-grid { grid-template-columns: 1fr; }
    .top-image { height: 160px; }
}

/* Product Categories (Home) */
.product-categories {
    background: transparent; /* transparent to show parallax */
    padding: 20px 0 140px 0; /* reduced top padding to bring heading to top */
}

.product-categories .section-title {
    color: #000000; /* Black */
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 20px !important;
}

/* Parallax Banner */
.parallax-section {
    position: relative;
    background-attachment: fixed; /* parallax */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.65); /* light wash to keep text/cards readable */
}

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

.parallax-excavator {
    background-image: url('images/backhoe_excavator.png');
}

/* Make categories background image fully visible (no overlay) */
.product-categories.parallax-section::before {
    background: transparent;
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll; /* better performance on mobile */
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.category-card {
    background: #DAA520; /* Mustard yellow */
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: left;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: block;
    color: inherit;
    font-family: Arial, sans-serif !important;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.category-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #000000; /* Black */
    font-size: 22px;
}

.category-card h3 {
    font-family: Arial, sans-serif !important;
    font-size: 20px !important;
    line-height: 1.4;
    margin-top: 16px;
    margin-bottom: 0;
    color: #000000; /* Black */
}

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

@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Product category cards - slightly narrower, a bit taller, larger icons on mobile */
    .category-card {
        padding: 22px 18px;
    }
    
    .category-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .category-card h3 {
        font-size: 18px !important;
        margin-top: 10px;
        line-height: 1.3;
    }
    
    /* Reduce height of feature cards on mobile */
    .feature-card {
        padding: 12px 18px;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.btn-view {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-view:hover {
    background: var(--primary-color);
    color: var(--white);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.5); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

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

/* About Section */
.about-section {
    padding: 40px 0 80px 0;
}

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

.about-content-full {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content-full h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
    display: none;
}

.about-content-full p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 1.05rem;
    text-align: justify;
}

.about-content-full .tagline-text {
    font-size: 1.3rem;
    color: #0e141c;
    text-align: center;
    margin-top: 30px;
    font-style: italic;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 30px 0 40px 0;
    background: var(--bg-light);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vm-card {
    background: var(--white);
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.vm-icon {
    font-size: 2.5rem;
    color: #000000; /* Black */
    margin-bottom: 15px;
}

.vm-card h3 {
    font-size: 1.2rem;
    color: #000000; /* Black */
    margin-bottom: 10px;
    font-weight: 700;
    font-family: Arial, sans-serif !important;
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Product Range Section */
.product-range-section {
    padding: 0 0 80px 0;
    background: var(--white);
}

/* Client Locations Section */
.client-locations-section {
    margin-top: 25px;
    margin-bottom: 20px;
    padding: 15px 0;
}

.locations-compact {
    max-width: 1000px;
    margin: 0 auto;
    background: #DAA520; /* Mustard yellow */
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.locations-main-heading {
    font-family: Arial, sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 600;
    color: #000000; /* Black */
    margin-top: -5px;
    margin-bottom: 15px;
    text-align: center;
}

.location-group {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.location-group:last-child {
    margin-bottom: 0;
}

.location-label {
    font-family: Arial, sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600;
    color: #000000; /* Black */
    flex-shrink: 0;
    white-space: nowrap;
}

.location-items {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #000000; /* Black */
    flex: 1;
}

.locations-map-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: flex-start;
}

.locations-map-container {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

#locations-map {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.locations-map-container .leaflet-container {
    border-radius: 8px;
    background: #ffffff;
}

.states-list-container {
    flex: 1;
    background: #e5e5e5; /* More grey */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-height: 450px;
    overflow-y: auto;
}

@media (max-width: 992px) {
    .locations-map-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .locations-map-container,
    .states-list-container {
        flex: none;
        width: 100%;
    }
    
    #locations-map {
        height: 400px;
    }
    
    .states-list-container {
        max-height: none;
        overflow-y: visible;
    }
    
    .states-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .client-locations-section {
        margin-top: 15px;
        margin-bottom: 15px;
        padding: 10px 0;
    }
    
    .locations-compact {
        padding: 15px 15px;
    }
    
    .locations-main-heading {
        font-size: 1.1rem !important;
        margin-bottom: 12px;
    }
    
    .locations-map-wrapper {
        flex-direction: column;
        gap: 12px;
        margin-top: 12px;
    }
    
    .locations-map-container {
        width: 100%;
        order: 1;
    }
    
    #locations-map {
        height: 280px !important;
        min-height: 280px;
    }
    
    .states-list-container {
        width: 100%;
        padding: 10px 8px;
        box-sizing: border-box;
        order: 2;
        max-height: 300px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .states-list-container::-webkit-scrollbar {
        width: 4px;
    }
    
    .states-list-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }
    
    .states-list-container::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }
    
    .states-list-container::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
    
    .states-list-container h5 {
        font-size: 0.85rem !important;
        margin-bottom: 8px !important;
        padding: 0 5px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        line-height: 1.2 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        position: sticky;
        top: 0;
        background: #e5e5e5;
        z-index: 1;
        padding-bottom: 5px !important;
    }
    
    .states-list {
        grid-template-columns: 1fr 1fr !important;
        gap: 4px 8px !important;
    }
    
    .states-list div {
        font-size: 0.75rem !important;
        padding: 3px 0 !important;
        gap: 5px !important;
        line-height: 1.3;
    }
    
    .states-list div span:first-child {
        width: 8px !important;
        height: 8px !important;
        flex-shrink: 0;
    }
    
    .states-list div span:last-child {
        font-size: 0.75rem !important;
    }
    
    .countries-list {
        gap: 4px !important;
        margin-top: 8px;
    }
    
    .countries-list div {
        font-size: 0.75rem !important;
        padding: 3px 0 !important;
        gap: 5px !important;
    }
    
    .countries-list div span:first-child {
        width: 8px !important;
        height: 8px !important;
    }
    
    .states-list-container > div[style*="border-top"] {
        margin: 6px 0 6px 0 !important;
    }
}

.states-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 15px;
}

.states-list div {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #000000;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.states-list-container {
    max-height: none;
    overflow: visible;
}

@media (max-width: 992px) {
    .locations-map-wrapper {
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }
    
    .locations-map-container,
    .states-list-container {
        flex: none;
        width: 100%;
    }
    
    #locations-map {
        height: 300px;
    }
    
    .states-list-container {
        max-height: none;
        overflow-y: visible;
        padding: 12px 10px;
        box-sizing: border-box;
    }
    
    .states-list-container h5 {
        font-size: 0.85rem !important;
        margin-bottom: 8px !important;
        margin-top: 0 !important;
        padding: 0 5px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        line-height: 1.3 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .states-list {
        grid-template-columns: 1fr 1fr;
        gap: 5px 10px;
    }
    
    .states-list div {
        font-size: 0.8rem;
        padding: 4px 0;
    }
    
    .states-list div span:first-child {
        width: 10px !important;
        height: 10px !important;
    }
    
    .countries-list {
        gap: 5px;
    }
    
    .countries-list div {
        font-size: 0.8rem;
        padding: 4px 0;
    }
    
    .countries-list div span:first-child {
        width: 10px !important;
        height: 10px !important;
    }
    
    .locations-map-wrapper .locations-map-wrapper {
        border-top: 1px solid #e5e7eb;
        margin: 8px 0 6px 0;
    }
}

@media (max-width: 768px) {
    .client-locations-section {
        margin-top: 12px;
        margin-bottom: 12px;
        padding: 8px 0;
    }
    
    .locations-compact {
        padding: 12px 12px;
    }
    
    .locations-main-heading {
        font-size: 1rem !important;
        margin-bottom: 10px;
    }
    
    .locations-map-wrapper {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
    
    .locations-map-container {
        width: 100%;
        order: 1;
    }
    
    #locations-map {
        height: 250px !important;
        min-height: 250px;
    }
    
    .locations-map-container .leaflet-container {
        height: 250px !important;
    }
    
    .states-list-container {
        width: 100%;
        padding: 8px 8px;
        order: 2;
        max-height: 250px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .states-list-container::-webkit-scrollbar {
        width: 4px;
    }
    
    .states-list-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }
    
    .states-list-container::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }
    
    .states-list-container h5 {
        font-size: 0.8rem !important;
        margin-bottom: 6px !important;
        position: sticky;
        top: 0;
        background: #e5e5e5;
        z-index: 1;
        padding-bottom: 4px !important;
    }
    
    .states-list {
        grid-template-columns: 1fr 1fr !important;
        gap: 3px 6px !important;
    }
    
    .states-list div {
        font-size: 0.7rem !important;
        padding: 2px 0 !important;
        gap: 4px !important;
    }
    
    .states-list div span:first-child {
        width: 7px !important;
        height: 7px !important;
    }
    
    .states-list div span:last-child {
        font-size: 0.7rem !important;
    }
    
    .countries-list {
        gap: 3px !important;
        margin-top: 6px;
    }
    
    .countries-list div {
        font-size: 0.7rem !important;
        padding: 2px 0 !important;
        gap: 4px !important;
    }
    
    .countries-list div span:first-child {
        width: 7px !important;
        height: 7px !important;
    }
    
    .states-list-container > div[style*="border-top"] {
        margin: 5px 0 5px 0 !important;
    }
    
    .locations-compact {
        padding: 15px 18px;
    }
    
    .locations-main-heading {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 768px) {
    .client-locations-section {
        margin-top: 20px;
        margin-bottom: 15px;
        padding: 12px 0;
    }
    
    .locations-compact {
        padding: 15px 18px;
    }
    
    .locations-main-heading {
        font-size: 1.1rem !important;
        margin-bottom: 12px;
    }
    
    .location-group {
        flex-direction: column;
        gap: 5px;
        margin-bottom: 8px;
    }
    
    .location-label {
        font-size: 0.9rem !important;
    }
    
    .location-items {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .client-locations-section {
        margin-top: 15px;
        margin-bottom: 12px;
        padding: 10px 0;
    }
    
    .locations-compact {
        padding: 12px 15px;
    }
    
    .locations-main-heading {
        font-size: 1rem !important;
        margin-bottom: 10px;
    }
    
    .location-label {
        font-size: 0.85rem !important;
    }
    
    .location-items {
        font-size: 0.8rem;
    }
}

/* Photo Gallery (About) */
.photo-gallery {
    margin-top: 0;
    padding: 10px 0 10px 0;
    text-align: center;
}

.gallery-title {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 600;
}

.gallery-slider {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.gallery-track {
    display: flex;
    animation: slideGallery 28s linear infinite;
    gap: 0;
    will-change: transform;
    width: max-content;
    min-width: 100%;
}

.gallery-slide {
    flex-shrink: 0;
    width: 300px;
    height: 320px;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

@keyframes slideGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 4));
    }
}

@media (max-width: 768px) {
    .gallery-slide {
        width: 200px;
        height: 240px;
    }
    
    .gallery-title {
        font-size: 1.2rem !important;
        margin-bottom: 20px;
        padding: 0 20px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .gallery-track {
        animation: slideGallery 25s linear infinite;
    }
}

@media (max-width: 480px) {
    .gallery-slide {
        width: 150px;
        height: 190px;
    }
    
    .gallery-title {
        font-size: 0.95rem !important;
        margin-bottom: 15px;
        padding: 0 15px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .gallery-track {
        animation: slideGallery 20s linear infinite;
    }
}

/* About Page Responsive Styles */
@media (max-width: 992px) {
    body:has(.about-section) .section-title {
        font-size: 1.8rem !important;
    }
    
    body:has(.about-section) .gallery-title {
        font-size: 1.5rem !important;
    }
    
    body:has(.about-section) .vm-card h3 {
        font-size: 1.3rem !important;
    }
    
    body:has(.about-section) .range-col h4 {
        font-size: 1.2rem !important;
    }
    
    body:has(.about-section) .compliance-text h3 {
        font-size: 1.1rem !important;
    }
    
    body:has(.about-section) .about-content-full p {
        font-size: 0.95rem !important;
    }
    
    body:has(.about-section) .compliance-value {
        font-size: 1rem !important;
    }
    
    body:has(.about-section) .locations-main-heading {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 768px) {
    body:has(.about-section) .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    
    body:has(.about-section) .gallery-title {
        font-size: 1.2rem !important;
        margin-bottom: 15px !important;
    }
    
    body:has(.about-section) .vm-card h3 {
        font-size: 1.1rem !important;
    }
    
    body:has(.about-section) .range-col h4 {
        font-size: 1rem !important;
    }
    
    body:has(.about-section) .compliance-text h3 {
        font-size: 1rem !important;
    }
    
    body:has(.about-section) .about-content-full p {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
    }
    
    body:has(.about-section) .compliance-value {
        font-size: 0.9rem !important;
    }
    
    body:has(.about-section) .locations-main-heading {
        font-size: 1.1rem !important;
    }
    
    body:has(.about-section) .tagline-text {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    body:has(.about-section) .section-title {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
        padding-bottom: 4px !important;
    }
    
    body:has(.about-section) .gallery-title {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
        padding-bottom: 4px !important;
    }
    
    body:has(.about-section) .vm-card h3 {
        font-size: 0.95rem !important;
    }
    
    body:has(.about-section) .range-col h4 {
        font-size: 0.9rem !important;
    }
    
    body:has(.about-section) .compliance-text h3 {
        font-size: 0.9rem !important;
    }
    
    body:has(.about-section) .about-content-full p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }
    
    body:has(.about-section) .compliance-value {
        font-size: 0.85rem !important;
    }
    
    body:has(.about-section) .locations-main-heading {
        font-size: 1rem !important;
    }
    
    body:has(.about-section) .tagline-text {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 360px) {
    .gallery-title {
        font-size: 0.85rem !important;
        padding: 0 10px;
    }
    
    .floating-contact {
        right: 5px;
        bottom: 10px;
        gap: 8px;
    }
    
    .floating-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 10px;
}

.compliance-card {
    background: var(--bg-light);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: var(--shadow);
}

.compliance-media {
    display: flex;
    align-items: center;
    gap: 18px;
}

.compliance-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.compliance-fallback {
    font-size: 36px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
}

.compliance-text h3 {
    margin: 0 0 6px 0;
    font-size: 20px !important;
    font-family: Arial, sans-serif !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.compliance-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.compliance-value {
    font-family: Arial, sans-serif !important;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.product-range-section .section-title {
    margin-bottom: 40px;
    color: #000000 !important; /* Black */
    font-family: Arial, sans-serif !important;
}

.range-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.range-col {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.range-col-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.range-icon {
    font-size: 2.5rem;
    color: #302c4f;
    flex-shrink: 0;
}

.range-col h4 {
    font-size: 1.8rem;
    color: #302c4f;
    margin: 0;
    font-weight: 700;
}

.product-list {
    list-style: none;
    padding: 0;
}

.product-list li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-list li i {
    color: #302c4f;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.compatibility-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.compatibility-text {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.compatibility-text i {
    margin-right: 10px;
    color: #fbbf24;
}

.custom-text {
    color: var(--white);
    font-size: 1.1rem;
    font-style: italic;
}

.custom-text i {
    margin-right: 10px;
    color: #fbbf24;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937, #374151);
    text-align: center;
}

.trust-tagline {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 2px;
    font-style: italic;
    text-transform: uppercase;
}

/* Stats Section - Enhanced */
.stats-section .stat-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.stats-section .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.team-role {
    color: var(--text-light);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Contact Section */
.contact-section {
    padding: 30px 0 20px 0;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #DAA520; /* Mustard yellow */
    color: #000000; /* Black icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    margin-top: -5px; /* Shift heading up */
    color: #000000; /* Black */
}

.contact-text p {
    color: #000000; /* Black */
    line-height: 1.6;
}

.contact-text p a {
    color: #000000; /* Black */
    text-decoration: underline;
    transition: var(--transition);
}

.contact-text p a:hover {
    color: #333333; /* Darker grey on hover */
    text-decoration: underline;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 10px;
}

.social-links-contact h3 {
    margin-bottom: 15px;
}

.social-icons-large {
    display: flex;
    gap: 15px;
}

.social-icons-large a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons-large a:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* Product List Heading */
.product-list-heading {
    font-family: Arial, sans-serif !important;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #000000;
    border-bottom: 3px solid #DAA520;
    display: inline-block;
    padding-bottom: 5px;
    text-align: center;
}

/* Product Category Pages */
.product-category-section {
    padding: 60px 0;
    background: var(--white);
}

.product-category-section:first-of-type {
    padding-top: 15px;
}

.pivot-pins-heading,
.bushes-heading,
.specs-heading,
.gears-heading,
.transmission-heading,
.drive-shaft-heading,
.cabin-parts-heading,
.rubber-parts-heading,
.additional-cabin-heading,
.electrical-components-heading,
.fabrication-parts-heading,
.advanced-components-heading {
    margin-top: 8px !important;
    margin-bottom: 20px !important;
    padding-bottom: 5px;
    border-bottom: 3px solid #DAA520; /* Mustard yellow underline */
    font-family: Arial, sans-serif !important;
    display: inline-block;
    width: auto;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: #000000 !important; /* Black */
}

/* Apply underline styling to all section-title headings on home, about, and contact pages */
.section-title {
    margin-top: 8px !important;
    margin-bottom: 20px !important;
    padding-bottom: 5px;
    border-bottom: 3px solid #DAA520; /* Mustard yellow underline */
    font-family: Arial, sans-serif !important;
    display: inline-block;
    width: auto;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: #000000 !important; /* Black */
}

.product-category-section {
    padding-top: 15px;
}

.specifications-section {
    padding-top: 15px;
}

.product-category-section:nth-child(even) {
    background: var(--bg-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    gap: 20px;
    margin-top: 40px;
    justify-content: start;
}

.product-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.product-item .product-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 15px;
}

.product-item .product-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Slightly larger images for specific electrical parts - Mobile and Desktop */
.product-item .product-image img.larger-image {
    max-width: 115%;
    max-height: 115%;
}

.product-item:hover .product-image img {
    transform: scale(1.3);
}

/* Drive Shaft Parts - Larger images */
.drive-shaft-heading ~ .product-grid .product-item .product-image {
    padding: 10px;
    height: 200px;
}

.drive-shaft-heading ~ .product-grid .product-item .product-image img {
    max-width: 110%;
    max-height: 110%;
}

.product-item .product-info {
    padding: 10px 15px 15px 15px;
    text-align: left;
}

.product-item .product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.product-item .product-info p {
    color: var(--text-light);
    line-height: 1.6;
}

.specifications-section {
    padding: 30px 0;
    background: var(--white);
}

.specifications-section .section-title {
    margin-bottom: 20px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.spec-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.spec-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.spec-card ul {
    list-style: none;
    padding: 0;
}

.spec-card ul li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid #e5e7eb;
}

.spec-card ul li:last-child {
    border-bottom: none;
}

.cta-section {
    padding: 30px 0;
    background: #DAA520; /* Mustard yellow */
    color: #000000; /* Black text */
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #000000; /* Black */
    font-weight: 600;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #000000; /* Black */
}

.btn-cta {
    background: #000000 !important; /* Black */
    color: #ffffff !important; /* White text */
    padding: 10px 25px;
    font-size: 0.95rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #333333 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Floating Contact Icons */
.floating-contact {
    position: fixed;
    right: 12px; /* slightly closer to the edge on desktop */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Hide phone icon on desktop */
.floating-icon.phone {
    display: none;
}

.floating-icon {
    width: 52px; /* slightly smaller on desktop */
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    touch-action: manipulation; /* removes 300ms tap delay on mobile */
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite;
    pointer-events: auto;
    z-index: 1001;
    position: relative;
}

.floating-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.floating-icon.whatsapp {
    background: #25D366;
}

.floating-icon.phone {
    background: var(--text-dark);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-icon.phone {
    animation: pulsePhone 2s infinite;
}

@keyframes pulsePhone {
    0% {
        box-shadow: 0 0 0 0 rgba(31, 41, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(31, 41, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(31, 41, 55, 0);
    }
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.error-message {
    color: #ef4444;
    font-size: 0.9rem;
    display: none;
}

.form-success {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
}

.form-success i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-success p {
    color: var(--text-light);
}

/* Map Section */
.map-section {
    padding: 20px 0 60px 0;
    background: var(--bg-light);
}

.map-placeholder {
    background: var(--white);
    height: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.map-note {
    font-size: 0.9rem !important;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: #000000; /* Black */
    color: var(--white);
    padding: 3px 0 2px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 3px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #DAA520; /* Mustard yellow */
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    display: block;
    clip-path: inset(0 1px 0 0);
    margin-right: -1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 0;
    color: #DAA520; /* Mustard yellow */
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col ul li a i {
    color: #DAA520; /* Mustard yellow */
}

.footer-col ul li a .fa-whatsapp {
    color: #25d366;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DAA520; /* Mustard yellow */
    transition: var(--transition);
}

.social-links a:hover {
    background: #DAA520; /* Mustard yellow */
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #DAA520; /* Mustard yellow */
    font-size: 0.85rem;
    line-height: 1.2;
}

.footer-bottom p {
    color: #DAA520; /* Mustard yellow */
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        width: 100%;
    }

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

    .about-content,
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-section {
        padding: 25px 0;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .btn-cta {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .floating-contact {
        right: 15px;
        top: auto;
        bottom: 20px;
        transform: none;
        gap: 18px;
        flex-direction: column;
        z-index: 999;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .floating-icon.whatsapp {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        font-size: 1.2rem;
        padding: 6px;
        box-sizing: content-box;
    }
    
    /* Show phone icon on mobile */
    .floating-icon.phone {
        display: flex;
    }

    .section-title {
        font-size: 1.5rem !important;
    }
    
    h2.section-title {
        font-size: 1.5rem !important;
    }
    
    .gallery-preview .section-title {
        font-size: 1.5rem !important;
    }
    
    .product-categories .section-title {
        font-size: 1.5rem !important;
    }
    
    .features .section-title {
        font-size: 1.5rem !important;
    }
    
    .testimonials .section-title {
        font-size: 1.5rem !important;
    }
    
    .company-logos .section-title {
        font-size: 1.5rem !important;
    }

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

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

    .trust-tagline {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.2rem !important;
    }
    
    h2.section-title {
        font-size: 1.2rem !important;
    }
    
    .gallery-preview .section-title {
        font-size: 1.2rem !important;
    }
    
    .product-categories .section-title {
        font-size: 1.2rem !important;
    }
    
    .features .section-title {
        font-size: 1.2rem !important;
    }
    
    .testimonials .section-title {
        font-size: 1.2rem !important;
    }
    
    .company-logos .section-title {
        font-size: 1.2rem !important;
    }
    
    .product-range-section .section-title {
        font-size: 1.2rem !important;
    }
    
    .product-list-heading {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
        margin-bottom: 0;
    }
    
    .hero {
        margin-top: 15px !important;
        padding-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .hero-banner {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 0 !important;
        display: block;
        object-position: center 25%;
    }
    
    section.hero {
        margin-top: 15px !important;
        padding-top: 0 !important;
    }
    
    .floating-contact {
        right: 15px;
        top: auto;
        bottom: 20px;
        transform: none;
        gap: 20px;
        flex-direction: row;
        z-index: 999;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .floating-icon.whatsapp {
        width: 50px;
        height: 50px;
        min-width: 48px;
        min-height: 48px;
        font-size: 1.25rem;
        padding: 6px;
        box-sizing: content-box;
    }
    
    .floating-icon.phone {
        display: flex;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4 {
        text-align: center;
    }
    
    .footer-col p {
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 25px auto;
        display: block;
    }
    
    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .footer-col ul li {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-col ul li i {
        flex-shrink: 0;
    }
    
    .social-links {
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 130px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
        padding: 20px 0;
        gap: 0 !important;
        row-gap: 0 !important;
        max-height: calc(100vh - 130px);
        overflow-y: auto;
        margin-left: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 0;
        margin: 0;
        border: none;
    }
    
    .nav-menu > li {
        border: none;
        border-bottom: none;
    }
    
    .nav-menu > li > a {
        padding: 12px 20px;
        display: block;
        width: 100%;
        border: none;
        border-bottom: none;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu > li > a:hover {
        padding-left: 28px;
        background: rgba(218, 165, 32, 0.1) !important;
    }
    
    .nav-menu > li.dropdown {
        border: none !important;
        border-bottom: none !important;
    }
    
    .nav-menu > li.dropdown > a {
        border: none !important;
        border-bottom: none !important;
    }
    
    .nav-menu > li.dropdown::after {
        display: none !important;
    }
    
    .nav-menu > li:not(:last-child) {
        border-bottom: none !important;
    }

    .nav-menu > li > a {
        font-size: 20px;
    }

    .logo img {
        width: 120px;
        height: auto;
        max-height: 120px;
    }

    .nav-wrapper {
        gap: 20px;
    }

    .navbar .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .navbar .logo {
        margin-left: 0;
        order: 1;
        flex: 0 0 auto;
        transform: translateX(0);
        position: static;
        left: auto;
    }

    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .hamburger {
        order: 3;
        margin-left: auto;
        margin-right: 0;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .navbar .logo {
        order: 1;
        position: relative;
        left: auto;
        transform: none;
    }

    body {
        padding-top: 90px;
    }

    .navbar.scrolled {
        min-height: 70px;
    }
    
    .navbar.scrolled .logo img {
        width: 70px;
        max-height: 70px;
    }

    .navbar.scrolled ~ * .nav-menu {
        top: 90px;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(218, 165, 32, 0.05);
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border: none !important;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        margin-bottom: 0 !important;
    }
    
    .nav-menu > li.dropdown {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .dropdown-toggle i {
        font-size: 12px;
    }
    
    .dropdown-menu li {
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Show mobile-only dropdown items on mobile */
    .dropdown-menu li.mobile-only {
        display: block !important;
    }
    
    .dropdown-menu li a {
        font-size: 18px !important;
        padding: 10px 20px !important;
        margin: 0 !important;
    }
    
    .dropdown-menu li.mobile-only a {
        font-weight: 700 !important;
        background: #DAA520 !important;
        color: #000000 !important;
        border-bottom: 2px solid #000000;
    }
    
    .dropdown-menu li.mobile-only a:hover {
        background: #C4951D !important;
        padding-left: 20px !important;
    }

    .dropdown-menu li a:hover {
        padding-left: 20px !important;
    }
    
    .nav-menu > li.dropdown + li {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .hamburger {
        display: flex;
    }

    .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 {
        width: 100%;
    }

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

    .features-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .page-header {
        margin-top: 15px !important;
        padding-top: 0 !important;
    }
    
    .page-header .page-banner {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center 25%;
    }
    
    /* Banner header responsive for mobile */
    .banner-header {
        margin-top: 15px !important;
        padding-top: 0 !important;
    }
    
    .banner-header .page-banner {
        height: 250px !important;
        max-height: 250px !important;
        object-fit: cover;
        object-position: center 25%;
    }
    
    .banner-header .banner-overlay {
        padding: 0 15px;
    }
    
    .banner-header h1 {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
        margin-bottom: 5px !important;
    }
    
    .banner-header p {
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
        margin-top: 5px !important;
    }
    
    /* Showcase section mobile */
    .gallery-preview {
        padding: 18px 0 22px 0;
    }
    
    .showcase-slider {
        padding: 0 40px;
    }
    
    .showcase-viewport {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #DAA520 #1a1a1a;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        width: 100%;
        border-radius: 12px;
    }
    
    .showcase-viewport::-webkit-scrollbar {
        height: 6px;
    }
    
    .showcase-viewport::-webkit-scrollbar-track {
        background: #1a1a1a;
        border-radius: 3px;
    }
    
    .showcase-viewport::-webkit-scrollbar-thumb {
        background: #DAA520;
        border-radius: 3px;
    }
    
    .showcase-viewport::-webkit-scrollbar-thumb:hover {
        background: #C4951D;
    }
    
    .showcase-track {
        display: flex !important;
        flex-direction: row !important;
        gap: 15px;
        width: max-content;
        transition: none;
        transform: none !important;
        padding: 10px;
    }
    
    .gallery-item {
        flex: 0 0 calc(50vw - 20px) !important;
        min-width: calc(50vw - 20px) !important;
        max-width: calc(50vw - 20px) !important;
        width: calc(50vw - 20px) !important;
        height: 185px;
        min-height: 185px;
        display: flex;
        flex-direction: column;
        visibility: visible !important;
        opacity: 1 !important;
        background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
        border: 2px solid #DAA520;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        border-radius: 12px;
    }
    
    .gallery-item .product-image-wrapper {
        margin: 8px;
        padding: 10px;
        border-radius: 8px;
    }
    
    .gallery-item img {
        object-fit: contain !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        padding: 0 !important;
        flex-shrink: 0;
        margin: 0 auto;
        display: block !important;
        filter: brightness(1.05);
    }
    
    .gallery-caption {
        height: 40px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 10px;
        font-size: 0.8rem;
        background: linear-gradient(180deg, transparent 0%, #DAA520 100%);
        color: #000000;
        font-weight: 700;
    }
    
    .showcase-arrow {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        background: #DAA520;
        color: #000000;
        border: 2px solid #000000;
    }
    
    .showcase-arrow.prev {
        left: 5px;
    }
    
    .showcase-arrow.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .hero {
        width: 100%;
        margin-top: 25px !important;
        padding-top: 20px !important;
        overflow: visible !important;
    }

    .hero-banner {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center 35% !important;
        transform: translateY(0);
    }
    
    .page-header {
        margin-top: 20px !important;
        padding-top: 0 !important;
    }
    
    .page-header .page-banner {
        object-position: center 30%;
    }
    
    /* Banner header responsive for small mobile */
    .banner-header {
        margin-top: 20px !important;
        padding-top: 0 !important;
    }
    
    .banner-header .page-banner {
        height: 200px !important;
        max-height: 200px !important;
        object-position: center 30%;
    }
    
    .banner-header .banner-overlay {
        padding: 0 12px;
    }
    
    .banner-header h1 {
        font-size: 1.1rem !important;
        line-height: 1.2 !important;
        margin-bottom: 4px !important;
    }
    
    .banner-header p {
        font-size: 0.75rem !important;
        line-height: 1.1 !important;
        margin-top: 4px !important;
    }

    .logo img {
        width: 110px;
        height: auto;
        max-height: 110px;
    }

    body {
        padding-top: 90px;
    }
    
    .hero {
        width: 100%;
        margin-top: 20px !important;
    }

    .hero-banner {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center 30%;
    }
    
    .floating-contact {
        right: 15px;
        bottom: 15px;
        gap: 18px;
        flex-direction: column;
    }
    
    .floating-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .floating-icon.whatsapp {
        width: 45px;
        height: 45px;
        min-width: 48px;
        min-height: 48px;
        font-size: 1.1rem;
        padding: 6px;
        box-sizing: content-box;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4 {
        text-align: center;
    }
    
    .footer-col p {
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 25px auto;
        display: block;
    }
    
    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .footer-col ul li {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }
    
    .footer-col ul li i {
        flex-shrink: 0;
    }
    
    .social-links {
        justify-content: center;
    }

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

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .logos-track {
        gap: 40px;
    }

    .logo-item {
        min-width: 150px;
        height: 80px;
        padding: 15px 20px;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.1rem !important;
    }
    
    h2.section-title {
        font-size: 1.1rem !important;
    }
    
    .gallery-preview .section-title {
        font-size: 1.1rem !important;
    }
    
    .product-categories .section-title {
        font-size: 1.1rem !important;
    }
    
    .features .section-title {
        font-size: 1.1rem !important;
    }
    
    .testimonials .section-title {
        font-size: 1.1rem !important;
    }
    
    .company-logos .section-title {
        font-size: 1.1rem !important;
    }
    
    .product-range-section .section-title {
        font-size: 1.1rem !important;
    }
    
    .product-list-heading {
        font-size: 1.1rem !important;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .trust-tagline {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .about-content-full p {
        font-size: 1rem;
        text-align: left;
    }
    
    /* Showcase section small mobile */
    .gallery-preview {
        padding: 16px 0 20px 0;
    }
    
    .showcase-slider {
        padding: 0 35px;
    }
    
    .showcase-viewport {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #DAA520 #1a1a1a;
        -ms-overflow-style: none;
        border-radius: 10px;
    }
    
    .showcase-viewport::-webkit-scrollbar {
        height: 5px;
    }
    
    .showcase-viewport::-webkit-scrollbar-track {
        background: #1a1a1a;
        border-radius: 3px;
    }
    
    .showcase-viewport::-webkit-scrollbar-thumb {
        background: #DAA520;
        border-radius: 3px;
    }
    
    .showcase-track {
        display: flex;
        flex-direction: row;
        gap: 12px;
        width: max-content;
        transition: none;
        padding: 8px;
    }
    
    .gallery-item {
        flex: 0 0 calc(50% - 4px);
        min-width: calc(50% - 4px);
        max-width: calc(50% - 4px);
        height: 170px;
        min-height: 170px;
        display: flex;
        flex-direction: column;
        background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
        border: 2px solid #DAA520;
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.4);
        border-radius: 10px;
    }
    
    .gallery-item .product-image-wrapper {
        margin: 6px;
        padding: 8px;
        border-radius: 6px;
    }
    
    .gallery-item img {
        object-fit: contain;
        width: 100%;
        height: 100%;
        padding: 0;
        flex-shrink: 0;
        filter: brightness(1.05);
    }
    
    .gallery-caption {
        height: 36px;
        flex-shrink: 0;
        padding: 6px 8px;
        font-size: 0.75rem;
        background: linear-gradient(180deg, transparent 0%, #DAA520 100%);
        color: #000000;
        font-weight: 700;
    }
    
    .showcase-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        background: #DAA520;
        color: #000000;
        border: 2px solid #000000;
    }
    
    .showcase-arrow.prev {
        left: 0;
    }
    
    .showcase-arrow.next {
        right: 0;
    }

    .compatibility-text {
        font-size: 1rem;
    }

    .custom-text {
        font-size: 0.95rem;
    }

    .vm-card h3 {
        font-size: 1.5rem;
    }

    .range-col h4 {
        font-size: 1.5rem;
    }

    .range-icon {
        font-size: 2rem;
    }

    .product-list li {
        font-size: 0.95rem;
        padding: 10px 0;
        gap: 10px;
    }
    
    .product-list li i {
        font-size: 1rem;
        margin-top: 2px;
    }
    
    .range-col {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    /* Category cards on small mobile - narrower width, slightly taller, larger icons */
    .categories-grid {
        max-width: 280px;
    }
    
    .category-card {
        padding: 20px 16px;
    }
    
    .category-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .category-card h3 {
        font-size: 16px !important;
        margin-top: 8px;
        line-height: 1.2;
    }
    
    /* Further reduce height of feature cards on small mobile */
    .feature-card {
        padding: 10px 15px;
    }
    
    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    /* Testimonials section for small mobile */
    .testimonials {
        padding: 25px 0 35px 0;
    }
    
    .testimonials-slider {
        border-radius: 12px;
    }
    
    .testimonials-track {
        gap: 12px;
        padding: 12px 8px;
    }
    
    .testimonial-card {
        width: calc(100vw - 40px);
        max-width: 300px;
        min-width: 260px;
        padding: 12px 12px 8px 12px;
    }
    
    .testimonial-content p {
        font-size: 0.85rem;
        padding-left: 12px;
        margin-bottom: 12px;
        line-height: 1.5;
        min-height: calc(1.5em * 4);
    }
    
    .testimonial-content::before {
        font-size: 2.5rem;
        top: -6px;
        left: -2px;
    }
    
    .testimonial-author {
        padding-left: 12px;
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .testimonial-author h4 {
        font-size: 0.9rem;
    }
    
    .testimonials .section-title {
        margin-bottom: 15px !important;
    }
    
    /* Client Locations Section - Small Mobile */
    .client-locations-section {
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 5px 0;
    }
    
    .locations-compact {
        padding: 10px 10px;
    }
    
    .locations-main-heading {
        font-size: 0.95rem !important;
        margin-bottom: 8px;
    }
    
    .locations-map-wrapper {
        gap: 8px;
        margin-top: 8px;
    }
    
    #locations-map {
        height: 220px !important;
        min-height: 220px;
    }
    
    .locations-map-container .leaflet-container {
        height: 220px !important;
    }
    
    .states-list-container {
        padding: 8px 10px;
    }
    
    .states-list-container h5 {
        font-size: 0.8rem !important;
        margin-bottom: 6px !important;
    }
    
    .product-list li {
        font-size: 0.85rem;
        padding: 8px 0;
        gap: 8px;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .product-list li i {
        font-size: 0.9rem;
        margin-top: 1px;
        flex-shrink: 0;
    }
    
    .range-col {
        padding: 20px 15px;
    }
    
    .range-col-header {
        gap: 10px;
        margin-bottom: 20px;
    }
}

