/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700;900&display=swap');

:root {
    /* Theme: White & Red */
    --bg-color: #ffffff;
    /* Pure White */
    --card-bg: #f8f8f8;
    /* Very Light Grey */
    --text-primary: #1a1a1a;
    /* Almost Black */
    --text-secondary: #555555;
    /* Dark Grey */

    /* Aggressive Red Accents */
    --accent-primary: #ff0000;
    /* Neon Red - Unchanged for identity */
    --accent-secondary: #cc0000;
    /* Slightly Darker Red for gradients */
    --accent-gradient: linear-gradient(135deg, #ff0000, #cc0000);

    --navbar-height: 80px;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Link Reset */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Background Glow Effect - Light Theme */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Top Bar */
.top-bar {
    background: #f4f4f4;
    border-bottom: 1px solid #e0e0e0;
    padding: 0.5rem 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.top-bar i {
    color: var(--accent-primary);
    margin-right: 8px;
}

.top-bar span {
    margin-left: 25px;
}

/* Header & Navbar */
header {
    position: relative;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Removed header::before backdrop since we applied it to header directly for cleaner light mode */
header::before {
    display: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    height: var(--navbar-height);
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 5px;
    animation: spin 10s linear infinite;
}

.logo-main {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    /* Black Logo */
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo-sub {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 5px;
}

.logo span {
    color: var(--accent-primary);
}

.logo i {
    color: var(--accent-primary);
    animation: spin 10s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-client-zone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-primary);
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(255, 0, 0, 0.05);
    /* Light red tint */
    padding: 10px 20px;
    border: 1px solid var(--accent-primary);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-client-zone:hover {
    background: var(--accent-primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    transform: skew(-10deg);
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 6rem 5% 10rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

/* Light gradient for hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #f9f9f9 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
    z-index: 2;
}

.hero-content.hero-content-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-subtitle {
    color: var(--accent-primary);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 5px 0;
    border-bottom: 2px solid var(--accent-secondary);
    display: none;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #000;
}

/* Clean up hero text stroke for light mode */
.hero-text h1 span {
    color: var(--accent-primary);
    background: none;
    -webkit-text-fill-color: initial;
    -webkit-text-stroke: 0;
}

.hero-text p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 550px;
    border-left: 4px solid var(--accent-primary);
    padding-left: 1rem;
    background: rgba(0, 0, 0, 0.03);
}

/* Buttons */
.hero-cta,
.btn-search,
button {
    background: var(--accent-primary);
    color: #fff;
    padding: 0.8rem 2rem;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: visible;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover,
.btn-search:hover,
button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background: #cc0000;
    color: #fff;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.hero-image:hover img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transform: scale(1.03);
}

/* Filter Section */
.filter-section {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    padding: 0 5%;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border: 1px solid #e0e0e0;
    border-top: 4px solid var(--accent-primary);
    box-shadow: var(--shadow-soft);
    border-radius: 8px;
}

.filter-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.filter-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 4px;
}

.filter-header h3 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.filter-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.filter-row.three-cols {
    grid-template-columns: repeat(3, 1fr) !important;
}

.filter-group {
    width: 100%;
}

@media (max-width: 768px) {

    .filter-row,
    .filter-row.three-cols {
        grid-template-columns: 1fr;
    }
}

.filter-checkboxes {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    justify-content: flex-start;
}

/* Custom Checkbox */
.checkbox-container {
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    font-size: 0.85rem;
    color: #333;
    user-select: none;
    font-weight: 500;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    border: 2px solid #ccc;
    background-color: #fff;
    height: 18px;
    width: 18px;
    flex-shrink: 0;
    transition: all 0.2s;
    border-radius: 4px;
}

.checkbox-container input:checked~.checkmark {
    border-color: var(--accent-primary);
    background-color: var(--accent-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.filter-group label {
    display: block;
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    font-weight: 700;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.4rem 0.8rem;
    background: #fdfdfd;
    border: 1px solid #ddd;
    color: #333;
    font-family: inherit;
    transition: var(--transition);
    border-radius: 4px;
    height: 36px;
    font-size: 0.9rem;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

/* Products Section */
.products-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    padding: 2rem;
    background: #fdfdfd;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.05), transparent 60%);
    opacity: 0;
    transition: 0.3s;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-details {
    padding: 1.5rem;
}

.product-brand {
    color: var(--accent-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 800;
}

.product-title {
    font-size: 1.3rem;
    margin: 0.5rem 0 1rem 0;
    font-weight: 700;
    color: #111;
}

.spec-badge {
    background: #f4f4f4;
    padding: 4px 8px;
    font-size: 0.8rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
}

.btn-buy {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Footer */
footer {
    border-top: 1px solid #e0e0e0;
    padding: 4rem 5% 2rem;
    margin-top: 5rem;
    background: #f8f8f8;
    color: #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h4 {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #000;
    text-transform: uppercase;
    font-weight: 800;
    border-left: 3px solid var(--accent-primary);
    padding-left: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col a {
    color: #555;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-col a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.footer-col i {
    color: var(--accent-primary);
    margin-right: 15px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Lighter backdrop */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #fff;
    padding: 3rem;
    border: 1px solid #eee;
    border-top: 5px solid var(--accent-primary);
    text-align: center;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.phone-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.phone-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin: 1.5rem 0;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--accent-primary);
}

/* Page Headers */
.page-header {
    background: #f8f8f8;
    padding: 3rem 5%;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #000;
}

.page-header p {
    color: #555;
    font-size: 1.2rem;
}

/* Page Content */
/* Toast Notification */
.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    backdrop-filter: blur(5px);
    color: #000;
    padding: 1rem 2rem;
    border-left: 5px solid var(--accent-primary);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-weight: 700;
    min-width: 300px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #eee;
}

.notification-toast.show {
    transform: translateX(0);
}

.notification-toast.success {
    border-color: #28a745;
}

.notification-toast.success i {
    color: #28a745;
}

.notification-toast.error {
    border-color: #ff0000;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
    transition: var(--transition);
    flex-shrink: 0;
}

.service-item:hover .service-icon {
    background: var(--accent-primary);
    color: #fff;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.2);
    border-color: var(--accent-primary);
    transform: scale(1.1) rotate(5deg);
}

@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.2));
        transform: scale(1.05);
    }

    50% {
        filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.4));
        transform: scale(1.08);
    }

    100% {
        filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.2));
        transform: scale(1.05);
    }
}

/* Specific Glow for SVGs */
.service-item:hover .service-icon svg {
    animation: glowPulse 2s infinite ease-in-out;
}

/* For Standard Icons (FontAwesome) */
.service-item:hover .service-icon i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transform: scale(1.1);
    animation: none;
}

