﻿/* ============================================
   PREMIUM BATHROOM FITTINGS - DESIGN SYSTEM
   ============================================ */

/* CSS CUSTOM PROPERTIES */
:root {
    /* Color Palette - Topman Brand Colors */
    --color-primary: #E31E24;
    /* Topman Red */
    --color-primary-dark: #B01419;
    /* Dark Red */
    --color-primary-light: #FF3B40;
    /* Light Red */
    --color-secondary: #2C2C2C;
    /* Dark Gray */
    --color-accent: #E31E24;
    /* Accent Red */
    --color-metallic: #b8c5d0;
    /* Metallic Chrome */
    --color-chrome: #d4dce3;
    /* Chrome Finish */
    --color-dark: #1a1a1a;
    /* Black */
    --color-text: #333333;
    /* Text Gray */
    --color-text-light: #666666;
    /* Light Text */
    --color-bg-light: #f8f9fa;
    /* Light Background */
    --color-white: #ffffff;
    /* White */
    --color-success: #28a745;
    /* Success Green */
    --color-gold: #D4AF37;
    /* Premium Gold */
    --gradient-premium: linear-gradient(135deg, var(--color-primary) 0%, #C41217 100%);

    /* Typography - Poppins Premium Font */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;

}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
}

.text-primary {
    color: #F44336 !important;
}

h1 {
    font-size: var(--font-size-5xl);
}

h2 {
    font-size: var(--font-size-4xl);
}

h3 {
    font-size: var(--font-size-3xl);
}

h4 {
    font-size: var(--font-size-2xl);
}

h5 {
    font-size: var(--font-size-xl);
}

h6 {
    font-size: var(--font-size-lg);
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* UTILITY CLASSES */
.section-padding {
    padding: var(--spacing-lg) 0;
}

.section-padding-sm {
    padding: var(--spacing-2xl) 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overlay-dark {
    position: relative;
}

.overlay-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.9) 30%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.2) 85%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.overlay-dark>* {
    position: relative;
    z-index: 2;
}

/* BUTTONS */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: none;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--color-white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--color-white);
    padding: 0.875rem 2rem;
    border: 2px solid var(--color-white);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: var(--font-size-lg);
    border: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    display: inline-block;
}

.btn-cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   1. TOP HEADER BAR
   ============================================ */
.top-header {
    background: var(--color-dark);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    padding: 0.4rem 0;
}

.top-header a {
    color: var(--color-white);
    margin-left: var(--spacing-md);
    transition: color var(--transition-fast);
}

.top-header a:hover {
    color: var(--color-accent);
}

.top-header-contact i {
    margin-right: 0.5rem;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

.bi-telephone-fill {
    transform: rotate(24deg);
    display: inline-block;
}

.social-icons a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

/* ============================================
   2. NAVIGATION BAR
   ============================================ */
.main-navbar {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    transition: all var(--transition-base);
}

.main-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.navbar-brand-custom {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-primary);
    max-width: 400px;
    margin: 0;
    padding: 0;
}

.navbar-brand-custom img {
    width: 60%;
}

.navbar-nav-custom .nav-link {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    transition: color var(--transition-fast);
}

.navbar-nav-custom .nav-link:hover,
.navbar-nav-custom .nav-link.active {
    color: var(--color-primary);
}

.navbar-cta-btn {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-left: var(--spacing-sm);
    transition: all var(--transition-base);
}

.navbar-cta-btn:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Desktop Navigation - Show horizontally */
@media (min-width: 992px) {
    .offcanvas {
        position: static !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: none !important;
        transform: none !important;
        transition: none !important;
        width: auto !important;
        height: auto !important;
    }

    .offcanvas-header {
        display: none;
    }

    .offcanvas-body {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .navbar-nav-custom {
        flex-direction: row;
    }
}

/* Fix navbar wrapping for small laptops / 1280px resolution */
@media (max-width: 1280px) and (min-width: 992px) {
    .navbar-brand-custom {
        max-width: 250px;
    }

    .btn-cta {
        background: var(--color-primary);
        color: var(--color-white);
        padding: 1rem 0.5rem;
        border-radius: var(--radius-lg);
        font-weight: 700;
        font-size: 1rem;
    }

    .navbar-brand-custom img {
        width: 80%;
    }

    .navbar-nav-custom .nav-link {
        padding: 0.5rem 0.6rem;
        margin: 0 0.1rem;
        font-size: 0.93rem;
    }

    .navbar-cta-btn {
        padding: 0.6rem 1rem;
        margin-left: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Mega Menu Styling */
.mega-menu-item {
    position: static;
}

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    padding: 2.5rem 0;
    margin-top: 0;
    margin-left: calc(-50vw + 50%);
    border: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    /* Softer, more premium shadow */
    background: #ececec;
    /* Very subtle off-white/light-grey for a premium look */
    border-top: 1px solid #e0e0e0;
    /* Subtle separator from navbar */
    z-index: 1000;
}

.mega-menu .container {
    max-width: 1200px;
    margin: 0 auto;
}

.mega-menu .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.mega-menu .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.mega-menu-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 0.6rem;
}

.mega-menu-list .dropdown-item {
    padding: 0.75rem 1.25rem;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
    background: var(--color-white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid transparent;
    white-space: normal;
    display: flex;
    align-items: center;
}

.mega-menu-list .dropdown-item:hover,
.mega-menu-list .dropdown-item.active {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: rgba(227, 30, 36, 0.2);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.12);
    transform: translateY(-2px);
}

.mega-menu-list .dropdown-item:before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.75rem;
    font-size: 0.85rem;
    color: #ccc;
    transition: all var(--transition-fast);
}

