/* ===========================
   COMLY — STYLESHEET
   Table of Contents:
   1. CSS Variables & Tokens
   2. Reset & Global Styles
   3. Typography & Utility Classes
   4. Buttons & Tags
   5. Keyframe Animations
   6. Top Bar
   7. Navbar & Mobile Menu
   8. Hero Section
   9. Marquee Strip
   10. Stats Section
   11. Products Section
   12. Handwash Section
   13. About Section
   14. B2B Section
   15. Why Us Section
   16. CTA Banner & Contact Strip
   17. Newsletter Section
   18. Footer
   19. Floating Elements (WhatsApp & Scroll Top)
   20. Responsive Design
   =========================== */

/* ---------- 1. CSS VARIABLES & TOKENS ---------- */
:root {
    /* Brand Colors */
    --green: #0a8f5e;
    --green-dark: #076b47;
    --green-deeper: #054d34;
    --green-light: #e3f7ef;
    --green-mid: #b3e8d2;
    --yellow: #f5c842;
    --yellow-light: #fef9e7;
    /* Neutrals */
    --dark: #0f1923;
    --dark-2: #1a2e3b;
    --text: #1e3a2f;
    --muted: #64748b;
    --border: #e2ede8;
    --white: #ffffff;
    --off-white: #f8fbf9;
    /* Border Radius */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 143, 94, .10);
    --shadow-md: 0 8px 32px rgba(10, 143, 94, .14);
    --shadow-lg: 0 20px 60px rgba(10, 143, 94, .18);
    --shadow-xl: 0 28px 72px rgba(10, 143, 94, .22);
    /* Typography */
    --font-head: 'Bricolage Grotesque', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    /* Transitions */
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 2. RESET & GLOBAL STYLES ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

/* ---------- 3. TYPOGRAPHY & UTILITY CLASSES ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: 100px 0;
}

.section--tight {
    padding: 64px 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-light);
    padding: 5px 14px;
    border-radius: 99px;
    border: 1px solid var(--green-mid);
}

.tag::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    margin-top: 14px;
}

.section-head p {
    font-size: 17px;
    color: var(--muted);
    margin-top: 12px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

/* ---------- 4. BUTTONS & TAGS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--r-lg);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: var(--green);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--green);
}
.btn--outline:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}

.btn--dark {
    background: var(--dark);
    color: var(--white);
}
.btn--dark:hover {
    background: var(--dark-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--yellow {
    background: var(--yellow);
    color: var(--dark);
    font-weight: 600;
}
.btn--yellow:hover {
    background: #e5b930;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 200, 66, .35);
}

/* ---------- 5. KEYFRAME ANIMATIONS ---------- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}
@keyframes floatSlow {
    0%,100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}
@keyframes pulse-dot {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: .6; }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
    0% { opacity: 0; transform: scale(0.9); }
    70% { transform: scale(1.03); }
    100% { opacity: 1; transform: scale(1); }
}

.animate {
    opacity: 0;
}
.animate.visible {
    animation: fadeUp .7s ease forwards;
}

/* ---------- 6. TOP BAR ---------- */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,.85);
    font-size: 13px;
    padding: 9px 0;
    text-align: center;
    position: relative;
}
.topbar strong {
    color: var(--yellow);
    font-weight: 600;
}
.topbar a {
    color: var(--yellow);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.topbar-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,.5);
    font-size: 18px;
    cursor: pointer;
}

