/**
 * Ansh Solar - Premium Stylesheet
 * Soltech Energies Pvt. Ltd.
 * Glassmorphism | Neumorphism | Modern Gradient Design
 */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors - Deep Solar Orange */
    --primary: #FF6B35;
    --primary-light: #FF8F65;
    --primary-dark: #E55A2B;
    --primary-glow: rgba(255, 107, 53, 0.4);

    /* Secondary - Royal Blue */
    --secondary: #1E3A8A;
    --secondary-light: #3B5FCC;
    --secondary-dark: #152B6B;

    /* Accent - Sky Blue */
    --accent: #38BDF8;
    --accent-light: #7DD3FC;
    --accent-dark: #0EA5E9;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #FFB800 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-warm: linear-gradient(135deg, #FF6B35 0%, #FF8F65 50%, #FFB800 100%);
    --gradient-cool: linear-gradient(135deg, #1E3A8A 0%, #38BDF8 100%);

    /* Background */
    --bg: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-light: #F1F5F9;
    --bg-dark: #0F172A;
    --bg-card: rgba(255, 255, 255, 0.85);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-bg-dark: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-border-dark: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-blur: blur(20px) saturate(180%);

    /* Text */
    --text: #0F172A;
    --text-light: #475569;
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px var(--primary-glow);
    --shadow-glow-lg: 0 0 40px var(--primary-glow);

    /* Neumorphism */
    --neu-light: #ffffff;
    --neu-dark: #d1d5db;
    --neu-shadow: 6px 6px 12px var(--neu-dark), -6px -6px 12px var(--neu-light);
    --neu-shadow-inset: inset 4px 4px 8px var(--neu-dark), inset -4px -4px 8px var(--neu-light);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1400px;
    --container-padding: 24px;
}

/* Dark Mode */
[data-theme="dark"] {
    --bg: #0F172A;
    --bg-white: #1E293B;
    --bg-light: #1a2236;
    --text: #F1F5F9;
    --text-light: #CBD5E1;
    --text-muted: #64748B;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --bg-card: rgba(30, 41, 59, 0.85);
    --neu-light: #2d3a4f;
    --neu-dark: #0a0f1a;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(30, 58, 138, 0.06) 0%, transparent 50%),
        var(--bg);
    animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { background-position: 0% 50%, 100% 0%, 50% 100%; }
    33% { background-position: 100% 50%, 0% 100%, 50% 0%; }
    66% { background-position: 50% 0%, 50% 50%, 0% 50%; }
}

/* Floating Orbs */
.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-sun {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    position: relative;
    animation: sunPulse 1.5s ease-in-out infinite;
}

.preloader-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    animation: sunRotate 3s linear infinite;
}

.preloader-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
    transform-origin: center;
}

.preloader-text {
    margin-top: 40px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 2px;
}

.preloader-subtext {
    margin-top: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

@keyframes sunPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px var(--primary-glow); }
    50% { transform: scale(1.1); box-shadow: 0 0 40px var(--primary-glow), 0 0 60px rgba(255, 107, 53, 0.2); }
}

@keyframes sunRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.container-sm {
    max-width: 960px;
}

.container-lg {
    max-width: 1600px;
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-sm {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 20px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-base);
}

.glass-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.glass-card-dark {
    background: var(--glass-bg-dark);
    border-color: var(--glass-border-dark);
    color: var(--text-white);
}

/* ===== NEUMORPHIC CARD ===== */
.neu-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
    transition: var(--transition-base);
}

.neu-card:hover {
    box-shadow: var(--neu-shadow-inset);
}

/* ===== GRADIENT CARD ===== */
.gradient-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: white;
    position: relative;
    overflow: hidden;
}

.gradient-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active::after {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-white {
    background: white;
    color: var(--text);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    transition: var(--transition-base);
    padding: 16px 0;
}

.header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: var(--transition-base);
}

.header.scrolled .logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.65rem;
    color: blue
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Glassmorphism nav pills */
.nav-link {
    padding: 5px 10px;
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition-base);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    white-space: nowrap;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 55%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.25);
}

