* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: hsl(95, 40%, 96%);
    --text-color: hsl(140, 45%, 15%);
    --primary-color: hsl(140, 60%, 45%);
    --primary-light: hsl(140, 60%, 55%);
    --card-bg: hsl(0, 0%, 100%);
    --border-color: hsl(140, 25%, 88%);
    --muted-text: hsl(140, 20%, 40%);
    --hero-gradient-start: hsl(130, 50%, 85%);
    --hero-gradient-end: hsl(140, 40%, 92%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
}

#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-end));
    background-image: url("../src/assets/hero-microgreens.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: fadeIn 1s ease-in;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(130, 200, 150, 0.3), rgba(140, 200, 160, 0.2));
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 10;
    animation: slideIn 1s ease-out;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    color: white;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    color: white;
    margin-bottom: 32px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.submitBtn {
    background-color: white;
    color: var(--primary-color);
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.submitBtn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.book-now-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    margin-top: 24px;
    width: 100%;
}

.book-now-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 48px;
}

/* About Section */
.about-section {
    background-color: var(--card-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-text {
    margin-bottom: 16px;
    color: var(--muted-text);
    font-size: 18px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-text {
    color: var(--muted-text);
}

/* Services Section */
.services-section {
    background-color: var(--bg-color);
}

.services-intro {
    text-align: center;
    margin-bottom: 48px;
}

.services-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
}

.services-text {
    font-size: 18px;
    color: var(--muted-text);
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.varieties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.badge {
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.service-text {
    color: var(--muted-text);
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 8px 0;
    color: var(--muted-text);
    border-bottom: 1px solid var(--border-color);
}

.service-list li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-section {
    background-color: var(--card-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.info-card {
    background: var(--bg-color);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.info-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.info-item {
    margin-bottom: 12px;
    color: var(--muted-text);
}

.email-highlight {
    background: rgba(130, 200, 150, 0.15);
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 12px 0;
}

.email-highlight strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--card-bg);
    padding: 32px 0;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.footer-tagline {
    font-size: 14px;
    color: var(--muted-text);
    margin-top: 8px;
}

/* WhatsApp Float Button */
#whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
    cursor: pointer;
}

#whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

#whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--primary-color);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1001;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ==================== BOOKING MODAL STYLES ==================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: #fff;
    margin: 3% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 1000px;
    position: relative;
    animation: slideDown 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.thank-you-content {
    max-width: 500px;
    text-align: center;
    padding: 60px 40px;
}

.close {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #000;
}

.modal-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 32px;
    text-align: center;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin-top: 24px;
}

/* Form Section in Modal */
.form-section {
    padding-right: 24px;
    border-right: 2px solid var(--border-color);
}

/* Payment Section */
.payment-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-card {
    background: linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-end));
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.payment-card h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 24px;
    font-weight: 600;
}

.price-display {
    margin: 24px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 8px;
}

.amount {
    font-size: 56px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.benefits-list li {
    padding: 10px 0;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
}

.pay-now-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 48px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 16px;
    box-shadow: 0 4px 12px hsla(140, 60%, 45%, 0.3);
}

.pay-now-btn:hover {
    background-color: hsl(140, 60%, 40%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(140, 60%, 45%, 0.4);
}

/* Thank You Modal */
.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
    animation: scaleIn 0.5s ease;
}

.thank-you-content h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 16px;
}

.thank-you-content p {
    color: var(--muted-text);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.close-thank-you-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-thank-you-btn:hover {
    background-color: hsl(140, 60%, 40%);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--card-bg);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        gap: 0;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin: 0;
        padding: 12px 0;
        border-bottom: 1px solid rgba(130, 200, 150, 0.2);
    }

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

    .nav-link {
        display: block;
        width: 100%;
        padding: 8px 0;
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    #whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
    }

    #whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    /* Booking Modal Responsive */
    .modal-content {
        margin: 10% auto;
        padding: 24px;
        width: 95%;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-section {
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid var(--border-color);
        padding-bottom: 24px;
    }

    .modal-title {
        font-size: 24px;
    }

    .amount {
        font-size: 42px;
    }

    .thank-you-content {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .container {
        padding: 0 16px;
    }

    section {
        padding: 48px 0;
    }
}