/* ---------- 7. NAVBAR & MOBILE MENU ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}
.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.nav-inner {
    display: flex;
    align-items: center;
    height: 68px;
}
.nav-logo img {
    height: 46px;
    width: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 44px;
    flex: 1;
}
.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    padding: 8px 14px;
    border-radius: var(--r-sm);
    transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
    background: var(--green-light);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}
.nav-contact {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-contact svg {
    width: 15px;
    height: 15px;
    color: var(--green);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    flex-direction: column;
    padding: 24px;
    animation: slideDown .25s ease;
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.mobile-menu-close {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
}
.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-menu nav a {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.mobile-menu .mobile-cta {
    margin-top: 32px;
}

/* ---------- 8. HERO SECTION ---------- */
.hero {
    background: linear-gradient(135deg, #f0faf5 0%, #e8f8f0 40%, #f8fbf9 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -140px;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(10,143,94,.10) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,200,66,.14) 0%, transparent 70%);
    pointer-events: none;
}
.hero-decor-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero-decor-circle.c1 {
    width: 380px;
    height: 380px;
    border: 2px solid rgba(10,143,94,.10);
    top: 8%;
    right: 6%;
    animation: floatSlow 7s ease-in-out infinite;
}
.hero-decor-circle.c2 {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(245,200,66,.18);
    bottom: 12%;
    right: 16%;
    animation: floatSlow 9s ease-in-out infinite reverse;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}
.hero-left {
    animation: fadeUp .8s .1s ease both;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--green-mid);
    border-radius: 99px;
    padding: 7px 18px 7px 9px;
    font-size: 13px;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.hero-badge span.dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2s infinite;
}
.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(40px, 5.8vw, 72px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -1px;
    color: var(--text);
}
.hero h1 .accent {
    color: var(--green);
    position: relative;
    display: inline-block;
}
.hero h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--yellow);
    border-radius: 3px;
    opacity: .55;
}
.hero-sub {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    margin: 24px 0 36px;
    max-width: 460px;
}
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 52px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}
.hero-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
}
.hero-right {
    position: relative;
    animation: fadeUp .8s .3s ease both;
}
.hero-products-float {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.hero-prod-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 24px 18px 18px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1.5px solid rgba(10,143,94,.08);
    cursor: default;
}
.hero-prod-card:nth-child(odd) {
    animation: float 5s ease-in-out infinite;
}
.hero-prod-card:nth-child(even) {
    animation: float 5s 1.5s ease-in-out infinite;
    margin-top: 28px;
}
.hero-prod-card img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin: 0 auto 14px;
    transition: transform .4s ease;
}
.hero-prod-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.hero-prod-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-mid);
}
.hero-prod-card:hover img {
    transform: scale(1.1);
}

/* ---------- 9. MARQUEE STRIP ---------- */
.marquee-strip {
    background: var(--green);
    padding: 15px 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 38px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}
.marquee-item svg {
    width: 17px;
    height: 17px;
    opacity: .7;
}
.marquee-sep {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    margin: 0 4px;
}

/* ---------- 10. STATS SECTION ---------- */
.stats-section {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    text-align: center;
    padding: 56px 24px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child {
    border-right: none;
}
.stat-num {
    font-family: var(--font-head);
    font-size: 46px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}
.stat-num sup {
    font-size: 24px;
}
.stat-label {
    font-size: 14px;
    color: var(--muted);
    margin-top: 8px;
}

/* ---------- 11. PRODUCTS SECTION ---------- */
.products-section {
    background: var(--white);
    position: relative;
}
.products-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10,143,94,.03) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}
.product-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 52px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.filter-btn {
    padding: 10px 24px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
    border: 1.5px solid var(--border);
    color: var(--muted);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.filter-btn.active,
.filter-btn:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-light);
}
.filter-btn.active {
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(10,143,94,.1);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}
.product-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: var(--green-mid);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    z-index: 2;
}
.product-card-img {
    background: linear-gradient(180deg, #fafdfb 0%, #f3faf6 100%);
    padding: 28px 20px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.product-card-img::before {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 50px;
    background: radial-gradient(ellipse, rgba(10,143,94,.10) 0%, transparent 70%);
}
.product-card-img img {
    width: 155px;
    height: 155px;
    object-fit: contain;
    margin: 0 auto;
    transition: transform .45s ease;
    position: relative;
    z-index: 1;
}
.product-card:hover .product-card-img img {
    transform: scale(1.12);
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: .06em;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(10,143,94,.2);
}
.product-badge.new {
    background: var(--yellow);
    color: var(--dark);
}
.product-badge.best {
    background: #e74c3c;
    color: #fff;
}
.product-info {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 6px;
}
.product-name {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
}
.product-desc {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
    line-height: 1.55;
    flex: 1;
}
.product-actions {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}
.product-actions .btn-view {
    flex: none;
    padding: 11px 28px;
    border-radius: var(--r-sm);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    border: 1.5px solid var(--border);
    color: var(--muted);
    background: transparent;
    text-align: center;
}
.product-actions .btn-view:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-light);
}

