/* ==============================================
   WORLD WATERPROOFING — MAIN STYLESHEET
   Version: 1.0 | Professional Industrial Theme
   Colors: Yellow #FFD100 | Black #000 | Mapei Blue #003DA5
   ============================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Brand Colors */
    --yellow:            #FFD100;
    --yellow-dark:       #d4ad00;
    --yellow-hover:      #e8be00;
    --yellow-alpha-10:   rgba(255, 209, 0, 0.10);
    --yellow-alpha-20:   rgba(255, 209, 0, 0.20);
    --yellow-alpha-40:   rgba(255, 209, 0, 0.40);

    --black:             #000000;
    --dark:              #0a0a0a;
    --dark-gray:         #1a1a1a;
    --mid-gray:          #2b2b2b;

    --mapei-blue:        #003DA5;
    --mapei-blue-hover:  #002d7a;
    --mapei-blue-light:  #1a5cc8;
    --mapei-alpha-10:    rgba(0, 61, 165, 0.08);
    --mapei-alpha-20:    rgba(0, 61, 165, 0.20);

    /* Text Colors */
    --text-dark:         #111111;
    --text-mid:          #444444;
    --text-light:        #888888;

    /* Backgrounds */
    --bg-white:          #ffffff;
    --bg-light:          #f7f8fa;
    --bg-off:            #f0f2f5;

    /* UI */
    --border:            #e4e6ea;
    --white:             #ffffff;

    /* Typography */
    --font-h:    'Montserrat', sans-serif;
    --font-b:    'Open Sans', sans-serif;
    --font-g:    'Noto Sans Gujarati', 'Montserrat', sans-serif;

    /* Shadows */
    --shadow-xs:  0 1px 4px rgba(0,0,0,0.06);
    --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
    --shadow-md:  0 4px 24px rgba(0,0,0,0.12);
    --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
    --shadow-xl:  0 16px 64px rgba(0,0,0,0.24);

    /* Transitions */
    --t-fast:    all 0.2s ease;
    --t:         all 0.3s ease;
    --t-slow:    all 0.5s ease;

    /* Geometry */
    --r-sm:   4px;
    --r:      8px;
    --r-md:   12px;
    --r-lg:   16px;
    --r-xl:   24px;
    --r-full: 9999px;

    /* Layout */
    --max-w:   1200px;
    --px:      2rem;
    --section-py: 5rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-b);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--t); }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--r);
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--t);
    white-space: nowrap;
    line-height: 1;
}

.btn--primary {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}
.btn--primary:hover {
    background: var(--yellow-hover);
    border-color: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--yellow-alpha-40);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--mapei {
    background: var(--mapei-blue);
    color: var(--white);
    border-color: var(--mapei-blue);
}
.btn--mapei:hover {
    background: var(--mapei-blue-hover);
    border-color: var(--mapei-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--mapei-alpha-20);
}

.btn--large  { padding: 1rem 2rem; font-size: 0.95rem; }
.btn--full   { width: 100%; justify-content: center; }

/* ===== SECTION HELPERS ===== */
section { padding: var(--section-py) 0; }

.section__header { text-align: center; margin-bottom: 3.5rem; }

.section__badge {
    display: inline-block;
    background: var(--yellow-alpha-10);
    color: var(--text-dark);
    border: 1px solid var(--yellow);
    padding: 0.3rem 1rem;
    border-radius: var(--r-full);
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0.875rem;
}
.section__badge--light {
    background: rgba(255,255,255,0.08);
    color: var(--yellow);
    border-color: var(--yellow);
}

.section__title {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    line-height: 1.18;
    color: var(--text-dark);
    margin-bottom: 0.875rem;
}
.section__title--light { color: var(--white); }

.section__subtitle {
    color: var(--text-mid);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}
.section__subtitle--light { color: rgba(255,255,255,0.65); }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--yellow);
    transition: var(--t);
}
.header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
}

/* Logo */
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}
.nav__logo-icon {
    width: 40px;
    height: 40px;
    background: var(--yellow);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--black);
    flex-shrink: 0;
    transition: var(--t);
}
.nav__logo:hover .nav__logo-icon { transform: rotate(-5deg) scale(1.05); }
.nav__logo-main {
    display: block;
    font-family: var(--font-h);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nav__logo-sub {
    display: block;
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Nav Menu */
.nav__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav__link {
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    padding: 0.5rem 0.875rem;
    border-radius: var(--r-sm);
    transition: var(--t);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--yellow);
    border-radius: var(--r-full);
    transition: width 0.3s ease;
}
.nav__link:hover,
.nav__link.active { color: var(--yellow); }
.nav__link:hover::after,
.nav__link.active::after { width: 70%; }

/* Nav Actions */
.nav__actions {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-shrink: 0;
}

/* Mobile-only CTA item inside nav menu — hidden on desktop */
.nav__menu-cta { display: none; }

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 8px 9px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    transition: background 0.2s ease;
}
.nav__hamburger:hover { background: rgba(255,209,0,0.12); }
.nav__hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: var(--r-full);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

