/* ============================================
   SABZIFY - IT STANDARD PROFESSIONAL CSS
   ============================================ */

:root {
    --primary: #2d5016;
    --primary-dark: #1a3009;
    --primary-light: #4a7c2a;
    --secondary: #ff6b35;
    --secondary-light: #ff8c5a;
    --accent: #25d366;
    --accent-dark: #128c7e;
    --bg-light: #f8faf6;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #555;
    --text-light: #888;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   NAVBAR - LOGO ON RIGHT SIDE
   ============================================ */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(45, 80, 22, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 20px;
}

/* LEFT: WhatsApp CTA */
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 8px 18px rgba(255, 124, 48, 0.35);
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.35);
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 124, 48, 0.45);
}

/* CENTER: Nav Links */
.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links li {
    display: inline-flex;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition);
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

/* RIGHT: Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    order: 3; /* Ensures logo stays on the right */
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
    overflow: hidden;
    position: relative;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.logo-fallback {
    position: absolute;
    display: none;
}

.logo-icon:has(.logo-image[style*="display: none"]) .logo-fallback,
.logo-icon .logo-fallback:only-child {
    display: block;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

/* ============================================
   TOP BANNER
   ============================================ */
.top-banner {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.offer-label {
    background: var(--secondary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.banner-content strong { font-weight: 700; }
.whatsapp-order { opacity: 0.9; }

/* ============================================
   HERO SECTION - WITH TEXT CARD OVERLAY
   ============================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #f0f7eb 0%, #e8f5e0 100%);
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 600px;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.floating-elem {
    position: absolute;
    font-size: 32px;
    opacity: 0.75;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.12));
    animation: float 6s ease-in-out infinite;
    transform-origin: center;
    z-index: 3;
}

.elem-1 { top: 10%; left: 4%; animation-delay: 0s; }
.elem-2 { top: 8%; right: 6%; animation-delay: 0.8s; }
.elem-3 { top: 35%; left: 5%; animation-delay: 1.4s; }
.elem-4 { top: 40%; right: 8%; animation-delay: 0.6s; }
.elem-5 { bottom: 16%; left: 6%; animation-delay: 2.2s; }
.elem-6 { bottom: 14%; right: 6%; animation-delay: 2.8s; }
.elem-7 { top: 22%; left: 13%; animation-delay: 3s; }
.elem-8 { bottom: 28%; right: 14%; animation-delay: 1.8s; }
.elem-9 { top: 54%; left: 12%; animation-delay: 0.7s; }
.elem-10 { top: 54%; right: 12%; animation-delay: 1.4s; }
.elem-11 { bottom: 8%; left: 18%; animation-delay: 2.1s; }
.elem-12 { bottom: 12%; right: 18%; animation-delay: 2.9s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(8deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ⭐ TEXT CARD OVERLAY FOR READABILITY ⭐ */
.hero-text-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 50px 60px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.5);
}


.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.25);
}

.hero-quick-text {
    background: #fff3cd;
    color: #856404;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid #ffeaa7;
}

.hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary);
    position: relative;
    background: linear-gradient(120deg, rgba(45, 80, 22, 0.1) 0%, rgba(45, 80, 22, 0.1) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 80%;
    padding: 0 6px;
}

.highlight-orange {
    color: var(--secondary);
    position: relative;
    background: linear-gradient(120deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 80%;
    padding: 0 6px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 14px;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto 32px;
}

/* ============================================
   BUTTONS
   ============================================ */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 6px 18px rgba(255, 124, 48, 0.35);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 124, 48, 0.45);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* HERO STATS */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.stat span {
    font-size: 13px;
    color: var(--text-gray);
}

.divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.1);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.text-green { color: var(--primary); }

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 90px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: white;
    padding: 36px 28px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid #eef2eb;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    font-size: 48px;
    margin-bottom: 18px;
    display: inline-block;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 90px 0;
    background: var(--bg-light);
}

.steps {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 36px 24px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.step-icon {
    font-size: 38px;
    color: var(--primary);
    margin: 18px 0;
}

.step h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step p {
    font-size: 13.5px;
    color: var(--text-gray);
}

.step-line {
    flex: 0 0 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    align-self: center;
    margin-top: 30px;
}

/* ============================================
   OFFER BANNER
   ============================================ */
.offer-banner {
    padding: 60px 0;
    background: white;
}

.offer-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 50px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: 0 20px 50px rgba(45, 80, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.offer-tag {
    background: rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
}

.offer-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.strike {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 0.7em;
    margin-right: 8px;
}

.big-price {
    color: var(--secondary-light);
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
}

.offer-content p {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.offer-visual {
    font-size: 100px;
    z-index: 1;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.trust-card {
    background: white;
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid #eef2eb;
}

.trust-icon-large {
    font-size: 64px;
    margin-bottom: 16px;
}

.trust-card h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: 14px;
}

.trust-desc {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 16px;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
}

.trust-point i {
    color: var(--accent);
    font-size: 18px;
}

/* ============================================
   JOIN SECTION
   ============================================ */
.join-section {
    padding: 90px 0;
    background: white;
}

.join-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #f0f7eb 0%, #e8f5e0 100%);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.join-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.join-content h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.join-content > p {
    color: var(--text-gray);
    margin-bottom: 24px;
    font-size: 16px;
}

.join-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.join-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: white;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.join-benefit i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 14px;
    width: 20px;
    height: 20px;
    line-height: 1;
}

.qr-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.qr-header {
    margin-bottom: 20px;
}

.qr-avatar {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.qr-header h3 { font-size: 20px; font-weight: 700; }
.qr-header p { font-size: 13px; color: var(--text-gray); }

.qr-image img {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: 12px;
}

.qr-text {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ============================================
   DELIVERY MAP
   ============================================ */
.map-section {
    padding: 80px 0;
    background: #f7fcf6;
}

.map-card {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(34, 97, 55, 0.12);
}

.map-card iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-text { color: white; }
.footer-logo .logo-icon {
    background: white;
    color: var(--primary);
}

.footer-tagline {
    color: var(--secondary-light);
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a,
.contact-list li {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover { color: white; padding-left: 4px; }

.contact-list i { color: var(--accent); width: 18px; }

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 13.5px;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    background: var(--accent-dark);
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
        padding: 12px 0;
        height: auto;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .nav-links li {
        display: inline-flex;
    }

    .nav-links a {
        white-space: nowrap;
    }

    .logo {
        order: 3;
    }

    .nav-cta {
        order: 2;
        width: auto;
    }

    .join-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-cta span { display: none; }
    .nav-cta { padding: 11px 14px; }
    .logo-text { font-size: 18px; }
    .hero-text-card { padding: 32px 24px; }
    .offer-card { padding: 32px 24px; text-align: center; }
    .offer-visual { font-size: 60px; }
    .steps { flex-direction: column; }
    .step-line { width: 2px; height: 30px; background: linear-gradient(180deg, var(--primary), transparent); }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo, .social-links { justify-content: center; }
    .contact-list li { justify-content: center; }
}

@media (max-width: 480px) {
    .join-benefits { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
}
