* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif
}

body {
    padding-top: 110px
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #073118
}

.logo img {
    height: 75px
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600
}

.hero {
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)), url('https://images.unsplash.com/photo-1565891741441-64926e441838?auto=format&fit=crop&w=2000&q=80');
    background-size: cover
}

.hero h1 {
    font-size: 70px
}

.hero h1 span {
    display: block;
    color: #d4af37
}

.hero p {
    font-size: 24px;
    margin: 25px auto;
    max-width: 900px
}

.btn,
.btn-outline {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none
}

.btn {
    background: #d4af37;
    color: #fff
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    margin-left: 10px
}

.products-section {
    padding: 80px 5%
}

.products-section h2 {
    text-align: center;
    margin-bottom: 40px
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px
}

.product-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    border-radius: 12px;
    overflow: hidden
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover
}

.product-card h3 {
    padding: 20px
}

.page-hero {
    height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;

    background:
        linear-gradient(rgba(0, 0, 0, .6),
            rgba(0, 0, 0, .6)),
        url("https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?w=2000");

    background-size: cover;
    background-position: center;
}

.page-hero h1 {
    font-size: 60px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 22px;
}

.product-content ul {
    margin: 20px 0;
    padding-left: 20px;
    line-height: 1.8;
}

.product-content .btn {
    display: block;
    text-align: center;
    margin-top: 15px;
}

/* PRODUCT PAGE FIX */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 550px;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 25px;
}

.product-content ul {
    flex: 1;
    margin: 20px 0;
    padding-left: 20px;
}

.product-content .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.cert-card {
    background: #0d5c2b;
    color: white;
}

.about-company {
    padding: 100px 8%;
    text-align: center;
}

.about-company p {
    max-width: 900px;
    margin: 20px auto;
    line-height: 1.9;
    font-size: 18px;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 80px 8%;
    background: #f8f8f8;
}

.vision-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.vision-card h2 {
    color: #0d5c2b;
    margin-bottom: 20px;
}

.active {
    color: #d4af37 !important;
}

/* SECTION TITLES */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    color: #0d5c2b;
}

/* WHY US */

.why-us {
    padding: 100px 8%;
    background: #f8f8f8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    text-align: center;
}

.why-card h3 {
    color: #0d5c2b;
    margin-bottom: 15px;
}

/* CERTIFICATIONS */

.certifications {
    padding: 100px 8%;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.cert-card {
    background: #0d5c2b;
    color: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
}

/* CTA */

.cta {
    background: #0d5c2b;
    color: white;
    text-align: center;
    padding: 100px 8%;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 35px;
    font-size: 18px;
}

/* FOOTER */

footer {
    background: #061c0d;
    color: white;
    padding: 70px 8% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.footer-column p {
    line-height: 1.8;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

/* RESPONSIVE */

@media(max-width:991px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

}

@media(max-width:600px) {

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 40px;
    }

}

/* CONTACT PAGE */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 80px 8%;
}

.contact-card {
    background: white;
    padding: 35px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.contact-card h3 {
    color: #0d5c2b;
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 20px;
}

.contact-section {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
    padding: 80px 8%;
    background: #f8f8f8;
}

.contact-form,
.business-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.contact-form h2,
.business-info h2 {
    margin-bottom: 25px;
    color: #0d5c2b;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.business-info p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.map-section {
    padding: 80px 8%;
    text-align: center;
}

.map-section h2 {
    margin-bottom: 30px;
    color: #0d5c2b;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
}

@media(max-width:991px) {

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

}

/* CERTIFICATIONS PAGE */

.status {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 18px;
    background: #0d5c2b;
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.cert-card p {
    margin-top: 15px;
    line-height: 1.7;
}

.trust-section {
    padding: 100px 8%;
    background: #f8f8f8;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.trust-box {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    font-weight: 600;
    color: #0d5c2b;
}

/* GALLERY PAGE */

.gallery-section {
    padding: 100px 8%;
}

.grey {
    background: #f8f8f8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .3s;
}

.gallery-card:hover {
    transform: translateY(-8px);
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.gallery-card h3 {
    padding: 20px;
    text-align: center;
    color: #0d5c2b;
}

/* ANIMATIONS */

.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* ACTIVE NAV */

nav a.active {
    color: #d4af37;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 60px;
    height: 60px;

    background: #25D366;

    color: white;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 30px;

    border-radius: 50%;

    text-decoration: none;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);

    z-index: 9999;
}

/* ==========================
   MOBILE RESPONSIVE DESIGN
========================== */

@media screen and (max-width:768px) {


    .logo img {
        height: 65px;
    }

    .hero {
        padding: 40px 20px;
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 17px;
    }

    .page-hero {
        height: 40vh;
        padding: 20px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn,
    .btn-outline {
        width: 260px;
        text-align: center;
        margin: 0;
    }

    .products-section,
    .gallery-section,
    .about-company,
    .contact-section,
    .certifications,
    .trust-section {
        padding: 60px 20px;
    }

    .product-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: auto;
    }

    .product-card img {
        height: 220px;
    }

    .product-content {
        padding: 20px;
    }

    .contact-form {
        padding: 25px;
    }

    iframe {
        height: 300px;
    }

    .cta {
        padding: 60px 20px;
        text-align: center;
    }

    .cta h2 {
        font-size: 30px;
    }

    .footer-container {
        padding: 40px 20px;
    }

}

@media screen and (max-width:480px) {


    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 15px;
    }

    .page-hero h1 {
        font-size: 26px;
    }

    .page-hero p {
        font-size: 15px;
    }

    nav ul {
        gap: 10px;
    }

    nav ul li a {
        font-size: 14px;
    }

    .logo img {
        height: 55px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .product-card img {
        height: 200px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

}

/* ==========================
   PREMIUM RESPONSIVE NAVBAR
========================== */

.menu-toggle {
    display: none;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

@media (max-width:768px) {

    header {
        width: 100%;
    }

    nav {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #073118;
        padding: 20px 0;
        z-index: 999;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }

    .nav-links li a {
        display: block;
        font-size: 16px;
    }

    .logo img {
        height: 60px;
    }
}

/* CONTACT PAGE FIX */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 80px 8%;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 80px 8%;
}

.contact-form,
.business-info {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Poppins, sans-serif;
}

.map-section {
    padding: 80px 8%;
    text-align: center;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 15px;
    margin-top: 25px;
}

/* MOBILE FIX */

@media(max-width:768px) {

    .contact-cards {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .contact-section {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .contact-form,
    .business-info {
        width: 100%;
        padding: 25px;
    }

    .map-section {
        padding: 50px 20px;
    }

    .map-section iframe {
        height: 300px;
    }

    .business-info p,
    .contact-card p {
        word-break: break-word;
    }

    footer {
        overflow: hidden;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .copyright {
        text-align: center;
        font-size: 14px;
        line-height: 1.6;
        padding: 15px;
    }

}

/* CONTACT PAGE MOBILE OVERFLOW FIX */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.contact-card,
.business-info,
.footer-column {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.contact-card p,
.business-info p,
.footer-column p {
    overflow-wrap: anywhere;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 100%;
}

iframe {
    max-width: 100%;
}