:root {
    --navy: #0a2557;
    --navy-2: #0f3480;
    --blue: #1565d8;
    --blue-2: #2a8bff;
    --sky: #e8f1ff;
    --sky-2: #d6e7ff;
    --ice: #f4f9ff;
    --gold: #c9a227;
    --ink: #0a1a33;
    --muted: #556481;
    --line: #dbe5f4;
    --white: #fff;
    --shadow-lg: 0 30px 60px -20px rgba(10, 37, 87, .25);
    --shadow-md: 0 14px 30px -14px rgba(10, 37, 87, .22);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    color: var(--ink);
    background: var(--ice);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

.urdu {
    font-family: "Noto Nastaliq Urdu", serif;
    line-height: 2.1
}

h1,
h2,
h3,
h4 {
    font-family: "Fraunces", Georgia, serif;
    margin: 0;
    letter-spacing: -.015em
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(1240px, 92vw);
    margin: 0 auto
}

/* TOP BAR */
.topbar {
    background: var(--navy);
    color: #cfe0ff;
    font-size: 12.5px;
    letter-spacing: .02em
}

.topbar .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    gap: 18px;
    flex-wrap: wrap
}

.topbar .items {
    display: flex;
    gap: 22px;
    flex-wrap: wrap
}

.topbar .items span {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.topbar .items svg {
    width: 14px;
    height: 14px;
    opacity: .85
}

.topbar .urdu {
    font-size: 13px
}

.topbar a:hover {
    color: #fff
}

/* NAV */
header.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(219, 229, 244, .7);
    transform: translateZ(0)
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo .mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(160deg, var(--blue-2), var(--navy));
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden
}

.logo .mark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .45), transparent 50%)
}

.logo .mark svg {
    width: 22px;
    height: 22px;
    position: relative
}

.logo .name {
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--navy);
    line-height: 1
}

.logo .tag {
    font-size: 10.5px;
    letter-spacing: .24em;
    color: var(--blue);
    font-weight: 600;
    text-transform: uppercase
}

nav.links {
    display: flex;
    gap: 6px;
    align-items: center
}

nav.links a {
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14.5px;
    color: #2a3a5a;
    transition: .25s
}

nav.links a:hover {
    color: var(--navy);
    background: var(--sky)
}

.cta {
    background: var(--navy);
    color: #fff;
    padding: 11px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
    box-shadow: var(--shadow-md)
}

.cta:hover {
    background: var(--blue);
    transform: translateY(-2px)
}

.cta svg {
    width: 14px;
    height: 14px;
    transition: .3s
}

.cta:hover svg {
    transform: translateX(3px)
}

.menu-btn {
    display: none;
    background: var(--navy);
    color: #fff;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer
}

/* HERO — VIDEO BACKGROUND */
.hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 140px;
    color: #fff;
    background: #061a40;
}

/* Video background */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Dark overlay on video */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(120deg, rgba(6, 26, 64, .92) 0%, rgba(10, 37, 87, .80) 45%, rgba(15, 52, 128, .60) 100%);
}

/* Audio toggle button */
.audio-btn {
    position: absolute;
    bottom: 90px;
    right: 28px;
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1.5px solid rgba(255, 255, 255, .35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: .3s;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
}

.audio-btn:hover {
    background: rgba(255, 255, 255, .28);
    transform: scale(1.1);
}

.audio-btn svg {
    width: 20px;
    height: 20px;
}

.audio-btn .icon-mute {
    display: none;
}

.audio-btn.muted .icon-sound {
    display: none;
}

.audio-btn.muted .icon-mute {
    display: block;
}

/* MOBILE FIX FOR ZOOM */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 100px;
        /* Mobile par vertical height kam rakhi */
    }

    .hero-video {
        height: 100%;
        object-fit: cover;
        object-position: 35% center;
        /* Video ka main area focus mein rakhne ke liye */
    }

    .audio-btn {
        bottom: 40px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: -100%;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .35) 0 2px, transparent 3px),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, .25) 0 3px, transparent 4px);
    background-size: 320px 320px, 420px 420px;
    opacity: .6;
    animation: drift 50s linear infinite;
    transform: translateZ(0);
    will-change: transform;
}

@keyframes drift {
    0% {
        transform: rotate(0deg) translateZ(0)
    }

    100% {
        transform: rotate(360deg) translateZ(0)
    }
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 70px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 70' preserveAspectRatio='none'><path d='M0,35 Q150,8 300,35 T600,35 T900,35 T1200,35 L1200,70 L0,70 Z' fill='%23f4f9ff'/></svg>") center/cover no-repeat
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 720px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #a9c7f5;
    font-weight: 700;
    margin-bottom: 22px
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: #a9c7f5
}