.mega-menu-list .dropdown-item:hover:before,
.mega-menu-list .dropdown-item.active:before {
    color: var(--color-primary);
    transform: translateX(3px);
}

/* Mega Menu Promo Banner */
.nav-promo-banner .promo-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.05) 100%);
    transition: all var(--transition-base);
}

.nav-promo-banner:hover .promo-overlay {
    background: linear-gradient(to top, rgba(227, 30, 36, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.nav-promo-banner img {
    transition: transform 0.6s ease;
}

.nav-promo-banner:hover img {
    transform: scale(1.08);
}

/* Mobile Mega Menu */
@media (max-width: 991px) {
    .mega-menu {
        position: static;
        box-shadow: none;
        padding: 1rem;
        width: 100%;
        margin-left: 0;
    }

    .mega-menu .row {
        flex-direction: column;
    }

    .mega-menu .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .mega-menu-title {
        font-size: var(--font-size-sm);
    }
}

/* ============================================
   3. HERO SLIDER (SLICK)
   ============================================ */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

/* Hide all slides except first until Slick initializes */
.hero-slider:not(.slick-initialized) .hero-slide {
    display: none;
}

.hero-slider:not(.slick-initialized) .hero-slide:first-child {
    display: block;
}

.hero-slide {
    position: relative;
    min-height: 90vh;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    color: var(--color-white);
    outline: none;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, rgba(245, 245, 245, 1) 0%, transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.4);
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-lg);
    opacity: 0.98;
    line-height: 1.8;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-features span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-features i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

.hero-buttons .btn {
    margin-right: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.hero-buttons .btn:last-child {
    margin-left: var(--spacing-md);
}

/* Slick Slider Custom Styles */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.slick-prev {
    left: 30px;
}

.slick-next {
    right: 30px;
}

.slick-prev i,
.slick-next i {
    font-size: 24px;
    color: var(--color-white);
    line-height: 1;
    display: block;
}

.slick-prev:before,
.slick-next:before {
    content: '';
    display: none;
}

.slick-dots {
    bottom: 30px;
    z-index: 10;
}

.slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 5px;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
}

.slick-dots li button:before {
    width: 12px;
    height: 12px;
    font-size: 12px;
    line-height: 12px;
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: var(--color-primary);
    opacity: 1;
}

.slick-dots li:hover button:before {
    color: var(--color-white);
}

.hero-slider .slick-arrow:hover {
    background: var(--color-primary);
}

.hero-slider .slick-arrow::before {
    font-family: 'Bootstrap Icons';
    font-size: 24px;
    color: var(--color-white);
}

/* ============================================
   4. FEATURES HIGHLIGHT SECTION
   ============================================ */
.features-highlight-section {
    background: linear-gradient(135deg, #3F51B5 0%, #3F51B5 50%, #1a1a1a 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.features-highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-item-highlighted {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.feature-item:hover .feature-icon-box {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 100%);
}

.feature-icon-box i {
    font-size: 2rem;
    color: #ffffff;
}

/* Section Title Design */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    position: relative;
}

.section-title h2 {
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-divider {
    height: 4px;
    width: 60px;
    background: var(--gradient-premium);
    border-radius: 2px;
}

.feature-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #1e3a8a;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-download:hover {
    background: #E31E24;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .features-highlight-section {
        padding: 3rem 0;
    }

    .feature-item {
        padding: 2rem 1.5rem;
    }
}

.hero-slider .slick-prev {
    left: 30px;
}

.hero-slider .slick-prev::before {
    content: '\F284';
    /* bi-chevron-left */
}

.hero-slider .slick-next {
    right: 30px;
}

.hero-slider .slick-next::before {
    content: '\F285';
    /* bi-chevron-right */
}

/* Slick Dots */
.hero-slider .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-slider .slick-dots li {
    margin: 0;
}

.hero-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.hero-slider .slick-dots li.slick-active button {
    width: 40px;
    border-radius: 6px;
    background: var(--color-primary);
}


/* ============================================
   7. LUXURY RANGE SECTION
   ============================================ */
.luxury-range {
    background-color: #f8f9fa;
}

.luxury-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.luxury-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.luxury-image {
    position: relative;
    overflow: hidden;
    height: 350px;
    /* Fixed height for consistency */
}

.luxury-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.luxury-item:hover .luxury-image img {
    transform: scale(1.1);
}

.luxury-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 1;
    transition: all 0.4s ease;
}

