/* ==================== CSS VARIABLES ==================== */
:root {
    --primary-color: #ffd700;
    --accent-color: #e0b638;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --black: #000000;
    --green-primary: #4CAF50;
    --green-secondary: #81C784;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER STYLES ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--accent-color);
    transform: rotate(-5deg);
    display: inline-block;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
    background: rgba(224, 182, 56, 0.1);
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--black);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
}

/* ==================== SECTIONS MANAGEMENT ==================== */
.section {
    display: none;
    min-height: 100vh;
}

.section.active {
    display: block;
}

/* ==================== HOME SECTION (SLIDESHOW) ==================== */
.slideshow-container {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide-counter {
    position: absolute;
    top: 100px;
    left: 30px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
    padding-top: 80px;
}

.slide-text {
    flex: 1;
    max-width: 500px;
}

.slide-tag {
    display: inline-block;
    background: rgba(224, 182, 56, 0.2);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(224, 182, 56, 0.3);
}

.slide-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.slide-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.slide-info {
    flex: 0 0 400px;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 500;
    margin-top: 5px;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f0f0f0;
}

.home-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    z-index: 100;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--black);
    transform: translateY(-3px);
}

.location {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* ==================== OUR STORY SECTION - FIXED ==================== */
.our-story-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.our-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="4" height="4"><circle cx="2" cy="2" r="0.5" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.story-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.story-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.story-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 18px;
}

.story-btn {
    margin-top: 25px;
    padding: 15px 30px;
    font-size: 1rem;
    background: var(--primary-color);
    color: var(--black);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.story-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.story-images {
    position: relative;
    height: 420px;
}

.story-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 68%;
    height: 68%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image-small {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48%;
    height: 48%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
}

.story-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-images img:hover {
    transform: scale(1.05);
}

/* ==================== FEATURED PRODUCTS SECTION - FIXED ==================== */
.featured-products-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.featured-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 50px;
}

.featured-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border-color);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 215, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-card:hover .featured-overlay {
    opacity: 1;
}

.featured-overlay i {
    font-size: 2rem;
    color: var(--black);
    animation: pulse 2s infinite;
}

.featured-info {
    padding: 22px;
}

.featured-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.featured-info p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.featured-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-cta {
    text-align: center;
    margin-top: 40px;
}

/* ==================== AI CHAT SECTION - FIXED ==================== */
.ai-chat-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ai-chat-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" patternUnits="userSpaceOnUse" width="10" height="10"><path d="M0,5 L10,5 M5,0 L5,10" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
}

.ai-chat-content {
    position: relative;
    z-index: 2;
}

.ai-chat-header {
    margin-bottom: 50px;
}

.ai-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.ai-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

.ai-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.ai-chat-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.ai-chat-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.ai-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.ai-feature i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.ai-feature span {
    font-weight: 600;
    font-size: 0.95rem;
}

.ai-chat-btn {
    background: var(--primary-color);
    color: var(--black);
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ai-chat-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* ==================== EXPORT PARTNER SECTION - FIXED ==================== */
.export-partner-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1586864387967-d02ef85d93e8?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: white;
    text-align: center;
    position: relative;
}

.export-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

.export-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.export-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.export-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.export-btn {
    background: var(--green-primary);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.export-btn:hover {
    background: var(--green-secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

/* ==================== ABOUT SECTION ==================== */
#about {
    background: var(--background-light);
    padding-top: 80px;
}

.about-hero {
    padding: 60px 0;
    text-align: center;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-box {
    text-align: center;
}

.stat-box .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    display: block;
}

.stat-box .stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}

.about-mission {
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.mission-text ul {
    list-style: none;
}

.mission-text li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: var(--text-light);
}

.mission-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ==================== PRODUCTS SECTION ==================== */
#products {
    background: var(--white);
    padding-top: 80px;
}

