/*
 * Naturomate Custom Styles
 * Brand Colors:
 * - Primary: #2f4413
 * - Text: #3c4142
 * - Background 1: #ece9e0
 * - Background 2: #fef0eb
 */

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== FADE-IN ANIMATIONS ===== */
@keyframes nmFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nmFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ===== CATALOGUE DOWNLOAD BUTTON ===== */
.btn-download-catalogue {
    background: var(--nm-primary) !important;
    color: var(--nm-white) !important;
    border: 2px solid var(--nm-primary) !important;
    padding: 8px 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.btn-download-catalogue:hover {
    background: transparent !important;
    color: var(--nm-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(47, 68, 49, 0.2) !important;
}

.btn-download-catalogue i {
    font-size: 16px !important;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .btn-download-catalogue {
        margin: 10px 20px !important;
        justify-content: center !important;
    }
}

/* ===== CATALOGUE MODAL STYLES ===== */
.catalogue-modal {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(47, 68, 49, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9f5 100%);
}

.catalogue-modal-header {
    background: linear-gradient(135deg, var(--nm-primary) 0%, #3d5a3f 100%);
    color: var(--nm-white);
    padding: 30px;
    border: none;
    position: relative;
    text-align: center;
}

.catalogue-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
}

.catalogue-modal-header .modal-title {
    font-family: var(--nm-font-heading);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--nm-white);
    text-align: center;
    width: 100%;
}

.catalogue-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nm-white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.catalogue-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.catalogue-modal-body {
    padding: 40px 30px;
    background: var(--nm-white);
}

.catalogue-modal-intro {
    text-align: center;
    margin-bottom: 30px;
}

.catalogue-modal-subtitle {
    font-family: var(--nm-font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--nm-primary);
    margin-bottom: 10px;
}

.catalogue-modal-desc {
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: var(--nm-text-light);
    line-height: 1.6;
    margin: 0;
}

.catalogue-form {
    margin-bottom: 30px;
}

.catalogue-input {
    border: 2px solid rgba(47, 68, 49, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--nm-bg-1);
}

.catalogue-input:focus {
    border-color: var(--nm-primary);
    box-shadow: 0 0 0 4px rgba(47, 68, 49, 0.1);
    background: var(--nm-white);
}

.catalogue-label {
    color: var(--nm-text-light);
    font-weight: 500;
    font-size: 14px;
}

.catalogue-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    font-weight: 500;
}

.catalogue-submit-wrapper {
    margin-top: 30px;
}

.btn-catalogue-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--nm-primary) 0%, #3d5a3f 100%);
    color: var(--nm-white);
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-catalogue-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 68, 49, 0.3);
}

.btn-catalogue-submit:active {
    transform: translateY(0);
}

.catalogue-file-size {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
}

.catalogue-modal-features {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(47, 68, 49, 0.1);
}

.catalogue-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--nm-text);
    font-weight: 500;
}

.catalogue-feature-item i {
    color: var(--nm-primary);
    font-size: 16px;
}

.catalogue-modal-footer {
    background: var(--nm-bg-1);
    padding: 20px 30px;
    border: none;
}

.catalogue-privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--nm-text-light);
    text-align: center;
    justify-content: center;
    width: 100%;
}

.catalogue-privacy i {
    color: var(--nm-primary);
    font-size: 16px;
}

/* Modal Animations */
.catalogue-modal .modal-dialog {
    animation: modalSlideIn 0.4s ease;
    max-width: 500px;
}

/* Override Bootstrap modal width with higher specificity */
.modal-dialog.catalogue-modal-dialog {
    max-width: 500px !important;
}

.catalogue-modal .modal-dialog.modal-dialog-centered {
    max-width: 500px !important;
}

/* Most specific override */
#catalogueModal .modal-dialog {
    max-width: 500px !important;
}

#catalogueModal .modal-dialog.modal-dialog-centered {
    max-width: 500px !important;
}

/* Direct override for all modals */
.modal.fade .modal-dialog {
    max-width: 500px !important;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 576px) {
    .catalogue-modal-header {
        padding: 25px 20px;
    }
    
    .catalogue-modal-body {
        padding: 30px 20px;
    }
    
    .catalogue-modal-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .catalogue-feature-item {
        justify-content: center;
    }
    
    .catalogue-modal-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .catalogue-modal-header .modal-title {
        font-size: 20px;
    }
}

@keyframes nmFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes nmFadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section fade-in on scroll */
.nm-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.nm-fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.nm-fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.nm-fade-up.nm-visible,
.nm-fade-left.nm-visible,
.nm-fade-right.nm-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Staggered delay for grid items */
.nm-fade-up:nth-child(1) { transition-delay: 0s; }
.nm-fade-up:nth-child(2) { transition-delay: 0.1s; }
.nm-fade-up:nth-child(3) { transition-delay: 0.2s; }
.nm-fade-up:nth-child(4) { transition-delay: 0.3s; }
.nm-fade-up:nth-child(5) { transition-delay: 0.4s; }
.nm-fade-up:nth-child(6) { transition-delay: 0.5s; }
.nm-fade-up:nth-child(7) { transition-delay: 0.6s; }

/* ===== GLOBAL BUTTON HOVER TRANSITIONS ===== */
.btn,
a.btn,
button {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.btn:hover,
a.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(47, 68, 49, 0.3);
}

.btn:active,
a.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(47, 68, 49, 0.2);
}

/* Link hover transitions */
a {
    transition: color 0.25s ease, opacity 0.25s ease;
}

/* ===== ROOT VARIABLES ===== */
:root {
    --nm-primary: #2f4431;
    --nm-primary-dark: #6C9970;
    --nm-primary-light: #BFD3C1;
    --nm-text: #3c4142;
    --nm-text-light: #5a5d5e;
    --nm-bg-1: #ece9e0;
    --nm-bg-2: #f1eee5;
    --nm-white: #ffffff;
    --nm-font-heading: 'Berlin Sans FB Demi', 'Berlin Sans FB', 'Arial Black', 'Trebuchet MS', sans-serif;
    --nm-font-body: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* ===== TYPOGRAPHY ===== */
body {
    font-family: var(--nm-font-body);
    color: var(--nm-text);
    background-color: var(--nm-bg-1);
    font-size: 16px;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--nm-font-heading);
    color: var(--nm-text);
    font-weight: normal;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-family: var(--nm-font-body);
    color: var(--nm-text);
    font-size: 16px;
    line-height: 1.7;
}

/* Navigation uses heading font */
.header-area-wrapper .main-menu > li > a {
    font-family: var(--nm-font-heading);
}

.header-area-wrapper .btn-cta {
    font-family: var(--nm-font-heading);
    
}

/* Mobile menu uses heading font */
.mobile-menu li a {
    font-family: var(--nm-font-heading);
}

/* Widget titles use heading font */
.widget-title {
    font-family: var(--nm-font-heading);
}

/* Section titles use heading font */
.section-title-wrap h2,
.restaurant-about-content h2,
.our-chefs-content h2,
.why-us-left-area-content h2 {
    font-family: var(--nm-font-heading);
}

/* Accordion headers use heading font */
.restaurant-why-us-accordion .card-header h3 {
    font-family: var(--nm-font-heading);
}

/* Testimonial names use heading font */
.client-name {
    font-family: var(--nm-font-heading);
}

/* Button text uses heading font */
.btn-brand,
.btn.btn-brand,
.btn-newsletter {
    font-family: var(--nm-font-heading);
}

a {
    color: var(--nm-primary);
}

a:hover {
    color: var(--nm-primary-dark);
}

/* ===== HEADER STYLES ===== */
.header-area-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

/* Transparent header on hero section */
.header-area-wrapper.transparent-header {
    background-color: transparent;
}

/* Solid header after scroll */
.header-area-wrapper.sticky-header.scrolled {
    background-color: var(--nm-primary) !important;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo Styling */
.header-area-wrapper .logo-wrap {
    display: flex;
    align-items: center;
}

.header-area-wrapper .logo-wrap img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.header-area-wrapper .logo-wrap .logo-sticky {
    display: none;
}

.header-area-wrapper.scrolled .logo-wrap .logo-main {
    display: none;
}

.header-area-wrapper.scrolled .logo-wrap .logo-sticky {
    display: block;
}

/* Main Menu Styling */
.header-area-wrapper .main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-area-wrapper .main-menu > li {
    position: relative;
}

.header-area-wrapper .main-menu > li > a {
    color: var(--nm-white) !important;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.header-area-wrapper .main-menu > li > a:hover {
    color: var(--nm-primary-light) !important;
}

.header-area-wrapper.scrolled .main-menu > li > a {
    color: var(--nm-white) !important;
}

.header-area-wrapper.scrolled .main-menu > li > a:hover {
    color: var(--nm-primary-light) !important;
}

/* CTA Button in Navigation */
.header-area-wrapper .nav-cta {
    margin-left: 10px;
}

.header-area-wrapper .btn-cta {
    background-color: var(--nm-primary);
    color: var(--nm-primary) !important;
    padding: 12px 25px !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--nm-white);
}

.header-area-wrapper .btn-cta:hover {
    background-color: transparent;
    color: var(--nm-white) !important;
    border-color: var(--nm-white);
}

.header-area-wrapper.scrolled .btn-cta {
    background-color: var(--nm-primary);
    color: var(--nm-primary) !important;
    border-color: var(--nm-primary-light);
}

.header-area-wrapper.scrolled .btn-cta:hover {
    background-color: var(--nm-white);
    color: var(--nm-primary) !important;
    border-color: var(--nm-white);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 25px;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--nm-white);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--nm-primary);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 9998;
}

