/* 
  █████╗  █████╗ ██╗   ██╗██╗   ██╗███████╗██╗  ██╗
 ██╔══██╗██╔══██╗╚██╗ ██╔╝██║   ██║██╔════╝██║  ██║
 ███████║███████║ ╚████╔╝ ██║   ██║███████╗███████║
 ██╔══██║██╔══██║  ╚██╔╝  ██║   ██║╚════██║██╔══██║
 ██║  ██║██║  ██║   ██║   ╚██████╔╝███████║██║  ██║
 ╚═╝  ╚═╝╚═╝  ╚═╝   ╚═╝    ╚═════╝ ╚══════╝╚═╝  ╚═╝
                                                   
 ██████╗  █████╗ ██████╗ ███████╗██╗  ██╗██╗  ██╗  
 ██╔══██╗██╔══██╗██╔══██╗██╔════╝██║ ██╔╝██║  ██║  
 ██████╔╝███████║██████╔╝█████╗  █████╔╝ ███████║  
 ██╔═══╝ ██╔══██║██╔══██╗██╔══╝  ██╔═██╗ ██╔══██║  
 ██║     ██║  ██║██║  ██║███████╗██║  ██╗██║  ██║  
 ╚═╝     ╚═╝  ╚═╝╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═╝  ╚═╝  

  ==========================================================================
  ✨ WEBSITE DESIGNED & DEVELOPED BY AAYUSH PAREKH ✨
  ==========================================================================
  🌐 Portfolio : https://aayushparekhportfolio.vercel.app/
  🐙 GitHub    : https://github.com/aayushparekh27
  💼 LinkedIn  : https://www.linkedin.com/in/aayushparekh26
  📧 Email     : aayushparekh26@gmail.com
  🚀 Need a Website? Contact me through my portfolio or email!
  ==========================================================================
*/
/* style.css - Professional Corporate Theme with specified colors */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-body: 'Manrope', 'Segoe UI', sans-serif;
    --font-heading: 'Sora', 'Segoe UI', sans-serif;
    --font-size-body: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
    --font-size-h1: clamp(2rem, 1.45rem + 2.25vw, 3.5rem);
    --font-size-h2: clamp(1.55rem, 1.2rem + 1.35vw, 2.45rem);
    --font-size-h3: clamp(1.15rem, 1.05rem + 0.5vw, 1.45rem);
    
    /* Color Palette - Corporate Blue Primary + Emerald Accent */
    --color-primary: #2563EB;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #dbeafe;
    --color-accent: #10B981;
    --color-accent-light: #d1fae5;
    --color-text-primary: #0F172A;
    --color-text-secondary: #475569;
    --color-text-muted: #64748b;
    --color-bg-light: #F8FAFC;
    --color-border: #e2e8f0;
    
    /* Spacing Scale (8px base) */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 24px;
    --spacing-2xl: 32px;
    --spacing-3xl: 48px;
    --spacing-4xl: 64px;
    --spacing-section: 80px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-2xl: 28px;
    --radius-full: 999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-smooth: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    background:
        radial-gradient(circle at 12% 0%, #e0ecff 0%, rgba(224,236,255,0) 32%),
        radial-gradient(circle at 88% 12%, #e8f2ff 0%, rgba(232,242,255,0) 28%),
        var(--color-bg-light);
    color: var(--color-text-primary);
    scroll-behavior: smooth;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 80ms; }
.delay-200 { transition-delay: 160ms; }
.delay-300 { transition-delay: 240ms; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 3px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-2xl);
}

/* Typography */
h1, h2, h3, h4, .logo-text, .nav-links a, .btn {
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

section {
    padding: var(--spacing-section) 0;
    border-bottom: 1px solid var(--color-border);
}

.section-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    max-width: 680px;
    margin: 0 auto var(--spacing-3xl);
    font-size: clamp(0.95rem, 0.92rem + 0.3vw, 1.1rem);
    line-height: 1.7;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.32), 0 0 0 0 rgba(37, 99, 235, 0.15);
    position: relative;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease-in-out;
}

.btn-primary:hover::after {
    left: 200%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 35px rgba(37, 99, 235, 0.42), 0 0 25px rgba(37, 99, 235, 0.25);
    background: linear-gradient(135deg, #1e5cdc 0%, #1540c4 100%);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--color-primary);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.btn-outline:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    padding: var(--spacing-lg) 0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transition: padding var(--transition-fast), background-color var(--transition-fast);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-text h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.logo-text span {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: var(--color-text-primary);
    transition: color var(--transition-fast), background-color var(--transition-fast);
    font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
}

.nav-links a:not(.quote-btn-nav):hover, 
.nav-links a:not(.quote-btn-nav).active {
    color: var(--color-primary);
}

.quote-btn-nav {
    padding: var(--spacing-sm) var(--spacing-lg) !important;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-primary);
    background: transparent;
    border: none;
    transition: color var(--transition-fast), transform var(--transition-base);
}

.mobile-menu-btn:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(105deg, var(--color-bg-light) 0%, #ffffff 100%);
    padding: var(--spacing-section) 0 calc(var(--spacing-section) - 10px);
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--color-primary-light);
    padding: var(--spacing-xs) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xl);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: var(--font-size-h1);
    font-weight: 800;
    line-height: 1.25;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: clamp(0.98rem, 0.94rem + 0.4vw, 1.15rem);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-2xl);
    max-width: 500px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background: var(--color-primary-light);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 20px 40px -12px rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(219, 234, 254, 0.8);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -12px rgba(37, 99, 235, 0.22);
}

.hero-photo,
.hero-video {
    width: 100%;
    max-height: min(62vh, 520px);
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    object-fit: contain;
    object-position: center;
    display: block;
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.16);
    background: var(--color-text-primary);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero-image:hover .hero-photo,
.hero-image:hover .hero-video {
    transform: scale(1.02);
    box-shadow: 0 20px 44px rgba(37, 99, 235, 0.22);
}