.products-hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.categories-section {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.category-description {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.all-products-section {
    padding: 60px 0;
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.product-category {
    margin-bottom: 60px;
}

.category-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==================== CUSTOM EXPORT SECTION ==================== */
#custom-export {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--white);
padding-top: 80px;
}
.custom-export-hero { padding: 80px 0; text-align: center; }
.custom-export-hero .section-tag { background: rgba(255,255,255,.2); color: var(--white); }
.custom-export-hero .section-title { color: var(--white); }
.custom-export-hero .section-description { color: rgba(255,255,255,.9); }

/* Showcase: image + text rows */
.export-showcase { padding: 40px 0 60px; }
.feature-row {
display: grid;
grid-template-columns: 1.15fr 1fr;
gap: 28px;
align-items: center;
margin: 34px 0;
}
.feature-row.reverse { grid-template-columns: 1fr 1.15fr; }
.feature-row.reverse .feature-media { order: 2; }
.feature-row.reverse .feature-copy { order: 1; }

.feature-media { margin: 0; }
.feature-media img {
width: 100%;
height: 420px;
object-fit: cover;
border-radius: 16px;
display: block;
}

.eyebrow { display: inline-block; letter-spacing: .08em; font-weight: 600; color: #d5ffe8; margin-bottom: 6px; }
.feature-title { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.25; margin: 6px 0 10px; color: #ffffff; }
.feature-copy p { color: rgba(255,255,255,.92); margin: 6px 0 12px; }
.feature-list { margin: 0; padding-left: 18px; }
.feature-list li { margin: 6px 0; color: rgba(255,255,255,.92); }

/* CTA (kept from your design) */
.export-cta {
text-align: center;
background: rgba(255,255,255,.1);
padding: 50px 40px;
border-radius: var(--border-radius);
backdrop-filter: blur(20px);
}
.export-cta h3 { font-size: 2rem; margin-bottom: 15px; }
.export-cta p { color: rgba(255,255,255,.9); margin-bottom: 30px; font-size: 1.1rem; }

/* Responsive */
@media (max-width: 980px) {
.feature-row,
.feature-row.reverse {
grid-template-columns: 1fr;
}
.feature-row.reverse .feature-media,
.feature-row.reverse .feature-copy { order: initial; }
.feature-media img { height: 280px; }
}
/* ==================== CONTACT SECTION ==================== */
#contact {
    background: var(--background-light);
    padding-top: 80px;
}

.contact-hero {
    padding: 60px 0;
    text-align: center;
}

.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-card,
.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form-card h3,
.contact-info-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(224, 182, 56, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--black);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.5;
}

.social-connect {
    margin-top: 40px;
}

.social-connect h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--black);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link-large:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* ==================== ENHANCED FOOTER ==================== */
.enhanced-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0 20px;
    position: relative;
}

.enhanced-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="8" height="8"><circle cx="4" cy="4" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-brand .logo-icon {
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

.footer-brand .logo-main {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
}

.footer-brand .logo-accent {
    color: var(--accent-color);
}

.footer-brand .logo-tagline {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-top: 5px;
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.address-info p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-social {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
    position: relative;
    z-index: 2;
}

.footer-social .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--black);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: #95a5a6;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* ==================== MODAL STYLES ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--text-light);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    background: var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.close:hover {
    color: var(--text-dark);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.product-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.product-detail-info h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.product-benefits,
.product-specifications {
    margin-bottom: 30px;
}

.product-benefits h3,
.product-specifications h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.product-benefits ul {
    list-style: none;
    padding-left: 0;
}

.product-benefits li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.product-benefits li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

#modalSpecificationTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

#modalSpecificationTable th,
#modalSpecificationTable td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

#modalSpecificationTable th {
    background: var(--background-light);
    font-weight: 700;
    color: var(--text-dark);
}

