/* ==========================================================================
   ANANTAARA GROUP - PREMIUM FMCG BRAND STYLE SHEET
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* CSS Variables for Premium Design System */
:root {
    --primary-green: #1F5E2B;
    --primary-green-hover: #15451E;
    --primary-green-light: #EAF3EC;
    --gold: #D4A017;
    --gold-hover: #B8860B;
    --gold-light: #FAF2DF;
    --cream: #F8F5EE;
    --cream-dark: #F2ECE0;
    --dark-brown: #5A3E2B;
    --dark-brown-hover: #452E20;
    --text-dark: #2C1F17;
    --text-light: #FFFFFF;
    --text-muted: #7A695E;
    --white: #FFFFFF;
    
    /* Font Families */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
    
    /* Layout Variables */
    --max-width: 1200px;
    --header-height: 80px;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 4px 6px -1px rgba(90, 62, 43, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(90, 62, 43, 0.08), 0 4px 6px -2px rgba(90, 62, 43, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(31, 94, 43, 0.08), 0 10px 10px -5px rgba(31, 94, 43, 0.04);
    --shadow-premium: 0 25px 50px -12px rgba(90, 62, 43, 0.15);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 30px;
    --radius-full: 9999px;
}

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Selection and Scrollbar */
::selection {
    background-color: var(--primary-green);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-hover);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark-brown);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    position: relative;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Base Layout Containers */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: var(--dark-brown);
    color: var(--white);
}

.section-dark h2, .section-dark h3 {
    color: var(--cream);
}

.section-dark p {
    color: var(--cream-dark);
}

.section-green {
    background-color: var(--primary-green-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header .subtitle {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: block;
}

.section-header h2 {
    color: var(--primary-green);
}

.section-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 15px auto 0 auto;
}

/* Buttons and Links */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

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

.btn-primary:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-white:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-dark:hover {
    background-color: var(--dark-brown-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Glassmorphism Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: rgba(248, 245, 238, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(90, 62, 43, 0.05);
    transition: all var(--transition-normal);
}

header.scrolled {
    height: 70px;
    background-color: rgba(248, 245, 238, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: 1px;
    line-height: 1.1;
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-normal);
}

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

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 5px 0;
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--dark-brown);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) contrast(1.1);
    transform: scale(1.05);
    animation: zoomOut 20s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(31, 94, 43, 0.4) 0%, rgba(90, 62, 43, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 850px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.4);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-subtext {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--cream-dark);
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 2px dashed rgba(212, 160, 23, 0.3);
    border-radius: calc(var(--radius-lg) + 10px);
    z-index: -1;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--gold);
    z-index: 10;
}

.about-badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.about-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    color: var(--primary-green);
}

.about-p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-feature-icon {
    color: var(--gold);
    font-size: 1.25rem;
    line-height: 1.2;
}

.about-feature-text h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-brown);
}

.about-feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Our Product Range Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(90, 62, 43, 0.05);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(212, 160, 23, 0.3);
}

.product-image-container {
    height: 250px;
    position: relative;
    overflow: hidden;
    background-color: var(--cream);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image-container img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(31, 94, 43, 0.95);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 10;
}

.product-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.product-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-green);
    font-weight: 700;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--cream-dark);
    padding-top: 1.25rem;
}

.product-action-btn {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-action-btn:hover {
    color: var(--gold);
}

.product-status {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.why-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-bottom: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--gold);
}

.why-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.why-card:hover .why-icon-box {
    background-color: var(--primary-green);
    color: var(--white);
    transform: rotate(360deg);
}

.why-card h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-brown);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Manufacturing & Quality Section */
.mfg-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4.5rem;
    align-items: center;
}

.mfg-content h2 {
    color: var(--primary-green);
}

.mfg-intro {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.mfg-steps {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mfg-step {
    display: flex;
    gap: 1.25rem;
}

.mfg-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-sm);
}

.mfg-text h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.mfg-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.mfg-gallery {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    height: 450px;
}

.mfg-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.mfg-gallery:hover img {
    transform: scale(1.05);
}

.mfg-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(31, 94, 43, 0.9) 0%, rgba(31, 94, 43, 0) 100%);
    padding: 2.5rem 2rem;
    color: var(--white);
}

.mfg-overlay h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.mfg-overlay p {
    color: var(--cream-dark);
    font-size: 0.85rem;
    margin: 0;
}