/* Dark mode glass nav */
[data-theme="dark"] .nav-link {
    background: rgba(30, 41, 59, 0.55);
    border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
    background: rgba(255, 107, 53, 0.18);
    border-color: rgba(255, 107, 53, 0.3);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    white-space: nowrap;
}

.header-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

.header-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
}

.header-btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    font-size: 1rem;
}

.header-btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.header-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.header-btn-call {
    background: var(--secondary);
    color: white;
}

.header-btn-call:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

/* Search Toggle */
.search-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition-base);
}

.search-toggle:hover {
    background: var(--primary);
    color: white;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text);
    cursor: pointer;
    position: relative;
    z-index: 3003;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transition: var(--transition-base);
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition-base);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle.active {
    background: var(--gradient-primary);
}

.mobile-menu-toggle:hover span,
.mobile-menu-toggle.active span {
    background: white;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 2999;
    padding: 100px 24px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-link {
    display: block;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-base);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    padding-left: 12px;
}

.mobile-nav-actions {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 700px;
    padding: 0 24px;
}

.search-input-wrapper {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.search-input {
    width: 100%;
    padding: 24px 60px 24px 28px;
    font-size: 1.25rem;
    border: none;
    background: transparent;
    color: var(--text);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition-base);
}

.search-close:hover {
    background: var(--primary);
    color: white;
}

.search-results {
    margin-top: 16px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--bg-light);
    transition: var(--transition-base);
    cursor: pointer;
}

.search-result-item:hover {
    background: var(--bg-light);
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}


.search-result-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.search-result-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-slide-text {
    max-width: 650px;
    padding: 0 var(--container-padding);
}

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.hero-slide.active .hero-label {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slide.active .hero-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.7s;
}

.hero-slide.active .hero-desc {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.9s;
}

.hero-slide.active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: var(--transition-base);
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-base);
}

.slider-dot.active {
    width: 32px;
    border-radius: 5px;
    background: var(--primary);
}

/* ===== OFFER BANNER ===== */
.offer-banner {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

.offer-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    background: var(--gradient-warm);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.offer-banner-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.offer-banner-content {
    position: relative;
    z-index: 1;
}

.offer-banner-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.offer-banner-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.offer-banner-image {
    position: relative;
    z-index: 1;
    text-align: center;
}

.offer-banner-image img {
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* ===== STATS SECTION ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: white;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== CATEGORY CARDS ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    cursor: pointer;
}

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

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

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

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

.category-card-body {
    padding: 24px;
    text-align: center;
}

.category-card-icon {
    width: 56px;
    height: 56px;
    margin: -52px auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    position: relative;
    z-index: 2;
}

.category-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.category-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.product-card:active {
    transform: translateY(-3px) scale(0.99);
}

.product-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}

.badge-featured {
    background: var(--gradient-primary);
    color: white;
}

.badge-new {
    background: var(--gradient-secondary);
    color: white;
}

.product-card-wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.product-card-wishlist:hover,
.product-card-wishlist.active,
.product-card-quickview-icon:hover {
    background: var(--primary);
    color: white;
}

.product-card-quickview-icon {
    position: absolute;
    top: 60px; /* 16px (top) + 36px (height) + 8px gap */
    right: 16px;
    z-index: 3;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateX(10px);
}

.product-card:hover .product-card-quickview-icon {
    opacity: 1;
    transform: translateX(0);
}

.product-card-img {
    position: relative;
    display: block;
    aspect-ratio: 1 / 0.78;
    height: auto;
    overflow: hidden;
    background: var(--bg-light);
    flex: 0 0 auto;
}

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

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


.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px 20px 20px;
}

.product-card-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-title a {
    overflow-wrap: anywhere;
}

.product-card-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    margin-top: auto;
    display: flex;
    gap: 8px;
}

.product-card-footer .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.85rem;
}

.home-products-section {
    background: var(--bg-light);
    padding-top: 80px;
}

.home-products-grid {
    align-items: stretch;
}

.home-product-card {
    display: flex;
    flex-direction: column;
}

.home-product-img {
    height: 230px;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.home-product-img img {
    object-fit: contain;
    object-position: center;
    padding: 18px;
}

.home-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    text-align: center;
}

.home-product-title {
    min-height: 2.8em;
    margin-bottom: 0;
}

