/* Color Scheme - Farm Dadi Yellow Theme */
:root {
    --primary-brown: #C8880A;
    --primary-light: #E0A020;
    --primary-dark: #A06800;
    --accent-gold: #F5C518;
    --accent-light: #FDE9A4;
    --text-dark: #1F1A10;
    --text-light: #6B5A39;
    --bg-light: #FFFFFF;
    --bg-white: #FFFFFF;
    --border-color: #F2E2A9;
    --secondary-brown: #D29914;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

p {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons - Enhanced */
.btn {
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: white;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.3);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-brown));
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-brown);
    border: 2px solid var(--primary-brown);
}

.btn-secondary:hover {
    background-color: var(--primary-brown);
    color: white;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-brown);
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-brown);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-brown);
}

.btn-shop {
    padding: 10px 18px !important;
    white-space: nowrap;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-brown);
}

/* Hero Section - Completely Redesigned */
.hero {
    background: linear-gradient(135deg, #8B6F47 0%, #6B5837 50%, #5A4A2D 100%);
    color: white;
    padding: 80px 20px 60px;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.hero-shape-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    z-index: 2;
    margin-bottom: 80px;
}

.hero-text h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    font-size: 16px;
    padding: 15px 40px;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    z-index: 2;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Section Header - Enhanced */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-brown);
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 20px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text ul {
    list-style: none;
}

.about-text li {
    padding: 10px 0;
    color: var(--text-dark);
}

.about-text .icon {
    color: var(--primary-brown);
    font-weight: bold;
    margin-right: 10px;
}

.about-image {
    text-align: center;
}

.about-box {
    background: linear-gradient(135deg, var(--accent-light) 0%, #F0E68C 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(139, 111, 71, 0.15);
}

.about-box img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Products Section */
.products {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: var(--accent-light);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-brown);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    color: var(--primary-brown);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.product-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-details {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5deb3 0%, #edd5b1 100%);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
}

.benefit-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--accent-light) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: var(--primary-brown);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-brown);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    color: var(--primary-brown);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-light) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.why-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 111, 71, 0.15);
}

.why-number {
    font-size: 2.5rem;
    color: var(--primary-brown);
    font-weight: 700;
    margin-bottom: 10px;
}

.why-item h3 {
    color: var(--primary-brown);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Blog Section */
.blog {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.2);
}

.blog-image {
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: var(--primary-brown);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card h3 {
    color: var(--primary-brown);
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
    margin-left: 5px;
}

/* Products Section */
.products {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fefdfb 0%, #f9f5ed 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.2);
}
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-brown);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--primary-light);
    color: white;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-light);
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form .btn {
    background-color: white;
    color: var(--primary-brown);
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background-color: var(--accent-light);
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-brown);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--primary-brown);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo h4 {
    color: var(--accent-gold);
    margin: 0;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.6;
}

.commitment {
    color: var(--accent-gold) !important;
    font-weight: 600;
    margin-top: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin: 5px 0;
}

/* Trust Strip Section */
.trust-strip {
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
    color: white;
}

.trust-strip .container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-strip h3 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--accent-gold);
}

.trust-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
}

.trust-item i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.trust-item span {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Hero Support Text */
.hero-support-text {
    font-size: 1.1rem !important;
    opacity: 0.92 !important;
}

/* Mission Section */
.mission {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-text {
    color: var(--text-dark);
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-light);
}

.mission-text h3 {
    color: var(--primary-brown);
    font-size: 1.5rem;
    margin-bottom: 25px;
    margin-top: 15px;
}

.mission-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(245, 222, 179, 0.3) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-brown);
}

.mission-item i {
    color: var(--primary-brown);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.mission-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.mission-closing {
    font-size: 1.15rem;
    text-align: center;
    padding: 20px;
    background: rgba(139, 111, 71, 0.05);
    border-radius: 10px;
    color: var(--primary-brown) !important;
}

/* Gau Seva Section */
.gau-seva {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fefdfb 0%, #f9f5ed 100%);
}

.gau-seva-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.gau-seva-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-brown);
}

