/* ==========================================================================
   Bright Rubber - Premium Industrial Theme
   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --primary: #0a3d62;
    --primary-light: #1e5f8a;
    --primary-dark: #062a44;
    --accent-orange: #ff6b35;
    --accent-orange-light: #f7931e;
    --accent-red: #c8102e;
    --accent-red-dark: #a00d24;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-50: #f1f5f9;
    --gray-100: #e2e8f0;
    --gray-200: #cbd5e1;
    --gray-300: #94a3b8;
    --gray-400: #64748b;
    --gray-500: #475569;
    --gray-600: #334155;
    --gray-700: #1e293b;
    --gray-800: #0f172a;
    --gray-900: #020617;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --bg-body: #ffffff;
    --bg-section: #f8fafc;
    --bg-card: #ffffff;
    --border-color: rgba(10, 61, 98, 0.1);
    --shadow-sm: 0 2px 8px rgba(10, 61, 98, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 61, 98, 0.1);
    --shadow-lg: 0 20px 60px rgba(10, 61, 98, 0.15);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: 16px;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10, 61, 98, 0.92) 0%, rgba(30, 95, 138, 0.85) 50%, rgba(200, 16, 46, 0.3) 100%);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
    --topbar-height: 40px;
}

[data-theme="dark"] {
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --bg-body: #0a1628;
    --bg-section: #0f1d32;
    --bg-card: #152238;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(21, 34, 56, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gray-50: #152238;
    --gray-100: #1e293b;
}

/* --- Base & Reset --- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-body);
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--accent-orange); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background: var(--accent-orange);
    color: var(--white);
}

/* --- Utility Classes --- */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }
.bg-section { background: var(--bg-section); }
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* --- Glassmorphism --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* --- Buttons --- */
.btn-gradient {
    background: var(--gradient-accent);
    border: none;
    color: var(--white) !important;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    z-index: 1;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-orange-light) 0%, var(--accent-red) 100%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--white) !important;
}

.btn-gradient:hover::before { opacity: 1; }

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--radius-full);
    background: transparent;
    transition: all var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- Top Bar --- */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 8px 0;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
}

.top-bar-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.top-bar-info a,
.top-bar-info span {
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

.top-bar-info a:hover { color: var(--accent-orange-light); }

.top-bar-info i { color: var(--accent-orange); font-size: 0.8rem; }

.top-bar-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}

.top-bar-social a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.85rem;
}

.theme-toggle:hover {
    background: var(--accent-orange);
    transform: rotate(20deg);
}

/* --- Sticky Header --- */
.main-header {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: all var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
    background: var(--glass-bg);
}

.main-header .navbar {
    padding: 12px 0;
    min-height: var(--header-height);
}

.main-header .navbar-brand img {
    transition: transform var(--transition);
    max-height: 55px;
    width: auto;
}

.main-header.scrolled .navbar-brand img { max-height: 48px; }

.main-header .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    padding: 8px 16px !important;
    position: relative;
    transition: color var(--transition);
}

.main-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform var(--transition);
    border-radius: 2px;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: var(--accent-orange);
}

.main-header .nav-link:hover::after,
.main-header .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler {
    border: none;
    padding: 8px;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230a3d62' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-theme="dark"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f1f5f9' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --- Mega Menu --- */
.mega-dropdown { position: static !important; }

.mega-menu {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    border: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 30px 0;
    margin-top: 0 !important;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    animation: fadeSlideDown 0.3s ease;
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mega-menu h6 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}

.mega-menu .dropdown-item {
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
    border-radius: var(--radius-sm);
}

.mega-menu .dropdown-item i {
    color: var(--primary-light);
    font-size: 1rem;
    width: 20px;
}

.mega-menu .dropdown-item:hover {
    color: var(--accent-orange);
    background: transparent;
    padding-left: 8px;
}

.mega-featured {
    padding: 24px !important;
    text-align: center;
}

.mega-featured img { margin: 0 auto; }

.mega-featured p { color: var(--text-secondary); margin-bottom: 16px; }

/* --- Header Search --- */
.header-search { position: relative; }

.search-wrapper {
    position: relative;
    min-width: 220px;
}

.search-wrapper .form-control {
    padding: 10px 40px 10px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.search-wrapper .form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(30, 95, 138, 0.15);
}

.search-wrapper .bi-search {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 360px;
    overflow-y: auto;
    z-index: 1100;
    display: none;
}

.search-results.active { display: block; animation: fadeSlideDown 0.2s ease; }

.search-results .search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition);
    color: var(--text-primary);
}

