/* ============================================
   MATTRESS PARADISE - UPDATED STYLESHEET V2
   Colors: Blue #1E4D8C, Magenta #C850A0
   ============================================ */

:root {
    --primary-blue: #1E4D8C;
    --primary-magenta: #C850A0;
    --magenta-light: #E875C0;
    --magenta-dark: #A03D80;
    --dark: #1A1A2E;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --bg-cream: #FFFDF8;
    --bg-light: #F8F6F3;
    --white: #FFFFFF;
    --border: #E8E4DE;
    --gradient-primary: linear-gradient(135deg, var(--primary-magenta) 0%, var(--primary-blue) 100%);
    --gradient-magenta: linear-gradient(135deg, var(--magenta-light) 0%, var(--magenta-dark) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-magenta: 0 10px 40px rgba(200,80,160,0.25);
    --font-primary: 'DM Sans', sans-serif;
    --transition: 0.3s ease;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-primary); color: var(--text); background: var(--bg-cream); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: var(--font-primary); font-weight: 700; line-height: 1.2; color: var(--dark); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 32px; font-family: var(--font-primary); font-size: 15px; font-weight: 600;
    border: none; border-radius: var(--radius-full); cursor: pointer; transition: var(--transition);
}
.btn-primary { background: var(--gradient-magenta); color: var(--white); box-shadow: var(--shadow-magenta); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(200,80,160,0.35); }
.btn-secondary { background: var(--gradient-primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary-blue); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-3px); }
.btn-ghost { background: rgba(255,255,255,0.15); color: var(--white); border: 2px solid rgba(255,255,255,0.3); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* Floating Buttons */
.floating-buttons { position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; flex-direction: column; gap: 15px; }
.call-float-btn, .whatsapp-float-btn {
    display: flex; align-items: center; justify-content: center; width: 60px; height: 60px;
    border-radius: 50%; transition: var(--transition);
}
.call-float-btn { background: var(--gradient-primary); box-shadow: 0 6px 30px rgba(200,80,160,0.4); animation: pulse-call 2s infinite; }
.whatsapp-float-btn { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 6px 30px rgba(37,211,102,0.4); animation: pulse-wa 2s infinite; }
.call-float-btn:hover, .whatsapp-float-btn:hover { transform: scale(1.1); }
.call-float-btn svg, .whatsapp-float-btn svg { width: 28px; height: 28px; fill: white; }
@keyframes pulse-call { 0%, 100% { box-shadow: 0 6px 30px rgba(200,80,160,0.4); } 50% { box-shadow: 0 6px 50px rgba(200,80,160,0.6); } }
@keyframes pulse-wa { 0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.4); } 50% { box-shadow: 0 6px 50px rgba(37,211,102,0.6); } }

/* Top Bar */
.top-bar { background: var(--dark); padding: 10px 0; font-size: 13px; color: rgba(255,255,255,0.9); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-left { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.top-bar-left a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); }
.top-bar-left a:hover { color: var(--magenta-light); }
.top-bar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* Header - Glassmorphism */
.header {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,246,243,0.95));
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    position: sticky; top: 0; z-index: 1000; transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
.header-main { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.logo { display: flex; align-items: center; gap: 15px; }
.logo-img { width: 75px; height: 75px; border-radius: 50%; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); transition: var(--transition); }
.logo:hover .logo-img { transform: rotate(5deg) scale(1.05); }
.logo-text h1 { font-size: 26px; font-weight: 800; color: var(--primary-blue); }
.logo-text span { font-size: 12px; color: var(--primary-magenta); font-weight: 500; }
.nav-menu { display: flex; gap: 40px; }
.nav-menu a { font-size: 15px; font-weight: 600; color: var(--text); position: relative; padding: 8px 0; }
.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gradient-magenta); transition: var(--transition); }
.nav-menu a:hover { color: var(--primary-magenta); }
.nav-menu a:hover::after { width: 100%; }

