/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-blue: #0d6efd;
    --dark-text: #333;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
}

body {
    color: var(--dark-text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
}
.btn-primary:hover {
    background-color: #0b5ed7;
}

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

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-icon {
    background: black;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 10px;
}
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-blue);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background-color: white;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.subtitle {
    color: #888;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Sections General */
.section {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    margin-bottom: 40px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    background: #f4f4f4;
    padding: 20px;
    text-align: center;}

.product-img img {
    max-width: 100%;
    height: auto;
}

.product-info {
    padding: 20px;
}

.category {
    font-size: 0.8rem;
    color: #888;
}

.product-info h4 {
    margin: 5px 0;
}

.price {
    color: var(--primary-blue);
    font-weight: bold;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    min-height: 300px;
}

.category-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.category-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.category-card img {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 120px;
}

/* Features Section */
.features-section {
    background: #e9ecef; /* Slightly darker gray for contrast */
    padding: 80px 0;
}

.features-section h2 {
    margin-bottom: 50px;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.feature-item {
    max-width: 250px;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #555;
}

.mt-4 {
    margin-top: 40px;
}

/* Contact Section */
.hero-banner-small {
    text-align: center;
    margin-bottom: 40px;}

.hero-banner-small h2 {
    font-size: 1.2rem;
    color: #888;
    letter-spacing: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

.map-container img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.location-box h3 {
    font-size: 1.5rem;    margin-bottom: 15px;
}

.location-box p {
    color: #666;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: #f1f1f1;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #ddd;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.social-icons a:hover {
    background: var(--primary-blue);
    color: white;
}

.right-col {
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Add JS toggle for real menu */
    }
    
    .hamburger {
        display: block;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .right-col {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}