.mobile-nav-menu.active {
    max-height: 400px;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0 20px;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu li a {
    display: block;
    padding: 15px 0;
    color: var(--nm-white);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu li a:hover {
    color: var(--nm-primary-light);
    padding-left: 10px;
}

.mobile-menu .mobile-cta {
    padding: 20px 0 10px;
    border-bottom: none;
}

.mobile-menu .mobile-cta .btn-cta {
    display: block;
    text-align: center;
    background-color: var(--nm-white);
    color: var(--nm-primary) !important;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.mobile-menu .mobile-cta .btn-cta:hover {
    background-color: var(--nm-primary-light);
}

/* ===== HERO SLIDER SECTION ===== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider-section .carousel,
.hero-slider-section .carousel-inner,
.hero-slider-section .carousel-item {
    height: 100vh;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: background-position;
    transition: background-position 0.1s linear;
}

/* Dark Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--nm-font-heading);
    font-size: 56px;
    color: var(--nm-white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-family: var(--nm-font-body);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-btn {
    font-family: var(--nm-font-heading);
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--nm-primary);
    color: var(--nm-white) !important;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    border: 2px solid var(--nm-primary);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-btn:hover {
    background-color: transparent;
    color: var(--nm-white) !important;
    border-color: var(--nm-white);
    transform: translateY(-2px);
}

/* Carousel Controls */
.hero-slider-section .carousel-control-prev,
.hero-slider-section .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-slider-section .carousel-control-prev {
    left: 30px;
}

.hero-slider-section .carousel-control-next {
    right: 30px;
}

.hero-slider-section .carousel-control-prev:hover,
.hero-slider-section .carousel-control-next:hover {
    background-color: var(--nm-primary);
    opacity: 1;
}

.hero-slider-section .carousel-control-prev-icon,
.hero-slider-section .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
.hero-slider-section .carousel-indicators {
    bottom: 40px;
    z-index: 10;
}

.hero-slider-section .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-slider-section .carousel-indicators li.active {
    background-color: var(--nm-white);
    transform: scale(1.2);
}

/* Carousel Fade Animation — Bootstrap 4 compatible fix */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    /* Required: stack slides on top of each other */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    position: relative; /* active slide takes up space so container has height */
}

.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
    z-index: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0;
    z-index: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
    z-index: 1;
}

.carousel-fade .carousel-inner {
    position: relative;
    overflow: hidden;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero Slider */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-slider-section .carousel-control-prev,
    .hero-slider-section .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .hero-slider-section .carousel-control-prev {
        left: 15px;
    }
    
    .hero-slider-section .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .hero-slider-section .carousel-control-prev,
    .hero-slider-section .carousel-control-next {
        display: none;
    }
    
    .hero-slider-section .carousel-indicators {
        bottom: 25px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
}

/* ===== GREEN PROMISES SECTION ===== */
.green-promises-section {
    background-color: var(--nm-bg-2);
    padding: 100px 0;
}

.green-promises-section .section-title {
    font-family: var(--nm-font-heading);
    font-size: 42px;
    color: var(--nm-text);
    margin-bottom: 60px;
    position: relative;
}

.green-promises-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--nm-primary);
    margin: 20px auto 0;
}

.promises-row {
    margin-top: 20px;
}

.promise-item {
    text-align: center;
    padding: 40px 25px;
    background-color: var(--nm-white);
    border-radius: 12px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.promise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(47, 68, 49, 0.15);
}