.hero-image i,
.hero-fallback {
    font-size: 10rem;
    color: var(--color-primary);
    opacity: 0.8;
}

.hero-fallback {
    display: none;
}

.hero-image-note {
    margin-top: var(--spacing-lg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* Marquee / Clients Section */
.client-marquee-container {
    background: #0f172a;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-title {
    text-align: center;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-2xl);
}

.marquee-track span {
    transition: color var(--transition-fast), transform var(--transition-base);
}

.marquee-track span:hover {
    color: var(--color-primary-light);
    transform: scale(1.05);
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 48px;
    flex-shrink: 0;
    min-width: 100%;
    animation: scroll-x 25s linear infinite;
    will-change: transform;
}

.marquee-track span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    font-size: 1.15rem;
    font-weight: 600;
    white-space: nowrap;
}

.marquee-track span i {
    color: #3b82f6;
    font-size: 1.4rem;
}

@keyframes scroll-x {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 24px));
    }
}

/* Services Cards */
.services-slider-wrapper {
    position: relative;
    padding: 0 48px;
    margin: 40px auto 0;
    max-width: 1200px;
}

.services-slider-viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding: 8px; /* Alignment sync with padding */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 16px 8px;
}

.services-slider-viewport::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.services-slider-track {
    display: flex;
    gap: 24px;
}

.services-slider-track .service-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    box-sizing: border-box;
    height: auto;
}

.services-slider-track .service-card p {
    flex-grow: 1; /* Stretch paragraphs so cards have perfectly uniform heights */
}

/* Adjust card width for tablet & mobile */
@media (max-width: 992px) {
    .services-slider-track .service-card {
        flex: 0 0 calc(50% - 12px);
    }
    .services-slider-wrapper {
        padding: 0 32px;
    }
}

@media (max-width: 640px) {
    .services-slider-track .service-card {
        flex: 0 0 100%;
    }
    .services-slider-wrapper {
        padding: 0 12px;
    }
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl) var(--spacing-xl);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), background-color var(--transition-fast);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #60a5fa);
    transform: scaleX(0.2);
    transform-origin: left;
    opacity: 0.7;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary-light);
    box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.3);
    background: rgba(219, 234, 254, 0.25);
}

.service-card:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    transition: transform var(--transition-base), color var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.15);
}

.service-card h3 {
    font-size: var(--font-size-h3);
    font-weight: 700;
    margin: 0;
    color: var(--color-text-primary);
    transition: color var(--transition-fast);
    line-height: 1.4;
}

.service-card:hover h3 {
    color: var(--color-primary);
}

.service-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* Machines Section */
.machines-section {
    background: #F8FAFC;
}

.machines-slider-wrapper {
    position: relative;
    padding: 0 48px;
    margin: 40px auto 0;
    max-width: 1200px;
}

.machines-slider-viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding: 8px; /* Alignment sync with padding */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 16px 8px;
}

.machines-slider-viewport::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.machines-slider-track {
    display: flex;
    gap: 24px;
}

.machines-slider-track .machine-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    height: auto;
}

.machines-slider-track .machine-card:hover {
    transform: translateY(-6px);
    border-color: #bfdbfe;
    box-shadow: 0 20px 32px -16px rgba(37,99,235,0.25);
}

.machine-img {
    background: #eef2ff;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.machine-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.machine-img i {
    font-size: 4.2rem;
    color: #2563EB;
}

.machine-img-fallback {
    display: none;
    transition: transform 0.35s ease;
}

.machines-slider-track .machine-card:hover .machine-img img,
.machines-slider-track .machine-card:hover .machine-img-fallback {
    transform: scale(1.04);
}

.machines-slider-track .machine-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 18px 20px 8px;
    color: #1E293B;
}

.machines-slider-track .machine-card p {
    margin: 0 20px 20px;
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.5;
    flex-grow: 1; /* Make paragraphs grow to push contents and make heights perfectly uniform */
}

/* Slider buttons and dots */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-btn:hover {
    background: #2563EB;
    color: #ffffff;
    border-color: #2563EB;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    transform: translateY(-50%) scale(1.05);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn.prev-btn {
    left: 0;
}

.slider-btn.next-btn {
    right: 0;
}

.slider-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    padding: 0;
    outline: none;
}

.slider-dot:hover {
    background: #94a3b8;
}

.slider-dot.active {
    background: #2563EB;
    width: 24px;
    border-radius: 4px;
}

/* Adjust card width for tablet & mobile */
@media (max-width: 992px) {
    .machines-slider-track .machine-card {
        flex: 0 0 calc(50% - 12px);
    }
    .machines-slider-wrapper {
        padding: 0 32px;
    }
}

@media (max-width: 640px) {
    .machines-slider-track .machine-card {
        flex: 0 0 100%;
    }
    .machines-slider-wrapper {
        padding: 0 12px;
    }
    .slider-btn {
        display: none; /* Hide navigation arrows on small mobile devices to give clean swipable layout */
    }
}


/* About Section */
.about-wrapper {
    display: flex;
    gap: var(--spacing-3xl);
    align-items: center;
    flex-wrap: wrap;
}

.about-content {
    flex: 1.2;
}

.about-content h3 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-primary);
    line-height: 1.3;
}