.search-results .search-item:last-child { border-bottom: none; }

.search-results .search-item:hover { background: var(--gray-50); }

.search-results .search-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.search-results .search-item-info h6 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.search-results .search-item-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.search-results .search-no-result,
.search-results .search-loading {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.search-results .search-view-all {
    display: block;
    text-align: center;
    padding: 12px;
    font-weight: 600;
    color: var(--accent-orange);
    border-top: 1px solid var(--border-color);
}

/* --- Hero Slider --- */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding: 120px 0 80px;
}

.hero-content .hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    color: var(--accent-orange-light);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.hero-dot.active {
    background: var(--accent-orange);
    width: 32px;
    border-radius: var(--radius-full);
}

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 100%;
    pointer-events: none;
}

.hero-arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all var(--transition);
    font-size: 1.2rem;
}

.hero-arrow:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

.hero-arrow.prev { left: 30px; }
.hero-arrow.next { right: 30px; }

/* --- Product Cards --- */
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray-50);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img { transform: scale(1.08); }

.product-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 61, 98, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover .product-card-overlay { opacity: 1; }

.product-card-overlay .btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--white);
    color: var(--primary);
    border: none;
    transition: all var(--transition);
}

.product-card-overlay .btn:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: scale(1.1);
}

.product-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-category {
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.product-card:hover .product-card-title { color: var(--accent-orange); }

.product-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    flex: 1;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.product-card-footer .btn-inquire {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.product-card-footer .btn-inquire:hover { gap: 10px; color: var(--accent-orange); }

/* --- Counter Section --- */
.counter-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.counter-item {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.counter-item .counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-orange-light);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.counter-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 0.95rem;
    opacity: 0.85;
    font-weight: 500;
}

/* --- Testimonials --- */
.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    line-height: 1;
    color: var(--accent-orange);
    opacity: 0.15;
    font-family: Georgia, serif;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.testimonial-author-info h6 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-author-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 61, 98, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay h6 {
    color: var(--white);
    font-size: 0.95rem;
    margin: 0;
}

.gallery-item-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform var(--transition);
}

.gallery-item:hover .gallery-item-zoom { transform: translate(-50%, -50%) scale(1); }

/* --- CTA Section --- */
.cta-section { padding: 80px 0; }

.cta-box {
    padding: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box h3 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
}

.cta-box p {
    opacity: 0.9;
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* --- Footer --- */
.main-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top { padding: 80px 0 50px; }

.footer-logo { filter: brightness(0) invert(1); }

.main-footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.main-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '\203A';
    margin-right: 8px;
    color: var(--accent-orange);
    transition: margin var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact { list-style: none; padding: 0; margin: 0; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.92rem;
}

.footer-contact i {
    color: var(--accent-orange);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a { color: rgba(255, 255, 255, 0.7); }
.footer-contact a:hover { color: var(--white); }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    padding: 10px 16px;
}

.newsletter-form .form-control::placeholder { color: rgba(255, 255, 255, 0.5); }

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-orange);
    box-shadow: none;
    color: var(--white);
}

.newsletter-form .btn-gradient {
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    padding: 10px 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    font-size: 0.88rem;
}

.footer-bottom a { color: rgba(255, 255, 255, 0.7); }
.footer-bottom a:hover { color: var(--accent-orange); }

/* --- Floating Buttons --- */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-btn {
    background: #25d366;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

.call-btn { background: var(--primary-light); }

.back-top {
    background: var(--accent-orange);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- Page Banner --- */
.page-banner {
    position: relative;
    padding: 100px 0 80px;
    background: var(--gradient-primary);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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.03'%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");
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.9) 0%, rgba(30, 95, 138, 0.8) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}

.banner-content h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.banner-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* --- Breadcrumb --- */
.br-breadcrumb { margin-top: 16px; }

.br-breadcrumb .breadcrumb {
    justify-content: center;
    background: transparent;
    margin: 0;
    padding: 0;
}

.br-breadcrumb .breadcrumb-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.br-breadcrumb .breadcrumb-item a { color: rgba(255, 255, 255, 0.85); }

.br-breadcrumb .breadcrumb-item a:hover { color: var(--accent-orange-light); }

.br-breadcrumb .breadcrumb-item.active { color: var(--accent-orange-light); }

.br-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: '\203A';
}

