:root {
    --primary-color: #0b2545;       /* Deep Dark Blue */
    --accent-color: #134074;        /* Medium Dark Blue */
    --secondary-color: #2e8b57;     /* Professional Green */
    --light-green: #e8f5e9;         /* Soft light green for alerts/accents */
    --dark-color: #1d2d44;          /* Dark Slate Blue/Grey */
    --light-color: #f0f4f8;         /* Very Light Blue-Grey */
    --border-color: #cbeeec;        /* Subtle border tone */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    background-color: #ffffff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 2px solid var(--secondary-color);
    padding: 15px 0;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
}

.search-form {
    display: flex;
    gap: 5px;
}

.search-form input {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    width: 250px;
}

.search-form button {
    padding: 8px 15px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-form button:hover {
    background-color: #246d44;
}

/* Navigation (Fluid) */
.site-nav {
    background-color: var(--primary-color);
    width: 100%;
}

.nav-container {
    width: 100%;
    padding: 0 5%;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu li a {
    display: block;
    color: white;
    padding: 12px 15px;
    text-decoration: none;
    transition: background 0.3s;
}

.nav-menu li a:hover, .nav-menu li a.active {
    background-color: var(--secondary-color);
    color: #ffffff;
}

/* Main Content Area */
.main-content {
    flex: 1;
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 20px 0;
    border-top: 4px solid var(--secondary-color);
}

/* Product Grid & Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px;
    background: var(--light-color);
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(11, 37, 69, 0.1);
}

.product-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-card h3 i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #246d44;
}

/* Hero Section */
.hero {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 6px;
    border-left: 5px solid var(--secondary-color);
}

.hero h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Success / Alert Message styling */
.alert-success {
    background-color: var(--light-green);
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    border: 1px solid #c3e6cb;
}

/* Fluid Hero Section */
.fluid-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: -30px;
    margin-bottom: 40px;
    overflow: hidden;
}

.fluid-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.fluid-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 37, 69, 0.75); /* Dark blue overlay */
    z-index: 2;
}

.fluid-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.fluid-hero .hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.fluid-hero .hero-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #e2e8f0;
}

/* Navigation Container & Toggle Alignment */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 12px 15px;
    margin-left: auto;
}

/* Responsive Navigation Styles */
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-container {
        flex-wrap: wrap;
        padding: 0;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        padding: 15px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* 2 Columns Image Stack Section Layout */
.image-stack-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
}

.image-stack-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.image-stack-content {
    flex: 1;
    min-width: 300px;
}

.image-stack-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.image-stack-content p {
    font-size: 1.05rem;
    color: var(--dark-color);
    line-height: 1.7;
}

/* Image Stack Wrapper on the Right */
.image-stack-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

/* Primary/Left Image: 100% Width and Height relative to container */
.stack-img-primary {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(11, 37, 69, 0.1);
}

/* Overlay/Right Image: 50% Width x 50% Height, 50px top margin, -40px left margin overlapping */
.stack-img-overlay {
    width: 50%;
    height: 50%;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 50px;
    margin-left: -40px;
    box-shadow: 0 10px 25px rgba(11, 37, 69, 0.15);
    z-index: 2;
    position: relative;
}

/* Responsive adjustment for small screens */
@media screen and (max-width: 768px) {
    .image-stack-container {
        flex-direction: column;
    }
    .stack-img-overlay {
        margin-left: 0;
        margin-top: 20px;
    }
}

/* Reverse Layout for Image Stack on Left */
@media screen and (min-width: 769px) {
    .image-stack-container.image-stack-reverse {
        flex-direction: row-reverse;
    }
}

/* Fluid Two-Column Section Styles */
.fluid-promo-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-color: var(--light-color); /* Light blue-grey background */
    padding: 80px 0;
    margin-top: 40px;
}

.fluid-promo-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.fluid-promo-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.fluid-promo-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(11, 37, 69, 0.12);
}

.fluid-promo-content {
    flex: 1;
    min-width: 300px;
}

.fluid-promo-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.fluid-promo-content p {
    font-size: 1.05rem;
    color: var(--dark-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Responsive adjustment for small screens */
@media screen and (max-width: 768px) {
    .fluid-promo-section {
        padding: 50px 0;
    }
    .fluid-promo-container {
        flex-direction: column;
    }
}

/* Fluid Full-Width 3 Columns Section */
.fluid-three-col-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 60px 0;
    background-color: #f8fafc; /* Optional background tint */
}

.fluid-three-col-container {
    width: 100%;
    max-width: 100%;
    padding: 0 30px; /* Outer spacing from screen edges */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Forces exactly 3 columns */
    gap: 25px;
    box-sizing: border-box;
}

.three-col-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.three-col-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(11, 37, 69, 0.1);
}