.about-content p {
    color: var(--color-text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.about-list {
    list-style: none;
    margin: var(--spacing-xl) 0;
}

.about-list li {
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-weight: 500;
    color: var(--color-text-primary);
    transition: transform var(--transition-base);
    line-height: 1.6;
}

.about-list li:hover {
    transform: translateX(4px);
}

.about-list li i {
    color: var(--color-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-image {
    flex: 1;
    background: var(--color-primary-light);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid rgba(219, 234, 254, 0.8);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.3);
}

.about-media {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #dbe5f1;
    background: var(--color-bg-light);
    min-height: 260px;
    aspect-ratio: 4 / 3;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-photo-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background: var(--color-primary-light);
}

.about-photo-fallback i {
    font-size: 4rem;
}

.about-image-title {
    font-weight: 700;
    margin-top: var(--spacing-md);
    color: var(--color-text-primary);
}

.about-image-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* Gallery Section */
.gallery-section {
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.gallery-category-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.gallery-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.gallery-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E293B;
}

.gallery-category-count {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2563EB;
    background: #eff6ff;
    padding: 6px 12px;
    border-radius: 999px;
}

.gallery-category-grid {
    gap: 22px;
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.gallery-slide {
    min-width: 100%;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.8);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
    transition: background-color var(--transition-base), transform var(--transition-base);
}

.gallery-arrow:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.gallery-arrow-prev {
    left: 12px;
}

.gallery-arrow-next {
    right: 12px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: width var(--transition-base), background-color var(--transition-base);
}

.gallery-dot.active {
    width: 28px;
    background: var(--color-primary);
}

.gallery-dot:hover {
    background: var(--color-primary-light);
}

.hidden {
    display: none !important;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary-light);
    box-shadow: 0 16px 32px -10px rgba(37, 99, 235, 0.25);
}

.gallery-img {
    height: 240px;
    aspect-ratio: 4 / 3;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
    overflow: hidden;
}

.gallery-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    z-index: 2;
    background: rgba(15, 23, 42, 0.88);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
    transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-badge {
    transform: scale(1.05);
}

.gallery-img i {
    font-size: 3.8rem;
    color: var(--color-primary);
}

.gallery-img img {
        width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.05);
}

.gallery-label {
    padding: var(--spacing-lg);
    font-weight: 700;
    color: var(--color-text-primary);
    background: white;
    text-align: center;
    line-height: 1.5;
    font-size: 0.95rem;
    transition: background-color var(--transition-fast);
}

.gallery-item:hover .gallery-label {
    background: var(--color-primary-light);
}

/* Products Section */
.products-note {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    background: var(--color-primary-light);
    border: 1px solid rgba(219, 234, 254, 0.9);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    transition: background-color var(--transition-base), border-color var(--transition-base);
}

.products-note:hover {
    background: rgba(219, 234, 254, 0.5);
    border-color: var(--color-primary-light);
}

.products-note i {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-top: var(--spacing-xs);
    flex-shrink: 0;
}

.products-note h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

.products-note p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

#productsGrid {
    max-width: 1280px;
    margin: 0 auto;
    row-gap: 22px;
}

.products-actions {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.products-view-more {
    min-width: 220px;
    justify-content: center;
}

.products-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 4px auto 28px;
}

.products-intro span {
    background: #eff6ff;
    color: #1e3a8a;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.products-intro i {
    color: #2563EB;
}

.product-category-block {
    grid-column: 1 / -1;
    margin-top: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #d5e2f2;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.product-category-block > .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 420px));
    justify-content: space-between;
}

.product-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0 0 16px;
}

.product-category-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1E293B;
}

.product-category-count {
    font-size: 0.78rem;
    font-weight: 700;
    color: #2563EB;
    background: #eff6ff;
    padding: 6px 12px;
    border-radius: 999px;
}

.product-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), background-color var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
    min-height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary-light);
    box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.3);
    background: rgba(219, 234, 254, 0.15);
}

.product-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #dbe5f1;
    background:
        linear-gradient(145deg, #f7fbff 0%, #edf4ff 100%);
    min-height: 200px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dbeafe;
    color: #2563EB;
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.product-card h3 i {
    color: var(--color-primary);
    background: var(--color-primary-light);
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-top: 2px;
    transition: transform var(--transition-base);
}

.product-card:hover h3 i {
    transform: scale(1.1);
}

.product-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

#products .section-subtitle {
    max-width: 760px;
    background: linear-gradient(90deg, #f8fbff 0%, #eef5ff 100%);
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 12px 18px;
}

/* Contact Section */
.contact-section {
    background: var(--color-bg-light);
    scroll-margin-top: 92px;
}

.contact-grid {
    display: flex;
    gap: var(--spacing-3xl);
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(219, 234, 254, 0.9);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    position: relative;
    z-index: 1;
}

.contact-detail:hover {
    transform: translateY(-3px);
    border-color: var(--color-primary-light);
    box-shadow: 0 12px 24px -12px rgba(37, 99, 235, 0.35);
    background: rgba(219, 234, 254, 0.1);
}

.contact-detail i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #eff6ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    color: var(--color-primary);
    font-size: 1.2rem;
    border: 1.5px solid rgba(219, 234, 254, 0.9);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.contact-detail:hover i {
    transform: scale(1.1);
}

.contact-detail p {
    min-width: 0;
    overflow-wrap: anywhere;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.contact-detail p strong {
    display: block;
    color: var(--color-text-primary);
    font-weight: 700;
}

.contact-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast), text-decoration var(--transition-base);
    font-weight: 500;
    overflow-wrap: anywhere;
}

.contact-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.contact-hours {
    margin-top: var(--spacing-md);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #e2e8f0;
    border: 1.5px solid rgba(148, 163, 184, 0.3);
    border-radius: var(--radius-full);
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px -8px rgba(15, 23, 42, 0.4);
    position: relative;
    z-index: 1;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.contact-hours:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.5);
}

.contact-hours i {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.25);
    color: #93c5fd;
    font-size: 0.85rem;
}

.contact-form {
    flex: 1.2;
    min-width: 0;
    background: #ffffff;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: #ffffff;
    transition: border-color var(--transition-fast), box-shadow var(--transition-base), background-color var(--transition-fast);
    line-height: 1.5;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: rgba(219, 234, 254, 0.05);
}

.form-note {
    font-size: 0.7rem;
    text-align: center;
    margin-top: 14px;
    color: #475569;
}

.form-status {
    margin-top: 10px;
    font-size: 0.78rem;
    text-align: center;
    min-height: 18px;
}

