/* =========================================
   Variables & Reset
   ========================================= */
:root {
    --primary: #F58220;
    --primary-dark: #d86d15;
    --black: #111111;
    --black-light: #1a1a1a;
    --white: #ffffff;
    --gray-light: #f4f4f4;
    --gray: #888888;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* =========================================
   FSSAI Compliance Banner
   ========================================= */
.fssai-banner {
    background-color: #ffcc00;
    color: var(--black);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2000;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.fssai-banner i {
    margin-right: 8px;
}

.fssai-banner p {
    margin: 0;
    display: inline-block;
}

/* =========================================
   Typography & Base Components
   ========================================= */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

h2 span, h1 span {
    color: var(--primary);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.text-light h2, .text-light p {
    color: var(--white);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 130, 32, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Disabled state for compliance */
.btn-disabled, .btn-disabled:disabled {
    background-color: #444444 !important;
    color: #aaaaaa !important;
    cursor: not-allowed !important;
    border: 2px solid #444444 !important;
    box-shadow: none !important;
    transform: none !important;
}

.dark-section {
    background-color: var(--black);
    color: var(--white);
    padding: 90px 0;
}

.light-section {
    background-color: var(--gray-light);
    color: var(--black);
    padding: 90px 0;
}

/* =========================================
   Header & Navigation
   ========================================= */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid var(--primary);
}

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

/* Fixes the giant logo issue */
.logo img {
    height: 42px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 520px;
}

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

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 450px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    animation: float 6s ease-in-out infinite;
}

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

/* =========================================
   About SUDEVEE Section
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

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

.about-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* =========================================
   Products Section
   ========================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--black-light);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(245, 130, 32, 0.15);
}

.product-img {
    height: 280px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img img {
    max-height: 100%;
    max-width: 100%;
    transition: var(--transition);
}

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

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.product-info .desc {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 50px;
}

.benefits {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
    display: inline-block;
}

.benefits li {
    margin-bottom: 8px;
    color: #ccc;
    font-size: 0.9rem;
}

.benefits i {
    color: var(--primary);
    margin-right: 8px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: auto;
}

.weight {
    font-weight: 700;
    color: var(--primary);
}

/* =========================================
   Nutrition & Manufacturer Info
   ========================================= */
.nutrition-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.nutrition-text {
    flex: 1.2;
}

.ingredients-box, .storage-box {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.manufacturer-box {
    background: #e4e4e4;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--black);
    margin-top: 25px;
}

.manufacturer-box h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.manufacturer-box p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.nutrition-table-placeholder {
    flex: 0.8;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.nutrition-table-placeholder h3 {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
}

.nutrition-table-placeholder ul {
    list-style: none;
}

.nutrition-table-placeholder li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

/* =========================================
   Contact Section
   ========================================= */
.contact-wrapper {
    display: flex;
    gap: 40px;
}

.contact-form-container, .contact-details-container {
    flex: 1;
    background: var(--black-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #222;
    border: 1px solid #444;
    color: var(--white);
    border-radius: 8px;
    font-family: var(--font-body);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-info p {
    margin-bottom: 18px;
    color: #ccc;
    font-size: 1rem;
}

.contact-info i {
    color: var(--primary);
    margin-right: 12px;
    width: 20px;
}

.dummy-map {
    background: #222;
    height: 180px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #777;
    margin-top: 20px;
    border: 1px dashed #444;
}

.dummy-map i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* =========================================
   Footer
   ========================================= */
footer {
    background: #0a0a0a;
    padding: 60px 0 20px;
    color: #aaa;
}

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

.footer-brand img {
    height: 45px;
    margin-bottom: 20px;
}

.footer-links h3, .footer-social h3 {
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #222;
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* =========================================
   Floating Buttons
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    text-decoration: none;
}

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

/* =========================================
   Scroll Animations
   ========================================= */
.scroll-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-anim.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .hero-content, .nutrition-wrapper, .contact-wrapper {
        flex-direction: column;
    }
    .hero-text {
        text-align: center;
    }
    .hero-text h1 {
        font-size: 3rem;
    }
    .hero-text p {
        margin: 0 auto 30px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        text-align: center;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(17, 17, 17, 0.98);
        padding: 20px 0;
        text-align: center;
    }
}
/* Dual Nutrition Tables Styling */
.nutrition-tables-container {
    flex: 0.8;
    display: flex;
    flex-direction: column;
}

.mb-20 {
    margin-bottom: 25px;
}