.three-col-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.three-col-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.three-col-card:hover .three-col-img-wrapper img {
    transform: scale(1.05);
}

.three-col-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.three-col-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.three-col-content p {
    font-size: 0.95rem;
    color: var(--dark-color);
    line-height: 1.6;
}

/* Responsive adjustment for tablets and mobile screens */
@media screen and (max-width: 992px) {
    .fluid-three-col-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        padding: 0 15px;
    }
}

/* Parallax Box Styles */
.parallax-section {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    min-height: 450px;
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 40px;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 37, 69, 0.82); /* Deep blue dark overlay color */
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.parallax-content h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.parallax-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #e2e8f0;
}

/* Fallback for mobile devices where fixed backgrounds can misbehave */
@media screen and (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }
}

/* Sales Team Two-Column Section Styles */
.sales-team-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 80px 0;
    background-color: #0b2545; /* Dark blue background */
    color: #ffffff;
}

.sales-team-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.sales-team-content {
    flex: 1;
    min-width: 300px;
}

.sales-team-content h2 {
    font-size: 2.2rem;
    color: #ffffff; /* White heading */
    margin-bottom: 20px;
    line-height: 1.3;
}

.sales-team-content p {
    font-size: 1.05rem;
    color: #e2e8f0; /* Light off-white text for readability */
    line-height: 1.7;
    margin-bottom: 15px;
}

.sales-team-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.sales-team-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustment for small screens */
@media screen and (max-width: 768px) {
    .sales-team-section {
        padding: 50px 0;
    }
    .sales-team-container {
        flex-direction: column-reverse;
    }
}

/* Featured 12-Product Grid Styles */
.featured-products-section {
    width: 100%;
    padding: 80px 0;
}

.featured-products-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid-12 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-item-card {
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(11, 37, 69, 0.1);
}

.product-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-item-card:hover .product-thumb img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--dark-color);
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.product-info .btn {
    display: inline-block;
    text-align: center;
    padding: 8px 12px;
    font-size: 0.9rem;
}

/* Responsive adjustments for tablets and mobile devices */
@media screen and (max-width: 1024px) {
    .products-grid-12 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .products-grid-12 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    .products-grid-12 {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 15px;
    line-height: 1.3;
}

.testimonials-header p {
    font-size: 1.05rem;
    color: var(--dark-color, #333333);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #f8fafc;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(11, 37, 69, 0.08);
}

.testimonial-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #64748b;
}

/* Responsive adjustments for tablets and mobile devices */
@media screen and (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

/* Fluid Newsletter Subscription Section Styles */
.fluid-newsletter-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-color: #0b2545; /* Dark blue theme color */
    color: #ffffff;
    padding: 60px 0;
    margin-bottom: 0 !important; /* Zero bottom margin */
}

.fluid-newsletter-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-content {
    flex: 1;
    min-width: 300px;
}

.newsletter-content h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.newsletter-content p {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin: 0;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-input:focus {
    border-color: #ffffff;
}

.newsletter-btn {
    white-space: nowrap;
    padding: 14px 28px;
    font-size: 1rem;
    cursor: pointer;
}

/* Responsive adjustment for small screens */
@media screen and (max-width: 768px) {
    .fluid-newsletter-section {
        padding: 40px 0;
    }
    .fluid-newsletter-container {
        flex-direction: column;
        align-items: stretch;
    }
    .newsletter-form {
        flex-direction: column;
    }
}

/* Remove bottom spacing from the preceding fluid newsletter section */
.fluid-newsletter-section {
    margin-bottom: 0 !important;
    padding-bottom: 40px !important;
}

/* Footer Styles (Zero Top Gap / Flush Alignment) */
.site-footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-color: #06182c;
    color: #ffffff;
    padding-top: 25px !important; /* Minimized top padding */
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.footer-col {
    text-align: left;
    margin-top: 0 !important;
}

.footer-col h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-top: 0 !important; /* Removes any default top margin on heading */
    margin-bottom: 20px;
    position: relative;
    text-align: left;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 35px;
    height: 2px;
    background-color: #f79e1b;
}

.footer-col p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-top: 0 !important;
    margin-bottom: 20px;
    text-align: left;
}

.footer-links, .footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-links li, .footer-contact-info li {
    margin-bottom: 10px;
    text-align: left;
}

.footer-links a, .footer-contact-info a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover, .footer-contact-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-contact-info li {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Payment Icons Layout */
.footer-payment-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 15px;
}

.payment-badge {
    background: #ffffff;
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.payment-badge span {
    display: none;
}

/* Footer Bottom Copyright */
.footer-bottom {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
    text-align: left !important;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
    text-align: left;
}

/* Responsive adjustment */
@media screen and (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
    }
}

