:root {
    --primary: #2e7d32;
    --primary-gradient: linear-gradient(to right, #2e7d32, #43a047);
    --btn-gradient: linear-gradient(to bottom, #43a047, #2e7d32);
    --secondary-green: #2e7d32;
    --light-green: #8bc34a;
    --bg-premium: #f4f7f4;
    --white: #ffffff;
    --text-dark: #333333;
    --text-muted: #777777;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --font-main: 'Poppins', sans-serif;
    --font-elegant: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Adjust this to match navbar height + some buffer */
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    background: var(--bg-premium);
    background-image: 
        radial-gradient(rgba(46, 125, 50, 0.05) 1.5px, transparent 0),
        radial-gradient(rgba(46, 125, 50, 0.05) 1.5px, transparent 0);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0; /* Slightly reduced padding to offset large logo height */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(46, 125, 50, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between logo and text */
    text-decoration: none;
}

.logo img {
    height: 75px; 
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-text {
    font-family: var(--font-elegant);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap; /* Prevent wrapping */
}

.logo-text span {
    color: var(--secondary-green);
    font-size: 22px;
    font-weight: 700;
    margin-left: 5px;
}

.logo:hover img {
    transform: scale(1.05);
}

.menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    font-size: 24px;
    color: var(--secondary-green);
    cursor: pointer;
    z-index: 1001;
}

.menu a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 13px;
    transition: var(--transition);
    display: inline-block; /* Required for transform */
    padding: 5px 10px;
}

.menu a:hover, .menu a:active {
    color: var(--secondary-green);
    transform: translateY(-3px) scale(1.1); /* Floating pop-out effect */
    text-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

.menu a.active {
    color: var(--secondary-green);
    font-weight: 700;
}

.btn-nav {
    background: var(--btn-gradient);
    color: white !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600 !important;
}

/* HERO */
.hero {
    position: relative;
    min-height: 600px;
    height: 85vh;
    display: flex;
    align-items: center;
    /* Stronger white gradient for better text legibility on the left */
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.92) 25%, 
        rgba(255, 255, 255, 0.6) 50%, 
        transparent 80%), 
        url('../assets/hero/hero.jpeg') center/cover no-repeat;
    overflow: hidden;
    padding: 220px 0 120px; /* Increased top padding to clear fixed navbar */
}

.hero-content {
    max-width: 580px;
    position: relative;
    z-index: 10; /* Higher than wave */
    animation: slideUp 1s ease-out forwards;
}

.hero-badge {
    font-family: var(--font-elegant);
    background: rgba(46, 125, 50, 0.1);
    color: #1b5e20;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    text-shadow: 1px 1px 0px #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(46, 125, 50, 0.2);
    animation: floating 3s ease-in-out infinite;
}

.hero-content h1 {
    font-family: var(--font-elegant);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #0d2e0f; /* Darker green-black for better contrast */
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
}

.hero-content p {
    font-family: var(--font-elegant);
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    opacity: 1;
    text-shadow: 1px 1px 0px #fff;
}

.hero-content p strong {
    color: #2e7d32;
}

.hero-list {
    list-style: none;
    margin-bottom: 30px;
}

.hero-list li {
    font-family: var(--font-elegant);
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    text-shadow: 1px 1px 0px #fff;
}

.hero-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #2e7d32;
    font-size: 14px;
    width: 24px;
    height: 24px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-hero {
    background: var(--btn-gradient);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
    transition: var(--transition);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.4);
}

.btn-hero-outline {
    background: white;
    color: #2e7d32;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    border: 2px solid #2e7d32;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: #2e7d32;
    color: white;
    transform: translateY(-3px);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5; /* Lower than content */
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
    filter: drop-shadow(0 -10px 15px rgba(0, 0, 0, 0.15));
}

.hero-wave .shape-fill {
    fill: var(--bg-premium);
}

/* SECTION TITLES */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-family: var(--font-elegant);
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    display: inline-block;
    position: relative;
    animation: slideUp 1s ease-out both;
}

.section-title.decorated h2::before,
.section-title.decorated h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #ddd;
}

.section-title.decorated h2::before {
    left: -60px;
}

.section-title.decorated h2::after {
    right: -60px;
}

.section-title p {
    font-size: 14px;
    color: #888;
}

/* CATALOG CARDS */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(46, 125, 50, 0.05);
    animation: scaleIn 0.8s ease-out both;
}

.catalog-grid .card:nth-child(1) { animation-delay: 0.1s; }
.catalog-grid .card:nth-child(2) { animation-delay: 0.2s; }
.catalog-grid .card:nth-child(3) { animation-delay: 0.3s; }
.catalog-grid .card:nth-child(4) { animation-delay: 0.4s; }

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.1);
}

.card-img {
    height: 250px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fills the entire specified area */
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.card-info p {
    font-size: 12px;
    color: #777;
    margin-bottom: 15px;
}

.card-info p span {
    font-weight: 700;
    color: #333;
}

.btn-card {
    display: block;
    width: 100%;
    background: var(--btn-gradient);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
}

.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
    filter: brightness(1.1);
}

/* DESKRIPSI & TESTIMONI */
.desc-testi-section {
    padding: 80px 0;
    background: #fff;
}

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

.section-title.text-left {
    text-align: left;
    margin-bottom: 30px;
}

.section-title.text-left h2::before,
.section-title.text-left h2::after {
    display: none;
}

.desc-text p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 15px 20px;
    background: #fdfdfd;
    border: 1px solid rgba(46, 125, 50, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    width: fit-content;
}

