/* ==========================================================================
   BongAstro Premium Unified Stylesheet (Homepage & Wedding Pages)
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    --brand-maroon: #4a0b14;
    --brand-maroon-dark: #2a0307;
    --brand-maroon-light: #6a131f;
    --brand-gold: #e3b663;
    --brand-gold-light: #f7e0b2;
    --bg-cream: #faf5ed;
    --text-dark: #2c1b18;
    --text-muted: #7d6b68;

    --primary: #D4AF37;
    /* Gold */
    --primary-dark: #AA8822;
    --secondary: #6B0821;
    /* Deep Maroon */
    --secondary-light: #8E0A2C;
    --bg-light: #FBF9F6;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Global Resets & Utilities */
* {
    box-sizing: border-box;
}

body {
    max-width: 100% !important;
    background: var(--bg-cream) !important;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.box {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

.d-flex { display: flex !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }
.mt-auto { margin-top: auto !important; }
.text-center { text-align: center !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* ==========================================================================
   1. GLOBAL NAVIGATION (HEADER)
   ========================================================================== */
.custom-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 1.5rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.nav-logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
}

.nav-logo-img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background: white;
    padding: 2px;
}

.nav-logo-text strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.nav-logo-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand-gold);
}

.btn-outline-gold {
    border: 1px solid var(--brand-gold) !important;
    color: var(--brand-gold) !important;
    padding: 8px 18px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    background: rgba(42, 3, 7, 0.4);
    text-decoration: none;
}

.btn-outline-gold:hover {
    background: var(--brand-gold) !important;
    color: var(--brand-maroon-dark) !important;
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .custom-navbar {
        padding: 1.2rem 5%;
    }
}

/* ==========================================================================
   2. HOMEPAGE HERO SECTION
   ========================================================================== */
.super-hero {
    position: relative;
    background: radial-gradient(circle at 50% 25%, #68111e 0%, var(--brand-maroon) 50%, var(--brand-maroon-dark) 100%);
    padding: 8rem 2rem 14rem 2rem;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Background Artwork */
.hero-art-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.hero-bg-art {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0.50;
}



/* Hanging Lanterns (Left & Right) */
.lantern-wrapper {
    position: absolute;
    top: 0;
    z-index: 6;
    pointer-events: none;
    transform-origin: top center;
    filter: drop-shadow(0 8px 24px rgba(227, 182, 99, 0.45));
}

.lantern-img {
    width: 110px;
    height: auto;
    display: block;
}

.lantern-left {
    left: 3%;
    animation: lanternSwayLeft 6.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

.lantern-right {
    right: 3%;
    animation: lanternSwayRight 7.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

@keyframes lanternSwayLeft {
    0% {
        transform: rotate(0deg) translateY(0) scale(1);
    }
    25% {
        transform: rotate(3.8deg) translateY(-2px) scale(0.98);
    }
    50% {
        transform: rotate(0deg) translateY(0) scale(1);
    }
    75% {
        transform: rotate(-4.2deg) translateY(-3px) scale(1.02);
    }
    100% {
        transform: rotate(0deg) translateY(0) scale(1);
    }
}

@keyframes lanternSwayRight {
    0% {
        transform: rotate(0deg) translateY(0) scale(1);
    }
    25% {
        transform: rotate(-4.2deg) translateY(-3px) scale(1.02);
    }
    50% {
        transform: rotate(0deg) translateY(0) scale(1);
    }
    75% {
        transform: rotate(3.8deg) translateY(-2px) scale(0.98);
    }
    100% {
        transform: rotate(0deg) translateY(0) scale(1);
    }
}

@media (max-width: 992px) {
    .lantern-img {
        width: 75px;
    }
    .lantern-left { left: 1%; }
    .lantern-right { right: 1%; }
    .hero-bg-art {
        object-fit: cover;
        opacity: 0.5;
    }
}

@media (max-width: 772px) {
    .hero-art-wrapper {
        display: none !important;
    }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--brand-gold) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.06;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.hero-title {
    font-family: 'Cinzel', serif;
    color: var(--brand-gold-light);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-date-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2.5rem;
}

.hero-date-line {
    width: 50px;
    height: 1px;
    background: var(--brand-gold);
    opacity: 0.7;
}

.hero-date {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* Hero Features Bar */
.hero-features-bar {
    background: rgba(30, 2, 5, 0.45);
    border: 1px solid rgba(227, 182, 99, 0.25);
    border-radius: 50px;
    display: inline-flex;
    padding: 12px 28px;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 500;
    padding-right: 24px;
    border-right: 1px solid rgba(227, 182, 99, 0.2);
}

.hero-feature-item:last-child {
    border-right: none;
    padding-right: 0;
}

.hero-feature-icon {
    color: var(--brand-gold);
    width: 18px;
    height: 18px;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 140px;
    z-index: 5;
}

/* ==========================================================================
   3. HOMEPAGE PRODUCTS SECTION
   ========================================================================== */
.products-container {
    position: relative;
    z-index: 20;
    max-width: 1280px;
    margin: -7.5rem auto 4rem;
    padding: 0 24px;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    background: #38070e;
    border-radius: 24px;
    border: 1px solid rgba(227, 182, 99, 0.4);
    box-shadow: 0 20px 45px rgba(42, 3, 7, 0.25);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    min-height: 340px;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-gold);
    box-shadow: 0 28px 55px rgba(42, 3, 7, 0.35);
}

.card-featured-new {
    border-color: rgba(227, 182, 99, 0.8) !important;
    box-shadow: 0 20px 45px rgba(227, 182, 99, 0.12), 0 20px 45px rgba(42, 3, 7, 0.3) !important;
}

.card-featured-new:hover {
    border-color: #ffd700 !important;
    box-shadow: 0 28px 60px rgba(227, 182, 99, 0.25), 0 28px 60px rgba(42, 3, 7, 0.4) !important;
}

.card-ribbon-corner {
    position: absolute;
    top: 22px;
    right: -32px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #ffe082 0%, #d4af37 50%, #b8860b 100%);
    color: #2a0307;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 38px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    z-index: 15;
    pointer-events: none;
}

.card-badge-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
}

.badge-new-animated {
    background: linear-gradient(135deg, #e3b663 0%, #c4962c 100%);
    color: #2a0307;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 0 12px rgba(227, 182, 99, 0.5);
    animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 6px rgba(227, 182, 99, 0.4);
    }

    100% {
        box-shadow: 0 0 16px rgba(227, 182, 99, 0.8);
    }
}

.badge-new-pulse-dot {
    width: 6px;
    height: 6px;
    background: #2a0307;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.product-content {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
}

.card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-gold);
    margin-bottom: 0.4rem;
}

.card-year-group {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 0.2rem;
}

.card-year-bengali {
    font-family: 'Noto Serif Bengali', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--brand-gold-light);
    line-height: 1;
}

