/* 
  MZ MAAZ PRODUCTS - Premium Dark Theme
*/

:root {
    --bg-dark: #f8f9fa;
    --bg-card: #ffffff;
    --text-main: #212529;
    --text-muted: #6c757d;
    --accent-red: #d92d00;
    --accent-orange: #e65c00;
    --accent-glow: rgba(220, 53, 69, 0.15);
    --border-color: rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-main);
}

.logo span {
    color: var(--accent-red);
    margin-left: 5px;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Moved text to left */
    padding-left: 4%; /* Brought even closer to the left edge */
    text-align: left; /* Align text to left */
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
}

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

/* Products Layout */
.product-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
    border-color: rgba(255, 51, 0, 0.2);
}

.product-row.reverse {
    flex-direction: row-reverse;
}

.product-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
}

.product-image-col img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
    transition: transform 0.6s ease;
}

.product-image-col:hover img.hover-zoom {
    transform: scale(1.05);
}

.haldi-img {
    max-height: 350px !important;
}

.product-info-col {
    flex: 1;
}

.product-info-col h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-main);
    letter-spacing: 1px;
}

.export-quality {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-appreciation {
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.product-features li {
    font-size: 0.95rem;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Detergent Section Variations */
.detergent-title::after {
    background: #4da6ff;
}

#detergents .export-quality {
    background: linear-gradient(90deg, #0066cc, #4da6ff);
}

#detergents .product-appreciation {
    color: #4da6ff;
}

#detergents .product-row:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(77, 166, 255, 0.2);
    border-color: rgba(77, 166, 255, 0.2);
}

/* Footer / Social */
.footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-social h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--text-main);
}

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

.social-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.03);
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--text-main);
    color: var(--bg-card);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Custom Additions */
.buy-now-container {
    margin-top: 25px;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: #ffffff !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.wholesale-notice {
    margin-top: 15px;
    display: inline-block;
    background: var(--accent-red);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem !important;
    letter-spacing: 1px !important;
    box-shadow: 0 5px 15px rgba(217, 45, 0, 0.3);
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .product-row, .product-row.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .product-features {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
