/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #16a085;
    --primary-dark: #0e7864;
    --primary-light: #1abc9c;
    --secondary-color: #f39c12;
    --secondary-light: #f5b041;
    --accent-color: #e74c3c;
    --accent-light: #ec7063;
    --purple: #9b59b6;
    --purple-light: #bb8fce;
    --blue: #3498db;
    --blue-light: #5dade2;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --bg-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --bg-gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --bg-gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --border-color: #d5d8dc;
    --success: #27ae60;
    --error: #e74c3c;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
    --shadow-color: 0 8px 16px rgba(22, 160, 133, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 0;
}

.logo .tagline {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-menu .cta-btn {
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-menu .cta-btn::after {
    display: none;
}

.nav-menu .cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%),
                url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1600&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(243, 156, 18, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.feature-icon {
    font-size: 20px;
    color: var(--secondary-color);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
}

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

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

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

/* ==================== SECTION STYLES ==================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
    padding-bottom: 25px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.stat-item:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 16px rgba(240, 147, 251, 0.4);
}

.stat-item:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 16px rgba(79, 172, 254, 0.4);
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-item h4 {
    font-size: 36px;
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
}

/* ==================== WHY MAKHANA SECTION ==================== */
.why-makhana {
    background: var(--bg-white);
}

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

.benefit-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}

.benefit-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 16px rgba(240, 147, 251, 0.4);
}

.benefit-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 16px rgba(79, 172, 254, 0.4);
}

.benefit-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 8px 16px rgba(67, 233, 123, 0.4);
}

.benefit-card:nth-child(5) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 8px 16px rgba(250, 112, 154, 0.4);
}

.benefit-card:nth-child(6) {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    box-shadow: 0 8px 16px rgba(48, 207, 208, 0.4);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* ==================== PRODUCTS GRID ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    border-color: #667eea;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.4);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-info p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ==================== PRODUCT CARD DETAILED ==================== */
.product-card-detailed {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.product-card-detailed:hover {
    box-shadow: var(--shadow-lg);
}

.product-card-detailed img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.product-badge-secondary {
    position: absolute;
    top: 15px;
    left: 110px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(240, 147, 251, 0.4);
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
}

.spec-item {
    font-size: 14px;
    color: var(--text-dark);
}

.product-features {
    list-style: none;
    margin: 20px 0;
}

.product-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.product-actions .btn {
    flex: 1;
    padding: 10px 20px;
    font-size: 14px;
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose {
    background: var(--bg-light);
}

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

.feature-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}

.feature-item:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 16px rgba(240, 147, 251, 0.4);
}

.feature-item:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 16px rgba(79, 172, 254, 0.4);
}

.feature-item:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 8px 16px rgba(67, 233, 123, 0.4);
}

.feature-item:nth-child(5) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 8px 16px rgba(250, 112, 154, 0.4);
}

