/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Color Palette - Eco/Village Theme */
    --primary: #2d6a4f;       /* Deep Forest Green */
    --primary-light: #52b788; /* Fresh Green */
    --accent: #d8f3dc;        /* Very Light Green */
    --text-dark: #1b4332;     /* Dark Green/Black */
    --text-body: #40514e;     /* Slate Gray */
    --bg-light: #f8f9fa;
    --white: #ffffff;

    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --font-main: 'Manrope', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* =========================================
   2. LAYOUT UTILITIES
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.text-green { color: var(--primary); }

/* =========================================
   3. TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

p {
    font-size: 1.125rem;
    color: #6b7280;
}

/* =========================================
   4. TOP BAR & NAVBAR
   ========================================= */
.top-bar {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.top-bar i { margin-right: 6px; color: var(--primary-light); }
.separator { opacity: 0.3; }

.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.logo-text {
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
}

.logo-text span { color: var(--primary-light); }
.logo-text small {
    font-size: 0.7rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover { color: var(--primary); }

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.2);
    transition: 0.3s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 106, 79, 0.3);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero {
    position: relative;
    padding: 100px 0;
    background: #f0fff4;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.15;
    mask-image: linear-gradient(to left, black, transparent);
    -webkit-mask-image: linear-gradient(to left, black, transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    border: 1px solid var(--accent);
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--accent);
    z-index: -1;
    opacity: 0.6;
}

.hero-subtext {
    margin-bottom: 32px;
    font-size: 1.25rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-primary {
    background: var(--text-dark);
    color: white;
    box-shadow: 0 8px 20px rgba(27, 67, 50, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #0f291e;
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    border-color: var(--text-dark);
}

.hero-features {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    flex-wrap: wrap;
}

.hero-features div { display: flex; align-items: center; gap: 8px; }
.hero-features i { color: var(--primary-light); font-size: 1.1rem; }

/* =========================================
   6. FEATURES SECTION
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-card);
    transition: 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
}

.icon-box.green { background: #e8f5e9; color: var(--primary); }
.icon-box.blue { background: #e3f2fd; color: #1976d2; }
.icon-box.pink { background: #fce4ec; color: #d81b60; }
.icon-box.orange { background: #fff3e0; color: #f57c00; }

.feature-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.feature-card p { font-size: 1rem; color: #666; }

/* =========================================
   7. GALLERY SECTION & LOADING SPINNER
   ========================================= */
.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 240px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
    background: #e9ecef; /* Placeholder gray */
    cursor: pointer;
}

/* Spinner Styles */
.loader-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background: #f8f9fa;
}

.spinner {
    width: 35px;
    height: 35px;
    border: 3px solid rgba(45, 106, 79, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Image Loaded State */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    opacity: 0; /* Hidden until loaded */
    transition: opacity 0.5s ease-in-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item img.loaded {
    opacity: 1; /* Fade in */
}

.gallery-item:hover img.loaded {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    z-index: 3;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =========================================
   8. TRUST / FAQ SECTION
   ========================================= */
.trust-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
    place-items: center;
}

.trust-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.trust-list { margin-top: 30px; text-align: left;}

.trust-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.trust-list i {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trust-list strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4 i { color: var(--primary); }
.faq-item p { margin: 0; font-size: 0.95rem; }

/* =========================================
   9. FOOTER
   ========================================= */
footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.footer-brand, .footer-info, .footer-hours {
    flex: 1;
    min-width: 250px;
}

.footer-brand h3 { color: white; margin-bottom: 16px; font-size: 1.5rem; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); margin-bottom: 24px; }

.social-links { display: flex; gap: 16px; }
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}
.social-links a:hover { background: var(--primary-light); transform: translateY(-3px); }

.footer-info h4, .footer-hours h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-info li, .footer-hours li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-info i { color: var(--primary-light); }

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* =========================================
   10. RESPONSIVE DESIGN (MOBILE)
   ========================================= */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    .trust-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        align-items: flex-start;
        z-index: 999;
    }

    .nav-links.active { right: 0; }
    .mobile-toggle { display: block; z-index: 1000; }

    /* Content Adjustments */
    h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .hero-features { flex-direction: column; gap: 10px; }
    .top-bar-content { flex-direction: column; gap: 5px; }
    .separator { display: none; }
}



/* =========================================
   11. NEW ADDITIONS ( Reviews)
*/

/* Reviews / Testimonials */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary); /* Green accent on top */
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.stars {
    color: #ffc107; /* Gold color */
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.review-card h5 {
    font-weight: 800;
    color: var(--text-dark);
    text-align: right;
}


/* =========================================
   12. GOOGLE REVIEW CTA
   ========================================= */
.review-cta-section {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%); /* Dark Green Gradient */
    color: white;
    padding: 80px 0;
    margin-top: 40px;
    border-radius: 0; /* Full width feel */
}

/* Optional: If you want it contained and rounded like a card, uncomment below: */
.review-cta-section .container {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
    border-radius: 30px;
    padding: 60px 40px;
}
.review-cta-section { background: white; padding: 40px 0; }


.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #81c784; /* Light Green */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.review-cta-section h2 {
    color: white; /* Override default dark color */
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.review-cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 25px;
}

/* Stars Animation */
.stars-animation {
    color: #ffd700; /* Gold */
    font-size: 1.5rem;
    display: flex;
    gap: 5px;
}

.stars-animation i {
    animation: bounce 2s infinite;
}

