@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-green: #2e7d32;
    --primary-orange: #f57c00;
    --secondary-green: #4caf50;
    --bg-light: #fdfdfd;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'DM Serif Display', serif;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

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

.btn-secondary:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

/* Header */
.top-header {
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    color: var(--white);
    position: relative;
    z-index: 1001;
}

header {
    background: transparent;
    padding: 20px 0;
    position: relative;
    z-index: 1001;
    box-shadow: none;
}

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

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    color: var(--white);
}

nav ul li a:hover {
    color: var(--primary-orange);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 220px 0 120px;
    margin-top: -160px;
    background: url('/static/images/hero-bg.jpg') no-repeat top center/cover;
    color: var(--white);
    overflow: hidden;
    min-height: 75vh; /* Larger height to show more of the image */
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero .container {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero h1 span {
    color: var(--primary-orange);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 350px;
    transform: rotate(10deg);
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

/* Featured Products */
.featured-products {
    padding: 60px 0;
}

.featured-products h2 {
    font-size: 32px;
    color: var(--primary-green);
    margin-bottom: 40px;
    text-align: center;
}

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

.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

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

.product-card .img-bg {
    background: #f1f8f1;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.product-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.product-card .btn {
    width: 100%;
    padding: 10px 20px;
}

/* Bottom Area Redesign */
.bottom-area {
    position: relative;
    padding: 80px 0;
    background: url('/static/images/hero-bg.jpg') no-repeat center center/cover;
    overflow: hidden;
}

.bottom-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85); /* Light overlay for readability */
}

.bottom-area .container {
    position: relative;
    z-index: 2;
}

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    color: var(--primary-green);
    font-size: 32px;
    margin-bottom: 25px;
}

.map-container {
    display: flex;
    justify-content: center;
}

.circular-map {
    width: 280px;
    height: 280px;
    background: #fff;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #fff;
}

.circular-map img {
    width: 100%;
    height: auto;
}

.india-map-block .full-map {
    width: 100%;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

.subtitle {
    font-size: 18px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 20px;
}

.states-list {
    margin-bottom: 30px;
}

.states-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #444;
}

.states-list li::before {
    content: '›';
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 22px;
    line-height: 1;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
}

.phone-info .icon { color: var(--primary-orange); }

.btn-green {
    background: var(--primary-green);
    color: #fff;
    justify-content: center;
    font-size: 18px;
    padding: 12px;
}

/* Footer Banner Area */
.footer-banner-section {
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.info-links-bar {
    background: #fff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-right: 2px solid #f0f0f0;
}

.footer-col p {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.social-mini {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-mini i {
    color: #888;
    font-size: 14px;
}

.questions-banner {
    background: var(--primary-orange);
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.banner-text h3 {
    font-size: 22px;
    font-weight: 400;
}

.banner-text h2 {
    font-size: 32px;
    font-family: 'DM Serif Display', serif;
}

.phone-box {
    background: #fff;
    color: #333;
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.phone-box:hover {
    transform: scale(1.02);
}

/* Footer Bottom Refined */
.footer-bottom-nav {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-social-circle a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.bottom-links {
    display: flex;
    gap: 25px;
}

.bottom-links a {
    color: #ccc;
    font-size: 14px;
    transition: var(--transition);
}

.bottom-links a:hover { color: #fff; }

.whatsapp-btn {
    background: #25d366;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    font-size: 12px;
    color: #666;
}

/* Responsive Redesign */
@media (max-width: 1100px) {
    .bottom-grid {
        grid-template-columns: 1fr 1fr;
    }
    .india-map-block { display: none; }
    .floating-farmer-img { width: 250px; }
}

@media (max-width: 850px) {
    .banner-grid { grid-template-columns: 1fr; }
    .bottom-grid { grid-template-columns: 1fr; }
    .footer-bottom-nav { flex-direction: column; gap: 30px; text-align: center; }
    .bottom-links { flex-direction: column; gap: 10px; }
    .floating-farmer-img { display: none; }
}