/* --- Product Detail --- */
.product-detail { padding: 60px 0; }

.product-gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-50);
    aspect-ratio: 4/3;
    margin-bottom: 16px;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-gallery-thumbs .thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition);
    opacity: 0.7;
}

.product-gallery-thumbs .thumb.active,
.product-gallery-thumbs .thumb:hover {
    border-color: var(--accent-orange);
    opacity: 1;
}

.product-gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.product-info .product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.product-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.product-meta-item i { color: var(--accent-orange); }

.product-info .product-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.product-specs {
    background: var(--bg-section);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.product-specs h5 { margin-bottom: 16px; font-size: 1rem; }

.product-specs table { width: 100%; margin: 0; }

.product-specs table td {
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.product-specs table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    width: 40%;
}

.product-specs table td:last-child { color: var(--text-secondary); }

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* --- Filter Sidebar --- */
.filter-sidebar {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-color);
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.filter-sidebar h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.filter-group { margin-bottom: 24px; }

.filter-group h6 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.filter-group .form-check {
    margin-bottom: 8px;
    padding-left: 28px;
}

.filter-group .form-check-input:checked {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.filter-group .form-check-label {
    font-size: 0.92rem;
    cursor: pointer;
}

.filter-clear {
    font-size: 0.85rem;
    color: var(--accent-red);
    cursor: pointer;
    font-weight: 600;
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.products-count { font-size: 0.9rem; color: var(--text-secondary); }

.products-sort .form-select {
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    padding: 8px 36px 8px 16px;
    border-color: var(--border-color);
}

/* --- Blog Cards --- */
.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img { transform: scale(1.06); }

.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-card-meta i { color: var(--accent-orange); margin-right: 4px; }

.blog-card-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
    transition: color var(--transition);
}

.blog-card:hover .blog-card-title { color: var(--accent-orange); }

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    flex: 1;
}

.blog-card .read-more {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card .read-more:hover { gap: 10px; color: var(--accent-orange); }

/* --- FAQ Accordion --- */
.faq-section .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
}

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 24px;
    background: var(--bg-card);
    color: var(--text-primary);
    box-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--bg-section);
    color: var(--accent-orange);
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6b35'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* --- Contact & Quote Forms --- */
.contact-section,
.quote-section { padding: 80px 0; }

.contact-info-card {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-orange-light);
    flex-shrink: 0;
}

.contact-info-item h6 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    margin: 0;
}

.contact-info-item a:hover { color: var(--accent-orange-light); }

.contact-form,
.quote-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-form h3,
.quote-form h3 { margin-bottom: 8px; }

.contact-form .form-subtitle,
.quote-form .form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border-radius: var(--radius-md);
    border-color: var(--border-color);
    background: var(--bg-body);
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(30, 95, 138, 0.12);
}

.form-control,
.form-select {
    border-radius: var(--radius-md);
    border-color: var(--border-color);
    padding: 12px 16px;
    background: var(--bg-body);
    color: var(--text-primary);
    transition: all var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(30, 95, 138, 0.12);
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

textarea.form-control { min-height: 120px; resize: vertical; }

/* --- Form Validation --- */
.form-control.is-valid,
.form-select.is-valid {
    border-color: #22c55e;
    background-image: none;
    padding-right: 16px;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: var(--accent-red);
    background-image: none;
    padding-right: 16px;
}

.invalid-feedback {
    font-size: 0.82rem;
    color: var(--accent-red);
    margin-top: 4px;
}

.valid-feedback {
    font-size: 0.82rem;
    color: #22c55e;
    margin-top: 4px;
}

.form-control.is-invalid:focus { box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15); }
.form-control.is-valid:focus { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15); }