.home-product-title a {
    display: inline;
}

.home-product-quote {
    width: 100%;
    margin-top: auto;
    white-space: nowrap;
}

/* ===== QUOTE MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--bg-light);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition-base);
}

.modal-close:hover {
    background: var(--primary);
    color: white;
}

.modal-body {
    padding: 32px;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-label span {
    color: var(--primary);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.95rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    color: var(--text);
    transition: var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-error {
    font-size: 0.8rem;
    color: #EF4444;
    margin-top: 4px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 20px 0;
    background: var(--bg-light);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--text);
    font-weight: 600;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    color: var(--text-muted);
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.page-link:hover,
.page-link.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

.page-dots {
    color: var(--text-muted);
    padding: 0 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
    color: #FFB800;
    font-size: 1rem;
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.testimonial-author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== CLIENTS LOGO SLIDER ===== */
.clients-slider {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 48px;
    animation: scrollClients 30s linear infinite;
    width: max-content;
}

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

.client-logo {
    height: 60px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

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

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.timeline-year {
    display: inline-block;
    padding: 4px 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

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

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-base);
}

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

.gallery-item-title {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

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

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.lightbox-close:hover {
    background: var(--primary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.lightbox-nav:hover {
    background: var(--primary);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===== DOWNLOADS ===== */
.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.download-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.download-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.download-info {
    flex: 1;
}

.download-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.download-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.download-btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.contact-info-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding: 80px 0 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 45px;
    height: 45px;
}

.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: var(--transition-base);
}

.footer-social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-link::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-base);
}

.footer-link:hover::before {
    width: 12px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-hours {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.footer-hours-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter-input {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.footer-newsletter-input input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: white;
    font-size: 0.9rem;
}

.footer-newsletter-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-input button {
    padding: 12px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
}

.footer-newsletter-input button:hover {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-base);
}

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

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition-base);
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-4px);
}

.floating-whatsapp {
    background: #25D366;
    animation: pulse 2s infinite;
}

.floating-call {
    background: var(--secondary);
}