.hero h1 {
    font-size: clamp(44px, 6.4vw, 84px);
    line-height: .98;
    font-weight: 600;
    color: #fff
}

.hero h1 .accent {
    font-style: italic;
    font-weight: 500;
    color: #a9c7f5;
    display: block;
    font-size: .42em;
    margin-bottom: 8px;
    letter-spacing: 0;
    font-family: "Fraunces", serif
}

.hero h1 .blue {
    color: #7fb0ff
}

.hero p.lead {
    font-size: 17px;
    line-height: 1.7;
    color: #dbe6fb;
    max-width: 52ch;
    margin: 24px 0 32px
}

.hero-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px
}

.hbadge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600
}

.hbadge svg {
    width: 16px;
    height: 16px;
    color: #7fb0ff
}

.btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center
}

.btn-primary {
    background: #fff;
    color: var(--navy);
    padding: 15px 26px;
    border-radius: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    transition: .3s
}

.btn-primary:hover {
    background: #7fb0ff;
    color: #06122e;
    transform: translateY(-2px)
}

.btn-primary svg {
    width: 16px;
    height: 16px;
    transition: .3s
}

.btn-primary:hover svg {
    transform: translateX(4px)
}

.btn-ghost {
    color: #fff;
    font-weight: 600;
    padding: 15px 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid transparent;
    transition: .3s
}

.btn-ghost:hover {
    border-color: #7fb0ff;
    color: #7fb0ff
}

/* MOBILE OPTIMIZATION (Fixes video zoom and button position) */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 140px;
        /* Padding kam ki taake vertical stretch kam ho */
    }

    .hero-video {
        object-position: center center;
        /* Video center aligned rahegi */
    }

    .audio-btn {
        bottom: 85px;
        /* Mobile layout ke hisab se safe placement */
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .audio-btn svg {
        width: 18px;
        height: 18px;
    }
}


/* FEATURE STRIP */
.strip {
    margin-top: -44px;
    position: relative;
    z-index: 5;
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    padding: 28px 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.strip .cell {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-right: 20px;
    border-right: 1px solid var(--line)
}

.strip .cell:last-child {
    border-right: 0
}

.strip .ic {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    flex-shrink: 0;
    background: var(--sky);
    color: var(--blue);
    display: grid;
    place-items: center
}

.strip .ic svg {
    width: 22px;
    height: 22px
}

.strip h4 {
    font-family: "Plus Jakarta Sans";
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
    margin-bottom: 4px
}

.strip p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0
}

/* SECTIONS */
section {
    padding: 90px 0;
    position: relative
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 44px;
    flex-wrap: wrap
}

.kicker {
    font-size: 11.5px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.kicker::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--blue)
}

h2.title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--navy);
    line-height: 1.1;
    font-weight: 600;
    max-width: 20ch
}

h2.title .blue {
    color: var(--blue)
}

/* MINERALS */
.minerals {
    background: linear-gradient(180deg, #fff 0%, #eef5ff 100%)
}

.minerals-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center
}

.minerals p.lead {
    color: #3d4d6d;
    line-height: 1.75;
    margin-top: 18px;
    max-width: 44ch
}

.min-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.min-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: center;
    transition: .3s
}

.min-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-2)
}

.min-card .sym {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(150deg, #eaf3ff, #cfe2ff);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: 20px;
    border: 1px solid #d4e4ff
}

.min-card h4 {
    font-family: "Plus Jakarta Sans";
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 3px
}

.min-card p {
    margin: 0;
    font-size: 13px;
    color: var(--muted)
}

/* PRODUCTS — DETAILS ONLY, NO BOTTLE IMAGES */
.products {
    background: var(--ice)
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.prod {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 24px;
    transition: .35s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prod::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--blue-2), var(--navy));
    opacity: 0;
    transition: .35s
}

.prod:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #c9defb
}

.prod:hover::before {
    opacity: 1
}

.prod .tag-best {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 5px 10px;
    border-radius: 999px;
    text-transform: uppercase
}

.prod .vol {
    font-family: "Fraunces", serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: .02em
}

.prod h4 {
    font-family: "Plus Jakarta Sans";
    font-weight: 700;
    color: var(--navy);
    font-size: 20px
}

.prod .use {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5
}

.prod .price {
    font-family: "Fraunces", serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 10px
}

