/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #4A4A32;
    background-color: #FFFDF5;
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   HEADER & NAVIGATION - Soft Leaf Green
   ======================================== */
header {
    background: #0A5C36;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10=px rgba(168, 198, 134, 0.3);

}
/*=================================navigation items to display horizontally in mobile view*/

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Mobile View */
@media (max-width: 768px) {
    header nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    header nav ul {
        flex-direction: row;       /* horizontal direction */
        justify-content: center;
        gap: 10px;
    }
}


/*===========================================================*/

nav {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav a:hover {
    background-color: #B9D8A0;
    color: white;
}

nav a.active-link {
    background-color: #B9D8A0;
}

/* ========================================
   HERO SECTION - Soft Leaf Green
   ======================================== */
.hero {
    background: #0A5C36;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
}

.cta-button {
    background: #E2A76F;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(226, 167, 111, 0.4);
}

.cta-button:hover {
    background: #B9D8A0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(185, 216, 160, 0.5);
}

/* ========================================
   CONTAINER & SECTIONS
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section {
    display: none;
}

.section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-badge {
    color: #fff !important;
}

   h2 {
    color: #A8C686;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    color: #white;
    font-size: 1.5rem;
    text-align: center;
}


.intro-text {
    text-align: center;
    font-size: 1.2rem;
    margin: 0 auto 3rem;
    color: #4A4A32;
    max-width: 800px;
    line-height: 1.8;
}

/* ========================================
   PRODUCT SHOWCASE
   ======================================== */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.product-box {
    background: #F5E6CA;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(168, 198, 134, 0.2);
    border: 3px solid #A8C686;
    transition: transform 0.3s ease;
}

.product-box:hover {
    transform: translateY(-10px);
    border-color: #B9D8A0;
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.product-box h3 {
    color: #A8C686;
    margin-bottom: 0.5rem;
}

.product-box p {
    color: #4A4A32;
}

/* ========================================
   PRODUCT DETAILS CARDS
   ======================================== */
.product-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.product-card {
    background: #F5E6CA;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(168, 198, 134, 0.2);
    border: 2px solid #A8C686;
}

.card-header {
    margin-bottom: 1.5rem;
}

.product-badge {
    background: #E2A76F;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
    text-align: center;
}


.product-card h3 {
    color: #A8C686;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.product-desc {
    color: #4A4A32;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.features-list li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    color: #4A4A32;
    position: relative;
    border-bottom: 1px solid rgba(168, 198, 134, 0.3);
}

.features-list li:before {
    content: "✓";
    color: #A8C686;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.features-list li:last-child {
    border-bottom: none;
}

.contact-cta {
    background: #E2A76F;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 1.05rem;
    transition: background 0.3s ease;
}

.contact-cta:hover {
    background: #B9D8A0;
}

/* ========================================
   BULK INFO
   ======================================== */
.bulk-info {
    background: #A8C686;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
}

.bulk-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.bulk-info p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ========================================
   FEATURES GRID
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: #F5E6CA;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(168, 198, 134, 0.15);
    transition: all 0.3s ease;
    border-top: 4px solid #A8C686;

    /* ✅ ADD THESE LINES */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-top-color: #B9D8A0;
    box-shadow: 0 8px 30px rgba(168, 198, 134, 0.25);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: #A8C686;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4A4A32;
    line-height: 1.8;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section {
    margin-top: 4rem;
    padding: 3rem;
    background: #F5E6CA;
    border-radius: 20px;
    border: 2px solid #E2A76F;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: #FFFDF5;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(168, 198, 134, 0.1);
}

.benefit-card h3 {
    color: #A8C686;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 0.7rem 0;
    color: #4A4A32;
    border-bottom: 1px solid rgba(168, 198, 134, 0.2);
}

.benefit-list li:last-child {
    border-bottom: none;
}

/* ========================================
   STATISTICS
   ======================================== */
.stats-section {
    margin-top: 4rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: #A8C686;
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(168, 198, 134, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: #B9D8A0;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form {
    max-width: 700px;
    margin: 2rem auto;
    background: #F5E6CA;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(168, 198, 134, 0.2);
    border: 2px solid #A8C686;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #A8C686;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #E2A76F;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: #FFFDF5;
    color: #4A4A32;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #A8C686;
    box-shadow: 0 0 0 3px rgba(168, 198, 134, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #A8C686;
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 198, 134, 0.3);
}

.submit-btn:hover {
    background: #B9D8A0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 216, 160, 0.4);
}

/* ========================================
   CONTACT INFO
   ======================================== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: #F5E6CA;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(168, 198, 134, 0.2);
    border-top: 4px solid #A8C686;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #A8C686;
    margin-bottom: 1rem;
}

.info-card p {
    color: #4A4A32;
    line-height: 1.8;
}

.timing {
    color: #E2A76F;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.blog-card {
    background: #F5E6CA;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(168, 198, 134, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(168, 198, 134, 0.25);
    border-color: #A8C686;
}

.blog-image {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #A8C686 0%, #B9D8A0 100%);
}

.blog-img-placeholder {
    font-size: 5rem;
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #E2A76F;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    color: #A8C686;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-date {
    color: #E2A76F;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-excerpt {
    color: #4A4A32;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.read-more {
    color: #A8C686;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.read-more:hover {
    color: #B9D8A0;
    transform: translateX(5px);
}

/* Blog CTA Section */
.blog-cta-section {
    background: #A8C686;
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
}

.blog-cta-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    color: #4A4A32;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
    padding: 1rem 2.5rem;
    background: #E2A76F;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #B9D8A0;
    transform: translateY(-2px);
}

/* ========================================
   FOOTER - Soft Leaf Green
   ======================================== */
footer {
    background: #0A5C36;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section ul {
    color: rgba(255, 255, 255, 0.95);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    padding: 0.5rem 0;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #B9D8A0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .container {
        padding: 3rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .product-details {
        grid-template-columns: 1fr;
    }
     .logo {
  text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
   
     .logo {
    text-align: left;
    }
    
    .feature-card {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        text-align: center !important;
    }

    .feature-icon {
        display: block;
        margin: 0 auto 1rem auto;
        text-align: center;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 4rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
    }
    
    .product-details {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .feature-card {
    align-items: center !important;
    text-align: center !important;
    }

.feature-icon {
    margin-left: auto;
    margin-right: auto;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .product-icon {
        font-size: 3rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    header, footer, .cta-button, .submit-btn {
        display: none;
    }
    
    .section {
        display: block !important;
    }
    
    body {
        color: black;
    }
}


/* ========================================
   INDIVIDUAL BLOG PAGE STYLES
   ======================================== */

/* Top breadcrumb nav bar */
.blog-nav {
    background-color: #0A5C36;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-nav a {
    color: #B9D8A0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.blog-nav a:hover {
    color: #ffffff;
}

.blog-nav .sep {
    color: #A8C686;
    font-size: 13px;
}

/* Hero image */
.blog-hero {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
}

/* Article wrapper */
.blog-article {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 30px 80px;
    background-color: #FFFDF5;
}

/* Category tag */
.blog-tag {
    display: inline-block;
    background: #E2A76F;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

/* Blog page title */
.blog-article h1 {
    font-size: 2.2rem;
    color: #0A5C36;
    line-height: 1.3;
    margin-bottom: 12px;
    text-align: left;
}

/* Date meta */
.blog-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta span {
    color: #A8C686;
    font-weight: 600;
}

/* Divider */
.blog-divider {
    border: none;
    border-top: 2px solid #c8dbb0;
    margin-bottom: 32px;
}

/* Body text */
.blog-body p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #4A4A32;
    line-height: 1.9;
}

/* Section headings inside blog */
.blog-body h2 {
    font-size: 1.4rem;
    color: #0A5C36;
    margin: 36px 0 14px;
    text-align: left;
}

/* Lists */
.blog-body ul {
    padding-left: 22px;
    margin-bottom: 20px;
}

.blog-body ul li {
    margin-bottom: 10px;
    color: #4A4A32;
    font-size: 15px;
    line-height: 1.8;
}

.blog-body ul li::marker {
    color: #A8C686;
}

/* Inline images */
.blog-inline-img {
    width: 100%;
    border-radius: 14px;
    margin: 28px 0;
    box-shadow: 0 6px 24px rgba(168, 198, 134, 0.2);
}

/* Highlight / quote box */
.blog-highlight {
    background: #F5E6CA;
    border-left: 5px solid #A8C686;
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin: 28px 0;
    font-size: 15px;
    color: #4A4A32;
    font-style: italic;
    line-height: 1.8;
}

/* Back to blog button */
.btn-back {
    display: inline-block;
    margin-top: 40px;
    padding: 13px 34px;
    background: #A8C686;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(168, 198, 134, 0.3);
}

.btn-back:hover {
    background: #0A5C36;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 92, 54, 0.25);
}

/* ── Blog page body background ── */
body.blog-page {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    background-color: #FFFDF5;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(168,198,134,0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(226,167,111,0.10) 0%, transparent 50%);
}

/* ── Blog content area background card ── */
.blog-page-content {
    background: #F5E6CA;
    border-radius: 20px;
    border: 2px solid #c8dbb0;
    box-shadow: 0 8px 30px rgba(168,198,134,0.15);
    padding: 2.5rem 3rem;
    margin-bottom: 3rem;
}

/* ── Blog page container wider padding fix ── */
.blog-page .container {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

/* ── Responsive blog pages - MOBILE FIX ── */
@media (max-width: 768px) {
    /* Fix header wrapping on mobile */
    .blog-page header nav {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.8rem 1rem;
    }

    .blog-page header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
    }

    .blog-page header nav ul li a {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }

    /* Breadcrumb wraps properly */
    .blog-breadcrumb {
        flex-wrap: wrap;
        gap: 4px;
        font-size: 12px !important;
    }

    /* Hero banner smaller on mobile */
    .blog-hero-banner {
        padding: 2.5rem 1.2rem !important;
    }

    .blog-hero-banner h1 {
        font-size: 1.6rem !important;
    }

    .blog-hero-banner .blog-emoji {
        font-size: 3.5rem !important;
    }

    /* Content card on mobile */
    .blog-page-content {
        padding: 1.5rem 1.2rem;
        border-radius: 14px;
    }

    .blog-page-content p {
        font-size: 1rem !important;
    }

    /* Buttons stack on mobile */
    .blog-back-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .blog-back-buttons a {
        width: 100%;
        text-align: center;
        margin-right: 0 !important;
    }
}

@media (max-width: 480px) {
    .blog-hero-banner h1 {
        font-size: 1.3rem !important;
    }

    .blog-hero-banner {
        padding: 2rem 1rem !important;
    }

    .blog-page-content {
        padding: 1.2rem 1rem;
    }

    .blog-highlight-box {
        padding: 1rem !important;
        font-size: 0.9rem !important;
    }
}

/* ========================================
   BLOG PAGE - MOBILE BLACK SPACE FIX
   ======================================== */

/* Prevent ALL pages from horizontal overflow */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Blog page specific background - beige theme */
body.blog-page {
    background-color: #FFFDF5 !important;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(168,198,134,0.10) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(226,167,111,0.08) 0%, transparent 45%);
}

/* Fix all blog page sections to not overflow */
body.blog-page * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Blog hero banner full width with no overflow */
body.blog-page > div[style*="gradient"] {
    width: 100%;
    overflow: hidden;
}

/* Blog container background card */
body.blog-page .container {
    background: transparent;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Inner content card matches site theme */
body.blog-page .container > div {
    background: #F5E6CA;
    border-radius: 20px;
    border: 2px solid #c8dbb0;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(168,198,134,0.15);
}

/* Section headings in blog */
body.blog-page h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Highlight boxes */
body.blog-page div[style*="border-left"] {
    width: 100%;
    overflow: hidden;
}

/* Back buttons row */
body.blog-page div[style*="text-align:center"] {
    width: 100%;
}

/* ── Mobile fixes for blog pages ── */
@media (max-width: 768px) {
    body.blog-page .container > div {
        padding: 1.5rem 1.2rem;
        border-radius: 14px;
        margin: 0;
    }

    body.blog-page .container {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    body.blog-page h2 {
        font-size: 1.2rem !important;
    }

    body.blog-page p {
        font-size: 0.97rem !important;
    }

    /* Stack back buttons vertically on mobile */
    body.blog-page div[style*="text-align:center"] a.cta-button {
        display: block;
        width: 100%;
        margin: 0.4rem 0 !important;
        text-align: center;
    }

    /* Feature cards 1 column on mobile */
    body.blog-page .features-grid {
        grid-template-columns: 1fr;
    }

    body.blog-page .product-showcase {
        grid-template-columns: 1fr;
    }

    /* Hero banner mobile */
    body.blog-page > div[style*="gradient"] {
        padding: 2.5rem 1rem !important;
    }

    body.blog-page > div[style*="gradient"] h1 {
        font-size: 1.6rem !important;
    }

    /* Breadcrumb mobile wrap */
    body.blog-page > div[style*="border-bottom"] > div {
        flex-wrap: wrap;
        gap: 4px;
        font-size: 12px !important;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    body.blog-page > div[style*="gradient"] h1 {
        font-size: 1.3rem !important;
    }

    body.blog-page > div[style*="gradient"] {
        padding: 2rem 0.8rem !important;
    }

    body.blog-page .container > div {
        padding: 1.2rem 1rem;
    }

    body.blog-page div[style*="border-left"] {
        padding: 1rem !important;
        font-size: 0.9rem !important;
    }

    body.blog-page .bulk-info {
        padding: 1.5rem 1rem;
    }
}


/* =============================================
   NAV COMPLETE FIX — overrides all above nav styles
   ============================================= */

/* nav wrapper */
nav {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 2rem !important;
}

/* LEFT brand */
.nav-brand {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
}

.nav-brand img {
    height: 52px !important;
    width: auto !important;
    border-radius: 6px !important;
    display: block !important;
}

.nav-title {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}

.nav-brand:hover .nav-title {
    color: #B9D8A0 !important;
}

/* RIGHT menu */
nav ul {
    list-style: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

nav ul li a {
    color: white !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    padding: 0.45rem 1rem !important;
    border-radius: 6px !important;
    display: inline-block !important;
    background: transparent !important;
    transition: background-color 0.25s ease, color 0.25s ease !important;
}

nav ul li a:hover {
    background-color: #B9D8A0 !important;
    color: white !important;
}

nav ul li a.active-link {
    background-color: #B9D8A0 !important;
    color: white !important;
}

nav ul li a.nav-contact-btn {
    background-color: transparent !important;
    color: white !important;
    font-weight: 700 !important;
}

nav ul li a.nav-contact-btn:hover,
nav ul li a.nav-contact-btn.active-link {
    background-color: #A8C686 !important;
    color: white !important;
    border-color: #A8C686 !important;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column !important;
        padding: 10px 1rem !important;
        gap: 10px !important;
    }
    .nav-brand { justify-content: center !important; }
    .nav-title { font-size: 1rem !important; }
    nav ul { flex-wrap: wrap !important; justify-content: center !important; gap: 0.3rem !important; }
    nav ul li a { font-size: 0.88rem !important; padding: 0.35rem 0.7rem !important; }
}

@media (max-width: 480px) {
    .nav-brand img { height: 40px !important; }
    .nav-title { font-size: 0.85rem !important; }
}