/* Industrial grid pattern */
.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,209,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,209,0,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}
/* Left yellow accent stripe */
.hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--yellow);
    z-index: 3;
}

.hero__content {
    position: relative;
    z-index: 4;
    padding: 9rem var(--px) 6rem;
    max-width: 100%;
    width: 100%;
}

.hero__content.container {
    max-width: 80% !important;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--yellow);
    color: var(--black);
    padding: 0.4rem 1.25rem;
    border-radius: var(--r-full);
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: clamp(3.2rem, 9vw, 5.5rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 0.875rem;
    line-height: 1.65;
    max-width: 620px;
}
.hero__subtitle strong { color: var(--yellow); }

.hero__gujarati {
    font-family: var(--font-g);
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    color: var(--yellow);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    word-break: break-word;
    hyphens: auto;
}

.hero__tagline {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: clamp(0.88rem, 1.8vw, 1.05rem);
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}
.hero__tagline i { color: var(--yellow); }

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Decorative element */
.hero__deco {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}
.hero__deco-text {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: 28vw;
    color: rgba(255,209,0,0.03);
    line-height: 1;
    user-select: none;
    letter-spacing: -5px;
}
.hero__deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,209,0,0.08);
}
.hero__deco-ring--1 {
    width: 300px; height: 300px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.hero__deco-ring--2 {
    width: 500px; height: 500px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem; left: 2.5rem;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-h);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--t);
}
.hero__scroll:hover { color: var(--yellow); }
.hero__scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255,209,0,0.6));
    animation: scrollPulse 2.2s ease-in-out infinite;
}
.hero__scroll-label { writing-mode: vertical-rl; }

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--yellow);
    padding: 0.875rem 0;
    overflow: hidden;
}
.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 1.5rem;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--black);
}
.trust-bar__item i { font-size: 0.9rem; }
.trust-bar__divider {
    width: 1px; height: 20px;
    background: rgba(0,0,0,0.25);
}

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

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.about__content .section__badge,
.about__content .section__title { text-align: left; }

.about__text {
    color: var(--text-mid);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about__badges {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 2rem;
}
.about__badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-left: 3px solid var(--yellow);
    border-radius: 0 var(--r) var(--r) 0;
    transition: var(--t);
}
.about__badge-item:hover {
    background: var(--yellow-alpha-10);
    transform: translateX(4px);
}
.about__badge-item strong {
    display: block;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.about__badge-item span {
    font-size: 0.82rem;
    color: var(--text-light);
}
.about__badge-icon {
    width: 44px; height: 44px;
    background: var(--yellow);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--black);
    flex-shrink: 0;
}
.about__badge-icon--blue { background: var(--mapei-blue); color: var(--white); }

.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.stat__card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--t);
}
.stat__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow);
    background: var(--yellow-alpha-10);
}
.stat__icon {
    width: 52px; height: 52px;
    background: var(--yellow);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: var(--black);
    transition: var(--t);
}
.stat__card:hover .stat__icon { transform: scale(1.1); }
.stat__number {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1;
}
.stat__label {
    font-size: 0.82rem;
    color: var(--text-mid);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.products__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Brand card base */
.products__brand {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--t-slow);
}
.products__brand:hover { box-shadow: var(--shadow-xl); }

/* === UltraTech === */
.products__brand--ultratech { border: 2px solid var(--yellow); background: var(--bg-white); }

.brand__header {
    padding: 1.75rem 2rem;
}
.brand__header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.brand__header--ultratech { background: var(--dark); }
.brand__header--mapei     { background: var(--mapei-blue); }

.brand__logo-area {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.brand__header--ultratech .brand__logo-area {
    background: var(--yellow);
    color: var(--black);
}
.brand__logo-area--mapei {
    background: rgba(255,255,255,0.18);
    color: var(--white);
}

.brand__name {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    line-height: 1.25;
}
.brand__tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
}
.brand__header--ultratech .brand__tagline { color: var(--yellow); }

.brand__section-title {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 1.25rem 1.5rem 0.875rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}
.brand__section-title--blue { color: var(--mapei-blue); }

/* Categories */
.brand__categories { border-bottom: 1px solid var(--border); }
.category__item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: var(--t-fast);
}
.category__item:last-child { border-bottom: none; }
.category__item:hover { background: var(--yellow-alpha-10); padding-left: 1.875rem; }

.category__icon {
    width: 34px; height: 34px;
    background: var(--yellow-alpha-10);
    border: 1px solid var(--yellow);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--yellow-dark);
    flex-shrink: 0;
}
.category__item h5 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}
.category__item p { font-size: 0.78rem; color: var(--text-light); }

