/* =========================================
   JETHVA HYGIENE - MEGA PREMIUM CSS
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Core Brand Colors */
    --primary-teal: #00a896; /* Vibrant Teal */
    --primary-navy: #0f2b46; /* Deep Royal Blue */
    --white: #ffffff;
    --off-white: #f0f7f7; /* Very light teal/grey */
    --light-grey: #eef2f6; /* Soft blue-grey */
    
    /* Accents & Text */
    --accent-gold: #e2c044; /* Warmer gold for Jethva */
    --light-aqua: #e0f2f1;
    --text-dark: #1a202c;
    --text-muted: #555555;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    --gradient-light: linear-gradient(135deg, var(--white) 0%, var(--light-aqua) 100%);
    
    /* Shadows & Transitions */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(15, 43, 70, 0.08); /* Navy shadow */
    --shadow-lg: 0 20px 40px rgba(0, 168, 150, 0.15); /* Teal shadow */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    background-color: #fcfcfc;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-navy);
    font-weight: 700;
}

a { text-decoration: none; transition: var(--transition-fast); }

/* --- Global Utilities & Buttons --- */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--off-white); }
.bg-gradient { background: var(--gradient-primary); color: var(--white); }

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradient-primary);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: var(--primary-navy);
    z-index: -1;
    transition: var(--transition-slow);
}

.btn-primary:hover::before { width: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--white); }

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    box-shadow: none;
}
.btn-outline:hover::before { background: var(--primary-navy); }
.btn-outline:hover { color: var(--white); border-color: transparent; }

/* --- Top Bar --- */
.top-bar {
    background: var(--primary-navy);
    color: var(--light-aqua);
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #1a3c5e;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left span { margin-right: 25px; display: inline-flex; align-items: center; gap: 8px; }
.top-bar-left i { color: var(--primary-teal); }
.top-bar-right a { color: var(--light-aqua); margin-left: 15px; font-size: 16px; }
.top-bar-right a:hover { color: var(--primary-teal); transform: scale(1.1); }

/* --- Header / Sticky Nav --- */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}
header.scrolled {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
.logo a { display: flex; align-items: center; gap: 15px; }
.logo img { height: 65px; object-fit: contain; mix-blend-mode: multiply; transition: var(--transition-fast); }
header.scrolled .logo img { height: 55px; }
.logo-text { display: flex; flex-direction: column; justify-content: center; }
.logo-text .title { font-weight: 800; font-size: 24px; color: var(--primary-navy); line-height: 1.1; letter-spacing: 0.5px; }
.logo-text .subtitle { font-weight: 600; font-size: 11px; color: var(--primary-teal); letter-spacing: 2px; text-transform: uppercase; }


.nav-links { display: flex; list-style: none; align-items: center; gap: 25px; }
.nav-links li a {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-navy);
    position: relative;
    padding-bottom: 5px;
    white-space: nowrap;
}
.nav-links li a:not(.btn-quote)::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2px;
    background: var(--primary-teal); transition: var(--transition-fast);
}
.nav-links li a:not(.btn-quote):hover::after { width: 100%; }
.nav-links li a:not(.btn-quote):hover { color: var(--primary-teal); }

.nav-links li a.btn-quote {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 168, 150, 0.2);
    display: flex; align-items: center; justify-content: center; height: 45px;
}
.nav-links li a.btn-quote:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 168, 150, 0.4); }

