/* ===================================
   Haryana Pride Dairy
   Author: Param Verma
   Version: 1.0
=================================== */

/* Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Variables */

:root {

    --primary: #a9020b;
    --secondary: #F5B400;
    --accent: #a9020b;
    --brown: #7A4A1E;

    --white: #ffffff;
    --light: #FFF8EE;

    --text: #222222;
    --gray: #777777;

    --shadow: 0 15px 35px #a9020b;

    --radius: 14px;

}

/* Reset */

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

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--text);
}

h1,
h2,
h3,
h4,
h5 {

    font-family: 'Poppins', sans-serif;

}

img {

    width: 100%;
    display: block;

}

a {

    text-decoration: none;
    color: inherit;

}

.container {

    width: min(1200px, 90%);
    margin: auto;

}

section {

    padding: 80px 0;

}

/* ===========================
   TOP BAR
=========================== */

.top-bar {
    background: #a9020b;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

/* ===========================
   NAVBAR
=========================== */

.navbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.nav-container {

    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;

}

.logo {

    display: flex;
    align-items: center;
    gap: 15px;

}

.logo img {

    width: 60px;
    height: 60px;
    object-fit: contain;

}

.logo-text h2 {

    font-size: 24px;
    color: #a9020b;
    font-weight: 700;

}

.logo-text span {

    font-size: 13px;
    color: #777;

}

.nav-links {

    display: flex;
    gap: 35px;
    list-style: none;

}

.nav-links a {

    font-weight: 600;
    transition: .3s;

}

.nav-links a:hover {

    color: #F5B400;

}

.nav-actions {

    display: flex;
    align-items: center;
    gap: 15px;

}

.lang-btn {

    border: none;
    background: #a9020b;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;

}

.cart-btn {

    width: 48px;
    height: 48px;

    border: none;

    border-radius: 50%;

    background: #F5B400;

    font-size: 20px;

    position: relative;

    cursor: pointer;

}

.cart-count {

    position: absolute;

    right: -4px;

    top: -4px;

    width: 22px;

    height: 22px;

    background: red;

    color: white;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 12px;

}

.order-btn {

    background: #a9020b;

    color: white;

    padding: 14px 28px;

    border-radius: 40px;

    font-weight: 600;

    transition: .3s;

}

.order-btn:hover {

    background: #F5B400;

    color: #222;

}

/* ===========================
   HERO SECTION
=========================== */

.hero {

    padding: 90px 0;
    background: linear-gradient(135deg, #FFF8EE, #ffffff);

}

.hero-container {

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;

}

.hero-tag {

    display: inline-block;
    background: #a9020b;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-weight: 600;

}

.hero h1 {

    font-size: 58px;
    line-height: 1.15;
    margin-bottom: 25px;

}

.hero h1 span {

    color: #F5B400;

}

.hero p {

    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;

}

.hero-buttons {

    display: flex;
    gap: 20px;
    margin-bottom: 40px;

}

.btn-primary {

    background: #a9020b;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;

}

.btn-secondary {

    border: 2px solid #a9020b;
    color: #a9020b;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;

}

/* .hero .container {

    width: 100%;
    max-width: 1500px;

    padding-left: 40px;
    padding-right: 40px;

    margin: 0;

} */

.hero-features {

    display: flex;
    gap: 20px;
    flex-wrap: wrap;

}

.feature {

    background: white;
    padding: 14px 22px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.hero-image {

    text-align: center;

}

.hero-image img {

    max-width: 520px;
    width: 100%;
    animation: float 5s ease-in-out infinite;

}

@keyframes float {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-15px);

    }

    100% {

        transform: translateY(0px);

    }

}

/* ===========================
   SECTION TITLE
=========================== */

.section-title {

    text-align: center;
    margin-bottom: 60px;

}

.section-title span {

    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;

}

.section-title h2 {

    font-size: 42px;
    margin: 15px 0;

}

.section-title p {

    max-width: 650px;
    margin: auto;
    color: #666;
    line-height: 1.8;

}

/* ===========================
   PRODUCTS
=========================== */

.products {

    padding: 100px 0;
    background: #fff;

}

.product-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

}