/* Product Cards */
.product__cards { padding-bottom: 1rem; }
.product__card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: var(--t-fast);
}
.product__card:last-child { border-bottom: none; }
.product__card:hover { background: var(--yellow-alpha-10); }

.product__icon {
    width: 38px; height: 38px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.product__icon--yellow { background: var(--yellow); color: var(--black); }

.product__info { flex: 1; }
.product__info h5 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}
.product__info p { font-size: 0.78rem; color: var(--text-light); line-height: 1.55; }

.product__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.72rem;
    color: var(--yellow-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: 4px;
    transition: var(--t-fast);
}
.product__cta:hover { gap: 0.6rem; color: var(--black); }
.product__cta i { font-size: 0.65rem; }

/* Clickable product card (links to detail page) */
.product__card--link {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: var(--t-fast);
    text-decoration: none;
    cursor: pointer;
}
.product__card--link:hover {
    background: var(--yellow-alpha-10);
    border-left: 3px solid var(--yellow);
    padding-left: calc(1.5rem - 3px);
}
.product__card--link:hover .product__cta { gap: 0.6rem; color: var(--black); }
.product__card--link:last-child { border-bottom: none; }

/* === MAPEI === */
.products__brand--mapei { border: 2px solid var(--mapei-blue); background: var(--bg-white); }

.mapei__intro { border-bottom: 1px solid var(--border); }
.mapei__highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: var(--t-fast);
}
.mapei__highlight:last-child { border-bottom: none; }
.mapei__highlight:hover { background: var(--mapei-alpha-10); }

.mapei__highlight-icon {
    width: 34px; height: 34px;
    background: var(--mapei-alpha-10);
    border: 1px solid var(--mapei-blue);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--mapei-blue);
    flex-shrink: 0;
}
.mapei__highlight h5 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}
.mapei__highlight p { font-size: 0.78rem; color: var(--text-light); }

/* Launch Banner */
.mapei__launch-banner {
    margin: 1.25rem;
    background: linear-gradient(135deg, var(--mapei-blue) 0%, #1a5cc8 100%);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem;
    text-align: center;
    color: var(--white);
}
.mapei__launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.3rem 0.875rem;
    border-radius: var(--r-full);
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.mapei__launch-title {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0.875rem;
}
.mapei__launch-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.mapei__launch-banner .btn--mapei {
    background: var(--white);
    color: var(--mapei-blue);
    border-color: var(--white);
}
.mapei__launch-banner .btn--mapei:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Mapei Categories Grid */
.mapei__categories { padding-bottom: 1rem; }
.mapei__cats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    padding: 0.5rem 1.25rem 1.25rem;
}
.mapei__cat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    background: var(--mapei-alpha-10);
    border: 1px solid var(--mapei-alpha-20);
    border-radius: var(--r);
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--mapei-blue);
    transition: var(--t-fast);
}
.mapei__cat-item:hover {
    background: var(--mapei-blue);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--mapei-blue);
}
.mapei__cat-item i { font-size: 0.9rem; flex-shrink: 0; }

/* ===== SERVICES ===== */
.services {
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,209,0,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,209,0,0.025) 1px, transparent 1px);
    background-size: 40px 40px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.service__card {
    background: var(--mid-gray);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--r-lg);
    padding: 2.25rem 1.75rem;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}
.service__card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.service__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    border-color: rgba(255,209,0,0.15);
}
.service__card:hover::after { transform: scaleX(1); }

.service__icon {
    width: 60px; height: 60px;
    background: var(--yellow);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    transition: var(--t);
}
.service__card:hover .service__icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 8px 24px var(--yellow-alpha-40);
}
.service__card h3 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.service__card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.service__tag {
    display: inline-block;
    padding: 0.28rem 0.75rem;
    background: rgba(255,209,0,0.1);
    color: var(--yellow);
    border: 1px solid rgba(255,209,0,0.3);
    border-radius: var(--r-full);
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-h);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== ACCORDION ===== */
.accordion-section { background: var(--bg-white); }

.accordion__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}
.accordion__left .section__badge { display: inline-block; }
.accordion__left .section__title { text-align: left; margin-bottom: 1rem; }
.accordion__left p { color: var(--text-mid); line-height: 1.8; }

.accordion__item {
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.accordion__item.active {
    border-color: var(--yellow);
    box-shadow: 0 4px 20px var(--yellow-alpha-20);
}

.accordion__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.375rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.25s ease;
}
.accordion__header:hover { background: var(--yellow-alpha-10); }
.accordion__item.active .accordion__header { background: var(--yellow-alpha-10); }

.accordion__icon-wrap {
    width: 38px; height: 38px;
    background: var(--yellow);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--black);
    flex-shrink: 0;
    transition: var(--t-fast);
}
.accordion__item.active .accordion__icon-wrap { background: var(--yellow-dark); }