.card-year-english {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

.card-title {
    font-family: 'Cinzel', serif;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin: 0.4rem 0 0.6rem 0;
    line-height: 1.3;
}

.card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
}

.btn-buy {
    background: linear-gradient(135deg, rgba(227, 182, 99, 0.15) 0%, rgba(227, 182, 99, 0.05) 100%);
    color: var(--brand-gold-light);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(227, 182, 99, 0.4);
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background: var(--brand-gold);
    color: var(--brand-maroon-dark);
    border-color: var(--brand-gold);
}

.product-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40%;
    background: linear-gradient(to right, #38070e 0%, transparent 100%);
}

@media (max-width: 992px) {
    .product-card {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 200px;
        order: -1;
    }

    .product-image::after {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        background: linear-gradient(to top, #38070e 0%, transparent 100%);
    }
}

/* ==========================================================================
   4. HOMEPAGE BOTTOM FEATURES STRIP
   ========================================================================== */
.bottom-features {
    max-width: 1100px;
    margin: 1rem auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(227, 182, 99, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.bottom-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bottom-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(227, 182, 99, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #966718;
    flex-shrink: 0;
}

.bottom-feature-text strong {
    display: block;
    font-size: 14px;
    color: var(--brand-maroon-dark);
    font-weight: 700;
}

.bottom-feature-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   5. WEDDING DATES PAGES (HERO, GRID, CARD-PREMIUM-V2, FAQ)
   ========================================================================== */
.premium-hero {
    position: relative;
    background: linear-gradient(135deg, var(--secondary) 0%, #3a0311 100%);
    padding: 10rem 2rem 5rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23d4af37" fill-opacity="0.1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.5;
}

.premium-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary);
    font-size: clamp(2.2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.premium-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.seo-content-block {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.seo-content-block h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--secondary);
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.seo-content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.product-grid-premium {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}
@media (max-width: 576px) {
    .product-grid-premium {
        padding: 0 1.2rem;
    }
}
@media (min-width: 768px) {
    .product-grid-premium {
        grid-template-columns: repeat(2, 1fr);

    }
}

@media (min-width: 1100px) {
    .product-grid-premium {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-premium-v2 {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06), 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(139, 0, 50, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-premium-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(107, 8, 33, 0.15);
}

.card-top-v2 {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #eee;
}

.card-top-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.card-premium-v2:hover .card-top-v2 img {
    transform: scale(1.05);
}

.wave-svg {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 5;
    display: block;
}

.badge-gray-right {
    position: absolute;
    bottom: 0px;
    right: 1px;
    color: #555;
    font-weight: 500;
    font-size: 0.65rem;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.badge-maroon {
    position: absolute;
    left: 0;
    background: var(--secondary);
    color: #FFF;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 12px 5px 15px;
    border-radius: 0 15px 15px 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.badge-black {
    background: #000;
}

.card-body-v2 {
    padding: 1.2rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    background: radial-gradient(circle at top right, rgba(255, 245, 248, 0.4) 0%, rgba(255, 255, 255, 1) 100%);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    justify-content: space-between;
}

.meta-text {
    font-size: 0.65rem;
    line-height: 1.4;
    color: var(--text-dark);
    font-weight: 600;
}

.title-area {
    text-align: center;
    position: relative;
    margin-bottom: 0.5rem;
}

.title-ornament {
    display: flex;
    justify-content: center;
    margin-bottom: 4px;
    color: var(--primary);
}

.card-title-v2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 0;
    line-height: 1.2;
}

.date-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: .80rem;
    margin-bottom: 0.8rem;
}

.divider {
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    margin: 0.8rem 0 1rem 0;
}

.card-footer-v2 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
}

.price-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-v2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.price-sub {
    display: flex;
    align-items: center;
    gap: 8px;
}

.old-price-v2 {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.discount-badge {
    background: rgba(139, 0, 50, 0.08);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
}

.btn-buy-v2 {
    background: linear-gradient(135deg, #6B0821 0%, #4a0315 100%);
    color: #FFF;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(107, 8, 33, 0.4);
    text-decoration: none;
}

.btn-buy-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 8, 33, 0.6);
    background: linear-gradient(135deg, #8E0A2C 0%, #6B0821 100%);
    color: #FFF;
}

.btn-disabled-v2 {
    background: #E5E7EB;
    color: #9CA3AF;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    gap: 8px;
}

.seo-detailed-content {
    max-width: 1000px;
    margin: 0 auto 5rem;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.seo-detailed-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.seo-detailed-content p,
.seo-detailed-content ul {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.premium-faq {
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.premium-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.premium-faq-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.faq-item-premium {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item-premium[open] {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.faq-item-premium summary {
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    background: var(--white);
}

.faq-item-premium summary::-webkit-details-marker {
    display: none;
}

.faq-item-premium .bn-text {
    display: block;
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 6px;
    font-weight: 600;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(107, 8, 33, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    margin-left: 1rem;
}

.faq-item-premium[open] .faq-icon {
    background: var(--secondary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer-premium {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    margin-top: 0.5rem;
    padding-top: 1.5rem;
}

/* ==========================================================================
   6. FOOTER SEO CONTENT & GLOBAL FOOTER
   ========================================================================== */
.footer-seo-content {
    background: #f4ecdf;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    padding: 3.5rem 1.5rem 3rem;
    color: var(--text-dark);
}

.footer-seo-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-seo-inner .panjika-note {
    font-family: 'Noto Serif Bengali', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-maroon);
    background: rgba(227, 182, 99, 0.18);
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.footer-seo-inner .footer-seo-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 auto;
}

.custom-footer {
    background: var(--brand-maroon-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 5% 2rem;
    margin-top: 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--brand-gold);
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

/* ==========================================================================
   7. FLOATING MUSIC PLAYER
   ========================================================================== */
.floating-music-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.music-floating-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6B0821 0%, #30030c 100%);
    border: 2px solid #e3b663;
    color: #e3b663;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(74, 11, 20, 0.4), 0 0 12px rgba(227, 182, 99, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    outline: none;
    padding: 0;
}

.music-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(74, 11, 20, 0.6), 0 0 20px rgba(227, 182, 99, 0.6);
    border-color: #f7e0b2;
}

.music-floating-btn:active {
    transform: scale(0.95);
}

.music-pulse-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #e3b663;
    opacity: 0;
    pointer-events: none;
}

.music-floating-btn.is-playing .music-pulse-ring {
    animation: musicPulse 2s infinite ease-out;
}

@keyframes musicPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.music-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-icon.icon-paused {
    display: block;
    color: #e3b663;
    transition: transform 0.3s ease;
}

.music-floating-btn:hover .music-icon.icon-paused {
    transform: rotate(15deg);
}

.equalizer-bars {
    display: none;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
}

.equalizer-bars span {
    width: 3px;
    background: #e3b663;
    border-radius: 2px;
    animation: bounceEqualizer 1.2s infinite ease-in-out;
}

.equalizer-bars span:nth-child(1) {
    height: 60%;
    animation-delay: 0.1s;
}

.equalizer-bars span:nth-child(2) {
    height: 100%;
    animation-delay: 0.3s;
}

.equalizer-bars span:nth-child(3) {
    height: 75%;
    animation-delay: 0.2s;
}

.equalizer-bars span:nth-child(4) {
    height: 40%;
    animation-delay: 0.4s;
}

@keyframes bounceEqualizer {

    0%,
    100% {
        height: 20%;
    }

    50% {
        height: 100%;
    }
}

.music-floating-btn.is-playing .icon-paused {
    display: none;
}

.music-floating-btn.is-playing .equalizer-bars {
    display: flex;
}

.music-tooltip {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: #2a0307;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(227, 182, 99, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
}

.music-floating-btn:hover .music-tooltip {
    opacity: 1;
    visibility: visible;
    right: 68px;
}

@media (max-width: 768px) {
    .floating-music-wrapper {
        bottom: 18px;
        right: 18px;
    }

    .music-floating-btn {
        width: 46px;
        height: 46px;
    }
}

/* ==========================================================================
   8. SUBPAGES & POLICY PAGES (CONTACT, PRIVACY, TERMS, ABOUT, REFUND)
   ========================================================================== */
.subpage-hero {
    position: relative;
    background: radial-gradient(circle at 50% 30%, #68111e 0%, var(--brand-maroon) 50%, var(--brand-maroon-dark) 100%);
    padding: 7.5rem 1.5rem 5rem 1.5rem;
    text-align: center;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 10px 30px rgba(42, 3, 7, 0.2);
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--brand-gold) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.08;
    pointer-events: none;
}

.subpage-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.subpage-badge {
    display: inline-block;
    color: var(--brand-gold);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.subpage-title {
    font-family: 'Cinzel', serif;
    color: var(--brand-gold-light);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.subpage-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.subpage-container {
    max-width: 960px;
    margin: -3rem auto 5rem;
    padding: 0 20px;
    position: relative;
    z-index: 20;
}

.subpage-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 45px rgba(42, 3, 7, 0.07);
    border: 1px solid rgba(227, 182, 99, 0.25);
    color: #3b2a26;
}

.subpage-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    background: rgba(227, 182, 99, 0.08);
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(227, 182, 99, 0.2);
    font-size: 13px;
    color: var(--brand-maroon);
    margin-bottom: 2rem;
}

.subpage-meta a {
    color: var(--brand-maroon);
    font-weight: 600;
    text-decoration: underline;
}

.subpage-card h2,
.subpage-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--brand-maroon);
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(227, 182, 99, 0.3);
    padding-bottom: 6px;
}

.subpage-card h2:first-child,
.subpage-card h3:first-child {
    margin-top: 0;
}

.subpage-card p,
.subpage-card li {
    font-size: 14.5px;
    line-height: 1.8;
    color: #4a3b38;
    margin-bottom: 1rem;
}

.subpage-card ul {
    padding-left: 24px;
    margin-bottom: 1.5rem;
}

.subpage-card li {
    margin-bottom: 6px;
}

.subpage-card a {
    color: #a32244;
    font-weight: 600;
    text-decoration: none;
}

.subpage-card a:hover {
    text-decoration: underline;
}

.subpage-note-box {
    background: #fdfbf7;
    border-left: 4px solid var(--brand-gold);
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
    font-size: 14px;
    color: #5c453e;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr 1.35fr;
    }
}

.contact-info-panel {
    background: linear-gradient(135deg, #38070e 0%, var(--brand-maroon-dark) 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    color: #ffffff;
    border: 1px solid rgba(227, 182, 99, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-panel h3 {
    font-family: 'Cinzel', serif;
    color: var(--brand-gold-light);
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
    border: none;
    padding: 0;
}

.contact-info-panel p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13.5px;
    line-height: 1.7;
}

.contact-item-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 1.5rem;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(227, 182, 99, 0.15);
}

.contact-icon-bubble {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(227, 182, 99, 0.15);
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 13px;
    color: var(--brand-gold-light);
}

.contact-item-text a,
.contact-item-text span {
    font-size: 13px;
    color: #fff;
    word-break: break-all;
}

/* Form Styles */
.contact-form-panel {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-maroon-dark);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    color: #2c1b18;
    background: #fdfbf7;
    border: 1.5px solid rgba(227, 182, 99, 0.35);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    background: #fff;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 4px rgba(227, 182, 99, 0.2);
    outline: none;
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #6B0821 0%, #38070e 100%);
    color: var(--brand-gold-light);
    border: 1px solid var(--brand-gold);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(74, 11, 20, 0.25);
    margin-top: 0.5rem;
}

.btn-contact-submit:hover {
    background: var(--brand-gold);
    color: var(--brand-maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(227, 182, 99, 0.4);
}

@media (max-width: 768px) {
    .subpage-hero {
        padding: 6.5rem 1rem 4rem;
    }
    .subpage-card {
        padding: 2rem 1.5rem;
    }
}
