/* ==========================================================================
   Mahalaxmi Group — Brand Landing Page Stylesheet
   Shared across: astral-pipes-pune, jaquar-dealer-pune, hindware-dealer-pune,
   parryware-dealer-pune
   ========================================================================== */

:root {
    --primary: #1a2744;
    --primary-dark: #0d1b2a;
    --accent-gold: #C9A14A;
    --accent-gold-light: #e2c27a;
    --accent-teal: #4ecdc4;
    --white: #ffffff;
    --off-white: #f4f6f9;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(26,39,68,0.06);
    --shadow-md: 0 8px 28px rgba(26,39,68,0.1);
    --shadow-lg: 0 20px 50px rgba(26,39,68,0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1e293b;
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }

/* ===================== TOP NAV ===================== */
.bp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 14px 40px;
}
.bp-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.bp-nav-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.bp-nav-brand strong {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1;
}
.bp-nav-brand span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 4px;
    margin-top: 4px;
}
.bp-nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}
.bp-nav-links a {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--primary);
    transition: color 0.2s;
}
.bp-nav-links a:hover { color: var(--accent-gold); }
.bp-nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.88rem !important;
    transition: all 0.25s;
}
.bp-nav-cta:hover {
    background: var(--accent-gold);
    transform: translateY(-1px);
}

/* ===================== BREADCRUMB ===================== */
.bp-breadcrumb {
    background: var(--off-white);
    padding: 14px 40px;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border);
}
.bp-breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-muted);
}
.bp-breadcrumb a { color: var(--text-muted); }
.bp-breadcrumb a:hover { color: var(--primary); }
.bp-breadcrumb-sep { margin: 0 8px; color: #cbd5e1; }
.bp-breadcrumb-current { color: var(--primary); font-weight: 600; }

/* ===================== BRAND HERO ===================== */
.bp-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}
.bp-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(circle at 15% 30%, rgba(200,148,62,0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(78,205,196,0.08) 0%, transparent 45%);
    pointer-events: none;
}
.bp-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.bp-hero-tag {
    display: inline-block;
    background: rgba(200,148,62,0.15);
    border: 1px solid rgba(200,148,62,0.4);
    color: var(--accent-gold);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 22px;
    text-transform: uppercase;
}
.bp-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.bp-hero h1 .accent { color: var(--accent-gold); }
.bp-hero-lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    margin-bottom: 32px;
    font-weight: 400;
}
.bp-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.bp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}
.bp-btn-primary {
    background: var(--accent-gold);
    color: var(--primary);
}
.bp-btn-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(200,148,62,0.3);
}
.bp-btn-wa {
    background: #25D366;
    color: var(--white);
}
.bp-btn-wa:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,211,102,0.3);
}
.bp-btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.bp-btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}
.bp-hero-visual {
    background: var(--white);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
.bp-hero-logo {
    max-width: 240px;
    width: 100%;
    height: auto;
    margin-bottom: 28px;
}
.bp-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.bp-hero-badge {
    background: var(--off-white);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--border);
}

/* ===================== SECTIONS ===================== */
.bp-section {
    padding: 80px 40px;
}
.bp-section-alt { background: var(--off-white); }
.bp-section-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.bp-section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(200,148,62,0.06) 0%, transparent 40%);
    pointer-events: none;
}
.bp-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.bp-section-head {
    text-align: center;
    margin-bottom: 50px;
}
.bp-section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.bp-section-dark .bp-section-tag { color: var(--accent-gold); }
.bp-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
    max-width: 820px;
    margin: 0 auto 12px;
}
.bp-section-dark h2 { color: var(--white); }
.bp-section-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.65;
}
.bp-section-dark .bp-section-lead { color: rgba(255,255,255,0.75); }
.bp-section-body { margin-top: 24px; }
.bp-section-body p {
    font-size: 1rem;
    color: #334155;
    margin-bottom: 16px;
    line-height: 1.75;
}
.bp-section-dark .bp-section-body p { color: rgba(255,255,255,0.8); }