.product-card {

    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .35s;
    position: relative;

}

.product-card:hover {

    transform: translateY(-10px);

}

.product-card img {

    height: 260px;
    object-fit: contain;
    padding: 20px;
    background: #FFF8EE;

}

.product-info {

    padding: 25px;

}

.product-info h3 {

    margin-bottom: 8px;

}

.product-info p {

    color: #777;
    margin-bottom: 10px;

}

.rating {

    margin-bottom: 18px;

}

.price-row {

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.price {

    color: var(--primary);
    font-size: 26px;
    font-weight: 700;

}

.price-row button {

    border: none;
    background: var(--primary);
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;

}

.price-row button:hover {

    background: var(--primary-dark);

}

.product-badge {

    position: absolute;
    top: 15px;
    left: 15px;
    background: #F5B400;
    color: #222;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;

}

/* ===========================
   WHY CHOOSE US
=========================== */

.why-us {

    background: #FFF8EE;
    padding: 100px 0;

}

.why-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.why-card {

    background: #fff;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.why-card:hover {

    transform: translateY(-10px);

}

.icon {

    width: 80px;
    height: 80px;

    background: var(--primary);

    color: white;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 36px;

    margin: 0 auto 20px;

}

.why-card h3 {

    margin-bottom: 15px;

}

.why-card p {

    color: #666;
    line-height: 1.7;

}

/* ===========================
   FARM STORY
=========================== */

.farm-story {

    padding: 100px 0;
    background: #ffffff;

}

.farm-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;

}

.farm-image img {

    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);

}

.farm-content span {

    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;

}

.farm-content h2 {

    font-size: 42px;
    margin: 20px 0;

}

.farm-content p {

    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;

}

.farm-points {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 35px 0;

}

.point {

    background: #FFF8EE;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;

}

/* ===========================
   PRODUCT CATEGORIES
=========================== */

.categories {

    padding: 110px 0;
    background: #FFF8EE;

}

.category-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.category-card {

    position: relative;
    overflow: hidden;
    border-radius: 22px;
    height: 420px;
    cursor: pointer;

}

.category-card img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;

}

.category-card:hover img {

    transform: scale(1.12);

}

.category-overlay {

    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 30px;

    background: linear-gradient(transparent,
            rgba(0, 0, 0, .75));

}

.category-overlay h3 {

    color: white;
    font-size: 30px;
    margin-bottom: 10px;

}

.category-overlay p {

    color: #ddd;
    margin-bottom: 20px;

}

.category-overlay a {

    display: inline-block;
    width: max-content;

    background: white;

    color: var(--primary);

    padding: 12px 24px;

    border-radius: 50px;

    font-weight: 700;

    transition: .3s;

}

.category-overlay a:hover {

    background: var(--primary);

    color: white;

}

/* ===========================
   TESTIMONIALS
=========================== */

.testimonials {

    padding: 110px 0;

    background: #ffffff;

}

.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.testimonial-card {

    background: #FFF8EE;

    padding: 35px;

    border-radius: 20px;

    transition: .35s;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.testimonial-card:hover {

    transform: translateY(-8px);

}

.stars {

    color: #F5B400;

    font-size: 22px;

    margin-bottom: 20px;

}

.testimonial-card p {

    line-height: 1.8;

    color: #666;

}

.customer {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 30px;

}

.customer img {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    object-fit: cover;

}

.customer h4 {

    margin-bottom: 5px;

}

.customer span {

    color: #777;

}

/* ===========================
   HOW IT WORKS
=========================== */

.how-it-works {

    padding: 110px 0;
    background: #FFF8EE;

}

.steps-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

}

.step-card {

    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .35s;

}

