:root {
    --navy: #10233f;
    --navy-soft: #1d3557;
    --orange: #f57c21;
    --white: #ffffff;
    --text: #17212f;
    --muted: #5f6f82;
    --shadow: 0 20px 50px rgba(16, 35, 63, 0.18);
    --container: min(1180px, calc(100% - 2rem));
    --header-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background:
        linear-gradient(rgba(255, 255, 255, 0.34), rgba(245, 248, 252, 0.42)),
        url('https://images.pexels.com/photos/5953723/pexels-photo-5953723.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat fixed;
    line-height: 1.6;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
.site-shell {
    overflow-x: hidden;
    padding-top: var(--header-height);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }

/* ── HEADER ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    overflow: visible;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(16, 35, 63, 0.08);
}
.nav-wrap {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    overflow: visible;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    height: 100%;
    overflow: visible;
}
.brand-mark {
    display: grid;
    place-items: center;
    background: transparent;
    flex-shrink: 0;
    overflow: visible;
}
.brand-mark img {
    height: clamp(56px, 9vw, 120px);
    width: auto;
    max-width: 100%;
    filter: brightness(0.6) contrast(1.3) drop-shadow(0px 2px 4px rgba(0,0,0,0.6));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong, .brand-text small { color: var(--navy); }
.brand-text small {
    opacity: 0.65;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.68rem;
}
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a {
    position: relative;
    color: rgba(16, 35, 63, 0.86);
    font-weight: 500;
}
.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 100%;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: rgba(16, 35, 63, 0.08);
    padding: 0;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    margin: 5px auto;
}

/* ── HERO ── */
.hero, .inner-hero {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    align-items: center;
    padding: 3rem 0 5rem;
}
.hero-layout { margin-left: 24px; }
.hero-content {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 4rem 0;
    animation: softRise 0.9s ease both;
}
.eyebrow, .section-kicker {
    margin: 0 0 0.4rem 0;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.76rem;
    font-weight: 700;
}
.hero h1, .inner-hero h1, .section-heading h2, .section-header h2, .contact-copy h2, .social-wrap h2, .detail-body h2 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 0.94;
}

/* ── FIX: Product heading margin-bottom ── */
.detail-body h2 {
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

.hero h1, .inner-hero h1 {
    font-size: clamp(3rem, 7vw, 5.8rem);
    max-width: 11ch;
    color: #000000;
}
.hero-tagline {
    margin: 1.35rem 0 0.5rem;
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    color: rgb(0 0 0 / 90%);
    font-weight: 600;
}
.hero-text { max-width: 56ch; color: rgb(0 0 0 / 82%); font-size: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary {
    background: linear-gradient(135deg, #000000, #000000);
    color: var(--white);
    box-shadow: 0 14px 34px rgba(245, 124, 33, 0.24);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    color: #000000;
    border-color: rgba(255, 255, 255, 0.32);
}
.btn-outline {
    background: rgba(245, 124, 33, 0.12);
    color: var(--navy);
    border-color: rgba(245, 124, 33, 0.2);
}
.btn-full { width: 100%; }

/* ── SECTIONS ── */
.section {
    position: relative;
    padding: 4.5rem 0;
}
.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(245, 248, 252, 0.62));
    z-index: -1;
}
.about-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}
.section-copy, .feature-box, .contact-form, .social-wrap, .contact-card, .detail-card {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    border-radius: 28px;
}
.section-copy, .contact-form, .social-wrap, .detail-body { padding: 2rem; }
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    margin-bottom: 2rem;
}
.section-heading h2, .section-header h2, .contact-copy h2, .social-wrap h2, .detail-body h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: var(--navy);
}
.section-intro, .contact-copy p, .section-copy p, .detail-body p { color: rgba(23, 33, 47, 0.78); }
.desc-collapsible p { margin: 0; }
.desc-collapsible p + p { margin-top: 0.85rem; }
.desc-toggle {
    display: none;
    margin-top: 0.75rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}
.desc-toggle:focus-visible { outline: 2px solid rgba(16, 35, 63, 0.5); outline-offset: 3px; }

/* ── PRODUCT GRID ── */
.product-grid, .feature-grid, .detail-list { display: grid; gap: 1.5rem; }
.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 28px 54px rgba(16, 35, 63, 0.16); }
.product-card-link { display: block; color: inherit; }
.product-image {
    height: 190px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}
.product-card:hover .product-image img { transform: none; }
.product-body { padding: 1.5rem; }
.product-body h3, .feature-box h3, .site-footer h3, .site-footer h4 {
    margin-top: 0;
    font-family: 'Poppins', sans-serif;
}
.product-body h3 { color: var(--navy); font-size: 1.08rem; }
.product-body p, .feature-box p { color: var(--muted); }

/* ── FEATURE BOX ── */
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-box {
    padding: 1.7rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.feature-box:hover { transform: translateY(-6px); }
.feature-box::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), transparent);
}
.feature-box h3 { color: var(--navy); }