.accordion__header h3 {
    flex: 1;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--text-dark);
}

.accordion__arrow {
    color: var(--text-light);
    font-size: 0.82rem;
    flex-shrink: 0;
    transition: transform 0.35s ease, color 0.25s ease;
}
.accordion__item.active .accordion__arrow {
    transform: rotate(180deg);
    color: var(--text-dark);
}

.accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}
.accordion__item.active .accordion__body { max-height: 350px; }
.accordion__body p {
    padding: 1.125rem 1.375rem;
    padding-top: 0;
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.85;
    border-top: 1px solid var(--border);
}

/* ===== CONTACT ===== */
.contact { background: var(--bg-light); }

.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Form Wrapper */
.contact__form-wrapper {
    background: var(--bg-white);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.contact__form-wrapper h3 {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1.875rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--yellow);
}

.contact__form { display: flex; flex-direction: column; gap: 1.125rem; }

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.125rem;
}
.form__group { display: flex; flex-direction: column; gap: 0.375rem; }

.form__group label {
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.required { color: #e53e3e; }

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: var(--r);
    font-family: var(--font-b);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--t-fast);
    outline: none;
}
.form__group input:focus,
.form__group textarea:focus {
    border-color: var(--yellow);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px var(--yellow-alpha-20);
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: #b0b5be; }
.form__group textarea { resize: vertical; min-height: 118px; }

.form__error {
    font-size: 0.78rem;
    color: #e53e3e;
    font-weight: 600;
    min-height: 1rem;
}

.form__status {
    border-radius: var(--r);
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
    transition: var(--t-fast);
}
.form__status.success {
    padding: 0.875rem 1rem;
    background: #f0fff4;
    border: 1px solid #68d391;
    color: #276749;
}
.form__status.error {
    padding: 0.875rem 1rem;
    background: #fff5f5;
    border: 1px solid #fc8181;
    color: #c53030;
}

/* Contact Info */
.contact__info h3 {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1.875rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--yellow);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.375rem;
    margin-bottom: 2rem;
}
.contact__detail-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}
.contact__detail-icon {
    width: 42px; height: 42px;
    background: var(--yellow);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--black);
    flex-shrink: 0;
    transition: var(--t-fast);
}
.contact__detail-item:hover .contact__detail-icon { transform: scale(1.08); }
.contact__detail-item h4 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}
.contact__detail-item p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.65;
}
.contact__detail-item a { color: var(--text-mid); }
.contact__detail-item a:hover { color: var(--yellow-dark); }