/* --- Hero Section (Massive Scale) --- */
.hero { position: relative; height: 80vh; min-height: 500px; overflow: hidden; width: 100%; }
.swiper-slide { position: relative; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; }
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(15, 43, 70, 0.85) 0%, rgba(0, 168, 150, 0.7) 100%);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 10; max-width: 900px; padding: 0 20px; text-align: center; color: var(--white);
}
.hero-content h1 {
    font-size: 3.5rem; color: var(--white); line-height: 1.2; margin-bottom: 20px; font-weight: 800; text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease forwards; opacity: 0; transform: translateY(30px);
}
.hero-content p {
    font-size: 1.3rem; color: var(--white); margin-bottom: 30px; font-weight: 300;
    animation: fadeInUp 1s ease 0.3s forwards; opacity: 0; transform: translateY(30px);
}
.hero-buttons { animation: fadeInUp 1s ease 0.6s forwards; opacity: 0; transform: translateY(30px); gap: 15px; display: flex; justify-content: center; }
.hero-buttons .btn-primary { background: var(--primary-teal); padding: 12px 35px; border-radius: 50px; box-shadow: 0 4px 15px rgba(0, 168, 150, 0.4); }
.hero-buttons .btn-primary:hover { background: #008778; transform: translateY(-3px); }
.hero-buttons .btn-outline { background: transparent; border: 2px solid var(--white); box-shadow: none; }
.hero-buttons .btn-outline:hover { background: var(--white); color: var(--primary-navy); }

/* --- Company Stats (Trust Indicators) --- */
.stats-section {
    padding: 50px 0; background: var(--off-white); text-align: center;
}
.stats-grid {
    display: flex; justify-content: space-around; flex-wrap: wrap; background: var(--white); padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(15, 43, 70, 0.08);
}
.stat-box {
    margin-bottom: 20px; padding: 0 20px;
}
.stat-box:not(:first-child) { border-left: 1px solid #eee; }
.stat-box h3 { font-size: 36px; color: var(--primary-navy); margin-bottom: 5px; font-weight: 700; }
.stat-box p { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--primary-teal); text-transform: uppercase; font-size: 14px; }

/* --- Section Titles --- */
.section-header { text-align: center; margin-bottom: 50px; max-width: 700px; margin-inline: auto; }
.section-header span { color: var(--primary-teal); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; }
.section-header h2 { font-size: 42px; margin-bottom: 20px; position: relative; padding-bottom: 15px; color: var(--primary-navy); }

/* --- About & Mega Layout --- */
.about-grid { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
.about-images { flex: 1; min-width: 300px; position: relative; }
.about-img-main { width: 100%; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.about-experience {
    position: absolute; bottom: -20px; right: -20px; background: var(--gradient-primary);
    padding: 25px; border-radius: 15px; color: var(--white); text-align: center; box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border: 5px solid var(--white);
}
.about-experience h4 { font-size: 28px; font-weight: 800; margin: 0; }
.about-experience p { margin: 0; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.about-content { flex: 1; min-width: 300px; }
.about-content .section-header { text-align: left; margin-bottom: 25px; }
.about-content h2 { font-size: 38px; }
.about-content p { font-size: 16px; margin-bottom: 20px; color: var(--text-muted); line-height: 1.8; }
.feature-list { list-style: none; margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--primary-navy); }
.feature-list i { color: var(--primary-teal); background: #e0f7f4; padding: 8px; border-radius: 50%; }

/* --- Product Grid (Highly Detailed Cards) --- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.product-card {
    background: var(--white); border-radius: 20px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s ease; border: 1px solid var(--light-grey);
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--primary-teal); }
.product-badge {
    position: absolute; top: 15px; right: 15px; background: var(--primary-teal); color: white;
    padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 700;
}
.product-img { width: 100%; height: 260px; object-fit: cover; }
.product-info { padding: 25px; }
.product-info h3 { font-size: 22px; margin-bottom: 10px; color: var(--primary-navy); }
.product-info p { font-size: 14px; margin-bottom: 20px; color: #666; }
.product-features { border-top: 1px solid #eee; padding-top: 15px; margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.product-features span { display: inline-block; background: var(--off-white); padding: 5px 10px; border-radius: 5px; font-size: 12px; color: var(--primary-navy); font-weight: 600; }
.product-card .btn-primary { display: block; text-align: center; background: var(--primary-teal); padding: 12px; border-radius: 50px; box-shadow: none; }
.product-card .btn-primary::before { display: none; }
.product-card .btn-primary:hover { background: var(--primary-navy); }

/* --- Manufacturing Process Timeline --- */
.process-wrapper { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.process-step { max-width: 250px; text-align: center; }
.process-icon {
    width: 100px; height: 100px; background: var(--white); border: 3px solid var(--primary-teal);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 40px; color: var(--primary-navy); margin: 0 auto 20px; box-shadow: 0 10px 20px rgba(0,168,150,0.15); transition: var(--transition-fast);
}
.process-step:hover .process-icon { background: var(--primary-teal); color: var(--white); transform: scale(1.1); }
.process-step h4 { font-size: 20px; margin-bottom: 10px; color: var(--primary-navy); }
.process-step p { font-size: 14px; color: var(--text-muted); }

/* --- Footer (Massive & Corporate) --- */
.mega-footer { background: #0a192f; color: #8892b0; padding: 70px 0 0 0; font-family: 'Inter', sans-serif; }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-logo h2 { color: #ccd6f6; font-family: 'Poppins', sans-serif; font-weight: 800; margin: 0; }
.footer-logo span { color: var(--primary-teal); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.footer-about p { font-size: 15px; line-height: 1.8; margin-bottom: 10px; }
.footer-socials { display: flex; gap: 15px; }
.footer-socials a { display: inline-flex; width: 40px; height: 40px; background: rgba(255,255,255,0.05); text-align: center; border-radius: 50%; color: #ccd6f6; align-items: center; justify-content: center; transition: var(--transition-fast); }
.footer-socials a:hover { background: var(--primary-teal); color: var(--white); transform: translateY(-3px); }
.footer-widget h4 { color: #ccd6f6; font-size: 18px; margin-bottom: 25px; font-weight: 600; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: #8892b0; display: flex; align-items: center; transition: var(--transition-fast); }
.footer-links a i { color: var(--primary-teal); margin-right: 8px; }
.footer-links a:hover { color: var(--primary-teal); padding-left: 5px; }
.contact-widget { display: flex; gap: 15px; margin-bottom: 20px; font-size: 15px; line-height: 1.6; }
.contact-widget i { color: var(--primary-teal); margin-top: 4px; font-size: 18px; }
.contact-widget strong { color: #ccd6f6; }
.footer-bottom { background: #020c1b; padding: 25px 0; font-size: 14px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; }
.footer-bottom p { margin: 0; }
.footer-bottom .links { display: flex; gap: 15px; }
.footer-bottom .links a { color: #8892b0; transition: var(--transition-fast); }
.footer-bottom .links a:hover { color: var(--primary-teal); }

/* --- Animations --- */
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive adjustments */
@media(max-width: 991px) {
    header .menu-toggle { display: block; font-size: 28px; color: var(--primary-navy); cursor: pointer; padding: 5px; }
    header .nav-links { 
        display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; 
        background: var(--white); padding: 10px 0; box-shadow: 0 10px 20px rgba(0,0,0,0.15); gap: 0;
    }
    header .nav-links.active { display: flex; }
    header .nav-links li { width: 100%; border-bottom: 1px solid #f0f4f8; justify-content: center; }
    header .nav-links li a { display: block; width: 100%; padding: 12px 25px; text-align: center; }
    header .nav-links li:last-child { border-bottom: none; padding: 15px 0; }
    header .nav-links li a.btn-quote { display: inline-flex; width: auto; margin: 0 auto; }
    .hero { height: 60vh; }
    .hero-content h1 { font-size: 2.2rem; }
}
@media(max-width: 768px) {
    .stat-box { border-left: none !important; margin-bottom: 30px; }
    .footer-bottom .container { flex-direction: column; text-align: center; gap: 15px; }
    .process-step { max-width: 100%; }
}

/* ====================================================
   100% FIXED & PREMIUM FLOATING CONTACT BUTTONS
   ==================================================== */
.floating-btn {
    position: fixed !important;
    bottom: 30px !important;
    width: 65px !important;
    height: 65px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
    text-decoration: none !important;
    border: 3px solid #ffffff !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.floating-btn i {
    font-size: 35px !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    display: block !important;
}

.floating-btn:hover {
    transform: scale(1.15) translateY(-5px) !important;
}

.float-call {
    left: 30px !important;
    background: linear-gradient(135deg, var(--primary-navy), #1a4a75) !important;
}

.float-wa {
    right: 30px !important;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    animation: premium-pulse 2s infinite !important;
}

@keyframes premium-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8) !important; }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0) !important; }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0) !important; }
}

@media (max-width: 768px) {
    .floating-btn { bottom: 20px !important; width: 55px !important; height: 55px !important; border-width: 2px !important; }
    .floating-btn i { font-size: 30px !important; }
    .float-call { left: 20px !important; }
    .float-wa { right: 20px !important; }
}