.luxury-content {
    color: #ffffff;
    transform: translateY(0);
    transition: all 0.4s ease;
    width: 100%;
    text-align: center;
    /* Center the button */
}

/* Removed hover state requiring transformation */
.luxury-item:hover .luxury-content {
    transform: translateY(0);
}

.luxury-content .btn {
    opacity: 1;
    /* Always visible */
    transform: translateY(0);
    /* Always in position */
    transition: all 0.3s ease;
    border-width: 2px;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
}

.luxury-item:hover .luxury-content .btn {
    background-color: #ffffff;
    color: #000000;
}

/* ============================================
   8. FAQ & CONTACT SECTION
   ============================================ */
.faq-contact-section {
    background-color: #ffffff;
}

.custom-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 1rem;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.custom-accordion .accordion-button {
    background-color: #f8f9fa;
    color: #111827;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--color-primary);
    color: #ffffff;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23111827'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-body {
    background-color: #ffffff;
    padding: 1.5rem;
    color: #4b5563;
    line-height: 1.6;
    border-top: 1px solid #f3f4f6;
}

.contact-card-wrapper {
    transition: transform 0.3s ease;
}

.contact-card-wrapper:hover {
    transform: translateY(-5px);
}

.contact-form .form-floating>.form-control {
    height: 3.5rem;
    padding: 1rem 0.75rem;
}

.contact-form .form-floating>textarea.form-control {
    height: 120px;
}

.contact-form .form-control:focus {
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
    /* Primary color w/ opacity */
}

/* ============================================
   6. TESTIMONIALS SLIDER
   ============================================ */
.testimonials-section {
    position: relative;
    color: #ffffff;
    overflow: hidden;
    background-color: #1a1a1a;
}

.testimonials-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/testimonials-bg.png');
    /* You'll need to add this image or use a placeholder */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Fallback if image not found */
