* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-primary: #0066FF;
    --blue-dark: #0047B3;
    --blue-medium: #2583FF;
    --blue-light: #EAF4FF;
    --blue-extra-light: #F5FAFF;
    --blue-text: #063B70;
    --white: #FFFFFF;
}

body {
    font-family: Arial, sans-serif;
    background: var(--white);
    color: var(--blue-text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}




.main-header {
    background: var(--white);
    padding: 18px 0;
    border-bottom: 1px solid var(--blue-light);
    box-shadow: 0 2px 15px rgba(0, 102, 255, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--blue-primary);
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    color: var(--blue-text);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--blue-primary);
}




.hero {
    min-height: 520px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(0, 71, 179, 0.55),
            rgba(0, 102, 255, 0.35)
        ),
        url("../images/hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: var(--white);
}

.hero-content {
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 720px;
}

.hero h1 {
    font-size: 58px;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 19px;
    color: var(--white);
    margin-bottom: 32px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}




.btn-primary {
    display: inline-block;

    background: var(--blue-primary);
    color: var(--white);

    padding: 12px 24px;

    border-radius: 8px;

    text-decoration: none;
    font-weight: bold;

    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.hero .btn-primary {
    background: var(--white);
    color: var(--blue-primary);
}

.hero .btn-primary:hover {
    background: var(--blue-light);
    color: var(--blue-dark);
}

.btn-secondary {
    display: inline-block;

    padding: 12px 24px;

    border: 2px solid var(--white);
    border-radius: 8px;

    color: var(--white);

    text-decoration: none;
    font-weight: bold;

    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--blue-primary);
}




.about-section,
.services-section,
.featured-section,
.location-section,
.products-section {
    padding: 70px 0;
}

.about-section,
.featured-section {
    background: var(--white);
}

.services-section,
.location-section,
.products-section {
    background: var(--blue-extra-light);
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h1,
.section-title h2 {
    color: var(--blue-dark);
    margin-bottom: 10px;
}

.section-title h1 {
    font-size: 38px;
}

.section-title h2 {
    font-size: 34px;
}

.section-title p {
    color: var(--blue-medium);
}




.about-content {
    max-width: 800px;
    margin: auto;

    text-align: center;

    color: var(--blue-text);
}

.about-content p {
    margin-bottom: 15px;
}




.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.service-card {
    background: var(--white);

    padding: 32px;

    border-radius: 14px;

    border: 1px solid var(--blue-light);

    box-shadow:
        0 8px 25px
        rgba(0, 102, 255, 0.08);

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color: var(--blue-medium);

    box-shadow:
        0 12px 30px
        rgba(0, 102, 255, 0.15);
}

.service-card h3 {
    color: var(--blue-primary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--blue-text);
}




.products-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.product-card {
    background: var(--white);

    border-radius: 14px;

    overflow: hidden;

    border: 1px solid var(--blue-light);

    box-shadow:
        0 8px 25px
        rgba(0, 102, 255, 0.08);

    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px
        rgba(0, 102, 255, 0.16);
}

.product-image {
    width: 100%;
    height: 220px;

    background: var(--blue-extra-light);

    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.no-image {
    color: var(--blue-medium);
}

.product-content {
    padding: 22px;
}

.product-content h2,
.product-content h3 {
    color: var(--blue-dark);
    margin-bottom: 10px;
}

.product-description {
    color: var(--blue-text);

    margin-bottom: 20px;

    min-height: 50px;
}

.product-info {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-bottom: 20px;
}

.product-price {
    font-size: 21px;
    font-weight: bold;

    color: var(--blue-primary);
}

.product-stock {
    background: var(--blue-light);

    color: var(--blue-dark);

    padding: 5px 10px;

    border-radius: 20px;

    font-size: 13px;
}



.btn-order {
    display: block;

    width: 100%;

    text-align: center;

    background: var(--blue-primary);
    color: var(--white);

    text-decoration: none;

    padding: 12px;

    border-radius: 8px;

    font-weight: bold;

    transition: 0.3s;
}

.btn-order:hover {
    background: var(--blue-dark);
}




.location-card {
    max-width: 600px;

    margin: auto;

    background: var(--white);

    text-align: center;

    padding: 40px;

    border-radius: 14px;

    border: 1px solid var(--blue-light);

    box-shadow:
        0 8px 25px
        rgba(0, 102, 255, 0.08);
}

.location-card h3 {
    color: var(--blue-primary);

    margin-bottom: 15px;
}

.location-card p {
    margin-bottom: 10px;

    color: var(--blue-text);
}

.location-card .btn-primary {
    margin-top: 15px;
}





.view-all {
    text-align: center;
    margin-top: 40px;
}

.empty-products {
    text-align: center;

    background: var(--white);

    padding: 50px;

    border-radius: 14px;

    border: 1px solid var(--blue-light);
}

.empty-products h2 {
    color: var(--blue-primary);
}

.empty-products p,
.no-products {
    color: var(--blue-text);
}

.no-products {
    text-align: center;
}




.main-footer {
    padding: 35px 0;

    background: var(--blue-dark);

    color: var(--white);

    text-align: center;
}

.main-footer p {
    color: var(--white);
}




@media (max-width: 900px) {

    .products-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 700px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 450px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
.contact-section {
    padding: 70px 0;
    background: var(--blue-extra-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.contact-info,
.contact-form {
    background: var(--white);
    padding: 35px;
    border-radius: 14px;
    border: 1px solid var(--blue-light);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.08);
}

.contact-info h2,
.contact-form h2 {
    color: var(--blue-primary);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 18px;
    color: var(--blue-text);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--blue-dark);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--blue-light);
    border-radius: 8px;
    outline: none;
    color: var(--blue-text);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue-primary);
}

button.btn-primary {
    border: none;
    cursor: pointer;
}

@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.order-section {
    padding: 70px 0;
    background: var(--blue-extra-light);
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
}

.order-product-card,
.order-form-card {
    background: var(--white);
    border: 1px solid var(--blue-light);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.08);
    overflow: hidden;
}

