/*
 * FM Uniform Styles
 * A clean, modern stylesheet for the FM Uniform website.
 */

/* Reset margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f7f9fc;
}

/* Container to wrap content centrally */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Header styling */
.header {
    background-color: #0d6efd; /* Primary blue */
    color: #fff;
    padding: 1rem 0;
}

.header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.8;
}

/* Hero section */
.hero {
    background-image: linear-gradient(rgba(13, 110, 253, 0.8), rgba(13, 110, 253, 0.8)), url('https://images.unsplash.com/photo-1523473827539-68d6450e6ef3?fit=crop&w=1600');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Section headings */
section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0d6efd;
    border-bottom: 3px solid #ff5722;
    display: inline-block;
    padding-bottom: 0.3rem;
}

/* Product categories */
.product-category {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product-category h3 {
    color: #ff5722; /* Accent orange */
    margin-bottom: 0.5rem;
}

.product-category p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.product-category ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-category ul li {
    margin-bottom: 0.4rem;
}

.product-category ul li ul {
    list-style-type: circle;
    margin-top: 0.3rem;
}

/* Services styling */
.services .service-group {
    margin-bottom: 1.5rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.services h3 {
    color: #ff5722;
    margin-bottom: 0.5rem;
}

.services p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.services ul {
    list-style-type: square;
    margin-left: 1.5rem;
}

/* About and contact */
.about, .contact {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact ul {
    list-style: none;
    margin-top: 0.5rem;
}

.contact li {
    margin-bottom: 0.5rem;
}

/* Locations section */
.locations {
    background-color: #f0f4ff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.locations .location-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.locations .location-list li {
    background-color: #0d6efd;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.footer p {
    font-size: 0.9rem;
}

/* Responsive styles */
@media (min-width: 768px) {
    .nav ul {
        gap: 2rem;
    }
    .product-category {
        display: inline-block;
        vertical-align: top;
        width: calc(50% - 1rem);
        margin-right: 1rem;
    }
    .services .service-group {
        width: calc(50% - 1rem);
        display: inline-block;
        vertical-align: top;
        margin-right: 1rem;
    }
}

@media (min-width: 992px) {
    .product-category {
        width: calc(33.333% - 1rem);
    }
    .services .service-group {
        width: calc(25% - 1rem);
    }
    .hero h2 {
        font-size: 3rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
}

/* Highlights section */
.highlights {
    background-color: #fff;
    padding: 2rem 0;
}

.highlights .highlight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight-card {
    flex: 1 1 45%;
    background-color: #f7f9fc;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-width: 250px;
}

.highlight-card h3 {
    color: #0d6efd;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight-card p {
    font-size: 0.95rem;
}

/* Expertise section */
.expertise {
    background-color: #f7f9fc;
    padding: 2rem 0;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.expertise-card {
    flex: 1 1 45%;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-width: 250px;
}

.expertise-card h3 {
    color: #ff5722;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.expertise-card p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.expertise-card ul {
    list-style-type: square;
    margin-left: 1.2rem;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* Ready-made workwear section */
.ready-made {
    background-color: #fff;
    padding: 2rem 0;
}

.ready-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.ready-card {
    flex: 1 1 30%;
    background-color: #f7f9fc;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-width: 250px;
}

.ready-card h3 {
    color: #0d6efd;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.ready-card p {
    font-size: 0.9rem;
}

/* Process section */
.process {
    background-color: #f7f9fc;
    padding: 2rem 0;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.process-step {
    flex: 1 1 45%;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-width: 250px;
}

.process-step h3 {
    color: #ff5722;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.process-step ul {
    list-style-type: disc;
    margin-left: 1.2rem;
    font-size: 0.9rem;
}

/* Why choose us section */
.why {
    background-color: #fff;
    padding: 2rem 0;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.why-card {
    flex: 1 1 45%;
    background-color: #f7f9fc;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-width: 250px;
}

.why-card h3 {
    color: #0d6efd;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.why-card p {
    font-size: 0.95rem;
}

/* Responsive adjustments for new sections */
@media (min-width: 992px) {
    .highlight-card, .expertise-card, .ready-card, .process-step, .why-card {
        flex: 1 1 calc(25% - 1rem);
    }
    .ready-card {
        flex: 1 1 calc(33.333% - 1rem);
    }
    .process-step {
        flex: 1 1 calc(25% - 1rem);
    }
}

/* Top bar styling */
.top-bar {
    background-color: #f0f4ff;
    color: #333;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-info span {
    margin-right: 0.4rem;
}

.btn-quote {
    background-color: #ff5722;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-quote:hover {
    background-color: #e64a19;
}

/* Hero buttons */
.hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #ff5722;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    opacity: 0.85;
}

.btn-secondary {
    background-color: #ffffff;
    color: #0d6efd;
    border: 2px solid #0d6efd;
}

.btn-secondary:hover {
    background-color: #0d6efd;
    color: #fff;
}