/* General Styles */
body {
    background: var(--background-color);
    color: #222;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 80px;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    border: none;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--hover-color);
}

.btn-secondary {
    background: #fff;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: 6px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    margin-left: 1rem;
    transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(160deg, var(--background-color) 60%, #fff0ff 100%);
    padding: 6rem 0 4rem 0; /* Adjusted padding for better spacing */
    min-height: 600px; /* Increased height for more space */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem; /* Increased gap for better separation */
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 400px; /* Adjusted flex basis for better alignment */
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem; /* Increased font size for emphasis */
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 1.5rem; /* Increased margin for better separation */
    line-height: 1.2;
}

.hero-text .highlight {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.2rem; /* Slightly larger font size for readability */
    color: #444;
    margin-bottom: 2.5rem; /* Increased margin for better separation */
}

.hero-buttons {
    display: flex;
    gap: 1.5rem; /* Increased gap for better separation */
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem; /* Increased gap for better separation */
    margin-top: 2rem; /* Increased margin for better separation */
}
.hero-stats p{
    color: #444;
    font-weight: 600;
    font-size: 1.2rem;
}

.hero-stats div {
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem; /* Slightly larger font size for emphasis */
}

.hero-stats div span {
    font-size: 1.6rem; /* Increased font size for emphasis */
    display: block;
    color: var(--primary-color);
}

.hero-image {
    flex: 1 1 350px; /* Adjusted flex basis for better alignment */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 400px; /* Increased width for better visibility */
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    background: #fff;
}

/* Services Section */
.services-section {
    background: white;
    padding: 6rem 0 4rem 0; /* Increased padding for top and bottom */
}

.services-section h2 {
    text-align: center;
    font-size: 2.4rem; /* Slightly larger font size for better emphasis */
    font-weight: 700;
    margin-bottom: 1rem; /* Increased margin for better separation */
    color: #1a2a3a;
}

.services-section .highlight {
    color: var(--primary-color);
}

.services-section p {
    text-align: center;
    color: #444;
    margin-bottom: 3rem; /* Increased margin for better separation */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.5rem; /* Increased gap between service cards */
}

.service-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 2.5rem 2rem; /* Increased padding for more content space */
    text-align: left;
    transition: box-shadow 0.2s, transform 0.2s;
    border-top: 6px solid #e8f6f8;
}

.service-card p {
    text-align: left;
    color: #444;
    margin-bottom: 3rem; /* Increased margin for better separation */
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(230,57,70,0.09);
    transform: translateY(-6px) scale(1.02);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    background: #f3fff3;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem; /* Increased margin for better separation */
}

.service-card h3 {
    font-size: 1.35rem; /* Slightly larger font size for better emphasis */
    font-weight: 600;
    margin-bottom: 0.75rem; /* Increased margin for better separation */
    color: #1a2a3a;
}

.service-card p {
    color: #444;
    margin-bottom: 1.5rem; /* Increased margin for better separation */
}

.service-card a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.service-card a:hover {
    color: var(--hover-color);
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

.services-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.0rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.15);
}