/* ---------- 12. HANDWASH SECTION ---------- */
.handwash-section {
    background: linear-gradient(135deg, var(--dark) 0%, #0d2b1e 100%);
    position: relative;
    overflow: hidden;
}
.handwash-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(10,143,94,.28) 0%, transparent 60%);
}
.handwash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.handwash-left .tag {
    background: rgba(10,143,94,.2);
    border-color: rgba(10,143,94,.3);
    color: var(--green-mid);
}
.handwash-left .tag::before {
    background: var(--green-mid);
}
.handwash-left h2 {
    font-family: var(--font-head);
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-top: 16px;
}
.handwash-left h2 span {
    color: var(--yellow);
}
.handwash-left p {
    font-size: 16px;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-top: 18px;
    max-width: 430px;
}
.handwash-variants {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.variant-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 99px;
    padding: 9px 20px;
    color: rgba(255,255,255,.85);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.variant-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.variant-chip:hover {
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.28);
}
.handwash-left .ctas {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.handwash-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: end;
}
.hw-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--r-md);
    padding: 28px 16px 22px;
    text-align: center;
    transition: var(--transition);
}
.hw-card:nth-child(2) {
    transform: translateY(-24px);
}
.hw-card:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(10,143,94,.45);
    transform: translateY(-6px);
}
.hw-card:nth-child(2):hover {
    transform: translateY(-30px);
}
.hw-card img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin: 0 auto 16px;
}
.hw-card span {
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,.85);
    font-weight: 600;
}
.hw-card em {
    display: block;
    font-style: normal;
    font-size: 12px;
    color: rgba(255,255,255,.45);
    margin-top: 4px;
}

/* ---------- 13. ABOUT SECTION ---------- */
.about-section {
    background: var(--off-white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-img-collage {
    position: relative;
    height: 500px;
}
.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 80%;
    object-fit: cover;
    border-radius: var(--r-xl);
}
.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 54%;
    height: 58%;
    object-fit: cover;
    border-radius: var(--r-xl);
    border: 6px solid var(--white);
}
.about-badge-float {
    position: absolute;
    bottom: 52px;
    left: 0;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 16px 22px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
}
.about-badge-float .num {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}
.about-badge-float .lbl {
    font-size: 12px;
    color: var(--muted);
}
.about-right h2 {
    font-family: var(--font-head);
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    margin-top: 16px;
}
.about-right p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    margin-top: 18px;
}
.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
.pillar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 22px;
}
.pillar-icon {
    width: 40px;
    height: 40px;
    background: var(--green-light);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.pillar-icon svg {
    width: 20px;
    height: 20px;
    color: var(--green);
}
.pillar h4 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}
.pillar p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
    line-height: 1.55;
}