.form-status.success {
    color: #16a34a;
}

.form-status.error {
    color: #dc2626;
}

.form-status.warning {
    color: #d97706;
}

/* Footer */
.footer {
    background: #1E293B;
    color: #cbd5e1;
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.footer-brand-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-brand h3 span {
    display: block;
    margin-top: 4px;
    color: #60a5fa;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-left: 52px;
    max-width: 280px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
    transition: color var(--transition-fast), padding-left var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-primary-light);
    padding-left: var(--spacing-md);
}

.footer-map h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-map-frame {
    border: 1px solid #334155;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}

.footer-map-frame iframe {
    display: block;
    width: 100%;
    height: 180px;
    border: 0;
}

/* Footer Map Preview */
.footer-map-preview {
    position: relative;
    border: 1px solid #334155;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 12px 26px rgba(0,0,0,0.22);
    cursor: pointer;
}

.footer-map-preview iframe {
    display: block;
    width: 100%;
    height: 180px;
    border: 0;
    pointer-events: none; /* Prevents scroll zoom interference on the footer */
}

@media (max-width: 768px) {
    .footer-map-preview iframe {
        height: 210px;
    }
}

@media (max-width: 480px) {
    .footer-map-preview iframe {
        height: 190px;
    }
}

.map-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.map-preview-overlay span {
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-map-preview:hover .map-preview-overlay {
    background: rgba(15, 23, 42, 0.6);
}

.footer-map-preview:hover .map-preview-overlay span {
    transform: scale(1.05);
    background: var(--color-primary-dark);
}

/* Map Modal Styles */
.map-modal-dialog {
    max-width: 700px;
    background: #0f172a;
    border: 1px solid #334155;
    color: white;
}

.map-modal-dialog h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    border: none;
    background: none;
    font-size: 2.2rem;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.map-modal-close:hover {
    color: white;
}

.map-modal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.map-modal-tab-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #94a3b8;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.map-modal-tab-btn:hover {
    background: #334155;
    color: white;
}

.map-modal-tab-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.map-modal-frame-container {
    border: 1px solid #334155;
    border-radius: 12px;
    overflow: hidden;
    background: #090d16;
    margin-bottom: 16px;
    height: 380px;
}

@media (max-width: 576px) {
    .map-modal-frame-container {
        height: 280px;
    }
}

.map-modal-frame {
    display: none;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-modal-frame.active {
    display: block;
}

.map-modal-actions {
    display: flex;
    gap: 12px;
}

@media (max-width: 576px) {
    .map-modal-actions {
        flex-direction: column;
        gap: 8px;
    }
}

.map-modal-action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.map-modal-action-btn:hover {
    transform: translateY(-2px);
}

.map-modal-action-btn.directions-btn {
    background: #2563EB;
    border-color: #2563EB;
}

.map-modal-action-btn.directions-btn:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.map-modal-action-btn.street-view-btn {
    background: #10B981;
    border-color: #10B981;
}

.map-modal-action-btn.street-view-btn:hover {
    background: #059669;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #334155;
    font-size: 0.75rem;
}

.admin-footer-link {
    color: #93c5fd;
    text-decoration: none;
    margin-left: 6px;
    font-weight: 600;
}

.admin-footer-link:hover {
    color: #dbeafe;
    text-decoration: underline;
}

.thanks-popup {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1600;
    padding: var(--spacing-lg);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.thanks-popup.active {
    display: flex;
    animation: popupSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thanks-popup-card {
    width: min(100%, 420px);
    background: #ffffff;
    border: 1px solid var(--color-primary-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.25);
    padding: var(--spacing-2xl) var(--spacing-xl);
    text-align: center;
    position: relative;
}

.thanks-popup-card i {
    font-size: 2.6rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
}

.thanks-popup-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
    font-weight: 700;
}

.thanks-popup-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.thanks-popup-close {
    position: absolute;
    right: var(--spacing-lg);
    top: var(--spacing-lg);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--radius-full);
    background: #f1f5f9;
    color: #334155;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background-color var(--transition-base), transform var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-popup-close:hover {
    background: #e2e8f0;
    transform: rotate(90deg) scale(1.1);
}

.whatsapp-float {
    position: fixed;
    right: var(--spacing-lg);
    bottom: var(--spacing-lg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    z-index: 200;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-fast);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.08);
    background: #059669;
    box-shadow: 0 14px 32px rgba(16, 185, 129, 0.45);
}

.whatsapp-float:active {
    transform: translateY(-2px) scale(0.95);
}

.whatsapp-float i {
    line-height: 1;
}

/* Empty State Message */
.empty-state-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-4xl) var(--spacing-xl);
    background: var(--color-bg-light);
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-lg);
    color: var(--color-text-muted);
    font-size: 1.15rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    transition: border-color var(--transition-base), background-color var(--transition-base);
}

.empty-state-message:hover {
    border-color: var(--color-primary-light);
    background: rgba(219, 234, 254, 0.15);
}

.empty-state-message i {
    font-size: 3.2rem;
    color: #94a3b8;
    opacity: 0.7;
    transition: color var(--transition-base);
}

.empty-state-message:hover i {
    color: var(--color-primary);
    opacity: 1;
}