.step-card:hover {

    transform: translateY(-10px);

}

.step-number {

    position: absolute;
    top: 20px;
    right: 20px;

    width: 40px;
    height: 40px;

    background: var(--primary);

    color: white;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: 700;

}

.step-icon {

    width: 90px;
    height: 90px;

    margin: auto;

    margin-bottom: 25px;

    background: #FFF4F4;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 42px;

}

.step-card h3 {

    margin-bottom: 15px;

}

.step-card p {

    color: #666;
    line-height: 1.8;

}

/* ===========================
   TRUST SECTION
=========================== */

.trust-section {

    padding: 110px 0;
    background: #ffffff;

}

.trust-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.trust-card {

    background: #FFF8EE;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.trust-card:hover {

    transform: translateY(-8px);

}

.trust-icon {

    width: 90px;
    height: 90px;

    margin: auto auto 25px;

    background: var(--primary);

    color: #fff;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 40px;

}

.trust-card h3 {

    margin-bottom: 15px;

}

.trust-card p {

    color: #666;
    line-height: 1.8;

}

/* ===========================
   SUBSCRIPTION
=========================== */

.subscription {

    padding: 120px 0;
    background: linear-gradient(135deg, #fff, #FFF8EE);

}

.subscription-wrapper {

    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 70px;
    align-items: center;

}

.subscription-left span {

    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;

}

.subscription-left h2 {

    font-size: 46px;
    margin: 20px 0;

}

.subscription-left p {

    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;

}

.subscription-features {

    list-style: none;
    margin-bottom: 40px;

}

.subscription-features li {

    margin: 15px 0;
    font-weight: 600;

}

.plan-card {

    background: white;
    border-radius: 24px;
    padding: 45px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);

}

.plan-badge {

    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);

    background: var(--primary);
    color: white;

    padding: 8px 20px;

    border-radius: 50px;

    font-size: 14px;

}

.plan-card h3 {

    margin-top: 20px;

}

.plan-price {

    font-size: 52px;
    color: var(--primary);
    font-weight: 700;
    margin: 25px 0;

}

.plan-card ul {

    list-style: none;
    line-height: 2;

}

/* ===========================
   CALL TO ACTION
=========================== */

.cta {

    padding: 120px 0;

    background: linear-gradient(135deg,
            var(--primary),
            #d30d18);

}

.cta-content {

    max-width: 900px;

    margin: auto;

    text-align: center;

}

.cta-content h2 {

    color: white;

    font-size: 48px;

    margin-bottom: 25px;

}

.cta-content p {

    color: rgba(255, 255, 255, .9);

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 40px;

}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.btn-whatsapp {

    background: #25D366;

    color: white;

    padding: 18px 36px;

    border-radius: 50px;

    font-weight: 700;

}

.btn-outline {

    border: 2px solid white;

    color: white;

    padding: 18px 36px;

    border-radius: 50px;

    font-weight: 700;

}

.btn-outline:hover {

    background: white;

    color: var(--primary);

}

/* ===========================
   FOOTER
=========================== */

.footer {

    background: #111;
    color: #ddd;
    padding: 90px 0 30px;

}

.footer-grid {

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;

}

.footer-logo {

    width: 80px;
    margin-bottom: 20px;

}

.footer-column p {

    color: #aaa;
    line-height: 1.8;

}

.footer-column h3 {

    color: #fff;
    margin-bottom: 20px;

}

.footer-column ul {

    list-style: none;

}

.footer-column li {

    margin: 14px 0;

}

.footer-column a {

    color: #aaa;
    transition: .3s;

}

.footer-column a:hover {

    color: white;

}

.footer hr {

    margin: 50px 0;
    border: none;
    border-top: 1px solid #333;

}

.footer-bottom {

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.social-links {

    display: flex;
    gap: 20px;

}

.social-links a {

    color: #aaa;

}

.social-links a:hover {

    color: white;

}