@media (max-width: 768px) {
    .services-cta {
        margin-top: 3rem;
    }
    
    .services-cta .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .products-section {
        padding: 4rem 0;
    }

    .featured-products {
        gap: 1.5rem;
        margin: 20px 0;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-info h3 {
        margin-bottom: 0.3rem;
    }

    .product-type,
    .product-pack {
        margin-bottom: 0.3rem;
    }

    .product-price {
        margin-top: 0.7rem;
    }

    .products-cta {
        margin-top: 2rem;
    }

    .category-tags {
        gap: 8px;
        margin: 20px 0;
    }
}

@media (max-width: 600px) {
    .services-section p, 
    .about-text p, 
    .contact-section p, 
    .divisions-section p,
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .contact-info p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-stats p {
        font-size: 0.95rem;
    }

    .products-section {
        padding: 3rem 0;
    }

    .featured-products {
        gap: 1rem;
        margin: 15px 0;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 0.8rem;
    }

    .product-price {
        margin-top: 0.5rem;
    }

    .products-cta {
        margin-top: 1.5rem;
    }

    .category-tags {
        gap: 6px;
        margin: 15px 0;
    }

    .no-products {
        padding: 25px;
    }

    .loading {
        padding: 20px;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.about-header .highlight {
    color: var(--primary-color);
}

.about-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-header h2 {
        font-size: 2rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }
}

.values-section {
    margin-top: 80px;
    text-align: center;
}

.values-section h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0f7;
    border-radius: 50%;
}

.value-icon img {
    width: 32px;
    height: 32px;
}

.value-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .values-section {
        margin-top: 60px;
    }

    .values-grid {
        gap: 20px;
    }

    .value-card {
        padding: 25px;
    }

    .value-icon {
        width: 56px;
        height: 56px;
    }

    .value-card h4 {
        font-size: 1.2rem;
    }
}

/* Contact Section */
.contact-section {
    background: var(--background-color);
    padding: 6rem 0 4rem 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 1rem;
}

.contact-section .highlight {
    color: var(--primary-color);
}

.contact-section > .container > p {
    text-align: center;
    color: #444;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-content {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper, .contact-info {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    flex: 1 1 400px;
    min-width: 350px;
}

.contact-form-wrapper h2, .contact-info h2 {
    font-size: 1.6rem;
    color: #1a2a3a;
    font-weight: 700;
}

.contact-form-wrapper input, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: border 0.2s;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-info p {
    color: #444;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: inline-block;
    min-width: 120px;
}

/* Divisions Section */
.divisions-section {
    background: #fff;
    padding: 6rem 0;
}

.divisions-section h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 1rem;
}

.divisions-section p {
    text-align: center;
    color: #444;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.division-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.division-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.division-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.division-card:hover img {
    transform: scale(1.05);
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: white;
}

.products-section h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 1rem;
}

.products-section .highlight {
    color: var(--primary-color);
}

.products-section > .container > p {
    text-align: center;
    color: #444;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
    justify-content: center;
}

.category-tag {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.category-tag:hover, .category-tag.active {
    background: var(--primary-color);
    color: white;
}

.category-tag.view-more {
    background: var(--hover-color);
    color: white;
    border-color: var(--hover-color);
}

.featured-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 40px 0;
}

.product-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2a3a;
    margin-bottom: 0.5rem;
}

.product-type {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.product-pack {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

.products-cta {
    text-align: center;
    margin-top: 3rem;
}

.products-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1em;
}

.no-products {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.no-products p {
    margin: 0;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .divisions-section h2 {
        font-size: 2rem;
    }
    
    .divisions-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .division-card {
        padding: 1.5rem;
    }

    .products-section {
        padding: 4rem 0;
    }

    .featured-products {
        gap: 1.5rem;
        margin: 20px 0;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-info h3 {
        margin-bottom: 0.3rem;
    }

    .product-type,
    .product-pack {
        margin-bottom: 0.3rem;
    }

    .product-price {
        margin-top: 0.7rem;
    }

    .products-cta {
        margin-top: 2rem;
    }

    .category-tags {
        gap: 8px;
        margin: 20px 0;
    }
}

@media (max-width: 600px) {
    .services-section p, 
    .about-text p, 
    .contact-section p, 
    .divisions-section p,
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .contact-info p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-stats p {
        font-size: 0.95rem;
    }

    .products-section {
        padding: 3rem 0;
    }

    .featured-products {
        gap: 1rem;
        margin: 15px 0;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 0.8rem;
    }

    .product-price {
        margin-top: 0.5rem;
    }

    .products-cta {
        margin-top: 1.5rem;
    }

    .category-tags {
        gap: 6px;
        margin: 15px 0;
    }

    .no-products {
        padding: 25px;
    }

    .loading {
        padding: 20px;
    }
}