/* Logo Image Styles */
.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
    
    .hero-content h1 {
        font-size: clamp(1.95rem, 1.55rem + 1.8vw, 2.4rem);
    }
    
    .nav-container {
        position: relative;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        width: min(86vw, 340px);
        background: #ffffff;
        padding: var(--spacing-lg);
        border-radius: var(--radius-xl);
        gap: var(--spacing-md);
        border: 1px solid rgba(226, 232, 240, 0.9);
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
        position: fixed;
        top: 86px;
        right: var(--spacing-lg);
        max-height: calc(100vh - 104px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1055;
        transform: translateX(115%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), opacity var(--transition-fast), visibility var(--transition-fast);
    }
    
    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section-title {
        font-size: clamp(1.35rem, 1.15rem + 1vw, 1.9rem);
    }
    
    .about-wrapper {
        flex-direction: column;
    }
    
    section {
        padding: 60px 0;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .logo-text h2 {
        font-size: 0.95rem;
    }
    
    .logo-text span {
        font-size: 0.6rem;
    }

    .footer-logo {
        width: 34px;
        height: 34px;
    }
    
    .contact-grid {
        flex-direction: column;
        gap: var(--spacing-2xl);
    }
}

body.nav-open {
    overflow: hidden;
}

body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5); /* slightly darker since blur is gone */
    z-index: 999;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cbd5e1;
    transition: color var(--transition-fast);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: var(--color-text-muted);
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .hero-grid,
    .about-wrapper,
    .contact-grid {
        gap: 32px;
    }

    .contact-grid {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(2.1rem, 1.75rem + 1.8vw, 2.75rem);
    }

    .hero-video {
        max-height: min(52vh, 420px);
    }

    .hero-image i {
        font-size: 7.2rem;
    }

    .services-slider-track,
    .machines-slider-track,
    .gallery-grid {
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .hero-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .hero-image {
        order: -1;
        width: 100%;
    }

    .hero-content {
        width: 100%;
    }

    .nav-links {
        width: min(88vw, 320px);
        top: 78px;
        right: 14px;
        padding: 14px;
        gap: 8px;
        border-radius: 20px;
    }

    .nav-links a {
        width: 100%;
        padding: 10px 14px;
        border-radius: 10px;
        background: rgba(248, 250, 252, 0.6);
    }

    .nav-links .quote-btn-nav {
        width: 100%;
        background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
    }

    .navbar {
        padding: 12px 0;
    }

    .hero {
        padding: 56px 0 52px;
    }

    .hero-content h1 {
        font-size: clamp(1.65rem, 1.4rem + 1.1vw, 1.95rem);
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-image {
        padding: 14px;
        border-radius: 18px;
    }

    .hero-video {
        width: 100%;
        max-height: none;
        aspect-ratio: 16 / 9;
        border-radius: 14px;
    }

    .hero-image i {
        font-size: 5rem;
    }

    .service-card,
    .machine-card,
    .contact-info,
    .contact-form,
    .about-image,
    .product-card {
        border-radius: 16px;
    }

    .gallery-category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-category-title {
        font-size: 1.05rem;
    }

    .gallery-arrow {
        width: 36px;
        height: 36px;
    }

    .gallery-arrow-prev {
        left: 8px;
    }

    .gallery-arrow-next {
        right: 8px;
    }

    .service-card {
        padding: 24px 18px;
    }

    .machine-img,
    .gallery-img {
        height: 180px;
    }

    .about-media {
        min-height: 210px;
        border-radius: 14px;
    }

    .products-note {
        padding: 18px;
        border-radius: 18px;
    }

    .products-intro {
        justify-content: flex-start;
        margin: 2px 0 20px;
    }

    #products .section-subtitle {
        padding: 10px 12px;
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .product-category-block {
        border-radius: 18px;
        padding: 14px;
    }

    .product-category-block > .products-grid {
        grid-template-columns: 1fr;
    }

    #productsGrid {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .product-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .products-note,
    .product-card {
        border-radius: 18px;
    }

    .product-image {
        min-height: 190px;
    }

    .product-card h3 {
        font-size: clamp(0.98rem, 0.9rem + 0.55vw, 1.08rem);
    }

    .product-card p {
        font-size: 0.86rem;
    }

    .contact-detail {
        align-items: flex-start;
        margin-bottom: 12px;
        padding: 11px;
    }

    .contact-detail i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-hours {
        width: 100%;
        justify-content: center;
        font-size: 0.82rem;
        padding: 10px 12px;
    }

    .contact-info,
    .contact-form {
        padding: 20px 16px;
    }

    .contact-section {
        padding-bottom: 96px;
    }

    .contact-form .form-group {
        margin-bottom: 14px;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        font-size: 16px;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-brand-head {
        align-items: flex-start;
    }

    .footer-brand p {
        margin-left: 0;
        max-width: none;
    }

    .footer-map-frame iframe {
        height: 210px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 10px;
        bottom: 14px;
        font-size: 1.65rem;
    }
}

@media (max-width: 480px) {
    .quote-btn-nav {
        padding: 7px 14px !important;
        font-size: 0.82rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .btn-primary {
        padding: 10px 14px !important;
        font-size: 0.88rem;
        gap: 7px;
        white-space: nowrap;
        min-width: 0;
        max-width: 100%;
    }

    .container {
        padding: 0 14px;
    }

    .nav-links {
        left: 14px;
        right: 14px;
        padding: 14px;
        gap: 8px;
    }

    .contact-info,
    .contact-form {
        padding: 16px 12px;
    }
}

@media (max-width: 420px) {
    .logo {
        gap: 8px;
    }

    .logo-img {
        height: 34px;
    }

    .logo-text h2 {
        font-size: 0.78rem;
    }

    .logo-text span {
        font-size: 0.52rem;
        letter-spacing: 0.6px;
    }

    .section-title {
        font-size: clamp(1.18rem, 1.04rem + 0.8vw, 1.45rem);
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }

    .footer-map-frame iframe {
        height: 190px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .btn-primary {
        padding: 10px 16px !important;
        font-size: 0.9rem;
        gap: 8px;
        white-space: nowrap;
    }

    .contact-info,
    .contact-form {
        padding: 16px 14px;
    }

    .contact-detail {
        gap: 10px;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: min(90vw, 300px);
        top: 74px;
        right: 12px;
    }
}

/* Design Refresh Overrides */
:root {
    --surface-soft: #f8fbff;
    --surface-card: #ffffff;
    --border-soft: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --shadow-soft: 0 4px 12px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.01);
    --shadow-lift: 0 12px 28px rgba(37, 99, 235, 0.08), 0 4px 8px rgba(37, 99, 235, 0.03);
}

section {
    padding: clamp(62px, 7vw, 90px) 0;
}

.section-title {
    max-width: 24ch;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    max-width: 72ch;
    margin-bottom: clamp(30px, 5vw, 48px);
    font-weight: 500;
    line-height: 1.7;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-links {
    gap: 1.5rem;
}

.nav-links a {
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 550;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav-links a:not(.quote-btn-nav):hover {
    color: var(--color-primary);
    background-color: rgba(37, 99, 235, 0.04);
}

.hero {
    padding-top: clamp(60px, 8vw, 96px);
    padding-bottom: clamp(56px, 7vw, 84px);
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05), transparent 40%), var(--color-bg-light);
}

.hero-badge {
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
    border: 1px solid rgba(37, 99, 235, 0.12);
    font-weight: 600;
    border-radius: 6px;
    padding: 6px 12px;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--color-text-primary);
}

.hero-content p {
    max-width: 58ch;
    line-height: 1.75;
}

.hero-image {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    border-radius: 16px;
}

.btn-primary {
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    transition: all 0.25s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
    background: var(--color-primary-dark);
}

.btn-outline {
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.25s ease-in-out;
}

.btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(37, 99, 235, 0.04);
}

.service-card,
.machine-card,
.product-card,
.about-image,
.contact-info,
.contact-form {
    background: var(--surface-card);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.25s ease;
}

.service-card:hover,
.machine-card:hover,
.product-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: var(--shadow-lift);
}