/* ---------- 14. B2B SECTION ---------- */
.b2b-section {
    background: var(--white);
}
.b2b-inner {
    background: linear-gradient(135deg, #e3f7ef 0%, #d0f0e4 100%);
    border-radius: var(--r-xl);
    padding: 76px 68px;
    position: relative;
    overflow: hidden;
}
.b2b-inner::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(10,143,94,.16) 0%, transparent 70%);
}
.b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.b2b-left h2 {
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-top: 16px;
}
.b2b-left p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 16px;
}
.b2b-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}
.b2b-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}
.b2b-feature svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
}
.b2b-sectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.sector-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.sector-icon {
    width: 44px;
    height: 44px;
    background: var(--green-light);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.sector-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* ---------- 15. WHY US SECTION ---------- */
.why-section {
    background: var(--off-white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px 30px;
    transition: var(--transition);
    text-align: center;
}
.why-card:hover {
    border-color: var(--green-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.why-icon {
    width: 68px;
    height: 68px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}
.why-icon svg {
    width: 32px;
    height: 32px;
    color: var(--green);
}
.why-card h3 {
    font-family: var(--font-head);
    font-size: 21px;
    font-weight: 700;
    color: var(--text);
}
.why-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-top: 10px;
}

/* ---------- 16. CTA BANNER & CONTACT STRIP ---------- */
.cta-banner {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(10,143,94,.22) 0%, transparent 60%);
}
.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-inner h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}
.cta-inner h2 span {
    color: var(--yellow);
}
.cta-inner p {
    font-size: 17px;
    color: rgba(255,255,255,.6);
    margin-top: 16px;
}
.cta-inner .ctas {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 42px;
    flex-wrap: wrap;
}
.contact-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 68px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-md);
    padding: 22px 26px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(10,143,94,.2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--green-mid);
}
.contact-label {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.contact-value {
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
    margin-top: 2px;
}

/* ---------- 17. NEWSLETTER SECTION ---------- */
.newsletter-section {
    background: var(--green-light);
    border-top: 1px solid var(--green-mid);
    border-bottom: 1px solid var(--green-mid);
    padding: 60px 0;
}
.newsletter-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.newsletter-text {
    flex: 1;
    min-width: 260px;
}
.newsletter-text h3 {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
}
.newsletter-text p {
    font-size: 15px;
    color: var(--muted);
    margin-top: 6px;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}
.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1.5px solid var(--green-mid);
    border-radius: var(--r-md);
    font-size: 14px;
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text);
    outline: none;
}
.newsletter-form input:focus {
    border-color: var(--green);
}

/* ---------- 18. FOOTER ---------- */
footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    padding: 76px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer-brand img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}
.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255,255,255,.6);
}
.social-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}
.social-btn svg {
    width: 17px;
    height: 17px;
}
.footer-col h4 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    transition: color .2s;
}
.footer-col ul li a:hover {
    color: var(--green-mid);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 64px;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,.35);
}
.footer-bottom a {
    color: rgba(255,255,255,.5);
    transition: color .2s;
}
.footer-bottom a:hover {
    color: var(--green-mid);
}
.made-india {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,.35);
}
.made-india span {
    color: #FF9933;
}

/* ---------- 19. FLOATING ELEMENTS ---------- */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
}
.wa-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    border-radius: 99px;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(37,211,102,.35);
    transition: var(--transition);
}
.wa-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 44px rgba(37,211,102,.45);
}
.wa-btn svg {
    width: 22px;
    height: 22px;
}

.scroll-top {
    position: fixed;
    bottom: 94px;
    right: 32px;
    z-index: 998;
    width: 44px;
    height: 44px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    border: none;
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}
.scroll-top svg {
    width: 18px;
    height: 18px;
}

/* ---------- 20. RESPONSIVE DESIGN ---------- */
/* Tablets & smaller desktops (max 1200px) */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
    .product-card-img img {
        width: 135px;
        height: 135px;
    }
    .product-card-img {
        padding: 22px 14px 18px;
    }
    .product-info {
        padding: 14px 14px 16px;
    }
    .product-name {
        font-size: 15px;
    }
}