.order-product-image {
    height: 300px;
    background: var(--blue-extra-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-product-content {
    padding: 28px;
}

.order-product-content h2 {
    color: var(--blue-dark);
    margin-bottom: 12px;
}

.order-product-content p {
    color: var(--blue-text);
    margin-bottom: 20px;
}

.order-price {
    color: var(--blue-primary);
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 12px;
}

.order-stock {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue-dark);
    padding: 7px 14px;
    border-radius: 20px;
}

.order-form-card {
    padding: 32px;
}

.order-form-card h2 {
    color: var(--blue-primary);
    margin-bottom: 25px;
}

.order-submit {
    width: 100%;
    font-size: 16px;
}

.alert-error,
.alert-success {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-error {
    background: #eef6ff;
    color: var(--blue-dark);
    border: 1px solid var(--blue-medium);
}

.alert-success {
    background: var(--blue-light);
    color: var(--blue-dark);
    border: 1px solid var(--blue-primary);
}

.order-back {
    margin-top: 30px;
    text-align: center;
}

.order-back a {
    color: var(--blue-primary);
    text-decoration: none;
    font-weight: bold;
}

.order-back a:hover {
    color: var(--blue-dark);
}

@media (max-width: 850px) {

    .order-grid {
        grid-template-columns: 1fr;
    }

}
nav a.active {
    color: var(--blue-primary);
    font-weight: bold;
}

nav a.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 4px;
    background: var(--blue-primary);
}
/* =========================
   PRODUCT SEARCH
========================= */

.products-section .product-search {
    width: 100%;
    max-width: 750px;
    margin: 0 auto 35px auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.products-section .product-search input[type="text"] {
    flex: 1;
    min-width: 0;

    height: 50px;
    padding: 0 18px;

    background: #ffffff;
    color: #063b70;

    border: 2px solid #eaf4ff;
    border-radius: 10px;

    font-size: 15px;
    outline: none;

    transition: 0.3s;
}

.products-section .product-search input[type="text"]:focus {
    border-color: #0066ff;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.10);
}

.products-section .product-search input[type="text"]::placeholder {
    color: #2583ff;
}

.products-section .product-search button {
    height: 50px;
    padding: 0 24px;

    border: 2px solid #0066ff;
    border-radius: 10px;

    background: #0066ff;
    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    transition: 0.3s;
}

.products-section .product-search button:hover {
    background: #0047b3;
    border-color: #0047b3;
}

.products-section .product-search a {
    height: 50px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #0066ff;

    border: 2px solid #0066ff;
    border-radius: 10px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.products-section .product-search a:hover {
    background: #eaf4ff;
}

.search-result-info {
    margin: -15px auto 30px;
    text-align: center;
    color: #063b70;
}

.search-result-info strong {
    color: #0066ff;
}


/* MOBILE */

@media (max-width: 700px) {

    .products-section .product-search {
        flex-direction: column;
    }

    .products-section .product-search input[type="text"],
    .products-section .product-search button,
    .products-section .product-search a {
        width: 100%;
    }
}