.gau-seva-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
}

.gau-seva-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.gau-seva-card h3 {
    color: var(--primary-brown);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.gau-seva-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Ghee Difference Section */
.ghee-difference {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.ghee-difference-content {
    max-width: 900px;
    margin: 0 auto;
}

.ghee-diff-text {
    color: var(--text-dark);
}

.ghee-diff-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
}

.bilona-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.process-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(245, 222, 179, 0.3) 100%);
    border-radius: 12px;
}

.process-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.process-info h4 {
    color: var(--primary-brown);
    margin-bottom: 5px;
}

.process-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Contribution Section */
.contribution {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fefdfb 0%, #f9f5ed 100%);
}

.contribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contribution-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contribution-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 111, 71, 0.15);
}

.contribution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.contribution-item h3 {
    color: var(--primary-brown);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.contribution-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contribution-tagline {
    text-align: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(245, 222, 179, 0.3) 100%);
    border-radius: 12px;
    border-left: 5px solid var(--primary-brown);
}

.contribution-tagline p {
    color: var(--primary-brown);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}

.contribution-tagline i {
    margin-right: 10px;
    color: var(--primary-brown);
}

/* Founder Message Section */
.founder-message {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.founder-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f5deb3 0%, #edd5b1 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(139, 111, 71, 0.15);
    border-left: 6px solid var(--primary-brown);
}

.founder-text {
    text-align: center;
}

.founder-quote {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.9;
    font-weight: 500;
    margin: 15px 0;
    font-style: italic;
}

/* Transparency Section */
.transparency {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fefdfb 0%, #f9f5ed 100%);
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.transparency-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-brown);
}

.transparency-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 111, 71, 0.15);
}

.transparency-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 15px;
}

.transparency-item h3 {
    color: var(--primary-brown);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.transparency-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 111, 71, 0.15);
    border-color: var(--primary-brown);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    color: #FFD700;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-initials {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info {
    flex: 1;
}