.floating-top {
    background: var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.floating-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border-left: 4px solid var(--primary);
    min-width: 300px;
    max-width: 400px;
    transform: translateX(120%);
    animation: toastSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.toast.success { border-left-color: #10B981; }
.toast.error { border-left-color: #EF4444; }
.toast.warning { border-left-color: #F59E0B; }
.toast.info { border-left-color: var(--accent); }

@keyframes toastSlide {
    to { transform: translateX(0); }
}

.toast.hide {
    animation: toastHide 0.3s ease forwards;
}

@keyframes toastHide {
    to { transform: translateX(120%); opacity: 0; }
}

.toast-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    flex-shrink: 0;
}

.toast.success .toast-icon { color: #10B981; }
.toast.error .toast-icon { color: #EF4444; }
.toast.warning .toast-icon { color: #F59E0B; }

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.toast-message {
    font-size: 0.8rem;
    color: var(--text-light);
}

.toast-close {
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-base);
}

.toast-close:hover {
    color: var(--text);
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 500px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 24px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-text {
    flex: 1;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cookie-consent-text a {
    color: var(--primary);
    text-decoration: underline;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--bg);
}

.about-experience {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-experience-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-text {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.mission-vision-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.mv-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mv-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.mv-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-warm);
    border-radius: 50%;
    color: white;
    font-size: 1.75rem;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.value-text {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery-main {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-bottom: 16px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-gallery-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--primary);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.product-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.product-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-light);
}

.product-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-detail-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.product-actions .btn {
    flex: 1;
    padding: 16px 24px;
    font-size: 1rem;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--bg-light);
}

.specs-table th,
.specs-table td {
    padding: 14px 16px;
    text-align: left;
    font-size: 0.9rem;
}

.specs-table th {
    width: 40%;
    font-weight: 600;
    color: var(--text);
    background: var(--bg-light);
}

.specs-table td {
    color: var(--text-light);
}

/* Product Tabs */
.product-tabs {
    margin-top: 48px;
}

.tab-nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: 32px;
    overflow-x: auto;
}

.tab-btn {
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: var(--transition-base);
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== WHATSAPP CHAT POPUP ===== */
.whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    max-width: calc(100vw - 60px);
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    z-index: 998;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    overflow: hidden;
}

.whatsapp-popup.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.whatsapp-popup-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-popup-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-popup-body {
    padding: 20px;
    background: #F0F2F5;
    min-height: 100px;
}

.whatsapp-message {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    border-bottom-left-radius: 2px;
    font-size: 0.9rem;
    color: var(--text);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
}

.whatsapp-popup-footer {
    padding: 16px;
}

.whatsapp-popup-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #25D366;
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition-base);
}

.whatsapp-popup-footer a:hover {
    background: #128C7E;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 992px) {
    :root { --section-padding: 70px; }
    
    .nav { display: none; }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-nav { display: block; }
    
    .header-actions .header-btn-text { display: none; }
    .header-actions {
        gap: 8px;
        margin-left: auto;
        position: relative;
        z-index: 3003;
    }
    
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    
    .about-grid,
    .contact-grid,
    .product-detail-grid { grid-template-columns: 1fr; }
    
    .mission-vision-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    
    .product-gallery { position: relative; top: 0; }
    
    .offer-banner-inner { grid-template-columns: 1fr; text-align: center; }
    .offer-banner-image { order: -1; }
}

@media (max-width: 768px) {
    .header-actions .header-btn {
        display: none !important;
    }
    .search-toggle {
        display: none !important;
    }
    .header {
        padding: 10px 0;
    }
    .header-inner {
        gap: 10px;
        position: relative;
    }
    .logo {
        gap: 8px;
        min-width: 0;
    }
    .logo-img {
        width: 42px;
        height: 42px;
    }
    .logo-text {
        min-width: 0;
    }
    .logo-name {
        font-size: 1.05rem;
        white-space: nowrap;
    }
    .logo-tagline {
        display: none;
    }
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px;
        align-items: stretch;
    }
    .product-card {
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.94);
        border-color: rgba(15, 23, 42, 0.08);
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
        will-change: transform;
    }
    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 34px rgba(15, 23, 42, 0.13);
    }
    .product-card:active {
        transform: translateY(-1px) scale(0.985);
    }
    .product-card-img {
        aspect-ratio: 1 / 0.74;
        height: auto !important;
        background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    }
    .product-card-img img {
        object-fit: cover;
    }
    .product-card-body {
        padding: 10px;
        gap: 9px;
        text-align: center;
    }
    .product-card-title {
        min-height: 2.6em;
        margin-bottom: 0;
        font-size: 0.88rem;
        line-height: 1.3;
        text-align: center;
    }
    .product-card-title a {
        display: inline;
    }
    .product-card-category,
    .product-card-desc,
    .product-card-footer .btn-outline {
        display: none;
    }
    .product-card-footer {
        width: 100%;
        margin-top: auto;
        gap: 0;
    }
    .product-card-footer .btn,
    .home-product-quote {
        width: 100%;
        min-height: 44px;
        padding: 10px 8px;
        border-radius: 12px;
        font-size: 0.78rem;
        line-height: 1.15;
        white-space: normal;
        box-shadow: 0 8px 18px rgba(255, 107, 53, 0.24);
    }
    .product-card-footer .btn-primary::after,
    .home-product-quote::after {
        pointer-events: none;
    }
    .product-card-badge {
        top: 8px;
        left: 8px;
        gap: 4px;
    }
    .badge {
        padding: 3px 7px;
        font-size: 0.58rem;
        letter-spacing: 0.2px;
    }
    .product-card-wishlist,
    .product-card-quickview-icon {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
    }
    .product-card-quickview-icon {
        display: none;
    }
    .home-products-section {
        padding-top: 56px;
    }
    .home-products-grid {
        gap: 14px;
    }
    .home-product-img {
        aspect-ratio: 1 / 0.74;
        height: auto;
    }
    .home-product-img img {
        padding: 0;
    }
    .home-product-body {
        padding: 10px;
        gap: 9px;
    }
    .home-product-title {
        font-size: 0.9rem;
        line-height: 1.3;
        min-height: 2.6em;
    }
    .home-product-quote { gap: 5px; }
    .categories-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    
    .hero-slider { min-height: 600px; height: auto; }
    .hero-slide-content { padding: 120px 0 80px; }
    
    .footer-grid { grid-template-columns: 1fr; padding: 60px 0 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    
    .about-img-float,
    .about-experience { display: none; }
    
    .floating-buttons { bottom: 20px; right: 20px; }
    .floating-btn { width: 48px; height: 48px; font-size: 1.25rem; }
    
    .form-row { grid-template-columns: 1fr; }
    
    .tab-nav { gap: 0; }
    .tab-btn { padding: 12px 16px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    :root { --container-padding: 14px; }

    .hero-title { font-size: 1.75rem; }
    .hero-desc { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    
    .section-title { font-size: 1.5rem; }
    .section-header { margin-bottom: 32px; }
    
    .stat-number { font-size: 2rem; }
    
    .product-card-img { aspect-ratio: 1 / 0.64; }
    .home-products-grid { gap: 10px; }
    .home-product-img { aspect-ratio: 1 / 0.64; height: auto; }
    .product-card-body { padding: 9px; }
    .product-card-title,
    .home-product-title { font-size: 0.8rem; }
    .home-product-quote {
        min-height: 44px;
        padding: 9px 6px;
        font-size: 0.72rem;
    }
    .home-product-quote i {
        display: none;
    }
    
    .modal { margin: 16px; }
    .modal-body { padding: 24px; }
    
    .whatsapp-popup { right: 16px; left: 16px; width: auto; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-light); }

/* ===== SELECTION ===== */
::selection {
    background: var(--primary);
    color: white;
}

/* ===== SKELETON LOADING ===== */
.skeleton {
    background: linear-gradient(90deg, var(--bg-light) 25%, var(--bg) 50%, var(--bg-light) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 80px 24px;
}

.empty-state-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--text-muted);
}

.empty-state-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.empty-state-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.hidden { display: none; }

/* ===== ANIMATED GRADIENT TEXT ===== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
    height: 100px;
    position: relative;
    overflow: hidden;
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Page Transitions */
.page-transition {
    animation: pageFadeIn 0.5s ease;
}

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

/* SVG Shapes */
.shape-float {
    position: absolute;
    pointer-events: none;
    animation: shapeFloat 6s ease-in-out infinite;
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Counter Animation */
.counter {
    font-variant-numeric: tabular-nums;
}

/* Star Rating */
.star-rating {
    display: inline-flex;
    gap: 2px;
    color: #FFB800;
}

.star-rating .empty {
    color: #E2E8F0;
}

/* Social Share */
.social-share {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

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

/* Filter buttons */
.filter-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

/* Sticky quote button */
.sticky-quote {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--glass-border);
    padding: 12px 24px;
    display: flex;
    gap: 12px;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-quote.visible {
    transform: translateY(0);
}

.sticky-quote .btn {
    flex: 1;
}

@media (min-width: 769px) {
    .sticky-quote { display: none; }
}

/* ===== CATEGORIES DROPDOWN MEGA-MENU ===== */

/* Wrapper for the nav item that contains the dropdown */
.nav-item.nav-dropdown-wrapper {
    position: relative;
}

/* The button that acts as a nav-link */
.nav-dropdown-trigger {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    cursor: pointer;
    font-family: inherit;
}

[data-theme="dark"] .nav-dropdown-trigger {
    background: rgba(30, 41, 59, 0.55);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Chevron icon rotation */
.nav-chevron {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.nav-dropdown-wrapper.open .nav-chevron,
.nav-dropdown-wrapper:hover .nav-chevron {
    transform: rotate(180deg);
}

/* ---- Dropdown panel ---- */
.categories-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 680px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255,255,255,0.3);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    overflow: hidden;
}

[data-theme="dark"] .categories-dropdown {
    background: rgba(15, 23, 42, 0.92);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.08);
}

/* Open state — triggered by hover OR JS .open class */
.nav-dropdown-wrapper:hover .categories-dropdown,
.nav-dropdown-wrapper.open .categories-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Keep open when hovering the dropdown itself */
.categories-dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.categories-dropdown-inner {
    padding: 20px;
}

.categories-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
}

[data-theme="dark"] .categories-dropdown-header {
    border-bottom-color: rgba(255,255,255,0.08);
}

.cat-view-all {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: none;
    letter-spacing: 0;
    transition: var(--transition-base);
}

.cat-view-all:hover {
    gap: 8px;
    color: var(--primary-dark);
}

/* Category cards grid in dropdown */
.categories-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.cat-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: rgba(248, 250, 252, 0.7);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .cat-dropdown-item {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(255,255,255,0.06);
}

.cat-dropdown-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cat-dropdown-item:hover {
    border-color: rgba(255,107,53,0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.15);
}

.cat-dropdown-item:hover::before {
    opacity: 0.05;
}

.cat-dropdown-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.cat-dropdown-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-dropdown-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.cat-dropdown-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}

