* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f8f8f3;
    color: #182018;
    line-height: 1.6;
}

/* ================================
   NAVIGATION
================================ */

header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e2;
    position: relative;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 20px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 25px;
    font-weight: 800;
    color: #315c2b;
}

.logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #315c2b;
}

.nav-button,
.primary-button {
    background: #315c2b;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-button:hover,
.primary-button:hover {
    background: #244521;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #315c2b;
}


/* ================================
   HERO
================================ */

.hero {
    max-width: 1200px;
    margin: auto;
    padding: 100px 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.eyebrow {
    color: #668b3c;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #668b3c;
}

.hero-text {
    font-size: 18px;
    color: #666;
    max-width: 520px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.secondary-button {
    color: #315c2b;
    border: 2px solid #315c2b;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.secondary-button:hover {
    background: #315c2b;
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}


/* ================================
   GENERAL SECTIONS
================================ */

.section-heading {
    max-width: 650px;
    margin: auto;
    text-align: center;
}

.section-heading h2,
.about h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-heading > p:not(.eyebrow) {
    color: #666;
}


/* ================================
   PRODUCTS
================================ */

.products {
    background: white;
    padding: 100px 30px;
}

.product-grid {
    max-width: 1100px;
    margin: 50px auto 0;

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

.product-card {
    padding: 35px;
    border: 1px solid #e5e5df;
    border-radius: 15px;
    background: #fff;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.product-card p {
    color: #666;
    margin-bottom: 20px;
}

.product-availability {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #315c2b !important;
}

.product-card .product-price {
    font-weight: 700;
    margin: 12px 0 20px;
    color: #666;
}

.product-card a {
    display: inline-block;
    background: #315c2b;
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.product-card a:hover {
    background: #24451f;
    transform: translateY(-2px);
}


/* ================================
   HOW IT WORKS
================================ */

.how-it-works {
    background: #f8f8f3;
    padding: 100px 30px;
}

.steps {
    max-width: 1100px;
    margin: 50px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e5e5df;
}

.step-number {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;

    border-radius: 50%;
    background: #315c2b;
    color: white;

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

    font-weight: 700;
}

.step h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.step p {
    color: #666;
}


/* ================================
   WHY CHOOSE US
================================ */

.why-us {
    background: #f8f8f3;
    padding: 100px 30px;
}

.why-grid {
    max-width: 1100px;
    margin: 50px auto 0;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e5e5df;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.why-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;

    border-radius: 50%;
    background: #315c2b;
    color: white;

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

    font-size: 22px;
    font-weight: 700;
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.why-card p {
    color: #666;
}


/* ================================
   ABOUT
================================ */

.about {
    max-width: 1200px;
    margin: auto;
    padding: 100px 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-content p {
    color: #666;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.about-stats div {
    background: white;
    padding: 30px 15px;
    text-align: center;
    border-radius: 12px;
}

.about-stats strong {
    display: block;
    color: #315c2b;
    font-size: 25px;
}

.about-stats span {
    color: #666;
    font-size: 14px;
}


/* ================================
   ORDER FORM
================================ */

.order-section {
    background: white;
    padding: 100px 30px;
}

.order-form {
    max-width: 650px;
    margin: 50px auto 0;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;

    border: 1px solid #dcdcd5;
    border-radius: 8px;

    font-family: inherit;
    font-size: 16px;

    background: #fafafa;

    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #315c2b;
    box-shadow: 0 0 0 3px rgba(49, 92, 43, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.order-form button {
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}


/* ================================
   FOOTER
================================ */

footer {
    background: #182018;
    color: #aaa;
    text-align: center;
    padding: 25px;
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

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

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

}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    .navbar {
        padding: 18px 20px;
        position: relative;
    }

    .logo {
        font-size: 21px;
    }

    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;

        position: absolute;
        top: 70px;
        left: 0;
        right: 0;

        background: white;

        flex-direction: column;
        gap: 0;

        padding: 10px 20px;

        border-bottom: 1px solid #e5e5df;

        z-index: 1000;
    }

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

    .nav-links li {
        padding: 12px 0;
    }

    /* Hero */

    .hero {
        grid-template-columns: 1fr;
        padding: 70px 20px;
        text-align: center;
        gap: 40px;
    }

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

    .hero-text {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image img {
        width: 300px;
        height: 300px;
    }

    /* Sections */

    .products,
    .how-it-works,
    .why-us,
    .order-section {
        padding: 70px 20px;
    }

    .section-heading h2,
    .about h2 {
        font-size: 34px;
    }

    /* Products */

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        padding: 25px;
    }

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

    /* How it works */

    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Why */

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

    /* About */

    .about {
        grid-template-columns: 1fr;
        padding: 70px 20px;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    /* Order form */

    .order-form {
        margin-top: 35px;
    }

    /* Footer */

    footer {
        padding: 22px 15px;
        font-size: 14px;
    }

}


/* ================================
   SMALL PHONES
================================ */

@media (max-width: 400px) {

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

    .hero-image img {
        width: 260px;
        height: 260px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a {
        text-align: center;
    
    }

}
/* ================================
   WHATSAPP FLOATING BUTTON
================================ */

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

    background: #25D366;
    color: white;

    padding: 14px 20px;
    border-radius: 50px;

    text-decoration: none;
    font-weight: 700;
    font-size: 15px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);

    z-index: 9999;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}


/* Smaller button on phones */

@media (max-width: 768px) {

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        padding: 12px 17px;
        font-size: 14px;
    }

}
/* ================================
   PROFESSIONAL FOOTER
================================ */

.site-footer {
    background: #182018;
    color: white;
    padding: 70px 30px 20px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-brand h3 {
    color: white;
    font-size: 25px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #aaa;
    max-width: 350px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 18px;
    font-size: 17px;
}

.footer-links a,
.footer-contact a {
    color: #aaa;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1100px;
    margin: 50px auto 0;

    padding-top: 20px;

    border-top: 1px solid #303830;

    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}


/* Footer on phones */

@media (max-width: 768px) {

    .site-footer {
        padding: 60px 20px 20px;
    }

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

    .footer-bottom {
        margin-top: 40px;
    }

}
/* ================================
   BUSINESS CONTACT
================================ */

.business-contact {
    background: #f8f8f3;
    padding: 100px 30px;
}

.contact-info-grid {
    max-width: 1100px;
    margin: 50px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-info-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid #e5e5df;
    text-align: center;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;

    border-radius: 50%;
    background: #315c2b;
    color: white;

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

    font-size: 22px;
}

.contact-info-card h3 {
    margin-bottom: 10px;
    font-size: 19px;
}

.contact-info-card p {
    color: #666;
}

.contact-info-card a {
    color: #315c2b;
    text-decoration: none;
    font-weight: 600;
    word-break: break-word;
}

.contact-info-card a:hover {
    text-decoration: underline;
}


/* Mobile */

@media (max-width: 768px) {

    .business-contact {
        padding: 70px 20px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 35px;
    }

}
/* Location Button */

.location-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #1f6f43;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.location-button:hover {
    background: #15522f;
    transform: translateY(-2px);
}
/* Location Card */

.contact-info-card:first-child {
    position: relative;
}

.contact-info-card:first-child .contact-info-icon {
    font-size: 32px;
}

.contact-info-card:first-child h3 {
    margin-bottom: 8px;
}

.contact-info-card:first-child p {
    line-height: 1.6;
}
/* Find Us Section */

.find-us {
    margin: 80px auto 100px;
    padding: 55px 25px;
    max-width: 1100px;
    background: #eef5ed;
    border-radius: 18px;
    text-align: center;
}

.find-us-content {
    max-width: 650px;
    margin: 0 auto;
}

.find-us h2 {
    margin: 10px 0 18px;
}

.find-us p:not(.eyebrow) {
    line-height: 1.7;
    margin-bottom: 28px;
}
.find-us + .section-heading {
    margin-top: 80px;
    
}
/* ================================
   MOBILE POLISH
================================ */

@media (max-width: 768px) {

    /* Prevent the page from feeling cramped */
    .navbar {
        padding: 16px 18px;
    }

    .logo {
        font-size: 19px;
    }

    /* Better section spacing */
    .find-us {
        margin: 50px 20px 70px;
        padding: 40px 20px;
    }

    .find-us + .section-heading {
        margin-top: 60px;
    }

    /* Better contact cards */
    .contact-info-card {
        padding: 28px 20px;
    }

    /* Make buttons easier to tap */
    .location-button,
    .primary-button,
    .secondary-button {
        min-height: 44px;
    }

    /* Prevent long email addresses from making the page look messy */
    .contact-info-card a {
        overflow-wrap: anywhere;
    }
}


/* Extra-small phones */

@media (max-width: 400px) {

    .logo {
        font-size: 18px;
    }

    .navbar {
        padding: 15px 15px;
    }

    .section-heading h2,
    .about h2 {
        font-size: 30px;
    }

    .product-card {
        padding: 20px;
    }

    .contact-info-card {
        padding: 25px 18px;
    }

}
/* ================================
   PREMIUM PRODUCT CARDS
================================ */

.product-card {
    overflow: hidden;
    position: relative;
}

.product-card img {
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.04);
}

.product-card h3 {
    margin-top: 5px;
}

.product-order {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-order:hover {
    box-shadow: 0 8px 18px rgba(49, 92, 43, 0.2);
}

.product-availability {
    display: inline-block;
    background: #eef5ed;
    padding: 4px 10px;
    border-radius: 20px;
}
/* ================================
   SMOOTH INTERACTIONS
================================ */

.primary-button,
.secondary-button,
.nav-button,
.product-order,
.location-button {
    transition:
        transform 0.2s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.primary-button:hover,
.secondary-button:hover,
.nav-button:hover,
.product-order:hover,
.location-button:hover {
    transform: translateY(-2px);
}

.contact-info-card,
.step,
.why-card,
.product-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-info-card:hover,
.step:hover,
.why-card:hover,
.product-card:hover {
    transform: translateY(-4px);
}
/* Hero Trust Points */

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4f604f;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 600px) {
    .hero-trust {
        flex-direction: column;
        gap: 8px;
        margin-top: 20px;
    }
}
/* Navigation Order Button */

.nav-button {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    background: #182018;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .nav-button {
        padding: 9px 14px;
        font-size: 0.9rem;
    }
}
/* Premium Product Cards */

.product-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(24, 32, 24, 0.12);
}

.product-order {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.product-order:hover {
    transform: translateX(4px);
    opacity: 0.8;
}
/* Product Image Display */

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
}
/* Product Availability Badge */

.product-availability {
    display: inline-block;
    margin-top: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-price {
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}
/* About Stats */

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.about-stats > div {
    flex: 1;
    min-width: 120px;
    padding: 22px 15px;
    text-align: center;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(24, 32, 24, 0.08);
}

.about-stats strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.about-stats span {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 600px) {
    .about-stats {
        gap: 12px;
    }

    .about-stats > div {
        min-width: 100px;
        padding: 18px 10px;
    }
}
/* Contact Information Cards */

.contact-info-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(24, 32, 24, 0.1);
}

.contact-info-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-info-card h3 {
    margin-bottom: 8px;
}

.contact-info-card a {
    font-weight: 600;
    text-decoration: none;
}

.location-button {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.9rem;
}
/* WhatsApp Floating Button */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    padding: 12px 18px;
    border-radius: 30px;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.22);
}

@media (max-width: 600px) {
    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        padding: 11px 15px;
        font-size: 0.9rem;
    }
}
/* FINAL BACK TO TOP */

#backToTop {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 45px;
    height: 45px;
    z-index: 99999;

    border: none;
    border-radius: 50%;
    background: #182018;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

#backToTop.visible {
    display: block;
}
/* ================================
   ABOUT SECTION
================================ */