/* --- Loading States --- */
.btn-loading {
    position: relative;
    pointer-events: none;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-body);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.lazy-loading {
    background: linear-gradient(90deg, var(--gray-50) 25%, var(--gray-100) 50%, var(--gray-50) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

img.lazy { opacity: 0; transition: opacity 0.4s ease; }
img.lazy.loaded { opacity: 1; }

/* --- Toast Notifications --- */
.toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.br-toast {
    min-width: 300px;
    max-width: 400px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: toastIn 0.4s ease;
    position: relative;
    overflow: hidden;
}

.br-toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.br-toast.success::before { background: #22c55e; }
.br-toast.error::before { background: var(--accent-red); }
.br-toast.warning::before { background: #f59e0b; }
.br-toast.info::before { background: var(--primary-light); }

.br-toast .toast-icon { font-size: 1.3rem; flex-shrink: 0; }
.br-toast.success .toast-icon { color: #22c55e; }
.br-toast.error .toast-icon { color: var(--accent-red); }
.br-toast.warning .toast-icon { color: #f59e0b; }
.br-toast.info .toast-icon { color: var(--primary-light); }

.br-toast .toast-content h6 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.br-toast .toast-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.br-toast .toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    font-size: 1.1rem;
    line-height: 1;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(40px); }
}

.br-toast.removing { animation: toastOut 0.3s ease forwards; }

/* --- Pagination --- */
.pagination .page-link {
    border-radius: var(--radius-sm);
    margin: 0 3px;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 14px;
    transition: all var(--transition);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-accent);
    border-color: transparent;
    color: var(--white);
}

.pagination .page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* --- Client Logos --- */
.clients-section { padding: 60px 0; }

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition);
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.client-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* --- Industry Cards --- */
.industry-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition);
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
}

.industry-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.industry-card h5 { margin-bottom: 12px; font-size: 1.1rem; }

.industry-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* --- Certificate Cards --- */
.certificate-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition);
}

.certificate-card:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.certificate-card img { width: 100%; }

/* --- Map Embed --- */
.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 400px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Modal Overrides --- */
.modal-content.glass-card {
    border: 1px solid var(--glass-border);
}

[data-theme="dark"] .modal-content { background: var(--bg-card); }
[data-theme="dark"] .btn-close { filter: invert(1); }

/* --- Responsive --- */
@media (max-width: 1199.98px) {
    .mega-menu { padding: 20px 0; }
    .search-wrapper { min-width: 180px; }
}

@media (max-width: 991.98px) {
    .section-padding { padding: 70px 0; }
    .top-bar { display: none; }
    .main-header .navbar-collapse {
        background: var(--bg-card);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 12px;
        box-shadow: var(--shadow-md);
    }
    .mega-menu {
        position: static !important;
        box-shadow: none;
        border: none;
        padding: 10px 0 10px 16px;
        background: transparent;
    }
    .mega-menu .container { padding: 0; }
    .mega-menu .row > div { margin-bottom: 16px; }
    .mega-featured { display: none; }
    .header-search { margin: 16px 0; }
    .search-wrapper { min-width: 100%; }
    .hero-section { min-height: 70vh; }
    .hero-content { padding: 80px 0 60px; }
    .hero-arrow { display: none; }
    .cta-box { padding: 32px; text-align: center; }
    .cta-box .text-lg-end { text-align: center !important; margin-top: 20px; }
    .filter-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    .contact-form,
    .quote-form { padding: 28px; }
    .floating-buttons { bottom: 16px; right: 16px; }
    .float-btn { width: 46px; height: 46px; font-size: 1.1rem; }
}

@media (max-width: 767.98px) {
    .section-padding { padding: 50px 0; }
    .section-header { margin-bottom: 40px; }
    .hero-content h1 { font-size: 1.8rem; }
    .counter-section { padding: 50px 0; }
    .footer-top { padding: 50px 0 30px; }
    .page-banner { padding: 70px 0 50px; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
    .product-actions { flex-direction: column; }
    .product-actions .btn { width: 100%; }
    .toast-container { left: 16px; right: 16px; }
    .br-toast { min-width: auto; max-width: none; }
}

@media (max-width: 575.98px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .products-toolbar { flex-direction: column; align-items: flex-start; }
}

/* --- Print --- */
@media print {
    .top-bar, .main-header, .floating-buttons, .cta-section, .toast-container { display: none !important; }
    body { color: #000; background: #fff; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