.prod .price small {
    font-size: 13px;
    color: var(--muted);
    font-family: "Plus Jakarta Sans";
    font-weight: 500;
    margin-left: 4px
}

.prod .order {
    margin-top: 14px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    font-weight: 600;
    font-size: 13px;
    transition: .3s;
    background: #fff
}

.prod .order:hover {
    background: var(--blue);
    color: #fff
}

.prod .order svg {
    width: 13px;
    height: 13px
}

/* pricing highlight (from banner) */
.pricing-note {
    margin-top: 40px;
    background: linear-gradient(120deg, #0a2557, #0f3480);
    color: #fff;
    border-radius: 22px;
    padding: 34px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden
}

.pricing-note::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(42, 139, 255, .25);
    filter: blur(24px)
}

.pricing-note .pn-t {
    position: relative;
    z-index: 2
}

.pricing-note h3 {
    color: #fff;
    font-size: 26px
}

.pricing-note h3 .gold {
    color: #e9c661;
    font-style: italic;
    font-weight: 500
}

.pricing-note p {
    color: #c7d6f2;
    margin: 8px 0 0;
    font-size: 14.5px
}

.pricing-note .pn-prices {
    display: flex;
    gap: 18px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap
}

.pn-price {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    padding: 16px 22px;
    text-align: center;
    min-width: 120px
}

.pn-price .n {
    font-family: "Fraunces", serif;
    font-size: 24px;
    font-weight: 700;
    color: #e9c661
}

.pn-price .l {
    font-size: 12px;
    color: #b8c9e8;
    margin-top: 4px;
    letter-spacing: .04em
}

/* TRUST */
.trust {
    background: #fff
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center
}

.trust-img {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    box-shadow: var(--shadow-lg)
}

.trust-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s
}

.trust-img:hover img {
    transform: scale(1.08)
}

.trust-img .ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, .95);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    color: var(--navy);
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md)
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 36px
}

.stat {
    text-align: center;
    padding: 18px 10px;
    background: var(--sky);
    border-radius: 18px;
    transition: .3s
}

.stat:hover {
    background: var(--sky-2);
    transform: translateY(-4px)
}

.stat .ic {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: var(--blue);
    display: grid;
    place-items: center;
    margin: 0 auto 10px
}

.stat .ic svg {
    width: 20px;
    height: 20px
}

.stat .n {
    font-family: "Fraunces", serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1
}

.stat .l {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
    line-height: 1.4
}

/* URDU MARQUEE */
.marquee {
    background: var(--navy);
    color: #cfe0ff;
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transform: translateZ(0)
}

.marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scroll 35s linear infinite;
    width: max-content;
    will-change: transform
}

.marquee-track span {
    font-size: 18px;
    font-weight: 500;
    transform: translateZ(0)
}

.marquee-track span .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--blue-2);
    border-radius: 50%;
    margin: 0 20px;
    vertical-align: middle
}

@keyframes scroll {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        transform: translate3d(-50%, 0, 0)
    }
}

/* CONTACT / ORDER */
.contact {
    background: linear-gradient(180deg, #eef5ff, #f4f9ff)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px
}

.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md)
}

.form-card h3 {
    color: var(--navy);
    font-size: 28px;
    margin-bottom: 6px
}

.form-card .sub {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 26px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: .04em
}

.field label .req {
    color: #d44
}

.field input,
.field select,
.field textarea {
    padding: 13px 15px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--ink);
    background: #f8fbff;
    transition: .25s;
    outline: none
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(21, 101, 216, .12)
}

.field textarea {
    resize: vertical;
    min-height: 90px
}

.submit {
    width: 100%;
    padding: 16px;
    border: 0;
    border-radius: 14px;
    background: var(--navy);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s
}

.submit:hover {
    background: var(--blue);
    transform: translateY(-2px)
}

.submit svg {
    width: 18px;
    height: 18px;
    transition: .3s
}

.submit:hover svg {
    transform: translateX(4px)
}

.ok-msg {
    display: none;
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #e6f7ec;
    color: #0e7a34;
    border: 1px solid #b8e4c5;
    font-weight: 600;
    font-size: 14px;
    align-items: center;
    gap: 10px
}

.ok-msg.show {
    display: flex
}

.ok-msg svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0
}

.info-col {
    display: grid;
    gap: 16px;
    align-content: start
}

.info {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: .3s
}

.info:hover {
    transform: translateX(4px);
    border-color: var(--blue-2);
    box-shadow: var(--shadow-md)
}