.btn-quote {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* ==================== CHATBOT STYLES ==================== */
.chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1500;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.chatbot-icon {
    font-size: 1.8rem;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.chatbot-window.show {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    color: var(--black);
    font-weight: 700;
    font-size: 1.1rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--black);
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: 700;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--background-light);
}

.message {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 15px;
    max-width: 85%;
    line-height: 1.4;
    font-size: 0.9rem;
}

.bot-message {
    background: var(--white);
    align-self: flex-start;
    border: 1px solid var(--border-color);
}

.user-message {
    background: var(--primary-color);
    color: var(--black);
    align-self: flex-end;
    margin-left: auto;
}

.message ul {
    margin: 10px 0;
    padding-left: 20px;
}

.message ul li {
    margin: 5px 0;
}

.chatbot-input {
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--border-color);
    background: var(--white);
}

.chatbot-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.9rem;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.chatbot-input button {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--black);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.chatbot-input button:hover {
    background: var(--accent-color);
}

/* ==================== WHATSAPP FLOAT BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    z-index: 1400;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.whatsapp-float i {
    color: var(--white);
    font-size: 1.8rem;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-dark);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
}

.whatsapp-btn {
    background: #25D366 !important;
}

.whatsapp-btn:hover {
    background: #128C7E !important;
}

/* ==================== ANIMATIONS ==================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.animate-fade-up:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-up:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .slide-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .slide-info {
        flex: none;
        max-width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .slide-title {
        font-size: 2.8rem;
    }
    
    .slide-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .story-title {
        font-size: 2.4rem;
    }
    
    .export-title {
        font-size: 2.8rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .chatbot-window {
        width: 300px;
        height: 400px;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-subtitle {
        font-size: 1.3rem;
    }
    
    .slide-content {
        padding-top: 40px;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-images {
        height: 300px;
    }
    
    .export-title {
        font-size: 2.2rem;
    }
    
    .ai-chat-header h2 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .product-detail {
        padding: 20px;
    }
    
    .chatbot-window {
        width: calc(100vw - 40px);
        right: -15px;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}




/* ==================== ENHANCED FOOTER ==================== */
.enhanced-footer {
  background: linear-gradient(135deg, #1e2a38, #243447);
  color: #ffffff;
  padding: 70px 0 30px;
  font-family: Arial, sans-serif;
}

.enhanced-footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Footer main layout */
.footer-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-main {
  font-size: 28px;
  font-weight: bold;
  color: #ffd700;
}

.logo-accent {
  color: #ffffff;
}

.logo-tagline {
  display: block;
  font-size: 12px;
  color: #cfd8dc;
}

/* Footer columns */
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffd700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #cfd8dc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ffd700;
}

/* Address */
.address-info p {
  margin: 6px 0;
  color: #cfd8dc;
  font-size: 14px;
}

.contact-info p {
  font-size: 13px;
}

/* ==================== CERTIFICATIONS ==================== */
.footer-certifications {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.footer-certifications img {
  width: 70px;
  background: #ffffff;
  padding: 6px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.footer-certifications img:hover {
  transform: scale(1.1);
}

/* Social icons */
.footer-social {
  margin-top: 40px;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: #ffd700;
  color: #1e2a38;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s;
}

.social-link:hover {
  transform: translateY(-4px);
}

/* Bottom */
.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: #cfd8dc;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-certifications {
    justify-items: center;
  }
}




.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.animate-visible {
  opacity: 1;
  transform: translateY(0);
}




/* Mobile view ke liye */
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .stats {
    flex-direction: column;
    align-items: center;
  }
}

img {
  max-width: 100%;
  height: auto;
}










/* Logo styling */
.main-logo {
    height: 50px;       /* Aap isse chota ya bada kar sakte hain */
    width: auto;        /* Aspect ratio barakar rakhne ke liye */
    margin-right: 12px; /* Text se thodi doori banane ke liye */
    object-fit: contain;
}

/* Header content ko align karne ke liye */
.logo {
    display: flex;
    align-items: center;
}