/* ===================== PRODUCT RANGE GRID ===================== */
.bp-range-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.bp-range-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s;
}
.bp-range-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}
.bp-range-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(200,148,62,0.15), rgba(200,148,62,0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.bp-range-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}
.bp-range-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===================== WHY CARDS (dark bg) ===================== */
.bp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.bp-why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 26px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}
.bp-why-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(200,148,62,0.35);
    transform: translateY(-3px);
}
.bp-why-card h3 {
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.bp-why-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.65;
}
.bp-why-card-accent {
    color: var(--accent-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* ===================== PRICE LIST CTA BLOCK ===================== */
.bp-pricelist-card {
    background: linear-gradient(135deg, rgba(200,148,62,0.08), rgba(26,39,68,0.04));
    border: 2px solid var(--accent-gold);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}
.bp-pricelist-card h2 {
    font-size: 1.9rem !important;
    margin-bottom: 14px !important;
}
.bp-pricelist-card p {
    color: #475569;
    margin-bottom: 24px;
    font-size: 1rem;
}
.bp-pricelist-meta {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}
.bp-pricelist-meta span {
    background: var(--white);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid var(--border);
}

/* ===================== SERVICE AREAS ===================== */
.bp-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 30px;
}
.bp-area-chip {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 14px 16px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}
.bp-area-chip strong { color: var(--accent-gold); }

/* ===================== FAQ ===================== */
.bp-faq-list {
    max-width: 880px;
    margin: 0 auto;
}
.bp-faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
}
.bp-faq-q {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.bp-faq-q::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent-gold);
    transition: transform 0.25s;
    flex-shrink: 0;
}
.bp-faq-item.open .bp-faq-q::after { transform: rotate(45deg); }
.bp-faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}
.bp-faq-item.open .bp-faq-a { padding: 0 24px 22px; max-height: 600px; }

/* ===================== FOOTER ===================== */
.bp-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 40px 30px;
}
.bp-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bp-footer h4 {
    color: var(--accent-gold);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.bp-footer p, .bp-footer a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.8;
}
.bp-footer a:hover { color: var(--accent-gold); }
.bp-footer ul { list-style: none; }
.bp-footer-brand-wordmark {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 6px;
}
.bp-footer-brand-sub {
    color: var(--accent-gold);
    letter-spacing: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.bp-footer-bottom {
    text-align: center;
    padding-top: 24px;
    font-size: 0.82rem;
}

/* ===================== WHATSAPP FLOAT ===================== */
.bp-wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    z-index: 99;
    transition: transform 0.2s;
    text-decoration: none;
}
.bp-wa-float:hover { transform: scale(1.08); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .bp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .bp-range-grid { grid-template-columns: repeat(2, 1fr); }
    .bp-why-grid { grid-template-columns: repeat(2, 1fr); }
    .bp-areas-grid { grid-template-columns: repeat(3, 1fr); }
    .bp-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .bp-nav { padding: 12px 20px; }
    .bp-nav-links { display: none; }
    .bp-nav-links.mobile-open {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: var(--shadow-md);
    }
    .bp-nav-toggle {
        display: block;
        background: transparent;
        border: 1.5px solid var(--primary);
        color: var(--primary);
        width: 40px; height: 40px;
        border-radius: 8px;
        font-size: 1.4rem;
        cursor: pointer;
    }
    .bp-breadcrumb { padding: 12px 20px; }
    .bp-hero { padding: 60px 20px; }
    .bp-hero h1 { font-size: 2.1rem; }
    .bp-hero-lead { font-size: 1rem; }
    .bp-hero-visual { padding: 36px 24px; min-height: auto; }
    .bp-hero-logo { max-width: 180px; }
    .bp-section { padding: 60px 20px; }
    .bp-section h2 { font-size: 1.7rem; }
    .bp-range-grid, .bp-why-grid { grid-template-columns: 1fr; }
    .bp-areas-grid { grid-template-columns: repeat(2, 1fr); }
    .bp-pricelist-card { padding: 32px 24px; }
    .bp-footer { padding: 48px 20px 24px; }
    .bp-footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .bp-btn { font-size: 0.88rem; padding: 12px 20px; }
}
.bp-nav-toggle { display: none; }