/* Distributor Opportunity Section */
.distributor-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    background-color: var(--primary-green);
    color: var(--white);
}

.distributor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.distributor-img {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.distributor-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 50%, rgba(31, 94, 43, 0.9) 100%);
}

.distributor-info {
    padding: 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.distributor-info h2 {
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.distributor-info p {
    color: var(--cream-dark);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.distributor-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item span {
    color: var(--gold);
    font-size: 1.1rem;
}

.benefit-item p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Product Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 94, 43, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay h4 {
    color: var(--gold);
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-size: 1.05rem;
}

.gallery-item-overlay p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--cream);
}

.gallery-icon {
    font-size: 1.5rem;
    margin-top: 10px;
    color: var(--white);
}

/* Testimonials Section */
.testimonial-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-container {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

.testimonial-card {
    background-color: var(--white);
    padding: 3rem 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    text-align: center;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: 40px;
    font-family: var(--font-heading);
    font-size: 10rem;
    color: var(--primary-green-light);
    line-height: 1;
    z-index: 1;
}

.testimonial-card p {
    position: relative;
    z-index: 2;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.testimonial-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    border: 3px solid var(--gold-light);
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--cream-dark);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background-color: var(--primary-green);
    transform: scale(1.2);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.blog-img-container {
    height: 220px;
    overflow: hidden;
}

.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-img-container img {
    transform: scale(1.08);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.blog-card h3:hover {
    color: var(--gold);
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.blog-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark-brown);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-link:hover {
    color: var(--gold);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.contact-info h2 {
    color: var(--gold);
}

.contact-p {
    font-size: 1.05rem;
    color: var(--cream-dark);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.contact-detail-text h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}

.contact-detail-text p, .contact-detail-text a {
    font-size: 0.9rem;
    color: var(--cream);
    margin: 0;
}

.contact-detail-text a:hover {
    color: var(--gold);
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cream-dark);
    transition: var(--transition-normal);
}

.social-icon:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* Elegant Form Styling */
.form-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(90, 62, 43, 0.05);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1px solid var(--cream-dark);
    background-color: var(--cream);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(31, 94, 43, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Footer Section */
footer {
    background-color: var(--dark-brown);
    color: var(--cream-dark);
    padding: 80px 0 30px 0;
    border-top: 5px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-brand p {
    color: var(--cream-dark);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--gold);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--cream-dark);
}

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

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-contact-item span {
    color: var(--gold);
    margin-top: 3px;
}

.footer-contact-item p {
    color: var(--white);
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(242, 236, 224, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

/* Modals System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 31, 23, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: var(--cream);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-premium);
    position: relative;
    transform: scale(0.9);
    transition: all var(--transition-normal);
    border: 1px solid rgba(212, 160, 23, 0.2);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(90, 62, 43, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-brown);
    font-size: 1.25rem;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background-color: var(--dark-brown);
    color: var(--white);
}

.modal-header-img {
    height: 250px;
    width: 100%;
    position: relative;
}

.modal-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 2.5rem;
}

.modal-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.modal-body h3 {
    font-size: 1.75rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.modal-desc {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.modal-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream-dark);
}

.modal-detail-col h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-brown);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.modal-detail-col p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Floating Widgets */
.floating-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.widget-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: none;
    position: relative;
}

.widget-btn:hover {
    transform: translateY(-5px);
}

.whatsapp-btn {
    background-color: #25D366;
    color: var(--white);
    font-size: 1.8rem;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 2s infinite;
}

.scroll-top-btn {
    background-color: var(--primary-green);
    color: var(--white);
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

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

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Mobile responsive media queries */
@media (max-width: 992px) {
    .about-grid, .contact-grid, .mfg-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image img {
        height: 380px;
    }
    
    .distributor-grid {
        grid-template-columns: 1fr;
    }
    
    .distributor-img {
        min-height: 300px;
    }
    
    .distributor-img::after {
        background: linear-gradient(0deg, rgba(31, 94, 43, 0.9) 0%, rgba(31, 94, 43, 0.4) 100%);
    }
    
    .distributor-info {
        padding: 3rem 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-normal);
        z-index: 999;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        height: auto;
        padding: 120px 0 80px 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .testimonial-slide {
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }
    
    .testimonial-card::before {
        display: none;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .floating-widgets {
        bottom: 20px;
        right: 20px;
    }
    
    .widget-btn {
        width: 45px;
        height: 45px;
    }
    
    .btn {
        width: 100%;
    }
}