.map__container {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 2px solid var(--border);
}
.map__container iframe { display: block; }
.map__placeholder {
    height: 210px;
    background: var(--bg-off);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    text-align: center;
    padding: 1rem;
}
.map__placeholder i { font-size: 2.5rem; color: #ccc; }
.map__placeholder p { font-weight: 600; color: var(--text-light); font-size: 0.95rem; }
.map__placeholder small { color: #aaa; font-size: 0.78rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); }

.footer__top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer__logo {
    display: inline-block;
    font-family: var(--font-h);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer__logo-world { color: var(--yellow); }

.footer__brand > p {
    color: rgba(255,255,255,0.52);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer__trust { display: flex; flex-direction: column; gap: 0.5rem; }
.trust__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 0.72rem;
    color: var(--yellow);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.trust__badge i { font-size: 0.8rem; }
.trust__badge--blue { color: #7aaeff; }

.footer__links h4,
.footer__products h4,
.footer__contact h4 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__links ul,
.footer__products ul { display: flex; flex-direction: column; gap: 0.625rem; }

.footer__links a,
.footer__products a {
    color: rgba(255,255,255,0.52);
    font-size: 0.88rem;
    transition: var(--t-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer__links a i,
.footer__products a i { font-size: 0.65rem; color: var(--yellow); transition: var(--t-fast); }
.footer__links a:hover,
.footer__products a:hover { color: var(--yellow); padding-left: 4px; }

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.875rem;
}
.footer__contact-item i { color: var(--yellow); font-size: 0.875rem; margin-top: 3px; flex-shrink: 0; }
.footer__contact-item p { color: rgba(255,255,255,0.52); font-size: 0.88rem; line-height: 1.65; }
.footer__contact-item a { color: rgba(255,255,255,0.52); }
.footer__contact-item a:hover { color: var(--yellow); }

.footer__bottom {
    padding: 1.375rem 0;
    background: rgba(0,0,0,0.3);
}
.footer__bottom-inner {
    display: flex;
    justify-content: center !important;    
    flex-wrap: wrap;    
    gap: 0.5rem;
}
.footer__bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
}
.footer__bottom-dist {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,209,0,0.5) !important;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 0.72rem !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.footer__bottom-dist i { font-size: 0.75rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px; height: 58px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 900;
    transition: var(--t);
    animation: waBounce 3s ease-in-out 3s infinite;
}
.whatsapp-float:hover {
    background: #1da851;
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37,211,102,0.55);
    animation: none;
}

/* ===== KEYFRAMES ===== */
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
    50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

@keyframes waBounce {
    0%, 90%, 100% { transform: scale(1); }
    93%           { transform: scale(1.1); }
    96%           { transform: scale(0.96); }
}

/* ===== RESPONSIVE: 1024px ===== */
@media (max-width: 1024px) {
    :root { --section-py: 4rem; }

    .products__grid  { grid-template-columns: 1fr; }
    .services__grid  { grid-template-columns: repeat(2, 1fr); }
    .footer__grid    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .about__grid     { gap: 3rem; }
    .accordion__wrapper { gap: 2.5rem; }
}

/* ===== RESPONSIVE: 768px (Tablet/Mobile) ===== */
@media (max-width: 768px) {
    :root { --px: 1.25rem; --section-py: 3.5rem; }

    /* ===== MOBILE NAVIGATION ===== */

    /* Slide-down drawer below the sticky header */
    .nav__menu {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #0d0d0d;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        list-style: none;
        padding: 0;
        margin: 0;
        transform: translateY(-6px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.32s ease, opacity 0.32s ease, visibility 0.32s ease;
        z-index: 998;
        border-top: 2px solid var(--yellow);
        box-shadow: 0 20px 60px rgba(0,0,0,0.55);
    }
    .nav__menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Each list item — bottom separator */
    .nav__menu > li { border-bottom: 1px solid rgba(255,255,255,0.07); }
    .nav__menu > li:last-child { border-bottom: none; }

    /* Nav links in mobile menu */
    .nav__link {
        display: block;
        width: 100%;
        font-size: 0.88rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        padding: 1rem 1.5rem;
        color: rgba(255,255,255,0.78);
        border-radius: 0;
        transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
    }
    .nav__link::after { display: none; } /* no underline animation on mobile */
    .nav__link:hover,
    .nav__link.active {
        color: var(--yellow);
        background: rgba(255,209,0,0.06);
        padding-left: 2.25rem;
    }

    /* CTA button inside mobile menu */
    .nav__menu-cta {
        display: block;
        padding: 1rem 1.5rem 1.5rem;
    }
    .nav__menu-cta .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.85rem 1.25rem;
        font-size: 0.88rem;
    }

    /* Show hamburger, hide desktop CTA */
    .nav__hamburger { display: flex; }
    .nav__cta       { display: none; }

    /* Hero */
    .hero__content { padding: 7rem var(--px) 5rem; }
    .hero__deco { display: none; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { justify-content: center; }
    .hero__scroll { display: none; }

    /* Trust bar */
    .trust-bar__inner { gap: 0; flex-direction: column; }
    .trust-bar__divider { display: none; }
    .trust-bar__item { padding: 0.25rem 1.25rem; }

    /* About */
    .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about__stats { grid-template-columns: 1fr 1fr; }

    /* Products */
    .products__grid { grid-template-columns: 1fr; }
    .mapei__cats-grid { grid-template-columns: 1fr; }

    /* Services */
    .services__grid { grid-template-columns: 1fr 1fr; }

    /* Accordion */
    .accordion__wrapper { grid-template-columns: 1fr; gap: 2.5rem; }

    /* Contact */
    .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form__row { grid-template-columns: 1fr; }

    /* Footer */
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer__top { padding: 3rem 0 2rem; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }

    /* WhatsApp */
    .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; font-size: 1.5rem; }
}

/* ===== RESPONSIVE: 480px ===== */
@media (max-width: 480px) {
    .about__stats    { grid-template-columns: 1fr 1fr; }
    .services__grid  { grid-template-columns: 1fr; }

    .hero__title     { font-size: 2.8rem; }
    .hero__badge     { font-size: 0.68rem; text-align: center; }

    .trust-bar__item { font-size: 0.72rem; padding: 0.2rem 1rem; }

    .contact__form-wrapper { padding: 1.75rem 1.25rem; }

    .brand__header-inner { flex-direction: column; text-align: center; }
}

/* ==============================================
   PRODUCT CARD VIEW — PROFESSIONAL REDESIGN v2
   ============================================== */

/* ===== Section Accent Bar (yellow underline) ===== */
.section__accent-bar {
    width: 56px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
    margin: -0.25rem auto 1.25rem;
}

/* ===== Brand Block Wrapper ===== */
.brand-block {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2.5rem;
    border: 1px solid var(--border);
}

/* ===== Brand Bar Header ===== */
.brand-block__bar {
    padding: 1.25rem 2rem;
}
.brand-block__bar--ultratech {
    background: linear-gradient(135deg, #0a0a0a 0%, #1f1f1f 60%, #2b2b2b 100%);
}
.brand-block__bar--mapei {
    background: linear-gradient(135deg, #002d7a 0%, #003DA5 60%, #1a5cc8 100%);
}
.brand-block__bar-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.brand-block__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--black);
    flex-shrink: 0;
}
.brand-block__icon-wrap--mapei {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}
.brand-block__brand-info { flex: 1; min-width: 0; }
.brand-block__name {
    font-family: var(--font-h);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.2rem;
    letter-spacing: 0.02em;
}
.brand-block__tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
}
.brand-block__badge-pill {
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-h);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}
.brand-block__badge-pill--mapei {
    background: rgba(255,255,255,0.18);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.35);
}

/* ===== Product Card Grid — 6-col centering trick (3 per row, last 2 centred) ===== */
.pcard-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.75rem;
    padding: 2rem 2rem 2.5rem;
}
.pcard              { grid-column: span 2; }
.pcard--center-l    { grid-column: 2 / 4; }
.pcard--center-r    { grid-column: 4 / 6; }