.cat-dropdown-item:hover .cat-dropdown-name {
    color: var(--primary);
}

.cat-dropdown-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.cat-dropdown-arrow {
    font-size: 0.65rem;
    color: var(--text-muted);
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.cat-dropdown-item:hover .cat-dropdown-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary);
}

.cat-dropdown-empty {
    grid-column: 1/-1;
    padding: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ===== MOBILE CATEGORIES ACCORDION ===== */

.mobile-nav-accordion {
    border-bottom: 1px solid var(--glass-border);
}

.mobile-nav-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    /* override mobile-nav-link border-bottom so accordion wrapper handles it */
    border-bottom: none !important;
}

.mobile-nav-accordion-trigger.mobile-nav-link {
    border-bottom: none;
}

.mobile-nav-accordion.open .mobile-nav-accordion-trigger,
.mobile-nav-accordion-trigger:hover {
    color: var(--primary);
}

.mobile-acc-chevron {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-nav-accordion.open .mobile-acc-chevron {
    transform: rotate(180deg);
}

.mobile-nav-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0;
}

.mobile-nav-accordion.open .mobile-nav-accordion-body {
    max-height: 500px;
    padding-bottom: 8px;
}

.mobile-cat-link {
    display: flex;
    align-items: center;
    padding: 9px 0 9px 16px;
    font-size: 0.95rem;
    color: var(--text-light);
    border-bottom: none;
    transition: var(--transition-base);
}