.promise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(47, 68, 49, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.promise-icon svg {
    width: 40px;
    height: 40px;
    color: var(--nm-primary);
    transition: all 0.4s ease;
}

.promise-item:hover .promise-icon {
    background-color: var(--nm-primary);
}

.promise-item:hover .promise-icon svg {
    color: var(--nm-white);
}

.promise-title {
    font-family: var(--nm-font-heading);
    font-size: 20px;
    color: var(--nm-text);
    margin-bottom: 15px;
    line-height: 1.4;
}

.promise-text {
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: var(--nm-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.promise-item.animate-on-scroll[data-delay="0.1"] {
    transition-delay: 0.1s;
}

.promise-item.animate-on-scroll[data-delay="0.2"] {
    transition-delay: 0.2s;
}

.promise-item.animate-on-scroll[data-delay="0.3"] {
    transition-delay: 0.3s;
}

.promise-item.animate-on-scroll[data-delay="0.4"] {
    transition-delay: 0.4s;
}

/* Responsive Green Promises */
@media (max-width: 991px) {
    .green-promises-section {
        padding: 80px 0;
    }
    
    .green-promises-section .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .promise-item {
        padding: 35px 20px;
    }
}

@media (max-width: 767px) {
    .green-promises-section {
        padding: 60px 0;
    }
    
    .green-promises-section .section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .promise-icon {
        width: 70px;
        height: 70px;
    }
    
    .promise-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .promise-title {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .promise-item {
        margin-bottom: 20px;
    }
}

/* ===== ABOUT / OUR STORY SECTION ===== */
.about-story-section {
    background-color: var(--nm-bg-1);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.about-story-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://naturomate.com/public/assets/img/products/line-pattern.png');
    background-repeat: repeat;
    background-size: 320px auto;
    opacity: 0.15; /* ← adjust 0.0 (invisible) to 1.0 (full) */
    pointer-events: none;
    z-index: 0;
}

.about-story-section > * {
    position: relative;
    z-index: 1;
}

.about-image-wrap {
    position: relative;
    padding: 20px;
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.about-image-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--nm-primary);
    border-radius: 12px;
    transform: translate(-20px, -20px);
    z-index: 1;
    opacity: 0.15;
}

.about-story-content {
    padding-left: 50px;
}

.about-subtitle {
    font-family: var(--nm-font-body);
    font-size: 14px;
    color: var(--nm-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.about-title {
    font-family: var(--nm-font-heading);
    font-size: 48px;
    color: var(--nm-text);
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
}

.about-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--nm-primary);
    margin-top: 20px;
}

.about-text {
    font-family: var(--nm-font-body);
    font-size: 16px;
    color: var(--nm-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text:last-of-type {
    margin-bottom: 35px;
}

.about-btn {
    font-family: var(--nm-font-heading);
    padding: 15px 35px;
    font-size: 15px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive About Section */
@media (max-width: 991px) {
    .about-story-section {
        padding: 80px 0;
    }
    
    .about-story-content {
        padding-left: 0;
        margin-bottom: 50px;
    }
    
    .about-title {
        font-size: 38px;
    }
    
    .about-image-wrap {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .about-story-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .about-text {
        font-size: 15px;
    }
    
    .about-image-accent {
        transform: translate(-10px, -10px);
    }
}

@media (max-width: 575px) {
    .about-title {
        font-size: 28px;
    }
    
    .about-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* ===== PRODUCT GRID SECTION ===== */
.product-grid-section {
    background-color: var(--nm-bg-2);
    padding: 120px 0;
}

.product-grid-section .section-subtitle {
    font-family: var(--nm-font-body);
    font-size: 14px;
    color: var(--nm-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.product-grid-section .section-title {
    font-family: var(--nm-font-heading);
    font-size: 42px;
    color: var(--nm-text);
    margin-bottom: 60px;
    position: relative;
}

.product-grid-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--nm-primary);
    margin: 20px auto 0;
}

.product-grid {
    margin-top: 20px;
}

 .product-grid > [class^="col-"] {
     margin-bottom: 25px;
 }

.product-card {
    background-color: var(--nm-white);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(47, 68, 49, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(47, 68, 49, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-link {
    font-family: var(--nm-font-heading);
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--nm-white);
    color: var(--nm-primary) !important;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.product-card:hover .product-link {
    transform: translateY(0);
}

.product-link:hover {
    background-color: var(--nm-primary-light);
    color: var(--nm-primary) !important;
}

.product-info {
    padding: 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-family: var(--nm-font-heading);
    font-size: 22px;
    color: var(--nm-text);
    margin-bottom: 12px;
}

.product-desc {
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: var(--nm-text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.btn-view-all {
    font-family: var(--nm-font-heading);
    padding: 16px 45px;
    font-size: 15px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

/* Responsive Product Grid */
@media (max-width: 991px) {
    .product-grid-section {
        padding: 80px 0;
    }
    
    .product-grid-section .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .product-image {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .product-grid-section {
        padding: 60px 0;
    }
    
    .product-grid-section .section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-title {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .product-card {
        margin-bottom: 20px;
    }
    
    .btn-view-all {
        padding: 14px 35px;
        font-size: 14px;
    }
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications-section {
    background-color: var(--nm-bg-1);
    position: relative;
    padding: 100px 0;
}

.certifications-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://naturomate.com/public/assets/img/products/line-pattern.png');
    background-repeat: repeat;
    background-size: 320px auto;
    opacity: 0.15; /* ← adjust 0.0 (invisible) to 1.0 (full) */
    pointer-events: none;
    z-index: 0;
}

.certifications-section > * {
    position: relative;
    z-index: 1;
}

.certifications-section .section-subtitle {
    font-family: var(--nm-font-body);
    font-size: 14px;
    color: var(--nm-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.certifications-section .section-title {
    font-family: var(--nm-font-heading);
    font-size: 42px;
    color: var(--nm-text);
    margin-bottom: 60px;
    position: relative;
}

.certifications-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--nm-primary);
    margin: 20px auto 0;
}

.certifications-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.certification-item {
    flex: 0 0 auto;
    width: calc(16.666% - 25px);
    min-width: 150px;
    display: flex;
    align-items: stretch;
}

.certification-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background-color: var(--nm-white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    min-height: 180px;
}

.certification-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(47, 68, 49, 0.12);
}

/* Use about-cert-icon for home page certifications too */
.certification-logo .about-cert-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--nm-primary) 0%, #4a7a50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.certification-logo .about-cert-icon i {
    font-size: 24px;
    color: #ffffff;
}

.certification-logo:hover .about-cert-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(47, 68, 49, 0.2);
}

.certification-logo:hover .cert-svg {
    color: var(--nm-primary);
    filter: grayscale(0%);
    opacity: 1;
}

.cert-name {
    font-family: var(--nm-font-body);
    font-size: 13px;
    color: var(--nm-text-light);
    margin-top: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.certification-logo:hover .cert-name {
    color: var(--nm-primary);
}

/* Responsive Certifications */
@media (max-width: 991px) {
    .certifications-section {
        padding: 80px 0;
    }
    
    .certifications-section .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .certification-item {
        width: calc(25% - 22px);
    }
}

@media (max-width: 767px) {
    .certifications-section {
        padding: 60px 0;
    }
    
    .certifications-section .section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .certification-item {
        width: calc(33.333% - 20px);
        min-width: 130px;
    }
    
    .certification-logo {
        padding: 25px 15px;
    }
    
    .cert-svg {
        width: 80px;
        height: 55px;
    }
}

@media (max-width: 575px) {
    .certification-item {
        width: calc(50% - 15px);
    }
    
    .certifications-carousel {
        gap: 20px;
    }
    
    .cert-name {
        font-size: 12px;
    }
}

/* ===== EXPORT COUNTRIES SECTION ===== */
.export-countries-section {
    background-color: var(--nm-bg-2) !important;
    padding: 100px 0;
    position: relative;
    display: block !important;
    visibility: visible !important;

}

.export-countries-section .section-subtitle {
    font-family: var(--nm-font-body);
    font-size: 14px;
    color: var(--nm-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 14px;
}

.export-countries-section .section-title {
    font-family: var(--nm-font-heading);
    font-size: 42px;
    color: var(--nm-text);
    margin-bottom: 18px;
}

.export-countries-section .section-desc {
    font-family: var(--nm-font-body);
    font-size: 16px;
    color: var(--nm-text-light);
    line-height: 1.8;
    max-width: 780px;
    margin: 0 auto;
}

.export-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.export-country-item {
    background: var(--nm-white);
    border: 2px solid rgba(47, 68, 49, 0.10);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(47, 68, 49, 0.04);
}

.export-country-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(47, 68, 49, 0.12);
    border-color: var(--nm-primary);
}

.export-country-flag {
    font-size: 48px;
    margin-bottom: 14px;
    line-height: 1;
}

.export-country-name {
    font-family: var(--nm-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--nm-text);
    display: block;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .export-countries-section {
        padding: 80px 0;
    }

    .export-countries-section .section-title {
        font-size: 36px;
    }

    .export-countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
    }

    .export-country-item {
        padding: 24px 16px;
    }

    .export-country-flag {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .export-countries-section {
        padding: 60px 0;
    }

    .export-countries-section .section-title {
        font-size: 30px;
    }

    .export-countries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .export-country-item {
        padding: 20px 12px;
    }

    .export-country-flag {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .export-country-name {
        font-size: 13px;
    }
}

/* ===== BROCHURE DOWNLOAD SECTION ===== */
.brochure-download-section {
    position: relative;
    background-color: var(--nm-primary);
    padding: 100px 0;
    overflow: hidden;
}

/* Eco Pattern Overlay */
.eco-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
      background-image: url('https://naturomate.com/public/assets/img/products/line-pattern.png');
    background-repeat: repeat;
    background-size: 320px auto;
    opacity: 0.1; /* ← adjust 0.0 (invisible) to 1.0 (full) */

    pointer-events: none;
}

.brochure-content {
    position: relative;
    z-index: 2;
}

.brochure-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 18px;
}

.brochure-icon svg {
    width: 100%;
    height: 100%;
    color: var(--nm-white);
}

.brochure-title {
    font-family: var(--nm-font-heading);
    font-size: 42px;
    color: var(--nm-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.brochure-text {
    font-family: var(--nm-font-body);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.brochure-btn {
    font-family: var(--nm-font-heading);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background-color: var(--nm-white);
    color: var(--nm-primary) !important;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    border: 2px solid var(--nm-white);
    transition: all 0.3s ease;
}

.brochure-btn:hover {
    background-color: transparent;
    color: var(--nm-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.brochure-btn .btn-icon {
    width: 20px;
    height: 20px;
}

/* Responsive Brochure Section */
@media (max-width: 991px) {
    .brochure-download-section {
        padding: 80px 0;
    }
    
    .brochure-title {
        font-size: 36px;
    }
    
    .brochure-text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .brochure-download-section {
        padding: 60px 0;
    }
    
    .brochure-icon {
        width: 70px;
        height: 70px;
        padding: 15px;
    }
    
    .brochure-title {
        font-size: 30px;
    }
    
    .brochure-text {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .brochure-btn {
        padding: 14px 35px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .brochure-title {
        font-size: 26px;
    }
    
    .brochure-btn {
        padding: 12px 30px;
    }
}

/* ===== FOOTER STYLES ===== */
.naturomate-footer {
    background-color: var(--nm-primary);
}

.footer-main-area {
    padding: 80px 0 60px;
}

/* Footer Brand (Left Column) */
.footer-brand {
    padding-right: 30px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: var(--nm-font-heading);
    font-size: 18px;
    color: var(--nm-white);
    margin-bottom: 15px;
    font-style: italic;
}

.footer-desc {
    font-family: var(--nm-font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--nm-white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--nm-white);
    color: var(--nm-primary);
    transform: translateY(-3px);
}

/* Footer Links (Middle Column) */
.footer-links {
    padding-left: 50px;
}

.footer-title {
    font-family: var(--nm-font-heading);
    font-size: 20px;
    color: var(--nm-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--nm-primary-light);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: var(--nm-white);
    padding-left: 8px;
}

/* Footer Contact (Right Column) */
.footer-contact {
    padding-left: 30px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
}

.contact-list li i {
    color: var(--nm-primary-light);
    font-size: 18px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.contact-list li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-list li a:hover {
    color: var(--nm-white);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    font-family: var(--nm-font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-main-area {
        padding: 60px 0 40px;
    }
    
    .footer-brand,
    .footer-links,
    .footer-contact {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .footer-links {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .footer-main-area {
        padding: 50px 0 30px;
    }
    
    .footer-brand,
    .footer-links,
    .footer-contact {
        margin-bottom: 35px;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .footer-tagline {
        font-size: 16px;
    }
    
    .footer-bottom-bar {
        padding: 15px 0;
    }
    
    .copyright-text {
        font-size: 13px;
    }
}

/* ===== BUTTON STYLES ===== */
.btn-brand,
.btn.btn-brand {
    background-color: var(--nm-primary) !important;
    border-color: var(--nm-primary) !important;
    color: var(--nm-white) !important;
}

.btn-brand:hover,
.btn.btn-brand:hover {
    background-color: var(--nm-primary-dark) !important;
    border-color: var(--nm-primary-dark) !important;
    color: var(--nm-white) !important;
}

.btn-newsletter {
    background-color: var(--nm-primary);
    color: var(--nm-white);
}

.btn-newsletter:hover {
    background-color: var(--nm-primary-dark);
    color: var(--nm-white);
}

/* Revolution Slider Buttons */
.trio-button-04 {
    background-color: var(--nm-primary) !important;
    border-color: var(--nm-primary) !important;
}

.trio-button-05,
.trio-button-06 {
    border-color: var(--nm-white) !important;
    color: var(--nm-white) !important;
}

/* ===== SECTION BACKGROUNDS ===== */
.restaurant-about-area {
    background-color: var(--nm-bg-1);
}

.restaurant-about-area:nth-of-type(even) {
    background-color: var(--nm-bg-2);
}

.why-us-area-wrapper {
    background-color: var(--nm-bg-2);
}

/* Parallax sections with overlay */
.restaurant-chef-area,
.testimonial-area {
    position: relative;
}

.restaurant-chef-area::before,
.testimonial-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(21, 41, 26, 0.74);
    z-index: 1;
}

.restaurant-chef-area > .container,
.testimonial-area > .container {
    position: relative;
    z-index: 2;
}

.restaurant-chef-area .our-chefs-content h2,
.restaurant-chef-area .our-chefs-content p,
.testimonial-area .single-testimonial-wrap p,
.testimonial-area .client-name,
.testimonial-area .client-designation {
    color: var(--nm-white);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-area-wrapper {
    background-color: #000000 !important;
    padding: 0 !important;
}

.newsletter-area-wrapper.layout--3 {
    background-color: #000000 !important;
}

.newsletter-area-wrapper.layout--3 .newsletter-content-wrap {
    background-color: #000000 !important;
    padding: 60px 50px;
    border-radius: 0;
}

.newsletter-area-wrapper .section-title-wrap.white h2 {
    font-family: var(--nm-font-heading);
    font-size: 36px;
    color: var(--nm-white) !important;
    margin-bottom: 15px;
}

.newsletter-area-wrapper .section-title-wrap.white p {
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.6;
}

.newsletter-area-wrapper .newsletter-form-wrap {
    display: flex;
    align-items: center;
}

.newsletter-area-wrapper .newsletter-form-wrap .mc-form {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.newsletter-area-wrapper .newsletter-form-wrap.black-input input,
.newsletter-area-wrapper .mc-form input[type="email"] {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    border-right: none !important;
    border-radius: 4px 0 0 4px !important;
    color: var(--nm-white) !important;
    padding: 18px 25px;
    font-family: var(--nm-font-body);
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    height: auto;
    min-height: 56px;
}

.newsletter-area-wrapper .mc-form input:focus {
    border-color: var(--nm-primary-light) !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
}

.newsletter-area-wrapper .mc-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-area-wrapper .btn-newsletter {
    background-color: var(--nm-primary) !important;
    color: var(--nm-white) !important;
    border: none !important;
    font-family: var(--nm-font-heading);
    padding: 18px 35px;
    border-radius: 0 4px 4px 0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-area-wrapper .btn-newsletter:hover {
    background-color: var(--nm-primary-light) !important;
    color: var(--nm-primary) !important;
}

/* Responsive Newsletter */
@media (max-width: 991px) {
    .newsletter-area-wrapper.layout--3 .newsletter-content-wrap {
        padding: 50px 30px;
    }
    
    .newsletter-area-wrapper .section-title-wrap.white h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .newsletter-area-wrapper.layout--3 .newsletter-content-wrap {
        padding: 40px 20px;
    }
    
    .newsletter-area-wrapper .newsletter-form-wrap .mc-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-area-wrapper .newsletter-form-wrap.black-input input,
    .newsletter-area-wrapper .mc-form input[type="email"] {
        width: 100%;
        border-radius: 4px !important;
        border-right: 2px solid rgba(255, 255, 255, 0.25) !important;
    }
    
    .newsletter-area-wrapper .btn-newsletter {
        width: 100%;
        border-radius: 4px !important;
        text-align: center;
    }
}

/* ===== ACCORDION STYLES ===== */
.restaurant-why-us-accordion .card {
    border-color: var(--nm-primary);
}

.restaurant-why-us-accordion .card-header h3 {
    color: var(--nm-text);
}

.restaurant-why-us-accordion .card-header h3 span {
    color: var(--nm-primary);
}

.restaurant-why-us-accordion .card-header h3[aria-expanded="true"],
.restaurant-why-us-accordion .card-header h3:not(.collapsed) {
    color: var(--nm-primary);
}

.restaurant-why-us-accordion .card-body p {
    color: var(--nm-text-light);
}

/* ===== ABOUT CONTENT ===== */
.restaurant-about-content h2 {
    color: var(--nm-text);
}

.restaurant-about-content p {
    color: var(--nm-text-light);
}

/* Why Us Section */
.why-us-left-area-content h2 {
    color: var(--nm-text);
}

.why-us-left-area-content p {
    color: var(--nm-text-light);
}

/* ===== OFF CANVAS MENU ===== */
.off-canvas-content-wrap {
    background-color: var(--nm-primary);
}

.off-canvas-content h2 {
    color: var(--nm-white);
}

.off-canvas-content p {
    color: rgba(255, 255, 255, 0.85);
}

.off-canvas-content .useful-link-menu li a {
    color: rgba(255, 255, 255, 0.85);
}

.off-canvas-content .useful-link-menu li a:hover {
    color: var(--nm-white);
}

.off-canvas-content .social-links a {
    color: rgba(255, 255, 255, 0.85);
}

.off-canvas-content .social-links a:hover {
    color: var(--nm-white);
}

.off-canvas-content .btn-close {
    color: var(--nm-white);
}

.off-canvas-content .search-box-wrap input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--nm-white);
}

.off-canvas-content .search-box-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.off-canvas-content .btn-search {
    color: var(--nm-white);
}

/* ===== PRELOADER ===== */
.preloader-area-wrap {
    background-color: var(--nm-bg-1);
}

.spinner .bounce1,
.spinner .bounce2,
.spinner .bounce3 {
    background-color: var(--nm-primary);
}

/* ===== TESTIMONIAL SLIDER DOTS ===== */
.dots-style-two .slick-dots li button {
    background-color: rgba(255, 255, 255, 0.5);
}

.dots-style-two .slick-dots li.slick-active button {
    background-color: var(--nm-white);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--nm-bg-1);
}

::-webkit-scrollbar-thumb {
    background: var(--nm-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--nm-primary-dark);
}

/* ===== SELECTION ===== */
::selection {
    background-color: var(--nm-primary);
    color: var(--nm-white);
}

::-moz-selection {
    background-color: var(--nm-primary);
    color: var(--nm-white);
}

/* ===== RESPONSIVE MOBILE MENU ===== */
.off-canvas-responsive-menu .off-canvas-content-wrap {
    background-color: var(--nm-primary);
}

/* ===== SEARCH BOX OVERLAY ===== */
.off-canvas-search-box .search-box-wrapper {
    background-color: rgba(47, 68, 19, 0.95);
}

.off-canvas-search-box .search-box-content input {
    border-bottom-color: var(--nm-white);
    color: var(--nm-white);
}

.off-canvas-search-box .search-box-content input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.off-canvas-search-box .btn-search {
    color: var(--nm-white);
}

/* ===== LINKS & HOVER EFFECTS ===== */
.restaurant-about-gallery a:hover img {
    opacity: 0.9;
}

/* ===== FORM INPUTS ===== */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--nm-primary) !important;
    outline: none;
    box-shadow: 0 0 0 2px rgba(47, 68, 19, 0.2);
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

/* ===== CONTACT HERO ===== */
.contact-page-hero {
    position: relative;
    height: 480px;
    background-image: url('assets/img/rev-slider/home-restaurant/home-restaurant-slide02-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47, 68, 49, 0.88) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.contact-page-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.contact-hero-subtitle {
    display: inline-block;
    font-family: var(--nm-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--nm-primary-light);
    background: rgba(191, 211, 193, 0.15);
    border: 1px solid rgba(191, 211, 193, 0.3);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.contact-hero-title {
    font-family: var(--nm-font-heading);
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.contact-hero-text {
    font-family: var(--nm-font-body);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .contact-page-hero { height: 380px; }
    .contact-hero-title { font-size: 36px; }
    .contact-hero-text { font-size: 15px; }
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-section {
    background-color: var(--nm-white);
    padding: 0 0 80px;
    position: relative;
    z-index: 2;
}

.contact-info-card {
    background: var(--nm-white);
    border: 1px solid rgba(47, 68, 49, 0.1);
    border-radius: 16px;
    padding: 48px 36px;
    text-align: center;
    margin-top: -60px;
    box-shadow: 0 20px 60px rgba(47, 68, 49, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: calc(100% - 0px);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(47, 68, 49, 0.18);
}

.contact-info-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--nm-primary) 0%, #4a7a50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-info-icon i {
    font-size: 28px;
    color: #ffffff;
}

.contact-info-title {
    font-family: var(--nm-font-heading);
    font-size: 20px;
    color: var(--nm-text);
    margin-bottom: 10px;
}

.contact-info-text {
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: var(--nm-text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-info-link {
    font-family: var(--nm-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--nm-primary);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.contact-info-link:hover {
    color: var(--nm-primary-dark);
    gap: 10px;
}

@media (max-width: 991px) {
    .contact-info-card { margin-top: 30px; }
}

/* ===== CONTACT FORM + MAP ===== */
.contact-main-section {
    background-color: var(--nm-bg-1);
}

.contact-form-wrap {
    background-color: var(--nm-white);
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-form-inner {
    padding: 80px 70px;
    width: 100%;
}

.contact-form-title {
    font-family: var(--nm-font-heading);
    font-size: 38px;
    color: var(--nm-text);
    margin-bottom: 12px;
    line-height: 1.2;
}

.contact-form-desc {
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: var(--nm-text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Form Fields */
.form-group-nm {
    margin-bottom: 24px;
}

.form-group-nm label {
    display: block;
    font-family: var(--nm-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--nm-text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group-nm label span {
    color: #e05252;
}

.form-group-nm input,
.form-group-nm textarea,
.form-group-nm select {
    width: 100%;
    background: var(--nm-bg-1);
    border: 1.5px solid rgba(47, 68, 49, 0.15);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: var(--nm-text);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group-nm select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232f4431' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-group-nm input:focus,
.form-group-nm textarea:focus,
.form-group-nm select:focus {
    border-color: var(--nm-primary) !important;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(47, 68, 49, 0.12) !important;
    outline: none;
}

.form-group-nm input::placeholder,
.form-group-nm textarea::placeholder {
    color: #aab0b2;
    font-size: 14px;
}

.form-group-nm textarea {
    resize: vertical;
    min-height: 140px;
}

/* Submit Button */
.btn-contact-submit {
    background: linear-gradient(135deg, var(--nm-primary) 0%, #4a7a50 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 10px;
    padding: 16px 40px;
    font-family: var(--nm-font-heading);
    font-size: 16px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(47, 68, 49, 0.3);
}

.btn-contact-submit:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(47, 68, 49, 0.4) !important;
}

.btn-contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Form Response */
.form-success {
    background: rgba(47, 68, 49, 0.08);
    border: 1px solid rgba(47, 68, 49, 0.25);
    border-radius: 10px;
    padding: 16px 20px;
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: var(--nm-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.form-success i { font-size: 20px; }

/* Map */
.contact-map-wrap {
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 600px;
    filter: saturate(0.8) contrast(1.05);
}

/* Responsive form */
@media (max-width: 1199px) {
    .contact-form-inner { padding: 60px 50px; }
}

@media (max-width: 991px) {
    .contact-form-inner { padding: 60px 40px; }
    .contact-form-title { font-size: 32px; }
    .contact-map-wrap { min-height: 400px; }
    .contact-map-wrap iframe { min-height: 400px; }
}

@media (max-width: 767px) {
    .contact-form-inner { padding: 50px 24px; }
    .contact-form-title { font-size: 28px; }
}

/* ===== WHY CONTACT SECTION ===== */
.contact-why-section {
    position: relative;
    background-color: var(--nm-primary);
    padding: 100px 0;
    overflow: hidden;
}

.contact-why-overlay {
    position: absolute;
    inset: 0;
    background: rgba(47, 68, 49, 0.7);
    z-index: 0;
}

.contact-why-section .container {
    position: relative;
    z-index: 1;
}

.contact-why-title {
    font-family: var(--nm-font-heading);
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 0;
}

.contact-why-item {
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.3s ease, transform 0.3s ease;
    margin-bottom: 30px;
}

.contact-why-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
}

.contact-why-icon {
    width: 64px;
    height: 64px;
    background: rgba(191, 211, 193, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(191, 211, 193, 0.3);
}

.contact-why-icon i {
    font-size: 26px;
    color: var(--nm-primary-light);
}

.contact-why-item h5 {
    font-family: var(--nm-font-heading);
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-why-item p {
    font-family: var(--nm-font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 767px) {
    .contact-why-title { font-size: 30px; }
    .contact-why-section { padding: 70px 0; }
}

/* ============================================================
   CONTACT PAGE v2 — Matching Naturomate Theme
   ============================================================ */

/* ===== HERO ===== */
.contact-page-hero {
    position: relative;
    min-height: 460px;
    background-image: url('assets/img/rev-slider/home-restaurant/home-restaurant-slide02-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47, 68, 49, 0.90) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}

.contact-page-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-badge {
    display: inline-block;
    font-family: var(--nm-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--nm-primary-light);
    border: 1px solid rgba(191, 211, 193, 0.4);
    background: rgba(191, 211, 193, 0.1);
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.contact-hero-title {
    font-family: var(--nm-font-heading);
    font-size: 54px;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.contact-hero-desc {
    font-family: var(--nm-font-body);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.80);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .contact-hero-title { font-size: 40px; }
}

@media (max-width: 767px) {
    .contact-page-hero { min-height: 360px; padding: 100px 0 60px; }
    .contact-hero-title { font-size: 30px; }
    .contact-hero-desc { font-size: 15px; }
}

/* ===== INFO CARDS ===== */
.contact-cards-section {
    background-color: var(--nm-white);
    padding: 0 0 200px;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: var(--nm-white);
    border: 1px solid rgba(47, 68, 49, 0.1);
    border-radius: 16px;
    padding: 48px 32px 100px 32px;
    text-align: center;
    margin-top: -64px;
    box-shadow: 0 20px 60px rgba(47, 68, 49, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(47, 68, 49, 0.18);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--nm-primary) 0%, #4a7a50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.contact-card-icon i {
    font-size: 26px;
    color: #ffffff;
}

.contact-card-title {
    font-family: var(--nm-font-heading);
    font-size: 20px;
    color: var(--nm-text);
    margin-bottom: 8px;
}

.contact-card-text {
    font-family: var(--nm-font-body);
    font-size: 14px;
    color: var(--nm-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-card-link {
    font-family: var(--nm-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--nm-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.contact-card-link:hover {
    color: var(--nm-primary-dark);
    gap: 10px;
}

@media (max-width: 991px) {
    .contact-card { margin-top: 32px; }
}

/* ===== FORM + MAP ===== */
.contact-body-section {
    background-color: var(--nm-bg-1);
}

.contact-form-wrap {
    background-color: var(--nm-white);
    height: 100%;
    display: flex;
    align-items: flex-start;
}

.contact-form-inner {
    padding: 80px 70px;
    width: 100%;
}

/* Form fields */
.nm-field-group {
    margin-bottom: 22px;
}

.nm-field-group label {
    display: block;
    font-family: var(--nm-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--nm-text);
    margin-bottom: 8px;
}

.nm-field-group label span {
    color: #d94f4f;
}

.nm-field-group input,
.nm-field-group textarea,
.nm-field-group select {
    width: 100%;
    background: var(--nm-bg-1);
    border: 1.5px solid rgba(47, 68, 49, 0.15);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: var(--nm-text);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.nm-field-group select {
    background-color: var(--nm-bg-1) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232f4431' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 40px;
    cursor: pointer;
}

.nm-field-group select option[disabled] {
    color: #b0b8ba;
}

.nm-field-group select:invalid {
    color: #b0b8ba;
}

.nm-field-group select:valid {
    color: var(--nm-text);
}

.nm-field-group input:focus,
.nm-field-group textarea:focus,
.nm-field-group select:focus {
    border-color: var(--nm-primary) !important;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(47, 68, 49, 0.10) !important;
    outline: none;
}

.nm-field-group input::placeholder,
.nm-field-group textarea::placeholder {
    color: #b0b8ba;
    font-size: 14px;
}

.nm-field-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Submit button */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* Form success */
.nm-form-success {
    background: rgba(47, 68, 49, 0.08);
    border: 1px solid rgba(47, 68, 49, 0.25);
    border-radius: 10px;
    padding: 16px 20px;
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: var(--nm-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.nm-form-success i { font-size: 20px; }

/* Map */
.contact-map-wrap {
    height: 100%;
    min-height: 640px;
    overflow: hidden;
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 640px;
    border: 0;
    filter: saturate(0.85);
}

@media (max-width: 1199px) {
    .contact-form-inner { padding: 60px 50px; }
}

@media (max-width: 991px) {
    .contact-form-inner { padding: 60px 36px; }
    .contact-map-wrap,
    .contact-map-wrap iframe { min-height: 420px; }
}

@media (max-width: 767px) {
    .contact-form-inner { padding: 48px 20px; }
    .contact-map-wrap,
    .contact-map-wrap iframe { min-height: 320px; }
}

/* ===== WHY NATUROMATE STRIP ===== */
.contact-why-section {
    position: relative;
    background-color: var(--nm-primary);
    padding: 100px 0;
    overflow: hidden;
}

.contact-why-pattern {
    position: absolute;
    inset: 0;
     background-image: url('https://naturomate.com/public/assets/img/products/line-pattern.png');
    background-repeat: repeat;
    background-size: 320px auto;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.contact-why-section .container {
    position: relative;
    z-index: 1;
}

.contact-why-badge {
    display: inline-block;
    font-family: var(--nm-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--nm-primary-light);
    border: 1px solid rgba(191, 211, 193, 0.35);
    background: rgba(191, 211, 193, 0.1);
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.contact-why-title {
    font-family: var(--nm-font-heading);
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 0;
}

 .contact-why-section .row.mt-5 > [class^="col-"] {
     display: flex;
 }

.contact-why-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: background 0.3s ease, transform 0.3s ease;
    margin-bottom: 5px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-why-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
}

.contact-why-icon {
    width: 62px;
    height: 62px;
    background: rgba(191, 211, 193, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border: 1px solid rgba(191, 211, 193, 0.28);
}

.contact-why-icon i {
    font-size: 24px;
    color: var(--nm-primary-light);
}

.contact-why-item h5 {
    font-family: var(--nm-font-heading);
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-why-item p {
    font-family: var(--nm-font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .contact-why-title { font-size: 34px; }
}

@media (max-width: 767px) {
    .contact-why-title { font-size: 28px; }
    .contact-why-section { padding: 70px 0; }
}

/* ===== FAQ SECTION ===== */
.contact-faq-section {
    background-color: var(--nm-bg-2);
    padding: 100px 0;
}

.contact-faq-section .section-subtitle {
    font-family: var(--nm-font-body);
    font-size: 14px;
    color: var(--nm-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.contact-faq-section .section-title {
    font-family: var(--nm-font-heading);
    font-size: 42px;
    color: var(--nm-text);
    margin-bottom: 20px;
}

.contact-faq-section .section-desc {
    font-family: var(--nm-font-body);
    font-size: 16px;
    color: var(--nm-text-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.contact-faq-accordion {
    margin-top: 0;
}

.contact-faq-item {
    background: var(--nm-white);
    border: 1px solid rgba(47, 68, 49, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-faq-item:hover {
    box-shadow: 0 8px 24px rgba(47, 68, 49, 0.08);
    border-color: rgba(47, 68, 49, 0.2);
}

.contact-faq-header {
    margin: 0;
}

.contact-faq-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 28px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-faq-btn:hover {
    background: rgba(47, 68, 49, 0.03);
}

.contact-faq-btn:focus {
    outline: none;
    box-shadow: none;
}

.contact-faq-question {
    font-family: var(--nm-font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--nm-text);
    line-height: 1.5;
    padding-right: 20px;
}

.contact-faq-icon {
    font-size: 20px;
    color: var(--nm-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.contact-faq-btn:not(.collapsed) .contact-faq-icon {
    transform: rotate(180deg);
}

.contact-faq-body {
    padding: 0 28px 28px 28px;
}

.contact-faq-body p {
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: var(--nm-text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .contact-faq-section .section-title { font-size: 36px; }
}

@media (max-width: 767px) {
    .contact-faq-section { padding: 70px 0; }
    .contact-faq-section .section-title { font-size: 30px; }
    .contact-faq-btn { padding: 20px 20px; }
    .contact-faq-question { font-size: 16px; }
    .contact-faq-body { padding: 0 20px 20px 20px; }
    .contact-faq-body p { font-size: 14px; }
}

/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

/* ===== ABOUT HERO ===== */
.about-page-hero {
    position: relative;
    min-height: 460px;
    background-image: url('assets/img/rev-slider/home-restaurant/home-restaurant-slide03-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47, 68, 49, 0.92) 0%, rgba(0,0,0,0.50) 100%);
    z-index: 1;
}

.about-page-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-badge {
    display: inline-block;
    font-family: var(--nm-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--nm-primary-light);
    border: 1px solid rgba(191, 211, 193, 0.4);
    background: rgba(191, 211, 193, 0.1);
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.about-hero-title {
    font-family: var(--nm-font-heading);
    font-size: 54px;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-hero-desc {
    font-family: var(--nm-font-body);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .about-hero-title { font-size: 40px; }
}

@media (max-width: 767px) {
    .about-page-hero { min-height: 360px; padding: 100px 0 60px; }
    .about-hero-title { font-size: 30px; }
    .about-hero-desc { font-size: 15px; }
}

/* ===== STATS STRIP ===== */
.about-stats-section {
    background-color: var(--nm-white);
    padding: 0 0 0;
    position: relative;
    z-index: 2;
}

.about-stat-item {
    text-align: center;
    padding: 50px 24px;
    border-right: 1px solid rgba(47, 68, 49, 0.1);
    margin-top: -1px;
}

.about-stat-item:last-child {
    border-right: none;
}

.about-stat-number {
    display: block;
    font-family: var(--nm-font-heading);
    font-size: 52px;
    color: var(--nm-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.about-stat-label {
    display: block;
    font-family: var(--nm-font-body);
    font-size: 14px;
    color: var(--nm-text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 991px) {
    .about-stat-item { border-right: none; border-bottom: 1px solid rgba(47, 68, 49, 0.1); padding: 36px 20px; }
    .about-stat-number { font-size: 42px; }
}

/* ===== ABOUT IMAGE BADGE ===== */
.about-image-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: var(--nm-primary);
    color: #ffffff;
    border-radius: 12px;
    padding: 18px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(47, 68, 49, 0.35);
    z-index: 3;
}

.about-badge-number {
    display: block;
    font-family: var(--nm-font-heading);
    font-size: 32px;
    line-height: 1;
    margin-bottom: 4px;
}

.about-badge-text {
    display: block;
    font-family: var(--nm-font-body);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
}

@media (max-width: 767px) {
    .about-image-badge { right: 10px; bottom: 10px; padding: 14px 18px; }
    .about-badge-number { font-size: 24px; }
}

/* ===== MISSION & VISION ===== */
.about-mission-section {
    position: relative;
    background-color: var(--nm-primary);
    padding: 100px 0;
    overflow: hidden;
}

.about-mission-pattern {
    position: absolute;
    inset: 0;
     background-image: url('https://naturomate.com/public/assets/img/products/line-pattern.png');
    background-repeat: repeat;
    background-size: 320px auto;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.about-mission-section .container {
    position: relative;
    z-index: 1;
}

.about-mission-heading {
    font-family: var(--nm-font-heading);
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 0;
}

.about-mission-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 48px 40px;
    height: 100%;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-bottom: 30px;
}

.about-mission-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
}

.about-mission-icon {
    width: 64px;
    height: 64px;
    background: rgba(191, 211, 193, 0.18);
    border: 1px solid rgba(191, 211, 193, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.about-mission-icon i {
    font-size: 26px;
    color: var(--nm-primary-light);
}

.about-mission-title {
    font-family: var(--nm-font-heading);
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-mission-text {
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.85;
    margin: 0;
}

@media (max-width: 991px) {
    .about-mission-heading { font-size: 34px; }
    .about-mission-card { padding: 36px 28px; }
    .about-mission-section { padding: 70px 0; }
}

/* ===== CORE VALUES ===== */
.about-values-section {
    background-color: var(--nm-bg-1);
    position: relative;
    padding: 100px 0;
}

.about-values-section::before {
    content: '';
    position: absolute;
    inset: 0;
     background-image: url('https://naturomate.com/public/assets/img/products/line-pattern.png');
    background-repeat: repeat;
    background-size: 320px auto;
    opacity: 0.12;
    pointer-events: none;
}

.about-values-section > * {
    position: relative;
    z-index: 1;
}

.about-value-item {
    background: var(--nm-white);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    border: 1px solid rgba(47, 68, 49, 0.08);
    box-shadow: 0 8px 30px rgba(47, 68, 49, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: calc(100% - 30px);
}

.about-value-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(47, 68, 49, 0.14);
}

.about-value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--nm-primary) 0%, #4a7a50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-value-icon i {
    font-size: 26px;
    color: #ffffff;
}

.about-value-title {
    font-family: var(--nm-font-heading);
    font-size: 19px;
    color: var(--nm-text);
    margin-bottom: 12px;
}

.about-value-text {
    font-family: var(--nm-font-body);
    font-size: 14px;
    color: var(--nm-text-light);
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 767px) {
    .about-values-section { padding: 70px 0; }
}

/* ===== BAGASSE SECTION ===== */
.about-bagasse-section {
    background-color: var(--nm-white);
    padding: 100px 0;
}

.about-bagasse-features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-bagasse-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: var(--nm-text);
}

.about-bagasse-feat i {
    font-size: 18px;
    color: var(--nm-primary);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .about-bagasse-section { padding: 70px 0; }
}

/* ===== CERTIFICATIONS (about page variant) ===== */
.about-cert-item {
    text-align: center;
    padding: 32px 16px;
    border-radius: 14px;
    background: var(--nm-white);
    border: 1px solid rgba(47, 68, 49, 0.1);
    box-shadow: 0 6px 24px rgba(47, 68, 49, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 160px;
}

.about-cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(47, 68, 49, 0.14);
}

.about-cert-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--nm-primary) 0%, #4a7a50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.about-cert-icon i {
    font-size: 22px;
    color: #ffffff;
}

.about-cert-name {
    display: block;
    font-family: var(--nm-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--nm-text);
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* ===== CTA STRIP ===== */
.about-cta-section {
    position: relative;
    background-image: url('assets/img/rev-slider/home-restaurant/home-restaurant-slide01-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    overflow: hidden;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47, 68, 49, 0.92) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}

.about-cta-section .container {
    position: relative;
    z-index: 2;
}

.about-cta-title {
    font-family: var(--nm-font-heading);
    font-size: 44px;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.2;
}

.about-cta-text {
    font-family: var(--nm-font-body);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-brand-light {
    background: #ffffff;
    color: var(--nm-primary) !important;
    border: 2px solid #ffffff;
    border-radius: 8px;
    padding: 14px 36px;
    font-family: var(--nm-font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease !important;
}

.btn-brand-light:hover {
    background: transparent;
    color: #ffffff !important;
}

.btn-outline-light-nm {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    padding: 14px 36px;
    font-family: var(--nm-font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease !important;
}

.btn-outline-light-nm:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

@media (max-width: 991px) {
    .about-cta-title { font-size: 34px; }
    .about-cta-section { padding: 70px 0; }
}

@media (max-width: 767px) {
    .about-cta-title { font-size: 26px; }
    .about-cta-btns { flex-direction: column; align-items: center; }
    .btn-brand-light, .btn-outline-light-nm { width: 100%; max-width: 280px; text-align: center; }
}

/* ============================================================
   PRODUCTS PAGE STYLES
   ============================================================ */

/* ===== PRODUCTS HERO ===== */
.products-page-hero {
    position: relative;
    min-height: 420px;
    background-image: url('assets/img/rev-slider/home-restaurant/home-restaurant-slide01-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.products-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47, 68, 49, 0.90) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}

.products-page-hero .container {
    position: relative;
    z-index: 2;
}

.products-hero-badge {
    display: inline-block;
    font-family: var(--nm-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--nm-primary-light);
    border: 1px solid rgba(191, 211, 193, 0.4);
    background: rgba(191, 211, 193, 0.1);
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.products-hero-title {
    font-family: var(--nm-font-heading);
    font-size: 54px;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.products-hero-desc {
    font-family: var(--nm-font-body);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .products-page-hero { min-height: 340px; padding: 100px 0 60px; }
    .products-hero-title { font-size: 30px; }
    .products-hero-desc { font-size: 15px; }
}

/* ===== STICKY CATEGORY NAV ===== */
.products-cat-nav {
    background-color: var(--nm-white);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(47, 68, 49, 0.08);
    border-bottom: 1px solid rgba(47, 68, 49, 0.08);
}

.products-cat-nav-inner {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-cat-nav-inner::-webkit-scrollbar { display: none; }

.cat-nav-btn {
    flex-shrink: 0;
    background: transparent;
    border: none;
    padding: 18px 24px;
    font-family: var(--nm-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--nm-text-light);
    letter-spacing: 0.3px;
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
}

.cat-nav-btn i { font-size: 15px; }

.cat-nav-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--nm-primary);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}

.cat-nav-btn:hover { color: var(--nm-primary); }

.cat-nav-btn.active {
    color: var(--nm-primary);
}

.cat-nav-btn.active::after { width: 70%; }

.cat-nav-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 68, 49, 0.10);
    color: var(--nm-primary);
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    transition: background 0.25s ease;
}

.cat-nav-btn.active .cat-nav-count,
.cat-nav-btn:hover .cat-nav-count {
    background: var(--nm-primary);
    color: #ffffff;
}

/* ===== LEGACY FILTER TABS (kept for compatibility) ===== */
.products-filter-section {
    background-color: var(--nm-white);
    padding: 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(47, 68, 49, 0.08);
}

.products-filter-tabs {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-filter-tabs::-webkit-scrollbar { display: none; }

.filter-tab {
    flex-shrink: 0;
    background: transparent;
    border: none;
    padding: 20px 28px;
    font-family: var(--nm-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--nm-text-light);
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.filter-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--nm-primary);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}

.filter-tab:hover { color: var(--nm-primary); }

.filter-tab.active { color: var(--nm-primary); }

.filter-tab.active::after { width: 60%; }

/* ===== PRODUCTS GRID ===== */
.products-grid-section {
    background-color: var(--nm-bg-1);
    padding: 60px 0 80px;
}

.products-category-block {
    margin-bottom: 70px;
}

.products-category-block:last-child { margin-bottom: 0; }

.products-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(47, 68, 49, 0.12);
}

.products-cat-header-text {
    flex: 1;
}

.products-cat-count-badge {
    flex-shrink: 0;
    font-family: var(--nm-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nm-primary);
    background: rgba(47, 68, 49, 0.08);
    border: 1px solid rgba(47, 68, 49, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
}

/* ===== CSS GRID for products ===== */
.nm-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .nm-products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
    .nm-products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
    .nm-products-grid { grid-template-columns: 1fr; }
}

/* Hidden products (beyond initial visible count) */
.nm-hidden-product {
    display: none !important;
}

/* ===== SHOW MORE BUTTON ===== */
.nm-show-more-wrap {
    text-align: center;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px dashed rgba(47, 68, 49, 0.18);
}

.nm-show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--nm-primary);
    color: var(--nm-primary);
    font-family: var(--nm-font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 13px 36px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nm-show-more-btn:hover,
.nm-show-more-btn.expanded {
    background: var(--nm-primary);
    color: #ffffff;
}

.nm-show-more-btn .nm-btn-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== EXTRA BADGE COLOURS ===== */
.nm-badge-blue {
    background: #1a6fa8;
}

/* product-card-link inside grid — remove margin-bottom (grid handles spacing) */
.nm-products-grid .product-card-link {
    margin-bottom: 0;
}

.products-cat-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--nm-primary) 0%, #4a7a50 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.products-cat-icon i {
    font-size: 22px;
    color: #ffffff;
}

.products-cat-title {
    font-family: var(--nm-font-heading);
    font-size: 30px;
    color: var(--nm-text);
    margin-bottom: 6px;
}

.products-cat-desc {
    font-family: var(--nm-font-body);
    font-size: 15px;
    color: var(--nm-text-light);
    margin: 0;
    line-height: 1.6;
}

.products-row { margin-top: 0; }

/* ===== PRODUCT CARD ===== */
.product-card-link {
    text-decoration: none;
    display: block;
    margin-bottom: 30px;
}

.nm-product-card {
    background: var(--nm-white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(47, 68, 49, 0.08);
    box-shadow: 0 4px 20px rgba(47, 68, 49, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

.nm-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(47, 68, 49, 0.16);
}

.nm-product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--nm-bg-1);
}

.nm-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.nm-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(47, 68, 49, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nm-product-card:hover .nm-product-overlay { opacity: 1; }

.nm-product-overlay span {
    font-family: var(--nm-font-heading);
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 1px;
    border: 1.5px solid rgba(255,255,255,0.7);
    padding: 10px 24px;
    border-radius: 6px;
    transition: background 0.25s ease;
}

.nm-product-overlay span:hover {
    background: rgba(255,255,255,0.15);
}

.nm-product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--nm-primary);
    color: #ffffff;
    font-family: var(--nm-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
}

.nm-badge-green {
    background: #3a8a42;
}

.nm-product-body {
    padding: 22px 22px 24px;
}

.nm-product-name {
    font-family: var(--nm-font-heading);
    font-size: 17px;
    color: var(--nm-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.nm-product-desc {
    font-family: var(--nm-font-body);
    font-size: 13px;
    color: var(--nm-text-light);
    line-height: 1.65;
    margin-bottom: 14px;
}

.nm-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.nm-product-tags span {
    font-family: var(--nm-font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--nm-primary);
    background: rgba(47, 68, 49, 0.08);
    border: 1px solid rgba(47, 68, 49, 0.15);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* ===== PRODUCTS CTA ===== */
.products-cta-section {
    position: relative;
    background-image: url('assets/img/rev-slider/home-restaurant/home-restaurant-slide02-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    overflow: hidden;
}

.products-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47, 68, 49, 0.92) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}

.products-cta-section .container {
    position: relative;
    z-index: 2;
}

.products-cta-title {
    font-family: var(--nm-font-heading);
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.products-cta-text {
    font-family: var(--nm-font-body);
    font-size: 17px;
    color: rgba(255,255,255,0.80);
    margin-bottom: 40px;
    line-height: 1.7;
}

.products-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .products-cta-title { font-size: 28px; }
    .products-cta-section { padding: 70px 0; }
    .products-cta-btns { flex-direction: column; align-items: center; }
}

/* ============================================================
   PRODUCT DETAIL PAGE STYLES
   ============================================================ */

/* ===== BREADCRUMB ===== */
.product-breadcrumb {
    background: var(--nm-white);
    border-bottom: 1px solid rgba(47, 68, 49, 0.08);
    padding: 16px 0;
    margin-top: 70px;
}

.nm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nm-breadcrumb li {
    font-family: var(--nm-font-body);
    font-size: 13px;
    color: var(--nm-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nm-breadcrumb li::after {
    content: '/';
    color: rgba(47, 68, 49, 0.3);
}

.nm-breadcrumb li:last-child::after { display: none; }

.nm-breadcrumb li a {
    color: var(--nm-primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.nm-breadcrumb li a:hover { opacity: 0.75; }

.nm-breadcrumb li.active { color: var(--nm-text); font-weight: 600; }

/* ===== PRODUCT DETAIL SECTION ===== */
.product-detail-section {
    background: var(--nm-white);
    padding: 60px 0 80px;
}

.product-detail-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--nm-bg-1);
    aspect-ratio: 1/1;
    margin-bottom: 16px;
}

.product-detail-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.product-detail-img-wrap:hover .product-detail-main-img {
    transform: scale(1.04);
}

.product-detail-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--nm-primary);
    color: #ffffff;
    font-family: var(--nm-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    z-index: 2;
}

/* Thumbnail strip */
.product-detail-thumbs {
    display: flex;
    gap: 12px;
}

.product-thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(47, 68, 49, 0.12);
    cursor: pointer;
    transition: border-color 0.25s ease;
    flex-shrink: 0;
}

.product-thumb-item:hover,
.product-thumb-item.active {
    border-color: var(--nm-primary);
}

.product-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product info */
.product-detail-info {
    padding-left: 20px;
}

.product-detail-category {
    display: inline-block;
    font-family: var(--nm-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nm-primary);
    background: rgba(47, 68, 49, 0.08);
    border: 1px solid rgba(47, 68, 49, 0.15);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.product-detail-name {
    font-family: var(--nm-font-heading);
    font-size: 38px;
    color: var(--nm-text);
    line-height: 1.2;
    margin-bottom: 18px;
}

.product-detail-desc {
    font-family: var(--nm-font-body);
    font-size: 16px;
    color: var(--nm-text-light);
    line-height: 1.85;
    margin-bottom: 24px;
}

/* Feature tags */
.product-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.product-detail-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--nm-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--nm-primary);
    background: rgba(47, 68, 49, 0.07);
    border: 1px solid rgba(47, 68, 49, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
}

.product-detail-tag i { font-size: 14px; }

/* Specifications table */
.product-detail-specs {
    background: var(--nm-bg-1);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 32px;
}

.product-specs-title {
    font-family: var(--nm-font-heading);
    font-size: 18px;
    color: var(--nm-text);
    margin-bottom: 16px;
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs-table tr {
    border-bottom: 1px solid rgba(47, 68, 49, 0.1);
}

.product-specs-table tr:last-child { border-bottom: none; }

.spec-key {
    font-family: var(--nm-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--nm-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 16px 10px 0;
    width: 40%;
}

.spec-val {
    font-family: var(--nm-font-body);
    font-size: 14px;
    color: var(--nm-text);
    font-weight: 600;
    padding: 10px 0;
}

/* CTA buttons */
.product-detail-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.product-inquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
}

.product-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--nm-font-heading);
    font-size: 15px;
    background: transparent;
    color: var(--nm-primary) !important;
    border: 2px solid var(--nm-primary);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease !important;
}

.product-call-btn:hover {
    background: var(--nm-primary);
    color: #ffffff !important;
}

/* Eco badges */
.product-eco-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(47, 68, 49, 0.1);
}

.eco-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--nm-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--nm-primary);
}

.eco-badge i { font-size: 18px; }

@media (max-width: 991px) {
    .product-detail-info { padding-left: 0; margin-top: 36px; }
    .product-detail-name { font-size: 30px; }
}

@media (max-width: 767px) {
    .product-detail-section { padding: 40px 0 60px; }
    .product-detail-name { font-size: 26px; }
    .product-detail-cta { flex-direction: column; }
    .product-inquiry-btn, .product-call-btn { justify-content: center; }
}

/* ===== RELATED PRODUCTS ===== */
.related-products-section {
    background: var(--nm-bg-1);
    padding: 80px 0;
}

/* ============================================================
   BLOG PAGES — LISTING
   ============================================================ */
.blog-page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--nm-primary) 0%, #1a3d1e 100%);
    padding: 140px 0 90px;
    overflow: hidden;
}
.blog-hero-overlay {
    position: absolute; inset: 0;
     background-image: url('https://naturomate.com/public/assets/img/products/line-pattern.png');
    background-repeat: repeat; background-size: 300px auto;
    opacity: 0.06; pointer-events: none;
}
.blog-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    color: #fff; font-family: var(--nm-font-body); font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; padding: 7px 20px;
    border-radius: 20px; margin-bottom: 20px;
}
.blog-hero-title {
    font-family: var(--nm-font-heading); font-size: 52px; font-weight: 700;
    color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.blog-hero-desc {
    font-family: var(--nm-font-body); font-size: 17px; color: rgba(255,255,255,0.82);
    line-height: 1.8; max-width: 600px; margin: 0 auto;
}
.blog-featured-section { background: var(--nm-bg-1); padding: 60px 0 0; }
.blog-featured-card {
    display: grid; grid-template-columns: 1fr 1fr;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 8px 40px rgba(47,68,49,0.12);
    text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}
.blog-featured-card:hover { transform: translateY(-4px); box-shadow: 0 16px 60px rgba(47,68,49,0.18); text-decoration: none; }
.blog-featured-img { position: relative; overflow: hidden; min-height: 380px; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-featured-card:hover .blog-featured-img img { transform: scale(1.05); }
.blog-featured-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,40,20,0.5) 0%, transparent 60%); }
.blog-featured-label {
    position: absolute; top: 20px; right: 20px;
    background: var(--nm-accent); color: #fff;
    font-family: var(--nm-font-body); font-size: 12px; font-weight: 700;
    letter-spacing: 1px; padding: 6px 14px; border-radius: 20px;
    display: flex; align-items: center; gap: 6px;
}
.blog-featured-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-title {
    font-family: var(--nm-font-heading); font-size: 28px; font-weight: 700;
    color: var(--nm-dark); line-height: 1.3; margin: 14px 0 16px;
    transition: color 0.25s ease;
}
.blog-featured-card:hover .blog-featured-title { color: var(--nm-primary); }
.blog-featured-excerpt {
    font-family: var(--nm-font-body); font-size: 15px; color: var(--nm-text-light);
    line-height: 1.8; margin-bottom: 24px;
}
.blog-cat-badge {
    display: inline-block; background: var(--nm-primary); color: #fff;
    font-family: var(--nm-font-body); font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
}
.blog-cat-badge-lg { font-size: 13px; padding: 7px 20px; margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.blog-meta span { font-family: var(--nm-font-body); font-size: 13px; color: var(--nm-text-light); display: flex; align-items: center; gap: 5px; }
.blog-meta i { font-size: 13px; color: var(--nm-primary); }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; font-family: var(--nm-font-body); font-size: 14px; font-weight: 700; color: var(--nm-primary); transition: gap 0.25s ease; }
.blog-read-more i { transition: transform 0.25s ease; }
.blog-card-link:hover .blog-read-more i, .blog-featured-card:hover .blog-read-more i { transform: translateX(4px); }
.blog-grid-section { background: var(--nm-bg-1); padding: 50px 0 80px; }
.blog-filter-bar { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.blog-filter-btn {
    background: #fff; border: 2px solid rgba(47,68,49,0.15); color: var(--nm-text-light);
    font-family: var(--nm-font-body); font-size: 13px; font-weight: 600;
    padding: 9px 22px; border-radius: 25px; cursor: pointer; transition: all 0.25s ease;
}
.blog-filter-btn:hover, .blog-filter-btn.active { background: var(--nm-primary); border-color: var(--nm-primary); color: #fff; }
.blog-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-post-card {
    background: #fff; border-radius: 14px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(47,68,49,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-post-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(47,68,49,0.14); }
.blog-card-link { display: block; text-decoration: none; color: inherit; height: 100%; }
.blog-card-link:hover { text-decoration: none; color: inherit; }
.blog-card-img { position: relative; overflow: hidden; height: 210px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-post-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,40,20,0.4) 0%, transparent 60%); }
.blog-card-img .blog-cat-badge { position: absolute; bottom: 14px; left: 14px; }
.blog-card-body { padding: 24px 24px 28px; }
.blog-card-title { font-family: var(--nm-font-heading); font-size: 18px; font-weight: 700; color: var(--nm-dark); line-height: 1.4; margin-bottom: 10px; transition: color 0.25s ease; }
.blog-post-card:hover .blog-card-title { color: var(--nm-primary); }
.blog-card-excerpt { font-family: var(--nm-font-body); font-size: 14px; color: var(--nm-text-light); line-height: 1.7; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-no-results { flex-direction: column; align-items: center; justify-content: center; padding: 80px 0; color: var(--nm-text-light); gap: 16px; }
.blog-no-results i { font-size: 48px; opacity: 0.4; }
.blog-newsletter-section { position: relative; background: linear-gradient(135deg, var(--nm-primary) 0%, #1a3d1e 100%); padding: 90px 0; overflow: hidden; }
.blog-newsletter-overlay { position: absolute; inset: 0;  background-image: url('https://naturomate.com/public/assets/img/products/line-pattern.png'); background-repeat: repeat; background-size: 300px auto; opacity: 0.05; pointer-events: none; }
.blog-newsletter-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-family: var(--nm-font-body); font-size: 13px; font-weight: 600; padding: 7px 18px; border-radius: 20px; margin-bottom: 20px; }
.blog-newsletter-title { font-family: var(--nm-font-heading); font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.blog-newsletter-text { font-family: var(--nm-font-body); font-size: 16px; color: rgba(255,255,255,0.80); line-height: 1.8; margin-bottom: 32px; }
.blog-newsletter-form { display: flex; max-width: 520px; margin: 0 auto 16px; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.blog-newsletter-input { flex: 1; border: none; outline: none; padding: 16px 22px; font-family: var(--nm-font-body); font-size: 14px; color: var(--nm-dark); background: #fff; }
.blog-newsletter-btn { background: var(--nm-accent); border: none; color: #fff; font-family: var(--nm-font-heading); font-size: 14px; font-weight: 700; padding: 16px 28px; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: background 0.25s ease; white-space: nowrap; }
.blog-newsletter-btn:hover { background: #b8520a; }
.blog-newsletter-note { font-family: var(--nm-font-body); font-size: 13px; color: rgba(255,255,255,0.55); margin: 0; }

/* ============================================================
   BLOG DETAIL PAGE
   ============================================================ */
.blog-detail-hero { position: relative; background-size: cover; background-position: center; padding: 160px 0 100px; overflow: hidden; }
.blog-detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,25,12,0.65) 0%, rgba(10,25,12,0.80) 100%); }
.blog-detail-hero .container { position: relative; z-index: 2; }
.blog-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.blog-breadcrumb a { font-family: var(--nm-font-body); font-size: 13px; color: rgba(255,255,255,0.70); text-decoration: none; transition: color 0.2s ease; }
.blog-breadcrumb a:hover { color: #fff; }
.blog-breadcrumb i { font-size: 11px; color: rgba(255,255,255,0.45); }
.blog-breadcrumb span { font-family: var(--nm-font-body); font-size: 13px; color: rgba(255,255,255,0.55); }
.blog-detail-title { font-family: var(--nm-font-heading); font-size: 44px; font-weight: 700; color: #fff; line-height: 1.2; margin: 16px 0 24px; }
.blog-detail-meta { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.blog-detail-meta span { font-family: var(--nm-font-body); font-size: 14px; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 6px; }
.blog-detail-meta i { color: rgba(255,255,255,0.55); }
.meta-divider { color: rgba(255,255,255,0.35) !important; font-size: 18px !important; }
.blog-detail-section { background: var(--nm-bg-1); padding: 70px 0 80px; }
.blog-article { background: #fff; border-radius: 16px; padding: 48px 52px; box-shadow: 0 4px 30px rgba(47,68,49,0.08); }
.blog-article-lead { font-family: var(--nm-font-body); font-size: 18px; line-height: 1.85; font-style: italic; border-left: 4px solid var(--nm-primary); padding-left: 24px; margin-bottom: 36px; color: var(--nm-primary); }
.blog-article h2 { font-family: var(--nm-font-heading); font-size: 24px; font-weight: 700; color: var(--nm-dark); margin: 36px 0 16px; padding-bottom: 10px; border-bottom: 2px solid rgba(47,68,49,0.10); }
.blog-article p { font-family: var(--nm-font-body); font-size: 16px; color: var(--nm-text); line-height: 1.85; margin-bottom: 20px; }
.blog-article ul { padding-left: 24px; margin-bottom: 24px; }
.blog-article ul li { font-family: var(--nm-font-body); font-size: 16px; color: var(--nm-text); line-height: 1.8; margin-bottom: 10px; }
.blog-article ul li::marker { color: var(--nm-primary); }
.blog-blockquote { background: rgba(47,68,49,0.05); border-left: 5px solid var(--nm-primary); border-radius: 0 12px 12px 0; padding: 28px 32px; margin: 32px 0; }
.blog-blockquote p { font-family: var(--nm-font-heading); font-size: 18px; font-style: italic; color: var(--nm-primary); margin-bottom: 12px; line-height: 1.6; }
.blog-blockquote cite { font-family: var(--nm-font-body); font-size: 13px; font-weight: 700; color: var(--nm-primary); letter-spacing: 0.5px; font-style: normal; }
.blog-article-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 32px; margin-top: 36px; border-top: 1px solid rgba(47,68,49,0.10); }
.blog-tags-label { font-family: var(--nm-font-body); font-size: 13px; font-weight: 700; color: var(--nm-text-light); display: flex; align-items: center; gap: 6px; }
.blog-tag { background: rgba(47,68,49,0.08); border: 1px solid rgba(47,68,49,0.15); color: var(--nm-primary); font-family: var(--nm-font-body); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 20px; transition: all 0.2s ease; }
.blog-tag:hover { background: var(--nm-primary); color: #fff; }
.blog-article-share { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 24px; margin-top: 20px; border-top: 1px solid rgba(47,68,49,0.10); }
.blog-share-label { font-family: var(--nm-font-body); font-size: 13px; font-weight: 700; color: var(--nm-text-light); }
.blog-share-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.blog-share-btn { display: inline-flex; align-items: center; gap: 7px; font-family: var(--nm-font-body); font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 6px; text-decoration: none; transition: opacity 0.2s ease; }
.blog-share-btn:hover { opacity: 0.85; text-decoration: none; }
.blog-share-twitter { background: #000; color: #fff; }
.blog-share-linkedin { background: #0a66c2; color: #fff; }
.blog-share-whatsapp { background: #25d366; color: #fff; }
.blog-sidebar { padding-left: 12px; display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget { background: #fff; border-radius: 14px; padding: 28px; box-shadow: 0 4px 20px rgba(47,68,49,0.07); }
.sidebar-widget-title { font-family: var(--nm-font-heading); font-size: 17px; font-weight: 700; color: var(--nm-dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid rgba(47,68,49,0.10); }
.sidebar-about { text-align: center; }
.sidebar-logo { max-width: 140px; margin-bottom: 14px; }
.sidebar-about p { font-family: var(--nm-font-body); font-size: 14px; color: var(--nm-text-light); line-height: 1.7; margin-bottom: 16px; }
.sidebar-about-link { font-family: var(--nm-font-body); font-size: 14px; font-weight: 700; color: var(--nm-primary); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s ease; }
.sidebar-about-link:hover { gap: 10px; text-decoration: none; color: var(--nm-primary); }
.sidebar-posts { display: flex; flex-direction: column; gap: 18px; }
.sidebar-post-item { display: flex; gap: 14px; text-decoration: none; color: inherit; transition: opacity 0.2s ease; }
.sidebar-post-item:hover { opacity: 0.80; text-decoration: none; color: inherit; }
.sidebar-post-img { width: 72px; height: 72px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-cat { font-family: var(--nm-font-body); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--nm-primary); display: block; margin-bottom: 4px; }
.sidebar-post-title { font-family: var(--nm-font-heading); font-size: 14px; font-weight: 700; color: var(--nm-dark); line-height: 1.4; margin-bottom: 6px; }
.sidebar-post-date { font-family: var(--nm-font-body); font-size: 12px; color: var(--nm-text-light); display: flex; align-items: center; gap: 5px; }
.sidebar-categories { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.sidebar-categories li a { display: flex; align-items: center; justify-content: space-between; font-family: var(--nm-font-body); font-size: 14px; color: var(--nm-text); text-decoration: none; padding: 9px 12px; border-radius: 8px; transition: all 0.2s ease; }
.sidebar-categories li a:hover { background: rgba(47,68,49,0.07); color: var(--nm-primary); text-decoration: none; }
.sidebar-categories li a span { background: rgba(47,68,49,0.10); color: var(--nm-primary); font-size: 12px; font-weight: 700; padding: 2px 10px; border-radius: 12px; }
.sidebar-cta { background: linear-gradient(135deg, var(--nm-primary) 0%, #1a3d1e 100%) !important; text-align: center; }
.sidebar-cta-icon { width: 56px; height: 56px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.sidebar-cta-icon i { font-size: 24px; color: #fff; }
.sidebar-cta h4 { font-family: var(--nm-font-heading); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.sidebar-cta p { font-family: var(--nm-font-body); font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 20px; }
.btn-brand-sm { display: inline-block; background: #fff; color: var(--nm-primary) !important; font-family: var(--nm-font-heading); font-size: 14px; font-weight: 700; padding: 11px 28px; border-radius: 8px; text-decoration: none; transition: all 0.25s ease; }
.btn-brand-sm:hover { background: var(--nm-accent); color: #fff !important; text-decoration: none; }
.blog-more-section { background: var(--nm-bg-2); padding: 70px 0 80px; }
.blog-more-title { font-family: var(--nm-font-heading); font-size: 32px; font-weight: 700; color: var(--nm-dark); margin-bottom: 40px; }

/* Blog responsive */
@media (max-width: 991px) {
    .blog-featured-card { grid-template-columns: 1fr; }
    .blog-featured-img { min-height: 260px; }
    .blog-featured-body { padding: 32px 28px; }
    .blog-featured-title { font-size: 22px; }
    .blog-posts-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-detail-title { font-size: 32px; }
    .blog-sidebar { padding-left: 0; margin-top: 40px; }
    .blog-article { padding: 32px 28px; }
}
@media (max-width: 767px) {
    .blog-page-hero { padding: 110px 0 70px; }
    .blog-hero-title { font-size: 32px; }
    .blog-detail-hero { padding: 120px 0 70px; }
    .blog-detail-title { font-size: 26px; }
    .blog-article { padding: 24px 18px; }
    .blog-article h2 { font-size: 20px; }
    .blog-newsletter-title { font-size: 26px; }
    .blog-newsletter-form { flex-direction: column; }
}
@media (max-width: 575px) {
    .blog-posts-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   EXPORT PAGE
   ============================================================ */

/* ===== EXPORT HERO — mirrors about-page-hero ===== */
.export-page-hero {
    position: relative;
    min-height: 460px;
    background-image: url('https://naturomate.com/public/assets/img/home-blog/export-2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}
.export-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47,68,49,0.88) 0%, rgba(30,52,32,0.82) 100%);
    z-index: 1;
}
.export-page-hero .container {
    position: relative;
    z-index: 2;
}
@media (max-width: 767px) {
    .export-page-hero { min-height: 360px; padding: 100px 0 60px; }
}

/* ===== WORLD MAP SECTION ===== */
.export-map-section {
    background: var(--nm-bg-1, #ece9e0);
    padding: 80px 0 90px;
}
.export-map-wrap {
    background: var(--nm-white, #fff);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(47,68,49,0.10);
    padding: 40px 30px;
    overflow: hidden;
}
.export-map-inner {
    position: relative;
    width: 100%;
    min-height: 420px;
    background: linear-gradient(160deg, #e8f0e9 0%, #f4f8f4 100%);
    border-radius: 12px;
    overflow: hidden;
}
.export-map-bg {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.5;
    position: absolute;
    top: -100px;
    object-fit: cover;
}

/* Markers */
.map-marker {
    position: absolute;
    transform: translate(-50%, -100%);
    z-index: 10;
    cursor: pointer;
}
.map-pin {
    width: 32px;
    height: 32px;
    background: var(--nm-primary, #2f4431);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(47,68,49,0.35);
    transition: transform 0.25s ease, background 0.25s ease;
    animation: markerPop 0.5s ease both;
}
.map-pin i {
    transform: rotate(45deg);
    color: #fff;
    font-size: 14px;
}
.map-marker:hover .map-pin {
    background: var(--nm-accent, #c4a35a);
    transform: rotate(-45deg) scale(1.2);
}

/* Pulsing ring under each pin */
.map-marker::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 6px;
    background: rgba(47,68,49,0.25);
    border-radius: 50%;
}

/* Tooltip */
.map-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--nm-primary, #2f4431);
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 20;
}
.map-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--nm-primary, #2f4431);
}
.map-marker:hover .map-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes markerPop {
    0%   { transform: rotate(-45deg) scale(0); opacity: 0; }
    80%  { transform: rotate(-45deg) scale(1.15); }
    100% { transform: rotate(-45deg) scale(1); opacity: 1; }
}

@media (max-width: 767px) {
    .export-map-inner { min-height: 280px; }
    .map-pin { width: 24px; height: 24px; }
    .map-pin i { font-size: 11px; }
    .map-tooltip { display: none; }
}

/* ===== EXPORT GALLERY CARDS ===== */
.export-gallery-card {
    background: var(--nm-white, #fff);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(47,68,49,0.08);
    border: 1.5px solid rgba(47,68,49,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}
.export-gallery-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 36px rgba(47,68,49,0.14);
    border-color: var(--nm-primary, #2f4431);
}
.export-gallery-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--nm-bg-1, #ece9e0);
}
.export-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.export-gallery-card:hover .export-gallery-img img {
    transform: scale(1.07);
}
.export-gallery-body {
    padding: 20px 22px 24px;
}
.export-gallery-body h5 {
    font-family: var(--nm-font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--nm-primary, #2f4431);
    margin-bottom: 6px;
}
.export-gallery-body p {
    font-size: 14px;
    color: var(--nm-text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===== EXPORT GALLERY SECTION wrapper ===== */
.export-gallery-section {
    background: var(--nm-bg-1, #ece9e0);
    padding: 80px 0 90px;
}

/* ===== WHY EXPORT WITH US — feature rows ===== */
.export-why-section {
    background: #fff;
    padding: 80px 0 90px;
}
.export-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--nm-bg-1, #ece9e0);
    border-radius: 14px;
    padding: 28px 24px;
    margin-bottom: 24px;
    border-left: 4px solid var(--nm-primary, #2f4431);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.export-feature-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(47,68,49,0.12);
}
.export-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--nm-primary, #2f4431);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.export-feature-icon i {
    font-size: 22px;
    color: #fff;
}
.export-feature-body h5 {
    font-family: var(--nm-font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--nm-primary, #2f4431);
    margin-bottom: 6px;
}
.export-feature-body p {
    font-size: 14px;
    color: var(--nm-text-light);
    margin: 0;
    line-height: 1.65;
}

/* ===== SHIPPING OPTIONS ===== */
.export-shipping-section {
    background: var(--nm-bg-2, #fef0eb);
    padding: 80px 0 90px;
}
.export-ship-card {
    background: #fff;
    border-radius: 18px;
    padding: 34px 28px 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(47,68,49,0.07);
    border: 1.5px solid rgba(47,68,49,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.export-ship-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(47,68,49,0.13);
}
.export-ship-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.export-ship-top i {
    font-size: 36px;
    color: var(--nm-primary, #2f4431);
}
.export-ship-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(47,68,49,0.1);
    color: var(--nm-primary, #2f4431);
}
.export-ship-tag--green {
    background: rgba(34,197,94,0.12);
    color: #166534;
}
.export-ship-tag--gold {
    background: rgba(196,163,90,0.15);
    color: #92640a;
}
.export-ship-card h4 {
    font-family: var(--nm-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--nm-primary, #2f4431);
    margin-bottom: 12px;
}
.export-ship-card > p {
    font-size: 14px;
    color: var(--nm-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}
.export-ship-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.export-ship-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--nm-text, #3c4142);
}
.export-ship-list li i {
    color: var(--nm-primary, #2f4431);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== EXPORT TIMELINE STEPPER ===== */
.export-timeline-section {
    background: #fff;
    padding: 80px 0 90px;
}
.export-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    justify-content: space-between;
}
.export-timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
/* Connecting line between steps */
.export-timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 38px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--nm-primary, #2f4431), rgba(47,68,49,0.15));
    z-index: 0;
}
.etl-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.etl-number {
    font-family: var(--nm-font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--nm-primary, #2f4431);
    margin-bottom: 6px;
}
.etl-dot {
    width: 18px;
    height: 18px;
    background: var(--nm-primary, #2f4431);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--nm-primary, #2f4431);
}
.export-timeline-item:hover .etl-dot {
    background: var(--nm-accent, #c4a35a);
    box-shadow: 0 0 0 3px var(--nm-accent, #c4a35a);
}
.etl-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}
.etl-icon {
    width: 56px;
    height: 56px;
    background: var(--nm-bg-1, #ece9e0);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: background 0.25s ease;
}
.export-timeline-item:hover .etl-icon {
    background: var(--nm-primary, #2f4431);
}
.etl-icon i {
    font-size: 22px;
    color: var(--nm-primary, #2f4431);
    transition: color 0.25s ease;
}
.export-timeline-item:hover .etl-icon i {
    color: #fff;
}
.etl-content h5 {
    font-family: var(--nm-font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--nm-primary, #2f4431);
    margin-bottom: 8px;
}
.etl-content p {
    font-size: 13px;
    color: var(--nm-text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .export-timeline {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    .export-timeline-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        padding: 0 0 30px 0;
    }
    .export-timeline-item:not(:last-child)::after {
        top: 50px;
        left: 9px;
        width: 2px;
        height: calc(100% - 20px);
        background: linear-gradient(180deg, var(--nm-primary, #2f4431), rgba(47,68,49,0.15));
    }
    .etl-node {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
        margin-right: 20px;
        min-width: 40px;
    }
    .etl-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }
    .etl-icon {
        margin-bottom: 10px;
    }
}