/* ===== Individual Product Card ===== */
.pcard {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 18px rgba(0,0,0,0.07);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}
.pcard:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

/* ===== Card Image Wrap ===== */
.pcard__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    flex-shrink: 0;
}
/* Per-product gradient placeholders */
.pcard__img-wrap--1 { background: linear-gradient(145deg, #0d0d0d, #1c1c2e, #2a2a4a); }
.pcard__img-wrap--2 { background: linear-gradient(145deg, #111827, #1e3a5f, #24527a); }
.pcard__img-wrap--3 { background: linear-gradient(145deg, #1a0a00, #3b1a00, #4a2800); }
.pcard__img-wrap--4 { background: linear-gradient(145deg, #050b1f, #0d1f45, #152d60); }
.pcard__img-wrap--5 { background: linear-gradient(145deg, #0a1a0a, #143a14, #1a4a1a); }

/* Placeholder icon (visible when no real image) */
.pcard__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--yellow);
    opacity: 0.55;
    pointer-events: none;
}

/* Real image — overlays placeholder on load */
.pcard__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.pcard:hover .pcard__img {
    transform: scale(1.07);
}

/* Badge overlay on image */
.pcard__img-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    pointer-events: none;
}
.pcard__brand-pill {
    font-family: var(--font-h);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.65);
    color: var(--yellow);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255,209,0,0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.pcard__seller-pill {
    font-family: var(--font-h);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}
.pcard__seller-pill--yellow { background: var(--yellow); color: var(--black); }
.pcard__seller-pill--gold   { background: linear-gradient(90deg, #c0a000, #e8be00); color: var(--black); }

/* ===== Card Body ===== */
.pcard__body {
    padding: 1.3rem 1.4rem 0.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.pcard__series {
    font-family: var(--font-h);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--text-light);
}
.pcard__name {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin: 0;
}
.pcard__desc {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pcard__features {
    list-style: none;
    margin: 0.35rem 0 0;
    padding: 0.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
    border-top: 1px solid var(--border);
}
.pcard__features li {
    font-size: 0.78rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.pcard__features li i {
    color: #16a34a;
    font-size: 0.72rem;
    flex-shrink: 0;
}

/* ===== Card Footer — full-width CTA button ===== */
.pcard__foot {
    padding: 0.85rem 1.4rem 1.25rem;
    margin-top: auto;
}
.pcard__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.72rem 1.25rem;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-h);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    letter-spacing: 0.02em;
    transition: background 0.3s ease, color 0.3s ease;
}
.pcard:hover .pcard__btn {
    background: var(--black);
    color: var(--yellow);
}

/* ===== Brands Divider ===== */
.brands-divider {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 0 0 2.5rem;
}
.brands-divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}
.brands-divider__label {
    font-family: var(--font-h);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    white-space: nowrap;
    background: var(--bg-light);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    border: 1px solid var(--border);
}

/* ===== Mapei New Layout ===== */
.mapei-new-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--border);
}
.mapei-launch-card {
    background: linear-gradient(145deg, #002060 0%, #003DA5 55%, #1a5cc8 100%);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mapei-launch-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-family: var(--font-h);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
    width: fit-content;
}
.mapei-launch-card__title {
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin: 0;
}
.mapei-launch-card__desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin: 0;
}
.mapei-launch-card__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}
.mapei-launch-card__features li {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.88);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mapei-launch-card__features li i {
    color: var(--yellow);
    font-size: 0.78rem;
    flex-shrink: 0;
}
.mapei-cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    background: var(--border);
    align-content: start;
}
.mapei-cat-card {
    background: var(--bg-white);
    padding: 1.35rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: background 0.22s ease;
}
.mapei-cat-card:hover { background: var(--mapei-alpha-10); }
.mapei-cat-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--mapei-alpha-10);
    border: 1px solid var(--mapei-alpha-20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--mapei-blue);
    flex-shrink: 0;
    transition: background 0.22s ease, color 0.22s ease;
}
.mapei-cat-card:hover .mapei-cat-card__icon {
    background: var(--mapei-blue);
    color: var(--white);
    border-color: var(--mapei-blue);
}
.mapei-cat-card__text h5 {
    font-family: var(--font-h);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.2rem;
}
.mapei-cat-card__text p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* ===== "See More UltraTech Products" CTA (homepage) ===== */
.ultratech-more-cta {
    display: flex;
    justify-content: center;
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
}
.btn--see-more {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
    padding: 0.875rem 2.25rem;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    border-radius: var(--r);
}
.btn--see-more:hover {
    background: var(--black);
    color: var(--yellow);
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===== UltraTech Listing Page ===== */
.page-hero {
    background: var(--dark);
    padding: 7rem 0 3.5rem;
    border-bottom: 2px solid var(--yellow);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,209,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,209,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.page-hero__content {
    position: relative;
    z-index: 1;
}
.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-h);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}
.page-hero__breadcrumb a {
    color: var(--yellow);
    text-decoration: none;
    transition: opacity 0.2s;
}
.page-hero__breadcrumb a:hover { opacity: 0.75; }
.page-hero__breadcrumb i { font-size: 0.6rem; }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.5); }
.page-hero__title {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0.875rem;
}
.page-hero__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    line-height: 1.7;
}