.service-card::before {
    display: none; /* remove flashy line at top */
}

.service-card h3,
.machine-card h3,
.product-card h3 {
    font-weight: 700;
    color: var(--text-primary);
}

.service-card p,
.machine-card p,
.product-card p,
.about-content p,
.about-list li,
.contact-link,
.form-note {
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-list li {
    font-weight: 500;
}

.about-list li i {
    color: var(--color-accent);
}

.about-image {
    padding: 16px;
}

.about-media {
    border-radius: 10px;
    border: 1px solid var(--border-soft);
}

.products-grid {
    gap: clamp(16px, 2.4vw, 24px);
}

.contact-grid {
    align-items: stretch;
}

.contact-info,
.contact-form {
    height: 100%;
}

.contact-detail p strong {
    font-size: 0.88rem;
    letter-spacing: 0.2px;
    margin-bottom: 3px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.footer {
    background: linear-gradient(180deg, #132238 0%, #0f172a 100%);
    padding-top: 64px;
    padding-bottom: 32px;
}

.footer-initiatives {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    margin-left: 52px;
    align-items: center;
    flex-wrap: wrap;
}

.initiative-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.initiative-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
    .section-subtitle {
        max-width: 62ch;
    }

    .hero-grid,
    .about-wrapper,
    .contact-grid {
        gap: 26px;
    }

    .contact-info,
    .contact-form {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .footer-initiatives {
        margin-left: 0;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    section {
        padding: 52px 0;
    }

    .section-subtitle {
        margin-bottom: 24px;
    }

    .hero-badge {
        margin-bottom: 14px;
    }

    .service-card,
    .machine-card,
    .product-card,
    .about-image,
    .contact-info,
    .contact-form {
        box-shadow: 0 10px 20px -18px rgba(15, 23, 42, 0.3);
        padding: 24px 20px;
    }

    .contact-detail p {
        font-size: 0.88rem;
    }

    .footer {
        padding-top: 44px;
    }
}

/* Placeholder for products with no image */
.no-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f8fafc;
    color: #94a3b8;
    height: 100%;
    min-height: 200px;
    font-weight: 500;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-soft);
    padding: 24px 0;
}

.no-image-placeholder i {
    font-size: 2rem;
    color: #cbd5e1;
    transition: transform 0.2s ease;
}

.product-card:hover .no-image-placeholder i {
    transform: scale(1.1);
}

/* ==========================================================================
   📦 DYNAMIC PRODUCT CATALOG STYLES (DEDICATED PAGE)
   ========================================================================== */

/* Hero Banner */
.catalog-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: var(--spacing-3xl) 0;
    text-align: center;
    border-bottom: 4px solid var(--color-primary);
    position: relative;
}

.catalog-hero h1 {
    color: #ffffff;
    font-size: var(--font-size-h1);
    margin-bottom: var(--spacing-md);
}

.catalog-hero p {
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Catalog section and overall workspace layout */
.catalog-section {
    padding: var(--spacing-xl) 0 var(--spacing-3xl);
    background-color: var(--color-bg-light);
}

.catalog-workspace {
    display: grid;
    grid-template-columns: 280px 1.2fr 1.6fr;
    gap: var(--spacing-xl);
    min-height: 680px;
    height: calc(100vh - 280px);
    max-height: 800px;
    align-items: stretch;
}

.catalog-pane {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.pane-header {
    padding: var(--spacing-lg) var(--spacing-xl);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafc;
}

.pane-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.pane-header h3 i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.07) 0%, rgba(29, 78, 216, 0.07) 100%);
    color: var(--color-primary) !important;
    border-radius: 8px;
    font-size: 0.95rem;
    border: 1px solid rgba(37, 99, 235, 0.12);
}

/* Pane 1: Categories Sidebar List */
.categories-list {
    list-style: none;
    padding: var(--spacing-md);
    overflow-y: auto;
    flex: 1;
}

.category-item {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-smooth);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid transparent;
}

.category-item:hover {
    background: var(--color-primary-light);
    color: var(--color-primary);
    transform: translateX(4px);
}

.category-item.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #ffffff;
    border-color: var(--color-primary-dark);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

.category-item .item-count {
    background: var(--color-border);
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: all var(--transition-base);
}

.category-item.active .item-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Pane 2: Product Grid */
.selected-category-badge {
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.products-list-grid {
    padding: var(--spacing-lg);
    overflow-y: auto;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--spacing-lg);
    background: #fafcfd;
}