.rating-score {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-info {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.testi-content {
    position: relative;
    height: 400px; /* Fixed height for the scrolling area */
    overflow: hidden;
    /* Soft fade at top and bottom */
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.testi-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scrollVertical 35s linear infinite;
}

.testi-track:hover {
    animation-play-state: paused;
}

@keyframes scrollVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* Scrolls exactly half the track to loop seamlessly */
}

.testi-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    z-index: 2;
    margin: 0;
    flex-shrink: 0;
}

.quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 40px;
    color: rgba(46, 125, 50, 0.08);
}

.testi-text {
    font-size: 15px;
    font-style: italic;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testi-author-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.testi-author-info span {
    font-size: 12px;
    color: #888;
}

@media (max-width: 992px) {
    .desc-testi-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .testi-content {
        height: 380px; /* Adjust height for mobile */
    }
}

/* FEATURES */
.features-section {
    padding: 60px 0 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-item {
    position: relative;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #f0f0f0;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--btn-gradient);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* FAQ SECTION */
.faq-section {
    padding: 80px 0;
    background: var(--bg-premium);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(46, 125, 50, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-color: rgba(46, 125, 50, 0.2);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: var(--transition);
}

.faq-question i {
    color: var(--secondary-green);
    transition: var(--transition);
}

.faq-item.active .faq-question h3 {
    color: var(--secondary-green);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fdfdfd;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* CTA MODERN */
.cta-section {
    padding: 0 0 80px;
    background: transparent;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary), #1b5e20);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    padding: 60px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.2);
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.circle-prop {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -50px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
    background: rgba(0, 0, 0, 0.05);
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.btn-cta-modern {
    background: #fff;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    background: #f8fcf8;
}

.btn-cta-modern i {
    font-size: 20px;
    color: #25D366; /* WhatsApp color */
}

.cta-contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
}

.cta-contact-text {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 26px;
    font-weight: 700;
    font-family: var(--font-elegant);
    color: #fff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cta-contact-text a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-contact-text a i {
    font-size: 24px;
    color: var(--light-green);
}

.cta-contact-text a:hover {
    color: var(--light-green);
    transform: translateY(-2px);
}

.cta-contact-text .divider {
    opacity: 0.4;
}

/* FOOTER */
.footer {
    background: #0a1f10; /* Dark premium green */
    color: #cbd5e1;
    padding: 80px 0 20px;
    position: relative;
    border-top: 5px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Makes the logo white for dark bg */
    opacity: 0.9;
}

.footer-about p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.4);
}

.footer-links h3, .footer-contact h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
    font-family: var(--font-elegant);
    font-weight: 700;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 12px;
    color: var(--primary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

.footer-contact li {
    color: #94a3b8;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* FLOATING WA BUTTON MODERN */
.float-wa-modern {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 6px;
    padding-right: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.float-wa-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
    border-color: #25d366;
}

.wa-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 26px;
    position: relative;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.online-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #4CAF50;
    border: 2px solid #fff;
    border-radius: 50%;
    bottom: 0;
    right: 0;
    animation: pulse-dot 2s infinite;
}

.wa-text {
    color: #444;
    font-weight: 700;
    font-family: var(--font-elegant);
    font-size: 15px;
    margin-left: 12px;
    white-space: nowrap;
}

/* LIGHTBOX STYLES */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
    animation: scaleIn 0.3s ease-out forwards;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

#lightbox-caption {
    margin-top: 15px;
    color: #fff;
    font-size: 18px;
    font-family: var(--font-elegant);
    text-align: center;
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .feature-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 40px 25px;
    }

    .cta-content h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-contact-text {
        flex-direction: column;
        gap: 15px;
        font-size: 18px;
    }

    .cta-contact-text .divider {
        display: none;
    }

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

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 160px 15px 60px; /* Increased top padding to clear fixed navbar on mobile */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Stronger overall overlay for mobile */
        background: linear-gradient(
            rgba(255, 255, 255, 0.94), 
            rgba(255, 255, 255, 0.82)), 
            url('../assets/hero/hero.jpeg') center/cover no-repeat;
        background-position: 25% center;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        padding: 0 5px;
    }

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

    .hero-list {
        display: inline-block;
        text-align: left;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero, .btn-hero-outline {
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: block; /* Show toggle on mobile */
    }

    .menu {
        display: none; /* Initially hidden on mobile */
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: var(--transition);
        padding: 40px;
    }

    .menu.active {
        display: flex;
        right: 0;
    }

    .menu a {
        font-size: 20px;
        width: 100%;
        text-align: center;
        padding: 15px;
        border-radius: 10px;
        transition: var(--transition);
    }

    .menu a:active {
        background: rgba(46, 125, 50, 0.05);
        transform: scale(1.05); /* Pop out on touch for mobile */
        color: var(--secondary-green);
    }

    .btn-nav {
        width: 100%;
        text-align: center;
    }

    .logo img {
        height: 45px; /* Slightly smaller to fit text beside it */
    }

    .logo-text {
        font-size: 14px;
    }

    .logo-text span {
        font-size: 14px;
        margin-left: 3px;
    }

    .logo {
        gap: 8px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 20px;
    }

    .float-wa-modern {
        bottom: 25px;
        right: 20px;
        padding-right: 15px;
    }
    .wa-icon-wrapper {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
    .wa-text {
        font-size: 13px;
        margin-left: 8px;
    }
}