/* Laptops & small desktops (max 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .b2b-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .b2b-sectors {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-img-collage {
        height: 340px;
        max-width: 540px;
        margin: 0 auto;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .product-card-img img {
        width: 140px;
        height: 140px;
    }
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .hero-products-float {
        gap: 14px;
    }
    .hero-prod-card img {
        width: 100px;
        height: 100px;
    }
}

/* Tablets (max 768px) */
@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-right {
        display: none;
    }
    .hero {
        min-height: auto;
    }
    .hero-grid {
        padding: 60px 0 48px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .stat-item {
        border-bottom: 1px solid var(--border);
    }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }
    .stat-item:nth-child(4) {
        border-right: none;
    }
    .handwash-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .contact-strip {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .nav-links,
    .nav-contact,
    .nav-actions .btn {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .b2b-inner {
        padding: 40px 28px;
    }
    .b2b-sectors {
        grid-template-columns: 1fr 1fr;
    }
    .newsletter-inner {
        flex-direction: column;
        gap: 24px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .product-card-img img {
        width: 130px;
        height: 130px;
    }
    .product-card-img {
        padding: 20px 12px 16px;
    }
    .wa-btn span {
        display: none;
    }
    .wa-btn {
        padding: 14px;
        border-radius: 50%;
    }
    .handwash-right {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .hw-card img {
        width: 90px;
        height: 90px;
    }
    .hw-card {
        padding: 20px 10px 16px;
    }
}

/* Large smartphones (max 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .b2b-sectors {
        grid-template-columns: 1fr;
    }
    .handwash-right {
        grid-template-columns: 1fr 1fr;
    }
    .hw-card:nth-child(2) {
        transform: none;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product-card-img img {
        width: 110px;
        height: 110px;
    }
    .product-card-img {
        padding: 16px 8px 12px;
    }
    .product-info {
        padding: 12px 10px 14px;
    }
    .product-name {
        font-size: 14px;
    }
    .product-desc {
        font-size: 11px;
    }
    .about-pillars {
        grid-template-columns: 1fr;
    }
    .stat-num {
        font-size: 34px;
    }
}


/* Mobile‑first adjustment for the About image collage */
@media (max-width: 768px) {
    .about-img-collage {
        /* Override the 340px fixed height – use relative layout */
        height: auto !important;
        max-width: 100% !important;
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: static;   /* kills absolute positioning context */
    }

    .about-img-main,
    .about-img-accent {
        position: static !important;   /* become normal flow */
        width: 100% !important;
        height: auto !important;
        object-fit: contain;           /* show full image without cropping */
        border-radius: var(--r-md);
    }

    .about-img-accent {
        border: none;                  /* remove thick border on mobile */
    }

    .about-badge-float {
        position: static !important;
        margin-top: 12px;
        justify-content: center;
        width: fit-content;
        align-self: center;
    }
}

    
/* Global overflow fix */
*,
*::before,
*::after {
  max-width: 100%;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

/* Force all images and containers to stay within the viewport */
img,
video,
iframe,
embed,
object {
  max-width: 100%;
  height: auto;
}


/* ==================================================================
   CONTACT PAGE
   ================================================================== */

.contact-page-section {
  padding: 72px 0;
  background: var(--off-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Contact info cards */
.contact-info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.contact-info-content h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-info-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Quick WhatsApp button */
.btn-wa-quick {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.btn-wa-quick:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-wa-quick svg {
  width: 22px;
  height: 22px;
}

/* Enquiry form */
.contact-form-block {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
}

.contact-form-block h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-form-block .form-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: var(--green-light);
  border-radius: var(--r-md);
  margin-top: 20px;
  color: var(--green);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-block {
    padding: 24px;
  }
}


/* ==================================================================
   ABOUT US PAGE
   ================================================================== */

/* Hero Banner */
.about-hero {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--off-white) 100%);
  padding: 80px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.about-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--text);
  margin-top: 16px;
}

.about-hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* Brand Story Section */
.about-story {
  padding: 80px 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.story-content h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}

.story-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.story-content .highlight-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.6;
  border-left: 3px solid var(--green);
  padding-left: 20px;
  margin: 24px 0;
}

/* Vision & Mission Cards */
.vision-mission-section {
  padding: 80px 0;
  background: var(--off-white);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px 36px;
  transition: var(--transition);
  text-align: center;
}

.vm-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.vm-icon {
  width: 80px;
  height: 80px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.vm-icon svg {
  width: 40px;
  height: 40px;
  color: var(--green);
}

.vm-card h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.vm-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto;
}

/* Core Values */
.values-section {
  padding: 80px 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--green-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.value-card h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-image {
    order: -1;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}