/* ── CONTACT ── */
.contact-copy { padding-top: 1rem; }
.contact-lead { font-weight: 600; color: var(--navy-soft); }
.contact-cards { display: grid; gap: 1rem; margin-top: 1.5rem; }
.contact-card {
    padding: 1.2rem 1.3rem;
    border-left: 4px solid #000000;
}
.contact-card span {
    display: block;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    margin-bottom: 0.3rem;
}
.contact-location { color: #000000; }
.form-group { display: grid; gap: 0.55rem; margin-bottom: 1rem; }
.form-group label { color: var(--navy); font-size: 0.94rem; }
.form-group input, .form-group textarea {
    width: 100%;
    border: 1px solid rgba(16, 35, 63, 0.12);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.74);
    color: var(--text);
    outline: none;
}
.social-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
.social-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 160px;
    justify-content: center;
    padding: 0.95rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.36);
    color: var(--navy);
}
.icon, .footer-social a svg, .whatsapp-float svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ── DETAIL CARD (PRODUCTS PAGE) — FIXED ── */
.detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    align-items: stretch;
    min-height: 500px;
}

/* Har alternate card mein image right side pe */
.detail-card:nth-child(even) .detail-media { order: 2; }
.detail-card:nth-child(even) .detail-body  { order: 1; }

.detail-media {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
    min-height: 500px;
}

/* ── FIX: contain = no blur, sharp image ── */
.detail-media img {
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* ── FOOTER ── */
.site-footer {
    margin-top: 2rem;
    background: rgba(16, 35, 63, 0.92);
    color: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
    gap: 2rem;
    padding: 3.5rem 0 2rem;
}
.site-footer p, .site-footer li, .site-footer a { color: rgba(255, 255, 255, 0.7); }
.site-footer h3, .site-footer h4 { color: var(--white); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}
.footer-brand-mark {
    width: 54px;
    height: 54px;
    background: transparent;
    flex-shrink: 0;
}
.footer-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.6) contrast(1.3);
}
.footer-brand-text {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
}
.footer-follow-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
}
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 1rem 0; }
.footer-bottom p { margin: 0; text-align: center; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #ff9d54);
    color: var(--white);
    box-shadow: 0 18px 36px rgba(245, 124, 33, 0.28);
    z-index: 1001;
    animation: pulseSoft 2.8s ease infinite;
}

/* ── REVEAL ANIMATION — FIXED (margin-left hata diya) ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    /* margin-left: 24px; ← HATA DIYA — yeh detail cards shift kar raha tha */
}

/* Hero layout ke liye alag margin */
.hero-layout .reveal.is-visible,
.hero-content.reveal.is-visible {
    margin-left: 24px;
}

@keyframes softRise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseSoft {
    0%, 100% { box-shadow: 0 18px 36px rgba(245, 124, 33, 0.28); }
    50% { box-shadow: 0 18px 42px rgba(245, 124, 33, 0.4); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .about-grid, .contact-grid, .section-header, .social-wrap {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: start;
    }
    /* Detail card: image upar, content neeche */
    .detail-card {
        grid-template-columns: 1fr;
        min-height: unset;
    }
    .detail-card:nth-child(even) .detail-media { order: 0; }
    .detail-card:nth-child(even) .detail-body  { order: 0; }
    .detail-media {
        min-height: 280px;
    }
    .detail-media img {
        min-height: 280px;
    }
    .product-grid, .feature-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    :root {
        --header-height: 78px;
        --container: min(1180px, calc(100% - 1.25rem));
    }
    body { background-attachment: scroll; }
    .menu-toggle { display: inline-block; }
    .brand { gap: 0.65rem; }
    .brand-text strong { font-size: 0.94rem; }
    .brand-text small { font-size: 0.58rem; letter-spacing: 0.14em; }
    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        display: grid;
        gap: 0.35rem;
        padding: 1rem;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(16, 35, 63, 0.08);
        box-shadow: var(--shadow);
        transform: scale(0.96);
        transform-origin: top;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }
    .site-nav.is-open { opacity: 1; visibility: visible; transform: scale(1); }
    .site-nav a { padding: 0.75rem 0.4rem; }
    .hero-content, .section-copy, .contact-form, .social-wrap, .detail-body { padding: 1.4rem; }
    .section { padding: 3.5rem 0; }
    .product-grid, .feature-grid, .footer-grid { grid-template-columns: 1fr; }
    .product-image { height: 170px; }
    .detail-media { min-height: 240px; }
    .detail-media img { min-height: 240px; }
}

@media (max-width: 600px) {
    .hero, .inner-hero { padding: 2.5rem 0 3.5rem; }
    .hero h1, .inner-hero h1 { font-size: clamp(2.1rem, 9vw, 3.2rem); }
    .hero-tagline { font-size: clamp(1rem, 4.8vw, 1.2rem); }
    .hero-actions { width: 100%; flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .section { padding: 3rem 0; }
    .social-links, .social-links a { width: 100%; }
    .social-links a { min-width: 100%; }
    .desc-collapsible {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
        overflow: hidden;
    }
    .desc-collapsible.is-expanded {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
    .desc-toggle { display: inline-flex; }
    .detail-card { min-height: unset; }
    .detail-media { min-height: 200px; }
    .detail-media img { min-height: 200px; max-height: unset; max-width: unset; }
    .brand-mark img { height: 90px; }
}

@media (max-width: 480px) {
    :root { --header-height: 70px; }
    .menu-toggle { width: 44px; height: 44px; }
    .brand-mark img { height: 90px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}