.products-listing {
    padding: 3.5rem 0 5rem;
    background: var(--bg-light);
}
.pcard-grid--listing {
    grid-template-columns: repeat(6, 1fr);
}
.products-listing__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 3rem 0 1rem;
    text-align: center;
}
.products-listing__cta p {
    color: var(--text-mid);
    font-size: 1rem;
}

/* ===== PRODUCT CARD RESPONSIVE ===== */
@media (max-width: 1100px) {
    /* Switch to 2-col (tablet): drop centering trick */
    .pcard-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
        padding: 1.5rem;
    }
    .pcard              { grid-column: span 2; }
    .pcard--center-l    { grid-column: 1 / 3; }
    .pcard--center-r    { grid-column: 3 / 5; }

    .mapei-new-layout { grid-template-columns: 1fr; }
    .mapei-cat-grid   { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .pcard-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1.25rem;
    }
    .pcard,
    .pcard--center-l,
    .pcard--center-r { grid-column: span 1; }

    .brand-block__badge-pill { display: none; }
    .brands-divider { margin: 0 0 1.75rem; }
    .mapei-cat-grid { grid-template-columns: 1fr 1fr; }
    .mapei-launch-card { padding: 1.75rem 1.5rem; }
}
@media (max-width: 520px) {
    .pcard-grid { grid-template-columns: 1fr; padding: 1rem; gap: 1rem; }
    .pcard,
    .pcard--center-l,
    .pcard--center-r { grid-column: span 1; }

    .mapei-new-layout { grid-template-columns: 1fr; }
    .mapei-cat-grid   { grid-template-columns: 1fr 1fr; }
    .mapei-launch-card__title { font-size: 1.1rem; }
    .pcard-grid { padding: 0.875rem; gap: 0.875rem; }
}

/* ==============================================
   NAV DROPDOWN MENU
   ============================================== */

/* Parent item wrapper */
.nav__has-dropdown {
    position: relative;
}

/* Arrow icon inside the Products link */
.nav__arrow {
    font-size: 0.56rem;
    margin-left: 0.3rem;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.28s ease;
}
.nav__has-dropdown:hover .nav__arrow,
.nav__has-dropdown.open   .nav__arrow {
    transform: rotate(180deg);
}

/* ==============================================
   MEGA MENU — PRODUCTS DROPDOWN (2-COLUMN)
   ============================================== */

/* ===== Dropdown container (desktop: hidden by default) ===== */
.nav__dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 700px;
    max-width: calc(100vw - 2rem);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 16px 64px rgba(0,0,0,0.16), 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e8eaed;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 1002;
    overflow: hidden;
}

/* Show on hover / focus-within (desktop only) */
@media (min-width: 769px) {
    .nav__has-dropdown:hover .nav__dropdown,
    .nav__has-dropdown:focus-within .nav__dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
}

/* ===== Inner 2-column grid ===== */
.mega-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
}

/* ===== Each column ===== */
.mega-menu__col {
    padding: 1.75rem 1.5rem;
    border-right: 1px solid #e8eaed;
}
.mega-menu__col:last-child {
    border-right: none;
}
.mega-menu__col--mapei {
    background: linear-gradient(160deg, rgba(0,61,165,0.03) 0%, #fff 100%);
}

/* ===== Column title with yellow accent underline ===== */
.mega-menu__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-h);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    padding-bottom: 0.625rem;
    margin-bottom: 0.875rem;
    border-bottom: 2px solid var(--yellow);
    user-select: none;
}
.mega-menu__title i {
    font-size: 0.9rem;
    color: var(--yellow);
    flex-shrink: 0;
}
.mega-menu__title--mapei {
    border-bottom-color: var(--mapei-blue);
}
.mega-menu__title--mapei i {
    color: var(--mapei-blue);
}