/* About Us Hero Section */
.about-hero-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-color: #0b2545;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.about-hero-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.about-hero-section p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Company Overview Two-Column Section */
.about-overview-section {
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff;
}

.about-overview-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.about-overview-content {
    flex: 1;
    min-width: 300px;
}

.about-overview-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-overview-content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-overview-image {
    flex: 1;
    min-width: 300px;
}

.about-overview-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(11, 37, 69, 0.1);
}

/* Core Values 3-Column Section */
.about-values-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-color: #f8fafc;
    padding: 80px 0;
}

.about-values-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 35px 30px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(11, 37, 69, 0.08);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

/* Mission & Vision Section */
.mission-vision-section {
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff;
}

.mission-vision-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-box, .vision-box {
    background: #f8fafc;
    border-left: 4px solid var(--primary-color, #0b2545);
    padding: 35px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.mission-box h3, .vision-box h3 {
    font-size: 1.5rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 15px;
}

.mission-box p, .vision-box p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .about-values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .mission-vision-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .about-overview-container {
        flex-direction: column-reverse;
    }
    .about-hero-section h1 {
        font-size: 2.2rem;
    }
}

/* Products Page Hero Section */
.products-hero-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-color: #0b2545;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.products-hero-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.products-hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.products-hero-section p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Catalog Layout Section */
.catalog-section {
    width: 100%;
    padding: 60px 0;
    background-color: #f8fafc;
}

.catalog-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

/* Sidebar Filters */
.catalog-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.catalog-sidebar h3 {
    font-size: 1.2rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.category-filter-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.category-filter-list li {
    margin-bottom: 8px;
}

.category-filter-list a {
    display: block;
    padding: 10px 15px;
    background: #ffffff;
    color: #475569;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.category-filter-list a:hover,
.category-filter-list a.active {
    background: var(--primary-color, #0b2545);
    color: #ffffff;
    border-color: var(--primary-color, #0b2545);
}

.bulk-order-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
}

.bulk-order-box h4 {
    font-size: 1.1rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 10px;
}

.bulk-order-box p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 15px;
}

.bulk-order-box .btn {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
}

/* Main Catalog Area */
.catalog-main {
    flex: 1;
}

.catalog-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
}

.catalog-header-bar p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.sort-dropdown select {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #334155;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
}

/* Pagination */
.catalog-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}

.page-btn {
    padding: 10px 16px;
    background: #ffffff;
    color: var(--primary-color, #0b2545);
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary-color, #0b2545);
    color: #ffffff;
    border-color: var(--primary-color, #0b2545);
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .catalog-container {
        flex-direction: column;
    }
    .catalog-sidebar {
        width: 100%;
    }
    .products-grid-12 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 576px) {
    .products-grid-12 {
        grid-template-columns: 1fr !important;
    }
    .catalog-header-bar {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

/* Product Details Page Styles */
.product-details-section {
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff;
}

.product-details-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.product-image-area {
    flex: 1;
    min-width: 320px;
}

.main-product-img {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(11, 37, 69, 0.08);
}

.main-product-img img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.product-info-area {
    flex: 1;
    min-width: 320px;
}

.product-category-tag {
    display: inline-block;
    padding: 5px 12px;
    background-color: #e0f2fe;
    color: #0369a1;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info-area h1 {
    font-size: 2.3rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #047857; /* Professional green price accent */
}

.product-sku {
    font-size: 0.95rem;
    color: #64748b;
}

.product-full-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
}

.delivery-highlight-box {
    background-color: #f8fafc;
    border-left: 4px solid var(--primary-color, #0b2545);
    padding: 15px;
    font-size: 0.95rem;
    color: #334155;
    border-radius: 0 6px 6px 0;
    margin-bottom: 25px;
}

.product-inquiry-box {
    background-color: #f1f5f9;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.product-inquiry-box h3 {
    font-size: 1.15rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 12px;
}

.inquiry-form .form-row {
    display: flex;
    gap: 12px;
}

.inquiry-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    outline: none;
    background: #ffffff;
}

/* Related Products Section */
.related-products-section {
    width: 100%;
    padding: 60px 0;
    background-color: #f8fafc;
}

.related-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.related-container h2 {
    font-size: 1.8rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .product-details-container {
        flex-direction: column;
        gap: 30px;
    }
    .inquiry-form .form-row {
        flex-direction: column;
    }
    .related-products-section .products-grid-12 {
        grid-template-columns: 1fr !important;
    }
}

/* Product Details Section Layout */
.product-details-section {
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff;
}

.product-details-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Row: Image (Left) & Description (Right) */
.product-top-row {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.product-image-column {
    flex: 0 0 40%;
    max-width: 40%;
}

.main-product-img {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(11, 37, 69, 0.08);
}

.main-product-img img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.product-description-column {
    flex: 0 0 60%;
    max-width: 60%;
    flex-grow: 1;
}

.product-category-tag {
    display: inline-block;
    padding: 5px 12px;
    background-color: #e0f2fe;
    color: #0369a1;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description-column h1 {
    font-size: 2.3rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #047857;
}

.product-sku {
    font-size: 0.95rem;
    color: #64748b;
}

/* Feature Badges Layout */
.product-feature-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #334155;
}

.badge-item svg {
    color: #047857;
    flex-shrink: 0;
}

.description-block {
    margin-bottom: 25px;
}

.description-block h3 {
    font-size: 1.2rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 10px;
}

.product-full-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.product-inquiry-box {
    background-color: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.product-inquiry-box h3 {
    font-size: 1.15rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 12px;
}

.inquiry-form .form-row {
    display: flex;
    gap: 12px;
}

.inquiry-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    outline: none;
    background: #ffffff;
}

/* Bottom Row: Specifications Under Both */
.product-bottom-row {
    width: 100%;
}

.product-specs-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
}

.product-specs-box h3 {
    font-size: 1.3rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th, .specs-table td {
    padding: 12px 15px;
    font-size: 0.95rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.specs-table th {
    color: #475569;
    font-weight: 600;
    width: 30%;
}

.specs-table td {
    color: #334155;
    width: 70%;
}

.specs-table tr:last-child th, .specs-table tr:last-child td {
    border-bottom: none;
}

/* Responsive adjustments */
@media screen and (max-width: 900px) {
    .product-top-row {
        flex-direction: column;
        gap: 30px;
    }
    .product-image-column, .product-description-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .inquiry-form .form-row {
        flex-direction: column;
    }
}

/* Contact Page Hero Section */
.contact-hero-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-color: #0b2545;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.contact-hero-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-hero-section p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Main Contact Section (2 Columns) */
.contact-main-section {
    width: 100%;
    padding: 80px 0;
    background-color: #f8fafc;
}

.contact-main-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.contact-form-column,
.contact-details-column {
    flex: 1;
    min-width: 300px;
    display: flex;
}

.contact-card-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(11, 37, 69, 0.05);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card-box h2 {
    font-size: 1.8rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 12px;
}

.contact-card-box p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Success Alert */
.alert-success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Form Styles */
.main-contact-form .form-group {
    margin-bottom: 20px;
}

.main-contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background-color: #ffffff;
    color: #334155;
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--primary-color, #0b2545);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
}

/* Contact Details List with Icons */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-box {
    background-color: #e0f2fe;
    color: #0369a1;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text strong {
    display: block;
    font-size: 1rem;
    color: var(--primary-color, #0b2545);
    margin-bottom: 3px;
}

.info-text span,
.info-text a {
    font-size: 0.95rem;
    color: #475569;
    text-decoration: none;
}

.info-text a:hover {
    color: var(--primary-color, #0b2545);
    text-decoration: underline;
}

.provinces-note {
    background-color: #f8fafc;
    border-left: 4px solid var(--primary-color, #0b2545);
    padding: 15px;
    font-size: 0.9rem;
    color: #334155;
    border-radius: 0 6px 6px 0;
    margin-top: auto;
}

/* Google Map Section */
.contact-map-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    line-height: 0;
}

.map-container {
    width: 100%;
}

/* Responsive Adjustments */
@media screen and (max-width: 900px) {
    .contact-main-container {
        flex-direction: column;
    }
}

/* Header Logo & Layout Styles */
.site-header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo a {
    display: inline-block;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color, #0b2545);
    margin: 0;
}

.logo h1 span {
    color: #047857;
    font-weight: 600;
}

/* Responsive adjustments for header items */
@media screen and (max-width: 900px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .search-form {
        order: 3;
        width: 100%;
    }
}

/* --- Navigation Base Styles --- */
.site-nav {
    background-color: #134074;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

/* Hide toggle button by default on large screens */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
}

/* Navigation Menu */
.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap if they exceed screen width */
    align-items: center;
    gap: 0.5rem 1rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap; /* Prevents category names from breaking awkwardly */
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #ffffff;
    background-color: #2e8b57;
}

/* --- Responsive Styles (Mobile / Small Screens) --- */
@media screen and (max-width: 992px) {
    .nav-toggle {
        display: block; /* Show hamburger menu on tablets and mobile */
    }

    .nav-menu {
        display: none; /* Hidden by default; toggled via JS */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #134074;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        max-height: 70vh; /* Keeps menu scrollable if too many categories */
        overflow-y: auto;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex; /* Displayed when toggled */
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        padding: 0.75rem 1rem;
        white-space: normal; /* Allow wrapping inside mobile dropdown if needed */
    }
}