.author-name {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.author-detail {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 3px 0 0;
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fefdfb 0%, #f9f5ed 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    padding: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding-top: 30px;
    }

    .stat h3 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        font-size: 16px;
        padding: 12px 30px;
    }

    .product-info {
        padding: 30px;
    }

    .product-info h3 {
        color: var(--primary-brown);
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .product-subtitle {
        color: var(--text-light);
        font-size: 0.95rem;
        margin-bottom: 18px;
        font-style: italic;
    }

    .product-details {
        color: var(--text-light);
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 2;
    }

    .product-details p {
        margin: 8px 0;
    }

    .product-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        border-top: 2px solid var(--border-color);
    }

    .price {
        font-size: 2rem;
        color: var(--primary-brown);
        font-weight: 800;
        font-family: 'Playfair Display', serif;
    }
        padding: 15px 0;
    }

    .menu-icon {
        display: block;
    }

    .hero {
        padding: 60px 20px;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding-top: 20px;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .stat p {
        font-size: 0.8rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .products-grid,
    .benefits-grid,
    .blog-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .about,
    .products,
    .benefits,
    .blog,
    .faq,
    .contact {
        padding: 50px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .product-card:hover {
        transform: none;
    }

    .blog-card:hover {
        transform: none;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.blog-card,
.benefit-card,
.why-item {
    animation: fadeIn 0.6s ease forwards;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-brown);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Bright Theme Override */
body {
    background:
        radial-gradient(circle at top, rgba(255, 247, 220, 0.95) 0%, rgba(255, 255, 255, 0.95) 35%, rgba(250, 243, 225, 1) 100%);
}

.navbar {
    background: rgba(255, 255, 255, 0.96);
}

.navbar-logo {
    color: #c67a15;
}

.nav-link:hover,
.nav-link.active {
    color: #d97706;
}

.hero {
    background: linear-gradient(135deg, #fff5d8 0%, #ffe59a 38%, #fffaf0 68%, #f4f7e7 100%);
    color: #4a3414;
    padding: 32px 20px 46px;
    min-height: 0;
}

.hero-sunrise {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 183, 77, 0.35) 0, rgba(255, 183, 77, 0) 28%),
        radial-gradient(circle at 80% 15%, rgba(255, 138, 101, 0.2) 0, rgba(255, 138, 101, 0) 25%),
        radial-gradient(circle at 70% 75%, rgba(129, 199, 132, 0.15) 0, rgba(129, 199, 132, 0) 22%);
    pointer-events: none;
}

.hero-content {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    margin-bottom: 34px;
}

.hero-text h1 {
    color: #3f2a10;
    font-size: clamp(2.2rem, 4vw, 4.3rem);
    text-shadow: none;
}

.hero-text p {
    color: #6d4f24;
    max-width: 640px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.75);
    color: #a45700;
    border: 1px solid rgba(211, 169, 76, 0.35);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #ffb703 0%, #f48c06 100%);
    color: white;
}

.hero-buttons .btn-secondary {
    color: #8d5d0f;
    border-color: #e7b95a;
    background: rgba(255, 255, 255, 0.55);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    color: #7b5200;
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(206, 143, 33, 0.12);
}

.hero-visual {
    position: relative;
    min-height: 540px;
}

.hero-card {
    position: absolute;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(122, 78, 0, 0.18);
    border: 8px solid rgba(255, 255, 255, 0.7);
    background: #fff;
}

.hero-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-main {
    inset: 36px 20px 88px 36px;
}

.hero-card-product {
    left: 0;
    bottom: 14px;
    width: 240px;
    height: 126px;
    background: rgba(255, 255, 255, 0.96);
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    padding: 10px;
    align-items: center;
}

.hero-card-product img {
    border-radius: 18px;
}

.hero-card-product strong,
.hero-card-product span {
    display: block;
}

.hero-card-product strong {
    color: #6f4300;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.hero-card-product span {
    color: #93724a;
    font-size: 0.82rem;
}

.hero-card-cow {
    width: 170px;
    height: 170px;
    right: 0;
    top: 0;
    transform: rotate(7deg);
}

.hero-card-mini {
    width: 120px;
    height: 120px;
    right: 20px;
    bottom: 18px;
    transform: rotate(-7deg);
}

.hero-stats {
    border-top: 1px solid rgba(145, 104, 0, 0.14);
    gap: 16px;
    padding-top: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-item {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(214, 158, 30, 0.18);
}

.stat-number {
    color: #a45c00;
    font-size: 2.4rem;
}

.stat-label {
    color: #6b5126;
}

.section-header h2 {
    color: #a35f00;
    font-size: clamp(2rem, 3vw, 3.1rem);
}

.section-header p {
    color: #7a694f;
}

.about,
.products,
.benefits,
.why-choose,
.blog,
.faq,
.contact {
    padding-top: 86px;
    padding-bottom: 86px;
}

.about {
    background: #fffdf5;
}

.about-box {
    background: linear-gradient(135deg, #fff6d9 0%, #ffe7af 100%);
}

.about-text h3,
.product-info h3,
.benefit-card h3,
.why-item h3,
.blog-card h3,
.contact-item h3 {
    color: #8b5600;
}

.single-product-grid {
    grid-template-columns: minmax(0, 520px);
    justify-content: center;
}

.featured-product {
    max-width: 520px;
    margin: 0 auto;
}

.product-image {
    height: 330px;
    background: linear-gradient(135deg, #fff0bf 0%, #ffe1a3 100%);
}

.product-card {
    border-radius: 28px;
    box-shadow: 0 20px 45px rgba(146, 94, 0, 0.12);
}

.product-badge {
    background: linear-gradient(135deg, #20b486 0%, #169873 100%);
}

.product-footer .btn-primary,
.shop-cta .btn-primary {
    background: linear-gradient(135deg, #ffb703 0%, #f48c06 100%);
}

.benefit-card,
.why-item,
.blog-card {
    border-radius: 24px;
}

.benefit-icon {
    background: linear-gradient(135deg, #ffb703 0%, #f48c06 100%);
    box-shadow: 0 12px 30px rgba(244, 140, 6, 0.25);
}

.why-item {
    border-left-color: #20b486;
}

.newsletter {
    background: linear-gradient(135deg, #f48c06 0%, #20b486 100%);
}

.newsletter-form .btn,
.contact-form .btn {
    background: linear-gradient(135deg, #ffffff 0%, #fff7db 100%);
    color: #9b5a00;
}

.footer {
    background: linear-gradient(135deg, #20160c 0%, #3a2a16 100%);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 460px;
        order: -1;
    }

    .hero-card-main {
        inset: 24px 24px 92px 24px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0.9rem 16px;
    }

    .menu-icon {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 10px 0 18px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        transition: left 0.28s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 13px 18px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        padding: 24px 16px 28px;
    }

    .hero-visual {
        min-height: 370px;
    }

    .hero-card-main {
        inset: 12px 12px 84px 12px;
    }

    .hero-card-product {
        width: calc(100% - 20px);
        height: 96px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .hero-card-cow {
        display: none;
    }

    .hero-card-mini {
        display: none;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-points {
        justify-content: center;
    }

    .products-grid,
    .benefits-grid,
    .blog-grid,
    .why-grid,
    .contact-content,
    .about-content {
        grid-template-columns: 1fr;
    }

    .featured-product,
    .single-product-grid {
        max-width: 100%;
    }

    .product-image {
        height: 250px;
    }

    .product-footer,
    .hero-buttons,
    .newsletter-form {
        flex-direction: column;
    }

    .btn,
    .hero-buttons .btn,
    .newsletter-form input,
    .newsletter-form .btn,
    .contact-form .btn {
        width: 100%;
    }

    .contact-item {
        gap: 14px;
    }

    .contact-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        gap: 18px;
    }

    .hero-text h1 {
        font-size: 1.95rem;
    }

    .hero-text p {
        font-size: 0.98rem;
    }

    .hero-visual {
        min-height: 270px;
    }

    .hero-card-main {
        inset: 8px 8px 56px 8px;
    }

    .hero-card-product {
        width: calc(100% - 24px);
        height: 88px;
        grid-template-columns: 72px 1fr;
        left: 12px;
        right: 12px;
        bottom: 10px;
    }

    .hero-card-cow {
        display: none;
    }

    .hero-card-mini {
        display: none;
    }

    .hero-stats {
        gap: 10px;
    }

    .stat-item {
        padding: 14px 10px;
    }

    .stat-number {
        font-size: 1.85rem;
    }

    .section-header {
        margin-bottom: 34px;
    }

    .about,
    .products,
    .benefits,
    .why-choose,
    .blog,
    .faq,
    .contact,
    .newsletter {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

/* Benefits Section */
.benefits {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    border-color: var(--primary-brown);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(139, 111, 71, 0.2);
}

/* Final Theme Fixes */
.btn-shop {
    background: linear-gradient(135deg, #20b486 0%, #169873 100%);
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 20px !important;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(22, 152, 115, 0.22);
}

.btn-shop::after {
    display: none;
}

.btn-shop:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(22, 152, 115, 0.3);
}

.faq {
    background: #fffef8;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid #f2ddb0;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(155, 100, 0, 0.08);
}

.faq-question {
    width: 100%;
    border: 0;
    background: linear-gradient(180deg, #fff7df 0%, #fff1cc 100%);
    color: #7a4b00;
    font-family: 'Poppins', sans-serif;
    font-size: 1.03rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
}

.faq-question:hover {
    background: linear-gradient(180deg, #ffeec0 0%, #ffe6ac 100%);
}

.faq-question.active {
    background: linear-gradient(135deg, #ffb703 0%, #f48c06 100%);
    color: #ffffff;
}

.faq-question i {
    transition: transform 0.25s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    transition: max-height 0.28s ease;
}

.faq-answer.active {
    max-height: 420px;
}

.faq-answer p {
    margin: 0;
    padding: 18px 22px 20px;
    color: #6f5a3a;
    line-height: 1.8;
    border-top: 1px solid #f7e6c1;
}

.newsletter {
    background: #fff6df;
    color: #5f3d0b;
    border-top: 1px solid #f2ddb3;
    border-bottom: 1px solid #f2ddb3;
}

.newsletter-content h2 {
    color: #8b5600;
}

.newsletter-content p,
.newsletter-note {
    color: #6c5636;
    opacity: 1;
}

.newsletter-form input {
    border: 1px solid #edd6a6;
    background: #ffffff;
}

.newsletter-form .btn {
    background: #20b486;
    color: #ffffff;
}

.newsletter-form .btn:hover {
    background: #169873;
}

.footer {
    background: #1f1b16;
    padding-top: 72px;
}

.footer-content {
    gap: 32px;
}

.footer-section h4 {
    color: #ffcf70;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-section a:hover {
    color: #ffffff;
}

.social-links a {
    background: #20b486;
}

.social-links a:hover {
    background: #f5a623;
    color: #1f1b16;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 768px) {
    .btn-shop {
        display: inline-block;
        width: auto;
        margin: 6px auto;
    }

    .faq-question {
        font-size: 0.96rem;
        padding: 15px 16px;
    }

    .faq-answer p {
        padding: 14px 16px 16px;
    }

    .newsletter-form {
        gap: 12px;
    }

    /* Mobile Responsiveness for New Sections */
    .trust-strip h3 {
        font-size: 1.2rem;
    }

    .trust-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .trust-item span {
        font-size: 0.85rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-support-text {
        font-size: 0.95rem !important;
    }

    .mission-content {
        padding: 0 10px;
    }

    .mission-text p,
    .mission-text h3 {
        font-size: 1rem;
    }

    .mission-list {
        gap: 12px;
    }

    .mission-item {
        padding: 12px;
    }

    .gau-seva-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ghee-difference-content {
        padding: 0 10px;
    }

    .bilona-process {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-item {
        padding: 15px;
    }

    .contribution-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .founder-card {
        padding: 30px 20px;
    }

    .founder-quote {
        font-size: 1rem;
    }

    .transparency-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .final-cta-buttons .btn {
        width: 100%;
        min-width: auto;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .mission-closing {
        font-size: 1rem;
    }

    .contribution-tagline p {
        font-size: 0.95rem;
    }
}

.blog-hero {
    padding: 80px 0;
    background: radial-gradient(circle at top, rgba(255, 242, 220, 0.55), transparent 55%), #fffaf3;
}

.blog-hero .container {
    max-width: 1120px;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    color: #2d2b26;
}

.blog-hero p {
    font-size: 1.05rem;
    color: #5a524a;
    max-width: 760px;
}

.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.filter-btn {
    border: 1px solid #d8c1a8;
    background: #fff;
    color: #5a4d40;
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
    color: #fff;
    background: #8a6b45;
    border-color: #8a6b45;
}

.blog-search-bar {
    position: relative;
    max-width: 420px;
    margin-bottom: 36px;
}

.blog-search-bar input {
    width: 100%;
    border: 1px solid #d8c1a8;
    background: #fff;
    border-radius: 999px;
    padding: 14px 48px 14px 18px;
    font-size: 1rem;
    color: #32302b;
}

.blog-search-bar i {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: #8a6b45;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.blog-page-card,
.related-posts-grid article {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 16px 35px rgba(16, 22, 26, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-page-card:hover,
.related-posts-grid article:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(16, 22, 26, 0.12);
}

.blog-page-card .blog-image img,
.related-posts-grid .blog-image img {
    width: 100%;
    display: block;
    height: 220px;
    object-fit: cover;
}

.blog-page-card .blog-content,
.related-posts-grid .blog-content {
    padding: 24px;
}

.blog-page-card .blog-category-tag,
.blog-post-meta span {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #f7e8d3;
    color: #8a6b45;
}

.blog-page-card h3,
.related-posts-grid h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: #2d2b26;
}

.blog-page-card p,
.related-posts-grid p {
    color: #5d5346;
    line-height: 1.8;
    margin-bottom: 18px;
}

.blog-page-card .read-more,
.related-posts-grid .read-more {
    color: #8a6b45;
    font-weight: 700;
    text-decoration: none;
}

.blog-page-card .read-more:hover,
.related-posts-grid .read-more:hover {
    text-decoration: underline;
}

.load-more-container {
    margin-top: 40px;
    text-align: center;
}

.blog-post-shell {
    padding: 80px 0;
}

.blog-post-shell .breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 28px;
    color: #5d5346;
}

.blog-post-shell .breadcrumb a {
    color: #8a6b45;
    text-decoration: none;
}

.blog-post-shell .blog-post-hero-img img {
    width: 100%;
    border-radius: 24px;
    height: auto;
    object-fit: cover;
    margin-bottom: 30px;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    color: #5d5346;
}

.blog-post-shell h1 {
    font-size: 2.8rem;
    line-height: 1.05;
    margin-bottom: 24px;
    color: #2d2b26;
}

.blog-post-content {
    font-size: 1.05rem;
    line-height: 1.95;
    color: #4b453d;
}

.blog-post-content h3,
.blog-post-content h2 {
    margin-top: 2rem;
    font-size: 1.65rem;
    color: #2d2b26;
}

.blog-post-content p {
    margin-bottom: 1.4rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-left: 1.3rem;
}

.related-posts {
    margin-top: 60px;
}

.related-posts .section-header {
    margin-bottom: 28px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.admin-form-panel {
    background: #fff;
    padding: 36px;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(16, 22, 26, 0.12);
    max-width: 1000px;
    margin: 80px auto;
}

.admin-form-panel h1,
.admin-form-panel h2 {
    margin-bottom: 24px;
    color: #2d2b26;
}

.admin-form-panel label {
    display: block;
    margin: 18px 0 10px;
    color: #4b453d;
    font-weight: 600;
}

.admin-form-panel input,
.admin-form-panel select,
.admin-form-panel textarea {
    width: 100%;
    border: 1px solid #d8c1a8;
    border-radius: 16px;
    padding: 14px 18px;
    font-size: 1rem;
    color: #2d2b26;
    background: #fff;
}

.admin-form-panel textarea {
    min-height: 190px;
}

.slug-field {
    font-family: inherit;
}

.admin-preview-panel {
    margin-top: 30px;
    padding: 26px;
    background: #fdf7ed;
    border-radius: 20px;
    border: 1px solid rgba(138, 107, 69, 0.14);
}

.admin-preview-panel h2 {
    margin-bottom: 18px;
}

#generatedCode {
    background: #fff;
    border: 1px solid #e6d7c1;
    border-radius: 18px;
    padding: 18px;
}

.admin-login-box {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(16, 22, 26, 0.12);
    padding: 36px;
    max-width: 560px;
    margin: 80px auto 32px;
    text-align: center;
}

.admin-login-box h1 {
    margin-bottom: 18px;
    color: #2d2b26;
}

.admin-login-box label {
    display: block;
    margin-bottom: 12px;
    color: #4b453d;
    font-weight: 600;
}

.admin-login-box input {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 18px;
    padding: 14px 18px;
    border: 1px solid #d8c1a8;
    border-radius: 16px;
    font-size: 1rem;
    color: #2d2b26;
}

.admin-login-box .btn {
    min-width: 180px;
}

.admin-login-message {
    margin-top: 14px;
    font-size: 0.95rem;
    color: #4b453d;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.25rem;
    }

    .blog-post-shell {
        padding: 50px 0;
    }

    .admin-form-panel {
        padding: 24px;
        margin: 50px 16px;
    }
}
