:root {
    --primary-green: #1B5E20;
    --primary-gold: #FF9800;
    --secondary-cream: #FFF8E7;
    --secondary-beige: #F5F5DC;
    --accent-charcoal: #333333;
    --accent-white: #FAFAFA;
    --font-poppins: 'Poppins', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-playfair: 'Playfair Display', serif;
    --font-urdu: 'Noto Nastaliq Urdu', serif;
}

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

body {
    font-family: var(--font-poppins);
    background-color: var(--secondary-cream);
    color: var(--accent-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* Header */
.header {
    background-color: transparent;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.header.sticky {
    background-color: rgba(27, 94, 32, 0.9);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 50px;
    margin-right: 1rem;
}

.logo-text h1 {
    font-family: var(--font-playfair);
    color: var(--accent-white);
    font-size: 1.5rem;
    margin: 0;
}

.logo-text p {
    font-family: var(--font-montserrat);
    color: var(--secondary-beige);
    font-size: 0.8rem;
    margin: 0;
}

.nav-links ul {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--accent-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-icons {
    display: flex;
    align-items: center;
}

.nav-icons a {
    color: var(--accent-white);
    font-size: 1.2rem;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.nav-icons a:hover {
    color: var(--primary-gold);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-slider .slide.active {
    opacity: 1;
}

.slide-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    color: var(--accent-white);
}

.slide-content h2 {
    font-family: var(--font-playfair);
    font-size: 4rem;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    background: linear-gradient(45deg, var(--primary-gold), #FFB74D);
    color: var(--accent-charcoal);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Product Section */
.product-section {
    padding: 5rem 0;
}

.product-section h2 {
    text-align: center;
    font-family: var(--font-playfair);
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--accent-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: var(--font-montserrat);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-info .description-en {
    margin-bottom: 0.5rem;
}

.product-info .description-ur {
    font-family: var(--font-urdu);
    direction: rtl;
    text-align: right;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--accent-white);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(to right, var(--primary-green), #2E7D32);
    padding: 5rem 0;
    color: var(--accent-white);
}

.testimonials h2 {
    text-align: center;
    font-family: var(--font-playfair);
    font-size: 3rem;
    margin-bottom: 3rem;
}

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

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.testimonial h4 {
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--accent-charcoal);
    color: var(--secondary-beige);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-about h3 {
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-white);
}

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

.footer-links a {
    color: var(--secondary-beige);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-icons a {
    color: var(--accent-white);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-gold);
}


/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: var(--accent-white);
    margin: 10% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slide-down 0.5s ease;
}

@keyframes slide-down {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: var(--accent-charcoal);
}

.form-toggle {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.form-toggle button {
    flex: 1;
    background: none;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s ease;
}

.form-toggle button.active {
    color: var(--primary-green);
    border-bottom: 3px solid var(--primary-green);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--font-montserrat);
}

.auth-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header .container {
        flex-direction: column;
    }
    .nav-links {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links ul {
        flex-direction: column;
        text-align: center;
    }
    .nav-links li {
        margin: 0.5rem 0;
    }
    .nav-icons {
        margin-top: 1rem;
    }
    .slide-content h2 {
        font-size: 3rem;
    }
    .slide-content p {
        font-size: 1.2rem;
    }
}