/* ===== Link list ===== */
.mega-menu__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
.mega-menu__list li {
    margin-bottom: 0.125rem;
}

/* ===== Individual link ===== */
.mega-menu__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.625rem;
    border-radius: 8px;
    font-family: var(--font-b);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease, gap 0.18s ease;
}
.mega-menu__link i {
    font-size: 0.6rem;
    color: var(--yellow);
    flex-shrink: 0;
    transition: transform 0.18s ease;
}
.mega-menu__link:hover {
    background: var(--yellow-alpha-10);
    color: var(--text-dark);
    gap: 0.7rem;
}
.mega-menu__link:hover i {
    transform: translateX(3px);
}
.mega-menu__link--mapei i {
    color: var(--mapei-blue);
}
.mega-menu__link--mapei:hover {
    background: var(--mapei-alpha-10);
}

/* ===== "View All" / "Enquire" CTA at column bottom ===== */
.mega-menu__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-h);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-dark);
    background: var(--yellow-alpha-10);
    border: 1px solid var(--yellow-alpha-40);
    border-radius: 6px;
    padding: 0.425rem 0.75rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, gap 0.2s ease;
}
.mega-menu__view-all i { font-size: 0.65rem; transition: transform 0.2s ease; }
.mega-menu__view-all:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    gap: 0.65rem;
}
.mega-menu__view-all:hover i { transform: translateX(3px); }
.mega-menu__view-all--mapei {
    background: var(--mapei-alpha-10);
    border-color: var(--mapei-alpha-20);
    color: var(--mapei-blue);
}
.mega-menu__view-all--mapei:hover {
    background: var(--mapei-blue);
    border-color: var(--mapei-blue);
    color: #fff;
}

/* ==============================================
   MEGA MENU — MOBILE OVERRIDE (≤768px)
   Accordion-style, stacked columns, slide animation
   ============================================== */
@media (max-width: 768px) {

    /* Reset absolute positioning — becomes a slide-down block */
    .nav__dropdown {
        position: static;
        width: 100%;
        max-width: none;
        border-radius: 0;
        box-shadow: none;
        border: none;
        border-left: 3px solid rgba(255,209,0,0.45);
        background: rgba(255,255,255,0.04);
        padding: 0;
        margin: 0 0 0.25rem 1.5rem;
        /* Override desktop hide — controlled by max-height for animation */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.38s ease;
        display: block;
    }
    .nav__has-dropdown.open .nav__dropdown {
        pointer-events: auto;
        max-height: 900px;
    }

    /* Stack columns vertically */
    .mega-menu {
        display: block;
    }
    .mega-menu__col {
        padding: 0.75rem 1rem 0.875rem;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        background: transparent;
    }
    .mega-menu__col:last-child {
        border-bottom: none;
    }

    /* Title on dark mobile bg */
    .mega-menu__title {
        color: rgba(255,255,255,0.5);
        border-bottom-color: rgba(255,209,0,0.35);
        font-size: 0.62rem;
        margin-bottom: 0.625rem;
    }
    .mega-menu__title i { color: var(--yellow); }
    .mega-menu__title--mapei { border-bottom-color: rgba(0,61,165,0.4); }
    .mega-menu__title--mapei i { color: #7baeff; }

    /* Links on dark mobile bg */
    .mega-menu__link {
        color: rgba(255,255,255,0.72);
        padding: 0.45rem 0.5rem;
        font-size: 0.82rem;
        border-radius: 6px;
    }
    .mega-menu__link i { color: var(--yellow); }
    .mega-menu__link:hover {
        background: rgba(255,255,255,0.05);
        color: var(--yellow);
    }
    .mega-menu__link--mapei i { color: #7baeff; }
    .mega-menu__link--mapei:hover { color: #7baeff; }

    /* View-all button on dark mobile bg */
    .mega-menu__view-all {
        font-size: 0.63rem;
        color: rgba(255,255,255,0.45);
        background: rgba(255,255,255,0.05);
        border-color: rgba(255,255,255,0.1);
        margin-top: 0.5rem;
    }
    .mega-menu__view-all:hover {
        background: rgba(255,209,0,0.15);
        color: var(--yellow);
        border-color: rgba(255,209,0,0.3);
    }
    .mega-menu__view-all--mapei:hover {
        background: rgba(0,61,165,0.15);
        color: #7baeff;
        border-color: rgba(0,61,165,0.3);
    }
}