.service-item h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.service-item:hover h3 {
    color: var(--accent-primary);
}

.service-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Content Section Layout */
.content-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background: #fdfdfd;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.contact-info-item h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.contact-info-item h3 i {
    color: var(--accent-primary);
    background: rgba(255, 0, 0, 0.05);
    padding: 10px;
    border-radius: 4px;
}

.contact-info-item p {
    color: #555;
    line-height: 1.6;
    padding-left: 0;
    margin-left: 4px;
}

.contact-info-item p.phone-number {
    padding-left: 0;
    text-align: left;
    margin-top: 0.5rem;
    color: #000;
}

.contact-form-container {
    background: #fff;
    padding: 2.5rem;
    border: 1px solid #eee;
    border-top: 4px solid var(--accent-primary);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

/* Specific fix for inputs in contact form */
.contact-form-container form input,
.contact-form-container form textarea {
    width: 100%;
    padding: 1rem;
    background: #fdfdfd;
    border: 1px solid #ddd;
    color: #333;
    border-radius: 4px;
    margin-bottom: 0;
    font-family: 'Outfit', sans-serif;
    transition: 0.3s;
}

.contact-form-container form input:focus,
.contact-form-container form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.1);
}

.contact-form-container form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.contact-form-container h3 {
    color: #000;
}

/* Social Media Section */
.social-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
    margin-top: 2rem;
}

.btn-social-fb {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    color: #316FF6;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #ddd;
    cursor: pointer;
    width: 60px;
    height: 60px;
}

.btn-social-fb:hover {
    transform: translateY(-5px);
    border-radius: 50%;
    background: #1877F2;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #1877F2;
}

.btn-social-fb svg {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s;
}

.fb-label {
    position: absolute;
    opacity: 0;
    transition: all 0.3s;
    font-size: 0.8rem;
    color: #fff;
    pointer-events: none;
    top: -35px;
    background: #333;
    padding: 4px 8px;
    border-radius: 4px;
}

.btn-social-fb:hover .fb-label {
    opacity: 1;
    transform: translateY(-5px);
}

/* =========================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================= */

/* Footer Bottom Layout */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    border-top: 1px solid #ddd;
    margin-top: 4rem;
    color: #777;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-text {
    text-align: left;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #777;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