.feature-item:nth-child(6) {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    box-shadow: 0 8px 16px rgba(48, 207, 208, 0.4);
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon-large {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.feature-item h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
                url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1600&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.breadcrumb-section {
    background: var(--bg-light);
    padding: 15px 0;
}

.breadcrumb {
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ==================== PRODUCTS FILTER ==================== */
.products-section {
    background: var(--bg-light);
}

.filter-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 50px;
}

.filter-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-dark);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.category-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.category-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

/* ==================== QUALITY SECTION ==================== */
.quality-section {
    background: white;
}

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

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quality-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.quality-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quality-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== PRODUCT DETAIL PAGE ==================== */
.product-detail {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-thumb {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--primary-color);
}

.product-details-info h1 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.badge-export,
.badge-premium {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.badge-premium {
    background: var(--accent-color);
    color: white;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.stars {
    color: var(--accent-color);
    font-size: 20px;
}

.rating-text {
    color: var(--text-light);
    font-size: 14px;
}

.product-specs-table {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.product-specs-table h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.product-specs-table tr:last-child td {
    border-bottom: none;
}

.quick-enquiry-btn {
    display: flex;
    gap: 15px;
}

.quick-enquiry-btn .btn {
    flex: 1;
}

/* Product Description Section */
.product-description-section {
    max-width: 900px;
    margin: 0 auto;
}

.product-description-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-description-section h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.product-description-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.features-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-benefit-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.feature-benefit-card .icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-benefit-card h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.nutrition-table,
.product-description-section table {
    width: 100%;
    max-width: 600px;
    margin: 20px 0;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.nutrition-table table,
.product-description-section table {
    width: 100%;
    border-collapse: collapse;
}

.nutrition-table td,
.product-description-section td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.nutrition-table tr:last-child td,
.product-description-section tr:last-child td {
    border-bottom: none;
}

.ideal-for-list,
.quality-list {
    list-style: none;
    margin: 20px 0;
}

.ideal-for-list li,
.quality-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.7;
}

.ideal-for-list li::before,
.quality-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* ==================== ENQUIRY SECTION ==================== */
.enquiry-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.enquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.enquiry-info h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.enquiry-info > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.enquiry-features {
    margin: 30px 0;
}

.enquiry-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.enquiry-feature .feature-icon {
    font-size: 32px;
    color: var(--primary-color);
    min-width: 40px;
}

.enquiry-feature h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.enquiry-feature p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.contact-info-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin-top: 30px;
}

.contact-info-box h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-box p {
    font-size: 15px;
    color: var(--text-dark);
    margin: 10px 0;
}

/* ==================== FORM STYLES ==================== */
.enquiry-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44,95,45,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group a {
    color: var(--primary-color);
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-message {
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    font-size: 15px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==================== RELATED PRODUCTS ==================== */
.related-products {
    background: var(--bg-light);
    padding: 60px 0;
}

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

/* ==================== FOOTER ==================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--secondary-color);
    margin: 0 10px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-images {
        position: relative;
        top: 0;
    }

    .enquiry-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .product-details-info h1 {
        font-size: 28px;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }
}

/* ==================== ABOUT PAGE STYLES ==================== */
.about-intro {
    padding: 80px 0;
    background: var(--bg-white);
}

.mission-vision {
    background: var(--bg-light);
    padding: 80px 0;
}

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

.mvv-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
    text-align: center;
    transition: all 0.3s ease;
    color: white;
}

.mvv-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 16px rgba(240, 147, 251, 0.4);
}

.mvv-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 16px rgba(79, 172, 254, 0.4);
}

.mvv-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.mvv-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.mvv-card h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.mvv-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.what-sets-apart {
    background: var(--bg-white);
}

.our-process {
    background: var(--bg-light);
    padding: 80px 0;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
    position: relative;
    padding-left: 100px;
    transition: all 0.3s ease;
    color: white;
}

.process-step:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 16px rgba(240, 147, 251, 0.4);
}

.process-step:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 16px rgba(79, 172, 254, 0.4);
}

.process-step:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 8px 16px rgba(67, 233, 123, 0.4);
}

.process-step:nth-child(5) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 8px 16px rgba(250, 112, 154, 0.4);
}

.process-step:nth-child(6) {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    box-shadow: 0 8px 16px rgba(48, 207, 208, 0.4);
}

.process-step:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(15px) scale(1.02);
}

.step-number {
    position: absolute;
    left: 35px;
    top: 35px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.process-step h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.stats-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 80px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
}

.stat-card h3 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

.certifications {
    background: var(--bg-white);
    padding: 80px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cert-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.cert-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 16px rgba(240, 147, 251, 0.4);
}

.cert-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 16px rgba(79, 172, 254, 0.4);
}

.cert-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 8px 16px rgba(67, 233, 123, 0.4);
}

.cert-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cert-card h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.cert-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.sustainability {
    background: var(--bg-light);
    padding: 80px 0;
}

.sustainability-list {
    list-style: none;
    margin: 20px 0;
}

.sustainability-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.8;
}

.sustainability-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-cards {
    padding: 60px 0;
    background: var(--bg-light);
    margin-top: -40px;
}

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

.contact-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    color: white;
}

.contact-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 16px rgba(240, 147, 251, 0.4);
}

.contact-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 16px rgba(79, 172, 254, 0.4);
}

.contact-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 8px 16px rgba(67, 233, 123, 0.4);
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.contact-card h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.contact-card a {
    display: block;
    color: white;
    font-weight: 600;
    margin: 5px 0;
    font-size: 15px;
    text-decoration: underline;
}

.contact-card a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.main-contact-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-form-section > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-info-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-info-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.info-benefits {
    margin-bottom: 40px;
}

.info-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-benefit .benefit-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.info-benefit h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-benefit p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.business-hours {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.business-hours h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hours-list {
    font-size: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.hours-note p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.connect-social {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.connect-social h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.connect-social p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.social-icon {
    font-size: 20px;
}

.faq-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
}

.faq-item:nth-child(2) {
    border-left-color: #f093fb;
}

.faq-item:nth-child(3) {
    border-left-color: #4facfe;
}

.faq-item:nth-child(4) {
    border-left-color: #43e97b;
}

.faq-item:nth-child(5) {
    border-left-color: #fa709a;
}

.faq-item:nth-child(6) {
    border-left-color: #30cfd0;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.map-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.map-placeholder {
    height: 400px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

.map-content {
    text-align: center;
    max-width: 400px;
}

.map-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.map-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.py-60 {
    padding: 60px 0;
}

/* ==================== ADDITIONAL RESPONSIVE UPDATES ==================== */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        position: relative;
        top: 0;
    }

    .process-step {
        padding-left: 80px;
    }

    .step-number {
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }
}