/* Hero Section */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: #1a1a2e; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; display: flex; transition: transform 0.8s cubic-bezier(0.4,0,0.2,1); width: 100%; height: 100%; }
.hero-slide { min-width: 100%; width: 100%; height: 100%; position: relative; flex-shrink: 0; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.5) 50%, rgba(26,26,46,0.3) 100%);
    display: flex; align-items: center;
}
.hero-content { position: relative; z-index: 10; max-width: 700px; padding: 40px 60px; color: var(--white); }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2); padding: 12px 24px;
    border-radius: var(--radius-full); font-size: 14px; font-weight: 600; margin-bottom: 25px;
}
.hero-content h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero-content h2 span { background: var(--gradient-magenta); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: clamp(1rem, 2vw, 1.125rem); color: rgba(255,255,255,0.9); margin-bottom: 35px; line-height: 1.8; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 15px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 50px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat h4 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; background: var(--gradient-magenta); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat p { font-size: 13px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
.slider-nav { position: absolute; bottom: 40px; left: 60px; display: flex; align-items: center; gap: 20px; z-index: 10; }
.slider-dots { display: flex; gap: 10px; }
.slider-dot { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); }
.slider-dot.active { width: 50px; border-radius: 7px; background: var(--gradient-magenta); }
.slider-arrows { display: flex; gap: 10px; }
.slider-arrow {
    width: 55px; height: 55px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%; color: white; font-size: 20px; cursor: pointer; backdrop-filter: blur(10px); transition: var(--transition);
}
.slider-arrow:hover { background: var(--gradient-magenta); border-color: transparent; transform: scale(1.1); }

/* Trust Bar */
.trust-bar { background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,246,243,0.95)); backdrop-filter: blur(10px); padding: 50px 0; border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 25px; }
.trust-item {
    display: flex; align-items: center; gap: 18px; padding: 20px;
    border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(200,80,160,0.1), rgba(30,77,140,0.1));
    border: 1px solid rgba(200,80,160,0.15); transition: var(--transition);
}
.trust-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.trust-icon {
    width: 65px; height: 65px; min-width: 65px; display: flex; align-items: center; justify-content: center;
    background: var(--gradient-primary); border-radius: var(--radius-md);
}
.trust-icon svg { width: 32px; height: 32px; fill: white; }
.trust-icon img { width: 40px; height: 40px; object-fit: contain; }
.trust-info h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.trust-info p { font-size: 13px; color: var(--text-muted); }

/* Section Styling */
section { padding: 100px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(200,80,160,0.15), rgba(30,77,140,0.15));
    color: var(--primary-magenta); padding: 12px 28px; border-radius: var(--radius-full);
    font-size: 14px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;
    border: 1px solid rgba(200,80,160,0.2);
}
.section-header h2 { margin-bottom: 20px; }
.section-header h2 span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-header p { font-size: 17px; color: var(--text-light); }