/* Tablet & Mobile Navigation */
.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: #1a1a1a;
    cursor: pointer;
    z-index: 2005;
    position: fixed;
    top: 25px;
    right: 5%;
    background: #fff;
    padding: 5px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .top-bar {
        font-size: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        text-align: center;
        padding: 0.8rem;
    }

    .top-bar span {
        margin-left: 10px;
    }

    .nav-container {
        padding: 0 5%;
        height: 70px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        gap: 2.5rem;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 800;
        letter-spacing: 2px;
        color: #000;
    }

    .nav-links a::after {
        height: 3px;
    }

    .nav-links a.active {
        color: var(--accent-primary);
    }

    .hero {
        padding-top: 6rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        margin-top: 1rem;
    }

    .hero {
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-text p {
        margin: 0 auto 2rem;
        border-left: none;
        padding-left: 0;
        padding-bottom: 0;
        width: 100%;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .filter-container {
        padding: 1.5rem;
        margin-top: 0;
        border-top: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        /* Softer shadow on mobile */
    }

    .filter-row,
    .filter-row.three-cols {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
    }

    .filter-checkboxes {
        justify-content: center;
    }

    .filter-actions button {
        width: 100% !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-col h4 {
        border-left: none;
        border-bottom: none;
        padding-left: 0;
        padding-bottom: 0.5rem;
        display: inline-block;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .footer-col h4::after {
        content: '';
        display: block;
        width: 40px;
        height: 3px;
        background: var(--accent-primary);
        margin: 8px auto 0;
    }

    .page-header h1 {
        text-align: center;
        font-size: 2.5rem;
        position: relative;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .page-header h1::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: var(--accent-primary);
        margin: 10px auto 0;
    }

    .footer-col i {
        margin-right: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-text,
    .footer-links {
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        position: static;
        transform: none;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .top-bar {
        font-size: 0.7rem;
        padding: 0.6rem 3%;
    }

    .contact-form-container form>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .hero-text>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .top-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.65rem;
        padding: 0.5rem;
        gap: 0.3rem;
    }

    .top-bar .top-left {
        display: none;
    }

    .top-bar .top-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .top-bar span {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .nav-container {
        height: 60px;
    }

    .logo-icon {
        font-size: 2rem;
    }

    .logo-main {
        font-size: 1.5rem;
    }

    .logo-sub {
        font-size: 0.7rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .page-header {
        padding: 1.5rem 5%;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
        width: 90%;
    }

    .phone-number {
        font-size: 1.8rem;
    }

    .filter-checkboxes {
        gap: 1rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .contact-form-container form>div[style*="grid-template-columns"] {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-grid {
        gap: 1.5rem;
    }

    .contact-info {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .contact-info-item {
        padding-bottom: 1rem;
        border-bottom: 1px solid #eee;
    }

    .contact-info-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .contact-info-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .contact-info-item p {
        font-size: 0.95rem;
    }

    .hero-text>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center;
        margin-top: 2rem !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .service-item {
        padding: 2rem 1.5rem;
    }

    .hero-cta,
    .btn-search,
    button {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }

    .footer-col ul li {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .logo-main {
        font-size: 1.3rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .page-header h1 {
        font-size: 1.7rem;
    }

    .contact-info-item h3 {
        font-size: 1rem;
        gap: 10px;
    }
}

/* Custom Select Styles */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select-wrapper select {
    display: none;
}

.select-selected {
    background-color: #fdfdfd;
    color: #333;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    transition: all 0.3s;
}

.select-selected.select-arrow-active {
    border-color: #ff0000;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Custom Arrow */
.select-selected:after {
    content: "";
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #333 transparent transparent transparent;
    margin-left: 10px;
    margin-top: 5px;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #ff0000 transparent;
    margin-top: -5px;
}

/* Dropdown Items Container */
.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid #ff0000;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.select-items div {
    color: #333;
    padding: 10px 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.select-items div:last-child {
    border-bottom: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: #ff0000;
    color: #fff;
}

.select-hide {
    display: none;
}

.select-items::-webkit-scrollbar {
    width: 8px;
}

.select-items::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.select-items::-webkit-scrollbar-thumb {
    background: #ff0000;
    border-radius: 4px;
}


/* Map Marker Reset */
.custom-map-marker {
    background: none !important;
    border: none !important;
}

/* Facebook Icon Style */
.wrapper {
    display: inline-flex;
    list-style: none;
    padding-left: 0;
}

.wrapper .icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
    margin: 10px 0;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #333;
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #1877F2;
    color: #ffffff;
}

/* Fix for link wrapping the li */
.wrapper a {
    text-decoration: none;
    color: inherit;
}

/* Product Detail Modal Styles */
.product-detail-content {
    max-width: 800px !important;
    width: 90%;
    padding: 1.5rem !important;
    /* Reduced padding */
    text-align: left !important;
    max-height: 90vh;
    /* Limit height */
    overflow-y: auto;
    /* Enable scrolling */
}

.modal-body {
    display: flex;
    gap: 1.5rem;
    /* Reduced gap */
    margin-bottom: 1.5rem;
    /* Reduced margin */
}

.modal-image-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdfdfd;
    padding: 0.5rem;
    /* Reduced padding */
    border-radius: 8px;
    border: 1px solid #eee;
}

.modal-product-img {
    width: 100%;
    height: auto;
    max-height: 250px;
    /* Reduced max height */
    object-fit: contain;
}

.modal-info-col {
    flex: 1.5;
    display: flex;
    flex-direction: column;
}

.modal-header-info {
    margin-bottom: 1rem;
    /* Reduced margin */
    border-bottom: 1px solid #eee;
    padding-bottom: 0.8rem;
    /* Reduced padding */
}

.modal-product-title {
    font-size: 1.2rem;
    /* Even smaller */
    font-weight: 800;
    color: #000;
    /* Pure black */
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.modal-brand {
    display: none;
    /* Hidden as requested */
    color: var(--accent-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

/* Stock Status */
.modal-stock-status {
    font-size: 0.8rem;
    /* Reduced font size */
    font-weight: bold;
    padding: 4px 8px;
    /* Reduced padding */
    border-radius: 4px;
    display: inline-block;
}

.modal-stock-status.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.modal-stock-status.low-stock {
    background: #fff8e1;
    color: #fbc02d;
    border: 1px solid #fff9c4;
}

.modal-stock-status.out-of-stock {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Price Block */
.modal-price-block {
    background: #f9f9f9;
    padding: 0.8rem;
    /* Reduced padding */
    border-radius: 8px;
    margin-bottom: 1rem;
    /* Reduced margin */
    border-left: 4px solid var(--accent-primary);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.3rem;
}

.price-label {
    font-size: 0.9rem;
    /* Reduced font size */
    color: #555;
    font-weight: 600;
}

.modal-price-brutto {
    font-size: 1.6rem;
    /* Reduced font size */
    font-weight: 900;
    color: #000;
}

.price-row-netto {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.price-label-netto {
    font-size: 0.8rem;
    /* Reduced font size */
    color: #777;
}

.modal-price-netto {
    font-size: 1rem;
    /* Reduced font size */
    color: #555;
    font-weight: 700;
}

/* Action Block */
.modal-action-block {
    margin-top: auto;
    text-align: center;
}

.phone-cta {
    background: var(--accent-primary);
    color: white;
    padding: 0.8rem;
    /* Reduced padding */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    /* Reduced gap */
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
    transition: transform 0.2s;
    cursor: default;
}

.phone-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.phone-cta i {
    font-size: 2rem;
    /* Reduced font size */
    animation: pulse 2s infinite;
}

.phone-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.call-text {
    font-size: 0.8rem;
    /* Reduced font size */
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 700;
}

.call-number {
    font-size: 1.5rem;
    /* Reduced font size */
    font-weight: 900;
}

.modal-note {
    font-size: 0.75rem;
    /* Reduced font size */
    color: #999;
    margin-top: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        /* Reduced scale */
    }

    100% {
        transform: scale(1);
    }
}

/* Specs Section */
.modal-specs-section {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    /* Reduced padding */
}

.modal-specs-section h3 {
    font-size: 1.1rem;
    /* Reduced font size */
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 1rem;
    /* Reduced margin */
    border-left: 4px solid var(--accent-primary);
    padding-left: 10px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    /* Smaller grid items */
    gap: 0.8rem;
    /* Reduced gap */
}

.spec-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 0.6rem;
    /* Reduced padding */
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.7rem;
    /* Reduced font size */
    color: #777;
    text-transform: uppercase;
    margin-bottom: 2px;
    font-weight: 600;
}

.spec-value {
    font-size: 0.85rem;
    /* Reduced font size */
    font-weight: 700;
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
        gap: 1rem;
    }

    .product-detail-content {
        padding: 1rem !important;
        width: 95%;
    }

    .modal-price-brutto {
        font-size: 1.6rem;
    }

    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }
}