@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f8fbff;
    color: #333;
    padding-top: 80px; /* fixed header */
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    z-index: 1000;
}

.header_content {
    max-width: 1200px;
    margin: auto;
    height: 70px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 100px;
}

.nav a {
    margin-left: 24px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
}

.nav a:hover {
    color: #1a73e8;
}

.btn {
    padding: 8px 18px;
    background: #1a73e8;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
}

/* ================= PAGE HERO ================= */
.page-hero {
    background: linear-gradient(
        rgba(26, 115, 232, 0.9),
        rgba(26, 115, 232, 0.9)
    );
    color: white;
    padding: 80px 20px;
}

.page-hero-content {
    max-width: 900px;
    margin: auto;
}

.page-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 16px;
    line-height: 1.5;
}

/* ================= CONTACT ================= */
.contact-section {
    max-width: 1100px;
    margin: auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #1a73e8;
}

.contact-info p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.info-block {
    margin-bottom: 16px;
}

.info-block strong {
    display: block;
    font-size: 14px;
    color: #333;
}

.info-block span {
    font-size: 15px;
    color: #555;
}

/* ================= FORM ================= */
.contact-form form {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

/* ================= FOOTER ================= */
.footer {
    background: #0a2540;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
}
.mobile-menu{
    display: none;
}

/* ================= RESPONSIVE ================= */
/* ================= GLOBAL MOBILE FIX ================= */
@media (max-width: 768px) {

    /* BODY */
    body {
        padding-top: 64px;
    }

    /* HEADER */
    .header_content {
        height: 64px;
        padding: 0 16px;
    }

    /* LOGO */
    .logo img {
        height: 40px;
        max-width: 150px;
    }

    /* DESKTOP NAV */
    .desktop-nav,
    .nav {
        display: none;
    }

    /* HAMBURGER */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    /* MOBILE MENU */
    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -260px;
        width: 260px;
        height: 100%;
        background: white;
        padding: 90px 24px;
        box-shadow: -3px 0 12px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 2000;
    }

    .mobile-menu.open {
        right: 0;
    }

    /* HERO SECTIONS */
    .hero,
    .page-hero {
        min-height: auto;
        padding: 80px 20px 60px;
        text-align: center;
        background-position: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 28px;
    }

    .hero-content p,
    .page-hero p {
        font-size: 15px;
    }

    /* HERO BUTTONS */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    /* SECTIONS */
    .section,
    .content-section,
    .contact-section,
    .product-grid,
    .principles-section,
    .cert-section {
        padding: 60px 16px;
    }

    /* GRIDS → SINGLE COLUMN */
    .contact-section,
    .quality-grid,
    .principles-grid,
    .stats-section {
        grid-template-columns: 1fr;
    }

    /* PRODUCT CARDS */
    .product-card img,
    .carousel-card img {
        height: 140px;
    }

    .product-card h3 {
        font-size: 16px;
    }

    /* CAROUSEL */
    .carousel-track {
        padding: 10px 20px;
    }

    .carousel-btn {
        display: none;
    }

    /* FORMS */
    .contact-form form {
        padding: 20px;
    }

    /* FOOTER */
    .footer {
        padding: 24px 16px;
        font-size: 14px;
    }
}