.stars-animation i:nth-child(1) { animation-delay: 0.1s; }
.stars-animation i:nth-child(2) { animation-delay: 0.2s; }
.stars-animation i:nth-child(3) { animation-delay: 0.3s; }
.stars-animation i:nth-child(4) { animation-delay: 0.4s; }
.stars-animation i:nth-child(5) { animation-delay: 0.5s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Button & Wrapper */
.cta-button-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn-google-review {
    background: white;
    color: #1b4332;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-google-review:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: #f1f1f1;
}

.btn-google-review i {
    color: #4285F4; /* Google Blue */
}

.cta-button-wrapper small {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-content {
        text-align: center;
        flex-direction: column;
        gap: 30px;
    }

    .review-cta-section p {
        margin-left: auto;
        margin-right: auto;
    }

    .stars-animation {
        justify-content: center;
    }
}

/* --- Language Button --- */
.lang-btn {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    background: transparent;
}

.lang-btn:hover {
    background: var(--primary);
    color: white;
}

/* Ensure mobile menu doesn't break */
@media (max-width: 768px) {
    .lang-btn {
        width: 100%;
        text-align: center;
        padding: 10px;
        margin-top: 10px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.whatsapp-float:hover { background-color: #1ebc57; transform: scale(1.1); }


/* =========================================
   13. MEET THE OWNER
   ========================================= */
.owner-section {
    background-color: white;
}

.owner-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #f0fff4; /* Very light green bg */
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(45, 106, 79, 0.1);
    box-shadow: 0 10px 40px -10px rgba(45, 106, 79, 0.1);
}

.owner-image {
    flex: 0 0 350px; /* Fixed width for image container */
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.owner-image:hover img {
    transform: scale(1.05);
}

.owner-info {
    flex: 1;
}

.owner-info h2 {
    font-size: 2.5rem;
    margin: 15px 0;
    color: var(--text-dark);
}

.owner-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}
.signature{
        font-family: "Yuji Boku", serif;
  font-weight: 400;
  font-style: normal;
    }

/* Responsive for Mobile */
@media (max-width: 900px) {
    .owner-card {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .owner-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
    }


}

/* =========================================
   14. LIGHTBOX (IMAGE ZOOM)
   ========================================= */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000; /* Sit on top of everything */
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Caption Text */
.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    position: absolute;
    bottom: 0;
}

/* Mobile Fix */
@media only screen and (max-width: 700px){
    .lightbox-content {
        width: 95%;
    }
    .lightbox-close {
        top: 10px;
        right: 20px;
    }
}

/* =========================================
   17. PICKUP SERVICE NOTIFICATION
   ========================================= */
.pickup-box {
    background: white;
    border: 2px dashed var(--primary); /* Dashed border suggests 'packaging' */
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.05);
}

.pickup-icon {
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.pickup-text h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.steps-row {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-body);
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-num {
    background: var(--text-dark);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.step-line {
    height: 2px;
    background: #ddd;
    flex: 1;
    margin: 0 15px;
    min-width: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .pickup-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .steps-row {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        margin-left: 20%; /* Center visual alignment */
    }

    .step-line {
        display: none; /* Hide lines on mobile stack */
    }
}

/* =========================================
   18. DETAILED ORDER FORM
   ========================================= */
.order-wrapper {
    background: linear-gradient(135deg, #f0f9ff 0%, #e1f5fe 100%);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.order-text { flex: 0.8; }
.order-form-container { flex: 1.2; display: flex; flex-direction: column; gap: 20px; }

/* Form Inputs */
.form-row {
    display: flex;
    gap: 15px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #1565c0;
    opacity: 0.7;
}

.form-input {
    width: 100%;
    padding: 15px 15px 15px 50px; /* Space for icon */
    border-radius: 50px;
    border: 1px solid rgba(21, 101, 192, 0.15);
    background: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-textarea {
    width: 100%;
    height: 150px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(21, 101, 192, 0.15);
    background: white;
    font-size: 1rem;
    font-family: var(--font-main);
    resize: none;
    outline: none;
    transition: 0.3s;
}

.form-input:focus, .form-textarea:focus {
    border-color: #25d366;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
}

/* Mic Button Inside Textarea */
.relative { position: relative; }
.btn-mic-small {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f44336;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.btn-mic-small:hover { transform: scale(1.1); }
.btn-mic-small.listening { background: #2d6a4f; animation: pulse 1.5s infinite; }

/* Full Width Button */
.btn-whatsapp-full {
    background: #25d366;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px;
    border-radius: 50px;
    width: 100%;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
    transition: 0.3s;
}

.btn-whatsapp-full:hover {
    background: #1ebc57;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .order-wrapper { flex-direction: column; padding: 30px; }
    .form-row { flex-direction: column; }
}

/* =========================================
   20. SCAN & PAY
   ========================================= */
.scan-pay-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-card);
    flex-wrap: wrap;
    gap: 40px;
}

.scan-text { flex: 1; min-width: 300px; }
.scan-text h2 { font-size: 2.2rem; margin-bottom: 15px; }

.pay-icons { display: flex; gap: 20px; margin-top: 30px; }
.pay-icons img { height: 30px; opacity: 0.8; }

.scan-code {
    flex: 0 0 250px;
    text-align: center;
    background: white;
    padding: 20px;
    border: 2px dashed #ddd;
    border-radius: 20px;
}

.scan-code img { width: 100%; margin-bottom: 10px; }
.scan-code p { font-size: 0.9rem; color: var(--text-dark); }

@media (max-width: 768px) {
    .scan-pay-wrapper { text-align: center; justify-content: center; }
    .pay-icons { justify-content: center; }
}

/* =========================================
   21. STATUS BADGE
   ========================================= */
.status-badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-right: 5px;
    vertical-align: middle;
}

.status-open {
    background-color: #2ecc71; /* Bright Green */
    color: #000;
    animation: pulse-green 2s infinite;
}

.status-closed {
    background-color: #e74c3c; /* Red */
    color: white;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 5px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

