:root {
    /* Color Palette */
    --deep-green: #1B4332;
    --dark-green: #081C15;
    --light-green: #D8F3DC;
    --earthy-brown: #582F0E;
    --turmeric-yellow: #FFB703;
    --soft-beige: #FBF8F1;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(88, 47, 14, 0.08);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--soft-beige);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Organic Background Leaf Texture (Subtle CSS Pattern) */
    background-image: radial-gradient(var(--light-green) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-padding {
    padding: 100px 0;
}

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

.text-center {
    text-align: center;
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: var(--dark-green);
}

h1 {
    font-size: clamp(3.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

h1 span {
    color: var(--turmeric-yellow);
    font-style: italic;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.subtitle {
    display: inline-block;
    color: var(--turmeric-yellow);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--turmeric-yellow);
    margin: 8px 0;
}

.text-center .subtitle::after {
    margin: 8px auto;
}

.text-white { color: var(--white); }
.text-light { color: var(--turmeric-yellow); }
.text-light-par { color: rgba(255,255,255,0.8); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--deep-green);
    color: var(--white);
    border: 2px solid var(--deep-green);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--deep-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(27, 67, 50, 0.2);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--deep-green);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--deep-green);
    border: 2px solid var(--deep-green);
}

.btn-outline:hover {
    background-color: var(--deep-green);
    color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(251, 248, 241, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--deep-green);
}

.logo i {
    color: var(--turmeric-yellow);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--turmeric-yellow);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--deep-green);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* For parallax */
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 28, 21, 0.8) 0%, rgba(8, 28, 21, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 700px;
    padding-top: 80px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* About Section */
.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    animation: floating 4s ease-in-out infinite;
    border: 4px solid var(--soft-beige);
}

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

.experience-badge span {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--turmeric-yellow);
    line-height: 1;
}

.experience-badge p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--deep-green);
    text-transform: uppercase;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    color: var(--deep-green);
}

.about-features i {
    color: var(--turmeric-yellow);
    background: rgba(255, 183, 3, 0.15);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-green);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card:hover h3, .feature-card:hover p {
    color: var(--white);
}

.feature-icon {
    font-size: 3rem;
    color: var(--turmeric-yellow);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 15px;
    transition: var(--transition);
}

/* Products */
.products {
    background-color: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.product-card {
    background-color: var(--soft-beige);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.product-img {
    height: 280px;
    overflow: hidden;
}

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

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

.product-content {
    padding: 30px;
}

.product-content h3 {
    margin-bottom: 10px;
}

.product-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.link-btn {
    font-weight: 600;
    color: var(--turmeric-yellow);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.link-btn:hover {
    color: var(--deep-green);
    gap: 12px;
}

/* Experience */
.experience {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    align-items: center;
}

.experience-content {
    max-width: 800px;
}

.mt-4 {
    margin-top: 30px;
}

/* Reviews */
.reviews {
    background-color: var(--light-green);
    background-image: radial-gradient(var(--deep-green) 1px, transparent 1px);
    background-size: 40px 40px;
}

.rating-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: var(--turmeric-yellow);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.rating-text {
    font-weight: 600;
    color: var(--deep-green);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--light-green);
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0.5;
}

.review-card p {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.reviewer-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--turmeric-yellow);
    font-weight: 500;
}

/* Contact Section */
.contact-item {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    align-items: center;
}

.icon-box {
    width: 55px;
    height: 55px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--deep-green);
    box-shadow: var(--box-shadow);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--deep-green);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.social-icon:hover {
    background: var(--deep-green);
    color: var(--white);
    transform: translateY(-3px);
}

.whatsapp-icon {
    color: #25D366;
}
.whatsapp-icon:hover {
    background: #25D366;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--deep-green);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--soft-beige);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--turmeric-yellow);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.1);
}

.w-100 {
    width: 100%;
}

/* Map */
.map-container {
    line-height: 0;
}

/* Footer */
.footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding-top: 80px;
}

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

.footer h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: var(--turmeric-yellow);
}

.footer ul li {
    margin-bottom: 15px;
}

.footer ul li a {
    color: rgba(255,255,255,0.7);
}

.footer ul li a:hover {
    color: var(--turmeric-yellow);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.7);
}

.footer-contact li i {
    color: var(--turmeric-yellow);
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 20px 0;
}

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.active.reveal-up,
.active.reveal-left,
.active.reveal-right {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
        bottom: 20px;
        right: 20px;
    }
    
    .experience-badge span {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}