.mobile-cat-link:hover {
    color: var(--primary);
    padding-left: 22px;
}

/* ===== CATEGORY PAGE — PREMIUM LAYOUT ===== */

/* Category Hero Banner */
.cat-banner {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.cat-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) saturate(1.2);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.cat-banner:hover .cat-banner-bg {
    transform: scale(1);
}

.cat-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.88) 0%,
        rgba(255, 107, 53, 0.25) 60%,
        rgba(15, 23, 42, 0.6) 100%
    );
}

.cat-banner-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cat-banner-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.6;
    animation: particleFloat 6s ease-in-out infinite;
}

.cat-banner-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.cat-banner-particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; width: 6px; height: 6px; }
.cat-banner-particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 2s; background: var(--accent); }
.cat-banner-particle:nth-child(4) { top: 70%; left: 70%; animation-delay: 0.5s; width: 5px; height: 5px; }
.cat-banner-particle:nth-child(5) { top: 50%; left: 50%; animation-delay: 1.5s; background: #FFB800; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.4); opacity: 1; }
}

.cat-banner-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    width: 100%;
}

.cat-banner-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.cat-banner-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.cat-banner-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cat-banner-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.cat-banner-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cat-banner-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.82rem;
    font-weight: 500;
}

.cat-banner-stat i {
    color: var(--primary-light);
}

/* Category Page Layout */
.cat-page-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: start;
}

/* Sidebar Filters */
.cat-sidebar {
    position: sticky;
    top: 100px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--glass-shadow);
}

.cat-sidebar-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cat-sidebar-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 16px 0;
}

.cat-result-count em {
    font-style: normal;
    font-weight: 600;
}

/* Other Categories Sidebar List */
.cat-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cat-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    transition: var(--transition-base);
    text-decoration: none;
    color: var(--text);
}

.cat-sidebar-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.cat-sidebar-item.active {
    background: var(--bg-light);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(10, 107, 190, 0.15);
}

.cat-sidebar-item.active .cat-sidebar-item-title {
    color: var(--primary);
    font-weight: 600;
}