/* Products Section */
.products-section { background: var(--bg-light); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.product-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: 0.5s cubic-bezier(0.4,0,0.2,1); position: relative;
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.product-image { position: relative; height: 220px; overflow: hidden; background: linear-gradient(135deg, #f8f8f8, #f0f0f0); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-badge {
    position: absolute; top: 15px; left: 15px; background: var(--gradient-magenta); color: white;
    padding: 8px 16px; border-radius: var(--radius-full); font-size: 12px; font-weight: 700; text-transform: uppercase;
}
.warranty-label {
    position: absolute; top: 15px; right: 15px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    backdrop-filter: blur(10px); border: 1px solid rgba(200,80,160,0.2);
    color: var(--primary-magenta); padding: 8px 14px; border-radius: var(--radius-md);
    font-size: 11px; font-weight: 700; display: flex; align-items: center; gap: 6px;
}
.warranty-label svg { width: 16px; height: 16px; fill: var(--primary-magenta); }
.product-info { padding: 25px; }
.product-category { font-size: 12px; color: var(--primary-magenta); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.product-info h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.product-info p { font-size: 14px; color: var(--text-light); margin-bottom: 18px; line-height: 1.6; }
.product-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.product-feature {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, rgba(200,80,160,0.08), rgba(30,77,140,0.08));
    padding: 8px 14px; border-radius: var(--radius-full); font-size: 12px; font-weight: 500;
    color: var(--text); border: 1px solid rgba(200,80,160,0.1);
}
.product-feature svg { width: 14px; height: 14px; fill: var(--primary-magenta); }
.product-cta { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.product-cta .btn { padding: 12px 20px; font-size: 13px; }
.product-cta .btn-wa {
    width: 46px; height: 46px; padding: 0; border-radius: 50%;
    background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(18,140,126,0.1));
    border: 1px solid rgba(37,211,102,0.2); display: flex; align-items: center; justify-content: center;
}
.product-cta .btn-wa svg { width: 22px; height: 22px; fill: #25D366; }
.product-cta .btn-wa:hover { background: linear-gradient(135deg, #25D366, #128C7E); }
.product-cta .btn-wa:hover svg { fill: white; }
.view-all-wrapper { text-align: center; margin-top: 50px; }

/* About Section */
.about-section { background: var(--white); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-main-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-main-image img { width: 100%; height: 500px; object-fit: cover; transition: 0.5s ease; }
.about-main-image:hover img { transform: scale(1.03); }
.about-floating-card {
    position: absolute; bottom: -30px; right: -30px; background: var(--gradient-magenta);
    color: white; padding: 30px 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-magenta); text-align: center;
}
.about-floating-card h4 { font-size: 42px; font-weight: 800; color: white; }
.about-floating-card p { color: rgba(255,255,255,0.9); font-size: 14px; }
.about-badge-india {
    position: absolute; top: 30px; left: -20px; background: var(--white);
    padding: 15px 25px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px;
}
.about-badge-india img { width: 40px; height: auto; }
.about-badge-india span { font-weight: 700; color: var(--dark); font-size: 14px; }
.about-content .section-badge { justify-content: flex-start; }
.about-content h2 { text-align: left; margin-bottom: 25px; }
.about-content > p { font-size: 16px; margin-bottom: 25px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 35px 0; }
.about-feature { display: flex; align-items: center; gap: 14px; }
.about-feature-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--gradient-magenta); border-radius: 50%; }
.about-feature-icon svg { width: 16px; height: 16px; fill: white; }
.about-feature span { font-size: 15px; font-weight: 600; color: var(--text); }

/* Materials Section */
.materials-section { background: linear-gradient(135deg, var(--bg-light), #EDE9E3); }
.materials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.material-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-lg); overflow: hidden; display: flex; box-shadow: var(--shadow-md); transition: var(--transition);
}
.material-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.material-image { width: 45%; min-height: 200px; overflow: hidden; }
.material-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; }
.material-card:hover .material-image img { transform: scale(1.1); }
.material-content { width: 55%; padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.material-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.material-content p { font-size: 14px; margin-bottom: 20px; color: var(--text-light); }
.material-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--gradient-primary); color: white; padding: 10px 18px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600; width: fit-content; }

/* Why Section */
.why-section { background: var(--dark); color: white; position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,80,160,0.15), transparent 70%); border-radius: 50%; }
.why-section .section-header h2 { color: white; }
.why-section .section-header p { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 1; }
.why-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); padding: 40px 30px; transition: var(--transition); position: relative; overflow: hidden;
}
.why-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gradient-primary); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.why-card:hover { background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05)); transform: translateY(-8px); }
.why-card:hover::before { transform: scaleX(1); }
.why-number { font-size: 60px; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 20px; }
.why-card h3 { font-size: 20px; font-weight: 700; color: white; margin-bottom: 15px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* Testimonials Section */
.testimonials-section { background: linear-gradient(135deg, var(--white), var(--bg-light)); overflow: hidden; }
.testimonials-wrapper { position: relative; padding: 0 50px; }
.swiper { overflow: visible !important; padding: 20px 0 60px; }
.swiper-slide { height: auto; }
.testimonial-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
    backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-lg); padding: 35px; position: relative; height: 100%;
    box-shadow: var(--shadow-md); transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.testimonial-quote { position: absolute; top: 20px; right: 25px; font-size: 70px; font-family: Georgia, serif; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.2; line-height: 1; }