.info .ic {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(150deg, var(--sky), var(--sky-2));
    color: var(--blue);
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.info .ic svg {
    width: 22px;
    height: 22px
}

.info .l {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 4px
}

.info .v {
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5
}

.info .v a:hover {
    color: var(--blue)
}

.info .v small {
    display: block;
    font-weight: 500;
    color: var(--muted);
    font-size: 13px;
    margin-top: 3px;
    line-height: 1.5
}

.wa-info {
    background: linear-gradient(150deg, #1ea955, #25d366) !important;
    border: 0 !important;
    color: #fff
}

.wa-info .ic {
    background: rgba(255, 255, 255, .2);
    color: #fff
}

.wa-info .l {
    color: rgba(255, 255, 255, .8)
}

.wa-info .v {
    color: #fff
}

.map-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    height: 230px;
    position: relative;
    box-shadow: var(--shadow-md)
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.1) contrast(1.02)
}

/* FOOTER */
footer {
    background: linear-gradient(180deg, #08214f, #061a40);
    color: #b8c9e8;
    padding: 70px 0 0
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 50px
}

footer h5 {
    color: #fff;
    font-family: "Plus Jakarta Sans";
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 0 0 18px
}

footer .logo .name {
    color: #fff
}

footer .logo .tag {
    color: var(--blue-2)
}

footer p {
    font-size: 14px;
    line-height: 1.7;
    margin: 14px 0 0
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px
}

footer ul a {
    font-size: 14px;
    color: #b8c9e8;
    transition: .25s
}

footer ul a:hover {
    color: #fff;
    padding-left: 4px
}

.foot-contact {
    display: grid;
    gap: 12px;
    font-size: 13.5px
}

.foot-contact .row {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.foot-contact svg {
    width: 15px;
    height: 15px;
    color: var(--blue-2);
    flex-shrink: 0;
    margin-top: 4px
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px
}

.socials {
    display: flex;
    gap: 10px
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    transition: .3s;
    color: #cfe0ff
}

.socials a:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-3px)
}

.socials svg {
    width: 15px;
    height: 15px
}

.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px -8px rgba(37, 211, 102, .6);
    transition: .3s
}

.wa-float:hover {
    transform: scale(1.08)
}

.wa-float::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: ping 2s ease-out infinite
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: .7
    }

    100% {
        transform: scale(1.4);
        opacity: 0
    }
}

.wa-float svg {
    width: 28px;
    height: 28px
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

.reveal[data-delay="1"] {
    transition-delay: .1s
}

.reveal[data-delay="2"] {
    transition-delay: .2s
}

.reveal[data-delay="3"] {
    transition-delay: .3s
}

.reveal[data-delay="4"] {
    transition-delay: .4s
}

@media (max-width:980px) {
    .hero {
        background-attachment: scroll
    }

    .strip {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .strip .cell:nth-child(2) {
        border-right: 0
    }

    .minerals-grid,
    .trust-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .prod-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    nav.links {
        display: none
    }

    .menu-btn {
        display: grid;
        place-items: center
    }

    nav.links.open {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        padding: 14px;
        gap: 4px;
        box-shadow: var(--shadow-md)
    }

    .nav-row {
        position: relative
    }
}

@media (max-width:560px) {
    .strip {
        grid-template-columns: 1fr
    }

    .strip .cell {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding-bottom: 18px
    }

    .strip .cell:last-child {
        border-bottom: 0
    }

    .prod-grid {
        grid-template-columns: 1fr
    }

    .stats {
        grid-template-columns: 1fr 1fr
    }

    .min-grid {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr
    }

    section {
        padding: 60px 0
    }

    .form-card {
        padding: 26px
    }

    .pricing-note {
        padding: 26px
    }
}

/* Skeleton Loader Styles */
.skeleton {
    position: relative;
    overflow: hidden;
}

.skeleton-line {
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
    background-size: 200% 100%;
    animation: loading-skeleton 1.5s infinite;
    border-radius: 6px;
}

.vol-skeleton {
    width: 80px;
    height: 16px;
    margin-bottom: 10px;
}

.title-skeleton {
    width: 140px;
    height: 24px;
    margin-bottom: 10px;
}

.desc-skeleton {
    width: 100%;
    height: 32px;
    margin-bottom: 15px;
}

.price-skeleton {
    width: 90px;
    height: 30px;
    margin-bottom: 15px;
}

.btn-skeleton {
    width: 110px;
    height: 38px;
    border-radius: 999px;
}

@keyframes loading-skeleton {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}