.cat-sidebar-thumb {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--bg);
}

.cat-sidebar-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cat-sidebar-item-title {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    transition: color 0.3s;
}

.cat-sidebar-item-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cat-filter-group {
    margin-bottom: 20px;
}

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

.cat-filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    display: block;
}

.cat-filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.cat-filter-option:hover {
    background: rgba(255,107,53,0.07);
    color: var(--primary);
    border-color: rgba(255,107,53,0.2);
}

.cat-filter-option.active {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border-color: transparent;
}

.cat-filter-option.active .cat-filter-count {
    background: rgba(255,255,255,0.25);
    color: white;
}

.cat-filter-count {
    margin-left: auto;
    padding: 2px 8px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Sort Bar */
.cat-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cat-result-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.cat-result-count strong {
    color: var(--text);
    font-weight: 700;
}

.cat-sort-select {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition-base);
    appearance: none;
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.cat-sort-select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.15);
}

/* Category Products Grid — 4 columns desktop */
.category-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

/* Category subcategory tabs */
.cat-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.cat-tab {
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    backdrop-filter: blur(8px);
}

.cat-tab:hover,
.cat-tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

/* Load More button */
.cat-load-more-wrap {
    text-align: center;
    margin-top: 40px;
}

/* ===== RESPONSIVE — Categories ===== */

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

@media (max-width: 992px) {
    .cat-page-layout { grid-template-columns: 1fr; }
    .cat-sidebar { position: static; }
    .category-products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .category-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px;
        align-items: stretch;
    }
    .cat-banner { min-height: 260px; }
    .cat-banner-content { padding: 48px 0; }
    .cat-sort-bar { flex-direction: column; align-items: flex-start; }
    .cat-tabs { gap: 6px; }
    .cat-tab { padding: 7px 14px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .category-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px;
    }
    .cat-banner-stats { gap: 10px; }
    .cat-banner-stat { padding: 6px 12px; font-size: 0.78rem; }
}

/* ===================================================
   ANSH SOLAR – NEW PREMIUM ADDITIONS
   =================================================== */

/* ===== 1. LOGO ® REGISTERED SYMBOL ===== */
.logo-name {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
}
.logo-reg {
    font-size: 0.5em;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-top: 2px;
    margin-left: 1px;
    vertical-align: super;
    letter-spacing: 0;
}

/* ===== 2. ENHANCED HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: #0F172A;
    touch-action: pan-y;
    user-select: none;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    transform: scale(1.04);
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg {
    transform: scale(1.06);
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.52);
}
.hero-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}
.hero-slide-text {
    max-width: 700px;
    animation: none;
}
.hero-slide.active .hero-slide-text {
    animation: heroTextIn 1s ease 0.3s both;
}
@keyframes heroTextIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,53,0.25);
    border: 1px solid rgba(255,107,53,0.5);
    color: #FFB800;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.slider-nav {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}
.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.35);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary-glow);
}
.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
}

/* ===== 3. PM SUBSIDY ADVERTISEMENT BANNER ===== */
.subsidy-banner-section {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 40%, #152B6B 100%);
}
.subsidy-banner-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(255,107,53,0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 30%, rgba(56,189,248,0.15) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.subsidy-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(21,43,107,0.6) 0%, transparent 60%);
}
.subsidy-banner-inner {
    position: relative;
}
.subsidy-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,53,0.2);
    border: 1px solid rgba(255,107,53,0.5);
    color: #FFB800;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.subsidy-banner-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}