.testimonial-rating { display: flex; gap: 4px; margin-bottom: 18px; }
.testimonial-rating svg { width: 20px; height: 20px; fill: #FFC107; }
.testimonial-card > p { font-size: 15px; font-style: italic; color: var(--text); line-height: 1.8; margin-bottom: 25px; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-avatar { width: 55px; height: 55px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; font-weight: 700; }
.testimonial-info h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.testimonial-info span { font-size: 13px; color: var(--text-muted); }
.swiper-button-prev, .swiper-button-next { width: 50px !important; height: 50px !important; background: var(--gradient-primary); border-radius: 50%; box-shadow: var(--shadow-magenta); }
.swiper-button-prev::after, .swiper-button-next::after { font-size: 18px !important; color: white; font-weight: bold; }
.swiper-button-prev { left: 0 !important; }
.swiper-button-next { right: 0 !important; }
.swiper-pagination { bottom: 0 !important; }
.swiper-pagination-bullet { width: 12px; height: 12px; background: var(--border); opacity: 1; }
.swiper-pagination-bullet-active { width: 35px; border-radius: 6px; background: var(--gradient-magenta); }

/* CTA Section */
.cta-section { background: var(--gradient-primary); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -20%; width: 400px; height: 400px; background: rgba(255,255,255,0.1); border-radius: 50%; }
.cta-content { position: relative; z-index: 1; }
.cta-section h2 { color: white; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 15px; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 35px; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }

/* Contact Section */
.contact-section { background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px; }
.contact-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
    backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-lg); padding: 45px 35px; text-align: center;
    box-shadow: var(--shadow-md); transition: var(--transition); position: relative; overflow: hidden;
}
.contact-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: var(--gradient-primary); transform: scaleX(0); transition: var(--transition); }
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.contact-card:hover::before { transform: scaleX(1); }
.contact-icon { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; background: var(--gradient-primary); border-radius: 50%; margin: 0 auto 25px; transition: var(--transition); }
.contact-icon svg { width: 35px; height: 35px; fill: white; }
.contact-card:hover .contact-icon { transform: rotate(-10deg) scale(1.1); }
.contact-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 15px; }
.contact-card p { font-size: 15px; margin-bottom: 15px; color: var(--text-light); }
.contact-card a.contact-link { display: block; font-size: 22px; font-weight: 700; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-top: 10px; }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 400px; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* Footer */
.footer { background: linear-gradient(135deg, var(--dark), #0D0D1A); color: white; padding: 80px 0 30px; }

/* Process Section */
.process-section { background: linear-gradient(135deg, var(--white), var(--bg-light)); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 60px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, transparent, var(--primary-magenta), var(--primary-blue), transparent); z-index: 0; }
.process-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 30px; text-align: center; position: relative; z-index: 1; box-shadow: var(--shadow-md); transition: var(--transition); }
.process-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.process-number { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background: var(--gradient-primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }
.process-icon { width: 80px; height: 80px; margin: 20px auto 20px; background: linear-gradient(135deg, rgba(200,80,160,0.1), rgba(30,77,140,0.1)); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.process-icon svg { width: 36px; height: 36px; fill: var(--primary-magenta); }
.process-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.process-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* FAQ Section */
.faq-section { background: var(--bg-light); }
.faq-grid { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item.active { box-shadow: var(--shadow-lg); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 25px 30px; cursor: pointer; transition: var(--transition); }
.faq-question:hover { background: linear-gradient(135deg, rgba(200,80,160,0.05), rgba(30,77,140,0.05)); }
.faq-question h3 { font-size: 16px; font-weight: 600; color: var(--dark); margin: 0; flex: 1; padding-right: 20px; }
.faq-toggle { width: 30px; height: 30px; background: var(--gradient-primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 300; transition: var(--transition); }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 30px 25px; font-size: 15px; color: var(--text-light); line-height: 1.8; margin: 0; }

/* Enquiry Section */
.enquiry-section { background: linear-gradient(135deg, var(--dark) 0%, #0D0D1A 100%); color: white; padding: 100px 0; }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.enquiry-content .section-badge { background: linear-gradient(135deg, rgba(200,80,160,0.3), rgba(30,77,140,0.3)); border-color: rgba(255,255,255,0.2); }
.enquiry-content h2 { color: white; text-align: left; margin-bottom: 20px; }
.enquiry-content h2 span { background: var(--gradient-magenta); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.enquiry-content > p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 30px; }
.enquiry-benefits { display: flex; flex-direction: column; gap: 15px; margin-bottom: 40px; }
.enquiry-benefit { display: flex; align-items: center; gap: 12px; }
.enquiry-benefit svg { width: 24px; height: 24px; fill: #25D366; }
.enquiry-benefit span { font-size: 15px; color: rgba(255,255,255,0.9); }
.enquiry-contact p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 10px; }
.enquiry-phone { display: inline-flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 700; color: white; }
.enquiry-phone svg { width: 24px; height: 24px; fill: var(--magenta-light); }
.enquiry-phone:hover { color: var(--magenta-light); }

/* Enquiry Form */
.enquiry-form-wrapper { background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 40px; }
.enquiry-form { display: flex; flex-direction: column; gap: 20px; }
.honeypot { position: absolute; left: -9999px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9); }
.form-group input, .form-group select, .form-group textarea { padding: 16px 20px; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-md); background: rgba(255,255,255,0.05); color: white; font-family: var(--font-primary); font-size: 15px; transition: var(--transition); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-magenta); background: rgba(255,255,255,0.1); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark); color: white; }
.form-submit { width: 100%; margin-top: 10px; }
.form-note { font-size: 12px; color: rgba(255,255,255,0.5); text-align: center; margin-top: 15px; }
.form-success { text-align: center; padding: 40px 20px; }
.success-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #25D366, #128C7E); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; color: white; margin: 0 auto 25px; }
.form-success h3 { color: white; font-size: 24px; margin-bottom: 15px; }
.form-success p { color: rgba(255,255,255,0.8); margin-bottom: 25px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo { margin-bottom: 25px; }
.footer-brand .logo-text h1 { color: white; }
.footer-brand .logo-text span { color: var(--magenta-light); }
.footer-brand > p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 30px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; transition: var(--transition); }
.footer-social a:hover { background: var(--gradient-magenta); border-color: transparent; transform: translateY(-5px); }
.footer-social svg { width: 20px; height: 20px; fill: white; }
.footer-column h4 { font-size: 16px; font-weight: 700; background: var(--gradient-magenta); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 28px; }
.footer-links li { margin-bottom: 14px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: white; padding-left: 5px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.footer-contact-item svg { width: 20px; height: 20px; min-width: 20px; fill: var(--magenta-light); margin-top: 2px; }
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--magenta-light); }
.footer-bottom a:hover { color: white; }
.footer-india { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-india img { width: 24px; height: auto; }

/* Responsive */
@media (max-width: 1200px) { 
    .products-grid { grid-template-columns: repeat(3, 1fr); } 
    .why-grid { grid-template-columns: repeat(2, 1fr); } 
}

@media (max-width: 992px) { 
    .nav-menu { display: none; } 
    .trust-grid { grid-template-columns: repeat(3, 1fr); } 
    .about-grid { grid-template-columns: 1fr; gap: 50px; } 
    .materials-grid { grid-template-columns: 1fr; } 
    .material-card { flex-direction: column; } 
    .material-image, .material-content { width: 100%; } 
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* Header button fix */
    .header-actions .btn { padding: 10px 18px; font-size: 13px; }
    
    /* Process section */
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    
    /* Enquiry section */
    .enquiry-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) { 
    /* Top bar */
    .top-bar { padding: 8px 0; font-size: 12px; }
    .top-bar .container { flex-direction: column; gap: 8px; text-align: center; } 
    .top-bar-left { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 12px; } 
    .top-bar-right { flex-wrap: wrap; justify-content: center; gap: 10px; font-size: 11px; }
    
    /* Header */
    .header { position: sticky; top: 0; z-index: 1000; }
    .header-main { padding: 8px 0; }
    .logo-img { width: 50px; height: 50px; } 
    .logo-text h1 { font-size: 16px; } 
    .logo-text span { font-size: 10px; }
    .logo { gap: 10px; }
    .header-actions .btn { padding: 8px 14px; font-size: 12px; gap: 6px; }
    .header-actions .btn svg { width: 14px; height: 14px; }
    
    /* Hero Section - CRITICAL FIX */
    .hero { 
        min-height: auto; 
        height: auto;
        position: relative;
        overflow: hidden;
    }
    .hero-slider { 
        position: relative; 
        height: auto;
    }
    .hero-slide { 
        min-width: 100%; 
        height: auto;
        position: relative;
    }
    .hero-slide img { 
        width: 100%; 
        height: 400px; 
        object-fit: cover; 
    }
    .hero-overlay { 
        position: absolute;
        inset: 0;
        padding: 20px;
    }
    .hero-content { 
        padding: 15px; 
        max-width: 100%; 
    }
    .hero-badge { padding: 8px 16px; font-size: 12px; margin-bottom: 15px; }
    .hero-content h2 { font-size: 1.5rem; margin-bottom: 12px; line-height: 1.3; }
    .hero-content p { font-size: 13px; margin-bottom: 20px; line-height: 1.6; display: none; }
    .hero-buttons { flex-direction: column; gap: 10px; } 
    .hero-buttons .btn { padding: 12px 20px; font-size: 13px; width: 100%; justify-content: center; }
    .hero-stats { 
        gap: 20px; 
        margin-top: 25px; 
        padding-top: 20px; 
        justify-content: space-between;
    }
    .hero-stat h4 { font-size: 1.3rem; }
    .hero-stat p { font-size: 10px; }
    .slider-nav { 
        left: 15px; 
        bottom: 15px; 
        gap: 10px;
    }
    .slider-dots { gap: 6px; }
    .slider-dot { width: 10px; height: 10px; }
    .slider-dot.active { width: 30px; }
    .slider-arrows { display: none; }
    
    /* Trust bar */
    .trust-bar { padding: 30px 0; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 15px; } 
    .trust-item { padding: 15px; gap: 12px; }
    .trust-icon { width: 50px; height: 50px; min-width: 50px; }
    .trust-icon svg { width: 24px; height: 24px; }
    .trust-icon img { width: 30px; height: 30px; }
    .trust-info h4 { font-size: 13px; }
    .trust-info p { font-size: 11px; }
    
    /* Sections */
    section { padding: 50px 0; }
    .section-header { margin-bottom: 40px; }
    .section-badge { padding: 8px 18px; font-size: 12px; }
    .section-header h2 { font-size: 1.5rem; }
    .section-header p { font-size: 14px; }
    
    /* Products */
    .products-grid { grid-template-columns: 1fr 1fr; gap: 15px; } 
    .product-image { height: 160px; }
    .product-badge { padding: 5px 10px; font-size: 10px; top: 10px; left: 10px; }
    .warranty-label { padding: 5px 8px; font-size: 9px; top: 10px; right: 10px; }
    .warranty-label svg { width: 12px; height: 12px; }
    .product-info { padding: 15px; }
    .product-category { font-size: 10px; }
    .product-info h3 { font-size: 14px; margin-bottom: 6px; }
    .product-info p { font-size: 12px; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .product-features { gap: 5px; margin-bottom: 12px; }
    .product-feature { padding: 5px 8px; font-size: 10px; }
    .product-feature svg { width: 10px; height: 10px; }
    .product-cta { gap: 8px; }
    .product-cta .btn { padding: 10px 14px; font-size: 11px; }
    .product-cta .btn-wa { width: 40px; height: 40px; }
    .product-cta .btn-wa svg { width: 18px; height: 18px; }
    
    /* Why section */
    .why-grid { grid-template-columns: 1fr; gap: 20px; } 
    .why-card { padding: 25px 20px; }
    .why-number { font-size: 40px; margin-bottom: 12px; }
    .why-card h3 { font-size: 16px; }
    .why-card p { font-size: 13px; }
    
    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 20px; } 
    .contact-card { padding: 30px 20px; }
    .contact-icon { width: 60px; height: 60px; }
    .contact-icon svg { width: 28px; height: 28px; }
    .contact-card h3 { font-size: 18px; }
    .map-wrapper { height: 300px; }
    
    /* Footer */
    .footer { padding: 50px 0 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; } 
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; } 
    
    /* CTA */
    .cta-section { padding: 50px 0; }
    .cta-section h2 { font-size: 1.4rem; }
    .cta-section p { font-size: 14px; margin-bottom: 25px; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 10px; } 
    .cta-buttons .btn { width: 100%; max-width: 280px; }
    
    /* Testimonials */
    .testimonials-wrapper { padding: 0; } 
    .testimonial-card { padding: 25px 20px; }
    .testimonial-quote { font-size: 50px; }
    .testimonial-card > p { font-size: 13px; }
    .swiper-button-prev, .swiper-button-next { display: none; }
    
    /* Materials */
    .material-image { min-height: 180px; }
    .material-content { padding: 20px; }
    .material-content h3 { font-size: 18px; }
    .material-tag { padding: 8px 14px; font-size: 11px; }
    
    /* About */
    .about-main-image img { height: 300px; }
    .about-floating-card { padding: 20px 30px; bottom: -20px; right: 10px; }
    .about-floating-card h4 { font-size: 32px; }
    .about-features { grid-template-columns: 1fr; gap: 12px; }
    
    /* FAQ section */
    .faq-question { padding: 20px; }
    .faq-question h3 { font-size: 14px; }
    .faq-answer p { padding: 0 20px 20px; font-size: 13px; }
    
    /* Enquiry section */
    .enquiry-section { padding: 60px 0; }
    .enquiry-form-wrapper { padding: 25px; }
    .form-group input, .form-group select, .form-group textarea { padding: 14px 16px; font-size: 14px; }
    
    /* Process section */
    .process-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .process-card { padding: 30px 20px; }
    .process-icon { width: 60px; height: 60px; }
    .process-icon svg { width: 28px; height: 28px; }
    .process-card h3 { font-size: 16px; }
    .process-card p { font-size: 13px; }
    
    /* Floating buttons */
    .floating-buttons { bottom: 15px; right: 15px; gap: 10px; } 
    .call-float-btn, .whatsapp-float-btn { width: 50px; height: 50px; } 
    .call-float-btn svg, .whatsapp-float-btn svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) { 
    .container { padding: 0 15px; }
    
    /* Top bar */
    .top-bar-left { flex-direction: column; gap: 5px; }
    .top-bar-left a { font-size: 11px; }
    
    /* Header */
    .logo-img { width: 45px; height: 45px; } 
    .logo-text h1 { font-size: 14px; }
    .logo-text span { font-size: 9px; }
    .header-actions .btn { padding: 6px 12px; font-size: 11px; }
    
    /* Hero */
    .hero-slide img { height: 350px; }
    .hero-content h2 { font-size: 1.3rem; }
    .hero-stats { flex-direction: row; gap: 15px; }
    .hero-stat { text-align: center; flex: 1; }
    .hero-stat h4 { font-size: 1.1rem; }
    
    /* Trust */
    .trust-grid { grid-template-columns: 1fr; } 
    .trust-item { justify-content: flex-start; }
    
    /* Products */
    .products-grid { grid-template-columns: 1fr; gap: 20px; } 
    .product-image { height: 200px; }
    .product-info h3 { font-size: 16px; }
    .product-info p { display: block; -webkit-line-clamp: 3; }
    
    /* About */
    .about-badge-india { display: none; } 
    .about-floating-card { position: relative; bottom: auto; right: auto; margin-top: 15px; }
    .about-content h2 { font-size: 1.4rem; }
    
    /* Section headers */
    .section-header h2 { font-size: 1.3rem; }
    
    /* Process */
    .process-grid { grid-template-columns: 1fr; }
    
    /* Enquiry */
    .enquiry-phone { font-size: 20px; }
}