.catalog-product-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    cursor: pointer;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.catalog-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    border-color: var(--color-primary);
}

.catalog-product-card.active {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.08);
}

.catalog-product-card-img {
    height: 120px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #f8fafc;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
}

.catalog-product-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.catalog-product-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.catalog-product-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-top: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pane 3: Product Details */
.details-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--color-text-muted);
    padding: var(--spacing-3xl);
    text-align: center;
    gap: var(--spacing-md);
}

.details-placeholder i.placeholder-icon {
    font-size: 3.5rem;
    color: #cbd5e1;
    animation: floatAnim 3s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.details-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.details-image-container {
    height: 250px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.detail-image-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    z-index: 10;
}

.detail-image-loader .spinner {
    width: 38px;
    height: 38px;
    border: 3px solid rgba(37, 99, 235, 0.08);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: loaderSpin 0.75s linear infinite;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

.details-image-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.details-image-container img:hover {
    transform: scale(1.05);
}

.detail-no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    gap: 8px;
}

.detail-no-image i {
    font-size: 3rem;
    color: #cbd5e1;
}

.details-body {
    padding: var(--spacing-xl);
    overflow-y: auto;
    flex: 1;
}

.detail-category-badge {
    display: inline-block;
    background: #e2e8f0;
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.details-body h2 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1.35;
    margin-bottom: var(--spacing-md);
}

.details-divider {
    height: 1px;
    background-color: var(--color-border);
    margin: var(--spacing-md) 0 var(--spacing-lg);
}

.details-description {
    margin-bottom: var(--spacing-xl);
}

.details-description h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.details-description p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Call to Action Inside Product Details */
.enquiry-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-soft);
}

.enquiry-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.enquiry-card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

/* Quotes Request Modal Styling */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: var(--spacing-md);
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.modal-dialog {
    background: #ffffff;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 500px;
    padding: var(--spacing-2xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay:not(.hidden) .modal-dialog {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    border: none;
    background: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--color-text-primary);
}

.modal-dialog h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.modal-dialog h3 i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.07) 0%, rgba(29, 78, 216, 0.07) 100%);
    color: var(--color-primary) !important;
    border-radius: 8px;
    font-size: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    border-left: 3px solid var(--color-primary);
    padding-left: var(--spacing-sm);
}

.honeypot {
    display: none;
}

/* Skeletons & States */
.skeleton-item {
    height: 48px;
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: loadingSkeleton 1.5s infinite;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
}

@keyframes loadingSkeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.catalog-pane-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    flex-direction: column;
    gap: var(--spacing-md);
    color: var(--color-text-muted);
    padding: var(--spacing-xl);
}

.catalog-pane-loading i {
    font-size: 2rem;
    color: var(--color-primary);
}

/* Mobile catalog header controls (hidden on desktop) */
.mobile-catalog-header {
    display: none;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.mobile-catalog-header .btn-back {
    background: none;
    border: 1px solid var(--color-border);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-fast);
}

.mobile-catalog-header .btn-back:hover {
    background: var(--color-bg-light);
    color: var(--color-text-primary);
}

.mobile-catalog-header span {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-text-primary);
    font-size: 1.05rem;
}

/* Custom premium scrollbar for panes */
.categories-list::-webkit-scrollbar,
.products-list-grid::-webkit-scrollbar,
.details-body::-webkit-scrollbar,
.modal-dialog::-webkit-scrollbar {
    width: 6px;
}

.categories-list::-webkit-scrollbar-track,
.products-list-grid::-webkit-scrollbar-track,
.details-body::-webkit-scrollbar-track,
.modal-dialog::-webkit-scrollbar-track {
    background: transparent;
}

.categories-list::-webkit-scrollbar-thumb,
.products-list-grid::-webkit-scrollbar-thumb,
.details-body::-webkit-scrollbar-thumb,
.modal-dialog::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: var(--radius-full);
}

.categories-list::-webkit-scrollbar-thumb:hover,
.products-list-grid::-webkit-scrollbar-thumb:hover,
.details-body::-webkit-scrollbar-thumb:hover,
.modal-dialog::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ==========================================================================
   📱 RESPONSIVE ADJUSTMENTS FOR CATALOG PAGE
   ========================================================================== */

@media (max-width: 1024px) and (min-width: 769px) {
    .catalog-workspace {
        grid-template-columns: 1.1fr 1.5fr;
        grid-template-rows: auto 1fr;
        height: calc(100vh - 240px);
        max-height: 900px;
        gap: var(--spacing-md);
    }
    
    .pane-categories {
        grid-column: 1 / span 2;
        grid-row: 1;
        height: auto;
        flex-direction: row;
        align-items: center;
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: var(--radius-md);
    }
    
    .pane-categories .pane-header {
        display: none;
    }
    
    .categories-list {
        display: flex;
        flex-direction: row;
        gap: var(--spacing-sm);
        padding: 0;
        overflow-x: auto;
        flex: 1;
        white-space: nowrap;
        scrollbar-width: none;
    }
    
    .categories-list::-webkit-scrollbar {
        display: none;
    }
    
    .category-item {
        margin-bottom: 0;
        padding: 8px 16px;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    
    .pane-products {
        grid-column: 1;
        grid-row: 2;
    }
    
    .pane-details {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 768px) {
    /* Enable Mobile Navigation Header Controls */
    .mobile-catalog-header {
        display: flex;
    }
    
    /* Modify Workspace to support tabbed switching */
    .catalog-workspace {
        display: block;
        height: auto;
        max-height: none;
        min-height: 480px;
    }
    
    .catalog-pane {
        display: none; /* JS will toggle active pane */
        height: auto;
        min-height: 400px;
        max-height: 600px;
        animation: paneSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    .catalog-pane.mobile-active {
        display: flex;
    }

    .pane-header {
        display: none; /* Hide header details, handled by mobile-catalog-header */
    }

    .products-list-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .details-image-container {
        height: 200px;
    }
    
    @keyframes paneSlideIn {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* ==========================================================================
   📦 PRODUCTS SHOWCASE TEASER (HOMEPAGE)
   ========================================================================== */

.products-showcase-section {
    padding: var(--spacing-section) 0;
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.products-showcase-section .hero-badge {
    margin-bottom: var(--spacing-md);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0 var(--spacing-2xl);
}

.showcase-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.015);
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.05);
    border-color: rgba(37, 99, 235, 0.2);
}

.showcase-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #ffffff;
    font-size: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.15);
}

.showcase-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.showcase-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.showcase-action .btn-primary {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

/* ==========================================================================
   💎 PREMIUM BRANDING DESIGN SYSTEM UPGRADES
   ========================================================================== */

/* Editorial Typography max-widths for readability */
.section-subtitle {
    max-width: 65ch;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Glassmorphic Section Badges/Tags */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: var(--spacing-md);
}

/* Interactive States: Primary Button diagonal sheen & spring transitions */
.btn-primary, .btn-secondary, .btn-outline, .slider-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.04);
}