.subsidy-banner-left {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}
.subsidy-icon-wrap {
    flex-shrink: 0;
    position: relative;
}
.subsidy-main-icon {
    font-size: 4rem;
    color: var(--primary);
    filter: drop-shadow(0 0 20px rgba(255,107,53,0.5));
    display: block;
    margin-bottom: 12px;
}
.subsidy-flag-colors {
    display: flex;
    gap: 3px;
    border-radius: 4px;
    overflow: hidden;
    height: 6px;
}
.subsidy-flag-colors div:nth-child(1) { flex: 1; background: #FF6B35; }
.subsidy-flag-colors div:nth-child(2) { flex: 1; background: white; }
.subsidy-flag-colors div:nth-child(3) { flex: 1; background: #128807; }
.subsidy-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: white;
    margin-bottom: 6px;
    line-height: 1.2;
}
.subsidy-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.subsidy-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.subsidy-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.subsidy-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}
.subsidy-highlight-item i {
    width: 32px;
    height: 32px;
    background: rgba(255,107,53,0.2);
    border: 1px solid rgba(255,107,53,0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    font-size: 0.85rem;
}
.subsidy-highlight-item strong { color: white; }
.subsidy-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.subsidy-btn-primary {
    background: white !important;
    color: var(--primary) !important;
    font-weight: 700;
}
.subsidy-btn-primary:hover {
    background: var(--primary) !important;
    color: white !important;
}
.subsidy-banner-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 200px;
}
.subsidy-stat-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.subsidy-stat-card:hover {
    background: rgba(255,107,53,0.15);
    border-color: rgba(255,107,53,0.4);
    transform: translateY(-4px);
}
.subsidy-stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}
.subsidy-stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    line-height: 1.4;
}
.subsidy-stat-card--wide {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}
@media (max-width: 1100px) {
    .subsidy-banner-content { grid-template-columns: 1fr; }
    .subsidy-banner-right { flex-direction: row; flex-wrap: wrap; min-width: 0; }
    .subsidy-stat-card { flex: 1; min-width: 150px; }
}
@media (max-width: 768px) {
    .subsidy-banner-section { padding: 40px 0; }
    .subsidy-banner-left { flex-direction: column; gap: 16px; }
    .subsidy-icon-wrap { display: flex; align-items: center; gap: 16px; }
    .subsidy-main-icon { font-size: 2.5rem; margin-bottom: 0; }
    .subsidy-highlights { grid-template-columns: 1fr; gap: 8px; }
    .subsidy-cta-group { flex-direction: column; }
    .subsidy-banner-right { flex-direction: row; }
    .subsidy-stat-card { padding: 14px 16px; }
}

/* ===== 4. HOMEPAGE CATEGORIES GRID ===== */
.home-categories-section {
    background: var(--bg-light);
}
.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.home-cat-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}
.home-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(255,107,53,0.15);
    border-color: rgba(255,107,53,0.4);
}
.home-cat-card-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    position: relative;
}
.home-cat-img-wrap {
    flex-shrink: 0;
    position: relative;
}
.home-cat-img-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(255,107,53,0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.home-cat-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-cat-img-circle i {
    font-size: 1.75rem;
    color: white;
}
.home-cat-card:hover .home-cat-img-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(255,107,53,0.5);
}
.home-cat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.3s ease;
}
.home-cat-card:hover .home-cat-glow { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
.home-cat-info {
    flex: 1;
    min-width: 0;
}
.home-cat-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}
.home-cat-card:hover .home-cat-name { color: var(--primary); }
.home-cat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-cat-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.home-cat-card:hover .home-cat-arrow {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}
@media (max-width: 1200px) {
    .home-categories-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .home-categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .home-categories-grid { grid-template-columns: 1fr; gap: 14px; }
    .home-cat-img-circle { width: 60px; height: 60px; }
    .home-cat-img-circle i { font-size: 1.4rem; }
}

/* ===== 5. TEAM FRONTEND PAGE ===== */
.team-hero {
    padding: 80px 0 60px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 16px;
}
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}
.team-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(255,107,53,0.15);
    border-color: rgba(255,107,53,0.35);
}
.team-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}
.team-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-card:hover .team-card-img-wrap img { transform: scale(1.08); }
.team-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -2px;
}
.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(255,107,53,0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-social-links {
    display: flex;
    gap: 12px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}
.team-card:hover .team-social-links { transform: translateY(0); }
.team-social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}
.team-social-link:hover { background: white; color: var(--primary); }
.team-card-body {
    padding: 24px 20px 20px;
    text-align: center;
}
.team-dept-badge {
    display: inline-block;
    background: rgba(255,107,53,0.12);
    color: var(--primary);
    border: 1px solid rgba(255,107,53,0.25);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.team-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}
.team-designation {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.team-exp {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(255,107,53,0.08);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
}
@media (max-width: 1200px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; gap: 20px; } }