.about {
    padding: 90px 8%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    background: #eef3e8;
}

.about-content {
    max-width: 650px;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.15;
    margin: 12px 0 25px;
}

.about-content p {
    margin-bottom: 18px;
    color: #555;
}

.about-content .primary-button {
    display: inline-block;
    margin-top: 10px;
}

.about-stats {
    display: grid;
    gap: 20px;
}

.about-stats > div {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.about-stats strong {
    display: block;
    font-size: 28px;
    margin-bottom: 5px;
}

.about-stats span {
    color: #666;
}


/* ================================
   ABOUT MOBILE
================================ */

@media (max-width: 768px) {

    .about {
        grid-template-columns: 1fr;
        padding: 70px 6%;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 32px;
    }

}
/* ================================
   PRODUCT CARDS IMPROVEMENT
================================ */

.product-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

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

.product-card h3 {
    font-size: 21px;
    margin: 20px 20px 10px;
}

.product-card > p {
    margin-left: 20px;
    margin-right: 20px;
}

.product-availability {
    font-weight: 600;
    margin-top: 15px;
}

.product-price {
    font-size: 14px;
    color: #666;
}

.product-order {
    display: inline-block;
    margin: 8px 20px 22px;
    font-weight: 600;
    text-decoration: none;
}


/* Mobile product images */

@media (max-width: 768px) {

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

}
/* ================================
   HOW IT WORKS
================================ */

.how-it-works {
    padding: 90px 8%;
    background: #ffffff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step {
    padding: 35px 28px;
    background: #f8f8f3;
    border-radius: 18px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step h3 {
    margin-bottom: 12px;
    font-size: 21px;
}

.step p {
    color: #666;
}


/* Mobile */

@media (max-width: 768px) {

    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}
/* ================================
   WHY CHOOSE US
================================ */

.why-us {
    padding: 90px 8%;
    background: #eef3e8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.why-card {
    background: #ffffff;
    padding: 30px 22px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.why-icon {
    font-size: 38px;
    margin-bottom: 15px;
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.why-card p {
    color: #666;
    font-size: 15px;
}


/* Mobile */

@media (max-width: 900px) {

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

}

@media (max-width: 600px) {

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

}
/* ================================
   CONTACT INFORMATION
================================ */

.business-contact {
    padding: 90px 8%;
    background: #ffffff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.contact-info-card {
    padding: 30px 24px;
    background: #f8f8f3;
    border-radius: 18px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.contact-info-card h3 {
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #666;
}

.contact-info-card a {
    text-decoration: none;
    font-weight: 600;
}


/* Mobile */

@media (max-width: 800px) {

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

}

@media (max-width: 550px) {

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

}
/* ================================
   ORDER FORM
================================ */

.order-form {
    max-width: 700px;
    margin: 50px auto 0;
    padding: 35px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d8ddd2;
    border-radius: 10px;
    font: inherit;
    background: #fafbf8;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #6b8e23;
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.12);
}

.order-form .primary-button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 16px;
}


/* Mobile */

@media (max-width: 600px) {

    .order-form {
        padding: 25px 18px;
        margin-top: 35px;
    }

}
/* ================================
   FOOTER
================================ */

.site-footer {
    background: #182018;
    color: #ffffff;
    padding: 65px 8% 25px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #c7cec2;
    max-width: 400px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 8px;
    font-size: 17px;
}

.footer-links a,
.footer-contact a {
    color: #c7cec2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom p {
    color: #aeb6a8;
    font-size: 14px;
}


/* Mobile */

@media (max-width: 700px) {

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

    .site-footer {
        padding: 55px 6% 20px;
    }

}
/* ================================
   WHATSAPP FLOATING BUTTON
================================ */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}


/* Mobile */

@media (max-width: 600px) {

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        padding: 12px 15px;
        font-size: 14px;
    }

}
.logo img {
    width: 42px !important;
    height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    object-fit: contain;
    display: block;
}
.logo img {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    object-fit: contain;
    display: block;
}