/* Reduced overlay opacity to show image */
.testimonials-bg-image::before {
    display: none;
    /* Remove fallback gradient if image exists */
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    /* Lighter overlay */
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.badge-testimonials {
    display: inline-block;
    color: var(--color-primary);
    /* Primary Red */
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.text-primary-color {
    color: var(--color-primary) !important;
}

.testimonials-slider {
    margin: 3rem 0;
    padding: 0 10px;
}

.testimonial-slide {
    padding: 15px;
    height: 100%;
}

.testimonial-card-new {
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 6px solid var(--color-primary);
    /* Primary Red Border */
    transition: all 0.3s ease;
    border-top: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
}

.testimonial-slide:nth-child(2n) .testimonial-card-new {
    border-bottom-color: #c01820;
    /* Darker Red for variety if needed */
}

.testimonial-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-width: 8px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--color-primary);
    overflow: hidden;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-initial {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Colors for avatars */
.testimonial-slide:nth-child(1) .client-img {
    background-color: #fff5f5;
}

.testimonial-slide:nth-child(2) .client-img {
    background-color: #fff5f5;
}

.testimonial-slide:nth-child(3) .client-img {
    background-color: #fff5f5;
}

.client-info h5 {
    color: #111827;
    /* Gray-900 */
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.client-info p {
    color: #4b5563;
    /* Gray-600 */
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0;
}

.testimonial-body {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.testimonial-body p {
    color: #374151;
    /* Gray-700 */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.rating {
    display: flex;
    gap: 4px;
    color: var(--color-primary);
    /* Red Stars */
    font-size: 1rem;
}

.quote-icon-large {
    font-size: 4rem;
    line-height: 1;
    color: #fee2e2;
    /* Very Light Red */
    opacity: 0.8;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.testimonial-card-new:hover .quote-icon-large {
    color: #fecaca;
    /* Light Red */
    transform: translateY(5px);
}

/* Slick Custom Navigation */
.testimonials-slider .slick-track {
    display: flex !important;
}

.testimonials-slider .slick-slide {
    height: auto !important;
}

.testimonials-slider .slick-slide>div {
    height: 100%;
}

.testimonials-slider .slick-list {
    overflow: hidden;
    /* Hide off-screen slides */
    padding: 20px 5px !important;
    /* Allow shadow vertical space */
    margin: -20px -5px;
    /* Compensate for padding */
}

.testimonials-slider .slick-arrow {
    width: 44px;
    height: 44px;
    background: #ffffff;
    /* White background */
    border-radius: 50%;
    z-index: 50;
    transition: all 0.3s ease;
    opacity: 1;
    border: none;
    display: flex;
    /* Flex to center icon */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.testimonials-slider .slick-arrow:hover {
    background: var(--color-primary);
    /* Red background */
    box-shadow: 0 6px 15px rgba(227, 30, 36, 0.4);
}

.testimonials-slider .slick-arrow::before {
    color: #111827;
    /* Dark text */
    font-size: 16px;
    font-weight: 900;
    font-family: "Font Awesome 6 Free", "FontAwesome";
    opacity: 1;
    transition: all 0.3s ease;
    line-height: 1;
    display: block;
}

.testimonials-slider .slick-arrow:hover::before {
    color: #ffffff;
    /* White text */
}

.testimonials-slider .slick-prev {
    left: -22px;
    /* Pull out slightly */
}

.testimonials-slider .slick-prev::before {
    content: "\f053";
    /* Left Angle */
}

.testimonials-slider .slick-next {
    right: -22px;
    /* Pull out slightly */
}

.testimonials-slider .slick-next::before {
    content: "\f054";
    /* Right Angle */
}

.testimonials-slider .slick-dots {
    bottom: -40px;
}

.testimonials-slider .slick-dots li button:before {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.testimonials-slider .slick-dots li.slick-active button:before {
    color: var(--color-primary);
}

@media (max-width: 991px) {
    .testimonials-slider {
        padding: 0;
    }

    .client-info h5 {
        font-size: 1rem;
    }
}

/* ============================================
   4. COMPANY INTRODUCTION
   ============================================ */
.about-preview {
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-preview h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.about-preview .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-preview p {
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
    text-align: justify;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    background: var(--color-primary);
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.btn-read-more:hover {
    background: linear-gradient(135deg, #E31E24 0%, #FF3B40 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(227, 30, 36, 0.4);
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 1.75rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(227, 30, 36, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #FF3B40 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(227, 30, 36, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FF3B40 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-preview h2 {
        font-size: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }
}

/* ============================================
   5. PRODUCT CATEGORIES
   ============================================ */

.section-subtitle {
    color: var(--color-text-light);
    font-size: var(--font-size-lg);
    margin-top: var(--spacing-sm);
}

.category-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    margin-bottom: var(--spacing-lg);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: var(--spacing-lg);
}

.category-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.category-description {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.category-btn {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: gap var(--transition-fast);
    gap: 0.5rem;
}

.category-btn:hover {
    gap: 1rem;
}

/* ============================================
   6. FEATURED PRODUCTS
   ============================================ */
/* ============================================
   7. OUR PRODUCTS - E-COMMERCE STYLE
   ============================================ */
.our-products {
    background: #ffffff;
}

.products-slider {
    margin-top: 3rem;
    padding: 0 10px;
}

.product-slide {
    padding: 0 10px;
}

.product-card-ecommerce {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: 1px solid #f0f0f0;
}

.product-card-ecommerce:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

.product-image-wrapper {
    position: relative;
    height: 280px;
    background: #ffffff;
    overflow: hidden;
    padding: 1.5rem;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card-ecommerce:hover .product-image-wrapper img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-ecommerce:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: var(--color-primary);
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.btn-quick-view:hover {
    background: linear-gradient(135deg, #E31E24 0%, #FF3B40 100%);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

/* Product Badges */
.product-badge-new,
.product-badge-trending,
.product-badge-premium {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.product-badge-trending {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
}

.product-badge-premium {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
}

.product-info {
    padding: 1.75rem 1.5rem 1rem 1.5rem;
    text-align: center;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-category {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-enquire {
    background: var(--color-primary);
    color: #ffffff;
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    max-width: fit-content;
    margin: 0 auto;
    border: 2px solid var(--color-primary);
}

.btn-enquire:hover {
    background: #ffffff;
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.25);
}

.btn-enquire i {
    font-size: 0.95rem;
}

/* Slick Slider Custom Arrows for Products */
.products-slider .slick-arrow {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.products-slider .slick-arrow:hover {
    background: var(--color-primary);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
}

.products-slider .slick-arrow::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    font-size: 18px;
    color: #333333 !important;
    opacity: 1;
    line-height: 1;
    display: block;
    -webkit-font-smoothing: antialiased;
}

.products-slider .slick-arrow:hover::before {
    color: #ffffff !important;
}

.products-slider .slick-prev {
    left: -22px;
}

.products-slider .slick-prev::before {
    content: '\f053';
}

.products-slider .slick-next {
    right: -22px;
}

.products-slider .slick-next::before {
    content: '\f054';
}

.products-slider .slick-dots {
    bottom: -45px;
}

.products-slider .slick-dots li button:before {
    font-size: 10px;
    color: #d0d0d0;
}

.products-slider .slick-dots li.slick-active button:before {
    color: var(--color-primary);
}

@media (max-width: 991px) {
    .product-image-wrapper {
        height: 250px;
    }

    .products-slider .slick-prev {
        left: 5px;
    }

    .products-slider .slick-next {
        right: 5px;
    }

    .product-info {
        padding: 1.5rem 1.25rem;
    }
}

/* ============================================
   5. WHY CHOOSE US
   ============================================ */
.why-choose {
    background-color: #f8f9fa;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    position: relative;
    z-index: 0;
}

/* Background Pattern Overlay */
.why-choose .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.9) 0%, rgba(248, 249, 250, 0.7) 100%);
    z-index: -1;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #f8f9fa, transparent);
    z-index: 1;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #f8f9fa, transparent);
    z-index: 1;
}

.why-choose .container {
    position: relative;
    z-index: 2;
}

.feature-box {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #FF3B40 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(227, 30, 36, 0.05);

    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon i {
    color: #ffffff;
}

.feature-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
    margin-top: 1rem;
}

.feature-description {
    line-height: 1.8;
}

/* ============================================
   8. MANUFACTURING HIGHLIGHT
   ============================================ */
.manufacturing-section {
    background: var(--color-dark);
    color: var(--color-white);
}

.manufacturing-section .section-title h2,
.manufacturing-section .section-subtitle {
    color: var(--color-white);
}

.manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.manufacturing-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
}

.manufacturing-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.manufacturing-item:hover img {
    transform: scale(1.1);
}

.manufacturing-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: var(--spacing-lg);
    transform: translateY(60%);
    transition: transform var(--transition-base);
}

.manufacturing-item:hover .manufacturing-overlay {
    transform: translateY(0);
}

.manufacturing-overlay h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.manufacturing-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-sm);
}

/* ============================================
   9. DEALER INVITATION
   ============================================ */
.dealer-section {
    background: var(--color-bg-light);
    color: var(--color-text);
    text-align: center;
}

.dealer-content {
    max-width: 800px;
    margin: 0 auto;
}

.dealer-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
}

.dealer-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    margin: var(--spacing-md) auto 0;
}

.dealer-description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.dealer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.benefit-item {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid #e0e0e0;
    transition: all var(--transition-base);
}

.benefit-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.benefit-item i {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

/* ============================================
   10. TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--color-bg-light);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.testimonial-quote {
    font-size: var(--font-size-4xl);
    color: var(--color-accent);
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    opacity: 0.3;
}

.testimonial-text {
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.author-info h5 {
    margin-bottom: 0.25rem;
    color: var(--color-dark);
}

.author-info p {
    margin: 0;
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.market-stat-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.market-stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-bottom: var(--spacing-sm);
}

.market-stat-label {
    color: var(--color-text-light);
    font-size: var(--font-size-base);
}

/* ============================================
   11. ENQUIRY CTA BAND
   ============================================ */
.enquiry-cta-band {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.enquiry-cta-band::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-primary);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

.cta-text h3 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.cta-text p {
    font-size: var(--font-size-lg);
    opacity: 0.95;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
}

/* ============================================
   12. FOOTER
   ============================================ */
.main-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: var(--spacing-3xl);
}

.footer-section {
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.footer-description {
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.footer-title {
    color: var(--color-white);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-contact-item i {
    color: var(--color-accent);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: var(--font-size-sm);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    :root {
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.75rem;
    }

    .hero-slide {
        min-height: 70vh;
    }

    .hero-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .about-stats {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    :root {
        --font-size-5xl: 2rem;
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.5rem;
        --spacing-3xl: 3rem;
        --spacing-2xl: 2rem;
    }

    .section-padding {
        padding: var(--spacing-2xl) 0;
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.75rem 1.5rem;
        font-size: var(--font-size-sm);
    }

    .category-image,
    .product-image {
        height: 200px;
    }

    .manufacturing-item {
        height: 250px;
    }

    .top-header {
        text-align: center;
    }

    .top-header a {
        margin: 0 0.5rem;
    }
}

@media (max-width: 575px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   MODERN FOOTER
   ============================================ */
.modern-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #a0a0a0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.9rem;
}

.footer-bottom-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .footer-heading::after {
        width: 30px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-main {
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        text-align: left;
    }
}

/* ============================================
   PRODUCT CATEGORY PAGE styles
   ============================================ */

.category-hero-bar {
    background-image: url('../images/category-bg.png');
    background-size: cover;
    background-position: 47% 47%;
    background-repeat: no-repeat;
    padding: 4rem 0;
    margin-bottom: 3rem;
    position: relative;
    color: #fff;
    text-align: center;
}

.category-hero-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: 1;
}

.category-hero-bar .container {
    position: relative;
    z-index: 2;
}

.category-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
}

.category-hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
}

.category-hero-bar p.lead {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   CATEGORY FEATURES & CTA
   ============================================ */

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin-bottom: 2rem;
}

/* Feature Box */
.feature-box {
    padding: 2rem;
    border-radius: 12px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(227, 30, 36, 0.1);
    /* Primary color with opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon i {
    color: var(--color-primary);
}

/* Download CTA */
.download-cta {
    position: relative;
    overflow: hidden;
}

/* Related Products Slider */
.related-slider .card-image-box img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    padding: 1rem;
}

.related-slider .product-card-shop {
    margin: 10px;
    border: 1px solid #eee;
    box-shadow: none;
}

.related-slider .product-card-shop:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.related-slider .slick-dots li button:before {
    font-size: 10px;
    color: #ccc;
}

.related-slider .slick-dots li.slick-active button:before {
    color: var(--color-primary);
}

/* Slider Navigation Arrows */
.slick-prev.custom-arrow,
.slick-next.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: #d31414;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--color-dark);
}

.slick-prev.custom-arrow:hover,
.slick-next.custom-arrow:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-hero {
    background: url('../images/contact-bg.png');
    height: 350px;
    position: relative;
}

.contact-hero .contact-overlay {
    background: rgb(0 0 0 / 77%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form .form-control,
.contact-form .form-select {
    font-size: 0.95rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    box-shadow: none;
    background-color: #fff;
    border: 1px solid var(--color-primary) !important;
}

.map-container iframe {
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Sidebar Styling */
.category-sidebar {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 0;
}

.sidebar-title {
    background: #fff;
    padding: 1.25rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    border-bottom: 2px solid #eee;
    margin: 0;
    color: var(--color-dark);
}

.sidebar-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    margin-top: 0.5rem;
}

.category-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.category-nav li a {
    display: block;
    padding: 0.85rem 1.25rem;
    color: #555;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.category-nav li a:hover {
    background: #f9f9f9;
    color: var(--color-primary);
    padding-left: 1.5rem;
}

.category-nav li.active a {
    background: var(--color-primary);
    color: #fff;
    border-left-color: var(--color-primary-dark);
}

/* Product Card Ecommerce Style */
.product-grid-shop {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card-shop {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-shop:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: transparent;
}

.card-image-box {
    position: relative;
    padding: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 260px;
    /* Fixed height for consistent, uniform image sizes */
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensure the image fits inside without cropping or stretching */
    transition: transform 0.5s ease;
    object-position: center;
}

.product-card-shop:hover .card-image-box img {
    transform: scale(1.05);
}

.card-zoom-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
}

/* Removed hover-only visibility rule */

.card-zoom-btn:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

.card-body-shop {
    padding: 1.25rem;
    text-align: center;
    border-top: 1px dashed #ddd;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.product-name-shop {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
    display: block;
}


.btn-enquire-shop {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
    width: auto;
}

.btn-enquire-shop:hover {
    background: var(--color-primary);
    color: #fff;
}

@media (max-width: 991px) {
    .category-sidebar {
        margin-bottom: 2rem;
    }
}

/* ============================================
   LIGHTBOX MODAL STYLES
   ============================================ */
#lightboxModal .modal-dialog {
    max-width: 600px;
    margin: 1.75rem auto;
}

#lightboxModal .modal-content {
    border: none;
    border-radius: var(--radius-lg);
}

#lightboxModal .modal-body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-white);
}

#lightboxModal img#lightboxImage {
    max-height: 65vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 4px;
}

#lightboxModal .btn-close {
    background-color: var(--color-primary);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    opacity: 1;
    border-radius: 50%;
    padding: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    filter: none;
}

#lightboxModal .btn-close:hover {
    opacity: 1;
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: zoomInOut 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* Zoom In/Out Animation */
@keyframes zoomInOut {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 100px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    background: #c41e24;
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(227, 30, 36, 0.5);
}

.scroll-to-top i {
    font-size: 1.5rem;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top i {
        font-size: 1.25rem;
    }
}

/* ============================================
   DEALERS PAGE STYLES
   ============================================ */
.dealer-hero {
    background: url('../images/dealer-bg.png');
    height: 350px;
    position: relative;
}

.dealer-title {
    position: relative;
}

.subtitle-font {
    font-size: 1rem;
}

.dealer-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
}

.dealer-overlay {
    background: rgb(0 0 0 / 77%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.benefit-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    z-index: 1;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-premium);
    opacity: 0;
    z-index: -1;
    transition: all 0.5s ease;
    border-radius: 1.5rem;
    transform: translateY(100%);
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(227, 30, 36, 0.15) !important;
}

.benefit-card:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover h5,
.benefit-card:hover p {
    color: #fff !important;
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.5s ease;
    box-shadow: 0 15px 35px rgba(227, 30, 36, 0.1);
    position: relative;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid rgba(227, 30, 36, 0.1);
    border-radius: 2.25rem;
    transition: all 0.5s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover .benefit-icon::after {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.benefit-card:hover .benefit-icon i {
    color: #fff !important;
    transform: scale(1.1);
}

.benefit-card h5 {
    transition: color 0.4s ease;
}

.benefit-card p {
    font-size: 0.925rem;
    line-height: 1.7;
    transition: color 0.4s ease;
}

.dealer-form .input-group-text {
    min-width: 45px;
    justify-content: center;
    background-color: #f8f9fa;
    border-color: #eee;
}

.dealer-form .form-control,
.dealer-form .form-select {
    padding: 0.8rem 1rem;
    border-color: #eee;
    background-color: #f8f9fa;
}

.dealer-form .form-control:focus,
.dealer-form .form-select:focus {
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
    border-color: var(--color-primary);
    background-color: #fff;
}

.dealer-form .input-group:focus-within .input-group-text {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
}

.dealer-form .input-group:focus-within i {
    color: #fff !important;
}

.dealer-stats {
    background-color: #1a1a1a;
    background-image: radial-gradient(circle at 10% 20%, rgba(227, 30, 36, 0.1) 0%, transparent 20%);
}

.contact-page-title {
    position: relative;
}

.contact-page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
}

/* ============================================
   MANUFACTURING PAGE STYLES
   ============================================ */

.manufacturing-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: url('../../images/sliders/3.png') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.manufacturing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.manufacturing-hero .container {
    padding-top: 60px;
    /* Offset for fixed navbar */
}

/* Process Timeline */
.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #e9ecef;
    transform: translateX(-50%);
    z-index: 0;
    display: none;
    /* Hidden on mobile, shown on desktop if desired, but current layout is alternating rows */
}

@media (min-width: 768px) {
    .process-timeline::before {
        display: block;
    }
}

.process-step {
    position: relative;
    z-index: 1;
}

.process-number {
    line-height: 1;
    margin-bottom: 0;
    display: block;
    color: rgba(227, 30, 36, 0.1);
    /* Primary color with low opacity */
}

.process-content {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.process-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.process-image img {
    transition: transform 0.5s ease;
}

.process-image:hover img {
    transform: scale(1.05);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.02);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-25 {
    opacity: 0.25;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-90 {
    opacity: 0.9;
}

.ls-1 {
    letter-spacing: 1px;
}

.serif-font {
    font-family: 'Playfair Display', serif;
    /* Ensure this font is loaded or fallback */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex-direction: column !important;
        text-align: center !important;
    }

    .process-content {
        text-align: center !important;
        margin-bottom: 2rem;
    }

    .process-number {
        font-size: 4rem;
    }

    .col-md-6.ps-md-5,
    .col-md-6.pe-md-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ============================================
   MANUFACTURING REDESIGN STYLES
   ============================================ */

.process-card-new {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: transparent;
}

.process-card-new .icon-wrapper {
    transition: all 0.3s ease;
}

.process-card-new:hover .icon-wrapper {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    transform: scale(1.1);
}

.ls-2 {
    letter-spacing: 2px;
}

/* ============================================
   MANUFACTURING REFINEMENT STYLES
   ============================================ */

/* Sustainability Card */
.card-sustainability {
    background: linear-gradient(145deg, #f0fdf4 0%, #ffffff 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.05);
    transition: all var(--transition-base);
}

.card-sustainability:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
}

/* Founder Card */
.card-founder {
    background: linear-gradient(145deg, #1a1a1a 0%, #2c2c2c 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
}

.card-founder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
    /* Gold border hint */
}

/* ============================================
   STATS SECTION STYLES
   ============================================ */
.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .border-end {
        border-right: none !important;
    }
}

.hover-opacity-100:hover {
    opacity: 1 !important;
}

.transition-all {
    transition: all 0.3s ease;
}

/* ============================================
   MANUFACTURING STATS FIX
   ============================================ */
.manuf-stat {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    transition: transform 0.3s ease;
}

.manuf-stat:hover {
    transform: translateY(-5px);
}

.manuf-stat h2 {
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ============================================
   PREMIUM STATS SECTION POLISH
   ============================================ */
.glass-panel {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.text-gradient-gold {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cert-badge {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.cert-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .glass-panel {
        padding: 2rem 1rem !important;
    }

    .display-3 {
        font-size: 2.5rem;
    }
}

/* Custom Utilities for About Page */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
}

.blur-3xl {
    filter: blur(64px);
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

.ls-n1 {
    letter-spacing: -1px;
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-25 {
    opacity: 0.25;
}

/* Decorative Background Elements */
.bg-blob-wrapper {
    pointer-events: none;
    z-index: 0;
}

.bg-blob-1 {
    width: 600px;
    height: 600px;
    transform: translate(30%, -30%);
    filter: blur(80px);
}

.bg-blob-2 {
    width: 500px;
    height: 500px;
    transform: translate(-30%, 30%);
    filter: blur(80px);
}

/* =============================================
   Enquiry Modal (category_listing)
   ============================================= */

/* Modal shell */
.enq-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Header */
.enq-modal-header {
    background: linear-gradient(135deg, #e31e24, #a01018);
}

.enq-header-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
}

.enq-modal-title {
    color: #fff;
    font-size: 1.1rem;
}

.enq-header-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
}

/* Labels */
.enq-label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1919;
}

/* Product chip */
.enq-product-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fff5f5;
    border: 1.5px solid #fecaca;
    border-radius: 12px;
}

.enq-product-icon {
    color: #e31e24;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.enq-product-input {
    border: none;
    background: transparent;
    font-weight: 600;
    color: #111827;
    font-size: 0.88rem;
    width: 100%;
    outline: none;
    font-family: inherit;
}

/* Form inputs */
.enq-input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.86rem;
    color: #111827;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
    resize: none;
    display: block;
    font-family: inherit;
}

input.enq-input {
    padding-top: 7px;
    padding-bottom: 7px;
}

.enq-input::placeholder {
    color: #9ca3af;
    font-size: 0.82rem;
}

.enq-input:focus {
    border-color: #e31e24;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.08);
}

/* Submit button — small & centered */
.enq-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 28px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #e31e24, #a01018);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 14px rgba(227, 30, 36, 0.3);
}

.enq-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.enq-submit-btn:active {
    transform: translateY(0);
}

/* Trust note */
.enq-trust-note {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* CAPTCHA */
.enq-captcha-question {
    color: #e31e24;
    font-weight: 700;
    font-size: 0.82rem;
}

.enq-captcha-input {
    max-width: 120px;
    flex-shrink: 0;
}

.enq-captcha-refresh {
    width: 36px;
    height: 36px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.18s, color 0.18s, background 0.18s;
    padding: 0;
}

.enq-captcha-refresh:hover {
    border-color: #e31e24;
    color: #e31e24;
    background: #fff5f5;
}

/* Inline field error messages */
.enq-err {
    display: none;
    color: #dc2626;
    font-size: 0.75rem;
    margin-top: 4px;
    font-weight: 500;
}

/* =============================================
   ENQUIRY BOOKING PAGE (enquiry.php)
   ============================================= */

/* Info cards (left sidebar) */
.enq-pg-info-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.enq-pg-info-header {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    color: #fff;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.enq-pg-info-body {
    padding: 20px;
}

.enq-pg-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enq-pg-feature-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.enq-pg-feature-list li:last-child {
    border-bottom: none;
}

/* Contact items */
.enq-pg-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.enq-pg-contact-item.mb-0 {
    border-bottom: none;
}

.enq-pg-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(227, 30, 36, 0.1);
    color: #e31e24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.enq-pg-contact-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    margin-bottom: 2px;
}

.enq-pg-contact-val {
    font-size: 0.92rem;
    font-weight: 600;
    color: #111827;
}

/* Form card (right) */
.enq-pg-form-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.enq-pg-form-header {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    padding: 24px 32px;
}

.enq-pg-form-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.enq-pg-form-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.enq-pg-form-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
}

.enq-pg-form-body {
    padding: 28px 32px 32px;
}

/* Labels */
.enq-pg-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #374151;
}

/* Product chip */
.enq-pg-product-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fff5f5;
    border: 1.5px solid #fecaca;
    border-radius: 12px;
}