.btn-primary::after, .btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.12) 30%,
        rgba(255, 255, 255, 0.24) 50%,
        rgba(255, 255, 255, 0.12) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: transform 0.75s ease;
    pointer-events: none;
    z-index: 1;
}

.btn-primary:hover::after, .btn-outline:hover::after {
    transform: translate(180%, 0) skewX(-25deg);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18) !important;
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.05);
}

/* Form Input Glowing Active Focus Outline Rings */
input[type="text"], input[type="tel"], input[type="email"], textarea {
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

input[type="text"]:focus, input[type="tel"]:focus, input[type="email"]:focus, textarea:focus {
    outline: none !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12) !important;
}

/* Service Card Premium Badged Icons */
.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: var(--spacing-xl) !important;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05) !important;
    border-color: rgba(37, 99, 235, 0.18) !important;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(29, 78, 216, 0.06) 100%);
    color: var(--color-primary);
    font-size: 1.25rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(37, 99, 235, 0.12);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.18);
    border-color: transparent;
    transform: scale(1.05);
}

/* Contact Detail Card Icon Badges */
.contact-detail {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: #ffffff;
    padding: var(--spacing-md) var(--spacing-lg) !important;
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--color-border) !important;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.01) !important;
    transition: all var(--transition-smooth);
    margin-bottom: var(--spacing-sm) !important;
}

.contact-detail:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.2) !important;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.035) !important;
}

.contact-detail > i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(29, 78, 216, 0.06) 100%) !important;
    color: var(--color-primary) !important;
    border-radius: var(--radius-md) !important;
    font-size: 1.05rem !important;
    border: 1px solid rgba(37, 99, 235, 0.1) !important;
    flex-shrink: 0;
}

.contact-hours {
    display: inline-flex !important;
    align-items: center;
    gap: var(--spacing-sm) !important;
    background: rgba(37, 99, 235, 0.04) !important;
    color: var(--color-primary) !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    border: 1px solid rgba(37, 99, 235, 0.08) !important;
}

.contact-hours i {
    color: var(--color-primary) !important;
}

/* --- Added for UI Enhancements & Price Feature --- */
.detail-price-container {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-sm);
}

.detail-price-container.hidden {
    display: none;
}

.price-label {
    font-weight: 600;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.price-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-accent);
}

.catalog-product-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalog-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.3);
}

.catalog-product-card.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
    background: #ffffff;
}

/* --- New UI Layout & Modal --- */
.catalog-workspace {
    display: grid !important;
    grid-template-columns: 250px 1fr !important;
    gap: var(--spacing-2xl) !important;
    align-items: start !important;
}
@media (max-width: 992px) {
    .catalog-workspace {
        grid-template-columns: 1fr !important;
    }
}

.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-modal:not(.hidden) {
    visibility: visible;
    opacity: 1;
}

.product-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.product-modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.product-modal:not(.hidden) .product-modal-content {
    transform: translateY(0);
}

.product-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.product-modal-close:hover {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.1);
}

.product-modal-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    overflow-y: auto;
}

.product-modal-image-col {
    background: var(--color-bg-light);
    padding: var(--spacing-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 300px;
}

.product-modal-image-col img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-modal-info-col {
    padding: var(--spacing-3xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.product-modal-info-col h2 {
    font-size: var(--font-size-h2);
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .product-modal-split {
        grid-template-columns: 1fr;
    }
    .product-modal-info-col {
        padding: var(--spacing-xl);
    }
    .product-modal-image-col img {
        max-height: 40vh;
    }
}

/* Update Product Card Design for Uniformity */
.catalog-product-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 320px !important; /* Prevent squashing */
    padding: var(--spacing-xl) !important;
    border-radius: var(--radius-xl) !important;
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    overflow: hidden;
    cursor: pointer;
}

.catalog-product-card-img {
    height: 180px !important;
    flex-shrink: 0 !important; /* Prevent flex squashing */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: var(--spacing-md) !important;
    border-radius: var(--radius-lg) !important;
    background: var(--color-bg-light) !important;
    overflow: hidden !important;
}

.catalog-product-card-img img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

.catalog-product-card h4 {
    font-size: 1.1rem !important;
    margin-bottom: var(--spacing-sm) !important;
    font-weight: 700 !important;
    color: var(--color-text-primary) !important;
    line-height: 1.3 !important;
    flex-shrink: 0 !important;
}

.catalog-product-card p {
    font-size: 0.9rem !important;
    color: var(--color-text-secondary) !important;
    margin: 0 !important;
    flex-grow: 1 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Ensure the Grid Stretches Items to Equal Height */
.products-list-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    gap: var(--spacing-lg) !important;
    align-items: stretch !important;
    align-content: start !important; /* Pack rows at the top to prevent squashing */
}