.enq-pg-product-input {
    border: none;
    background: transparent;
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
    width: 100%;
    outline: none;
    font-family: inherit;
}

.enq-pg-product-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

/* Form inputs */
.enq-pg-input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 0.9rem;
    color: #111827;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
    resize: none;
    display: block;
    font-family: inherit;
}

.enq-pg-input:focus {
    border-color: #e31e24;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.08);
}

.enq-pg-input::placeholder {
    color: #9ca3af;
    font-size: 0.87rem;
}

/* Captcha row */

.enq-pg-captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 16px;
    flex-wrap: wrap;
}

.enq-pg-captcha-label {
    font-size: 0.85rem;
    color: #6b7280;
}

.enq-pg-captcha-q {
    font-size: 1.1rem;
}

.enq-pg-captcha-input {
    width: 90px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.9rem;
    background: #fff;
    outline: none;
    text-align: center;
    transition: border-color 0.18s;
}

.enq-pg-captcha-input:focus {
    border-color: #e31e24;
}

/* Submit button */
.enq-pg-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 36px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #e31e24, #a01018);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 14px rgba(227, 30, 36, 0.3);
    white-space: nowrap;
}

.enq-pg-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.4);
}

.enq-pg-submit-btn:active {
    transform: translateY(0);
}

/* Inline field errors */
.enq-pg-err {
    display: none;
    color: #dc2626;
    font-size: 0.77rem;
    margin-top: 5px;
    font-weight: 500;
}

/* =============================================
   THANK-YOU PAGE (enquiry_thankyou.php)
   ============================================= */

.enq-ty-hero {
    background: linear-gradient(135deg, #1a0202 0%, #e31e24 50%, #a01018 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.enq-ty-hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
}

.enq-ty-icon-wrap {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: #fff;
}

.enq-ty-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 12px;
}

.enq-ty-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto;
}

/* Cards */
.enq-ty-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
}

.enq-ty-card-header {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    color: #fff;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 0.95rem;
}

.enq-ty-card-body {
    padding: 20px 24px;
}

/* Summary rows */
.enq-ty-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.enq-ty-row:last-child {
    border-bottom: none;
}

.enq-ty-row-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(227, 30, 36, 0.1);
    color: #e31e24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.enq-ty-row-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    margin-bottom: 2px;
}

.enq-ty-row-val {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    word-break: break-word;
}

/* Steps */
.enq-ty-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
}

.enq-ty-step.mb-0 {
    border-bottom: none;
}

.enq-ty-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e31e24, #a01018);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Action buttons */
.enq-ty-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enq-ty-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.enq-ty-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.enq-ty-btn-home {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    background: #111827;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.15s;
}

.enq-ty-btn-home:hover {
    background: #1f2937;
    color: #fff;
}

.enq-ty-btn-another {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}

.enq-ty-btn-another:hover {
    border-color: #e31e24;
    color: #e31e24;
}

/* Proforma Invoice Footer Button */
.footer-proforma-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #E31E24 0%, #B01419 100%);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
    transition: all 0.3s ease;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-proforma-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
    background: linear-gradient(135deg, #FF3B40 0%, #E31E24 100%);
    color: #ffffff !important;
}

.footer-proforma-cta i {
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.footer-proforma-cta:hover i {
    transform: rotate(15deg);
}

@media (max-width: 768px) {
    .footer-proforma-cta {
        width: 100%;
        justify-content: center;
    }
}