/* Homepage Styles */
/* Hero */
.hp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(175deg, var(--temple-white) 0%, var(--sandal-cream) 40%, var(--ivory) 100%);
}

.hp-hero-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g"><stop offset="0%" stop-color="%23FF9933" stop-opacity="0.1"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="50" cy="40" r="45" fill="url(%23g)"/></svg>') center/cover;
    opacity: .7
}

.hp-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.hp-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--marigold-gold);
    border-radius: 50%;
    opacity: 0;
    filter: blur(1px);
    animation: particleFloat 10s ease-in-out infinite
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh)
    }

    20% {
        opacity: .6
    }

    80% {
        opacity: .4
    }

    100% {
        opacity: 0;
        transform: translateY(-20vh)
    }
}

.hp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    animation: heroFadeIn 1.2s ease both
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hp-om {
    font-size: 100px;
    color: var(--marigold-gold);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(230, 168, 23, 0.3));
    animation: omPulse 4s ease-in-out infinite;
    margin-bottom: 15px;
    font-weight: 900;
}

@keyframes omPulse {

    0%,
    100% {
        text-shadow: 0 0 60px rgba(201, 168, 76, .4), 0 0 120px rgba(201, 168, 76, .15)
    }

    50% {
        text-shadow: 0 0 80px rgba(201, 168, 76, .7), 0 0 160px rgba(201, 168, 76, .3)
    }
}

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 168, 23, 0.1);
    border: 1px solid rgba(230, 168, 23, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--copper);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(8px)
}

.hp-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 72px);
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(62, 39, 35, 0.1);
}

.hp-hero h1 span {
    background: linear-gradient(135deg, #FF8C00, #E65100, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: goldShimmer 4s linear infinite
}

@keyframes goldShimmer {
    0% {
        background-position: 0% center
    }

    100% {
        background-position: 200% center
    }
}

.hp-subtitle {
    font-size: clamp(16px, 2.2vw, 22px);
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 1px
}

.hp-desc {
    font-size: clamp(13px, 1.5vw, 16px);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7
}

.hp-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px
}

.hp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .35s cubic-bezier(.22, .61, .36, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden
}

.hp-btn-primary {
    background: var(--saffron-gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 153, 51, 0.4);
}

.hp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 153, 51, 0.5);
}

.hp-btn-secondary {
    background: var(--temple-white);
    color: var(--copper);
    border: 2px solid rgba(182, 90, 60, 0.3);
}

.hp-btn-secondary:hover {
    background: var(--sandal-cream);
    border-color: var(--copper);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.hp-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap
}

.hp-stat {
    text-align: center
}

.hp-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--marigold-gold);
}

.hp-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
    font-weight: 700;
}

/* Section Common */
.hp-section {
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px
}

.hp-section-light {
    background: var(--temple-white);
}

.hp-section-cream {
    background: var(--sandal-cream);
}

.hp-section-dark {
    background: var(--sandal-cream);
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0l3 27h27l-22 17 9 27-17-20-17 20 9-27-22-17h27z" fill="%23E6A817" fill-opacity="0.04" fill-rule="evenodd"/></svg>');
    color: var(--text-main);
}

.hp-container {
    max-width: 1200px;
    margin: 0 auto
}

.hp-section-header {
    text-align: center;
    margin-bottom: 56px
}

.hp-section-header .hp-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px
}

.hp-ornament-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A84C, transparent)
}

.hp-ornament-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C9A84C
}

.hp-section-label {
    font-size: 13px;
    color: #8B6914;
    /* Darkened gold for contrast */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 8px
}

.hp-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: #2A1506;
    font-weight: 800;
    margin-bottom: 12px
}

.hp-section-dark .hp-section-title {
    color: var(--text-heading);
}

.hp-section-subtitle {
    font-size: 15px;
    color: #5A4A3A;
    /* Darkened brown for contrast */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7
}

.hp-section-dark .hp-section-subtitle {
    color: var(--text-muted);
}

/* Mission Cards */
.hp-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px
}

.hp-mission-card {
    background: white;
    border-radius: 24px;
    padding: 36px 28px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .04);
    transition: all .4s cubic-bezier(.22, .61, .36, 1);
    position: relative;
    overflow: hidden
}

.hp-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--saffron-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.hp-mission-card:hover::before {
    transform: scaleX(1)
}

.hp-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .1)
}

.hp-mission-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: transform .4s cubic-bezier(.22, .61, .36, 1)
}

.hp-mission-card:hover .hp-mission-icon {
    transform: scale(1.1) rotate(-8deg)
}

.hp-mi-1 {
    background: linear-gradient(135deg, #FFF0DC, #F5DFC0);
    color: #C73E1D
}

.hp-mi-2 {
    background: linear-gradient(135deg, #FCEADE, #F7D5B8);
    color: #9B2915
}

.hp-mi-3 {
    background: linear-gradient(135deg, #F5EDE0, #E8D5C0);
    color: #6B1D2A
}

.hp-mi-4 {
    background: linear-gradient(135deg, #FDF2E9, #F5DFC0);
    color: #8B6914
}

.hp-mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #2A1506;
    margin-bottom: 10px;
    font-weight: 700
}

.hp-mission-card p {
    font-size: 14px;
    color: #6B5A4A;
    line-height: 1.7
}

/* Dharmic Pillars */
.hp-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 20px;
}

.hp-pillar-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hp-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #FF8C00, #E65100, #FF7043);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hp-pillar-card:hover::before {
    transform: scaleX(1);
}

.hp-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(201, 168, 76, 0.18);
    border-color: rgba(201, 168, 76, 0.4);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF7 100%);
}

.hp-pillar-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 36px;
    background: linear-gradient(135deg, #FFF5E6, #FFEDD6);
    color: var(--kumkum-red);
    border: 1px solid rgba(201, 168, 76, 0.3);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.15);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hp-pillar-card:hover .hp-pillar-icon {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(135deg, var(--saffron), #FF7722);
    color: white;
    box-shadow: 0 12px 32px rgba(255, 153, 51, 0.3);
}

.hp-pillar-card h3 {
    font-family: 'Tiro Devanagari Hindi', 'Playfair Display', serif;
    font-size: 24px;
    color: #2A1506;
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.hp-pillar-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #5A4A3A;
    line-height: 1.8;
    margin: 0;
}

/* Plans */
.hp-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px
}

.hp-plan {
    background: white;
    border-radius: 24px;
    padding: 36px 28px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
    transition: all .4s cubic-bezier(.22, .61, .36, 1);
    position: relative;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.hp-plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .12)
}

.hp-plan-popular {
    border: 2px solid #D4AF37;
    background: linear-gradient(180deg, #FFFDE7, #fff)
}

.hp-plan-popular::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37, #F5D060);
    color: #1a0f05;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 0 0 12px 12px;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, .3)
}

.hp-plan-icon {
    font-size: 40px;
    margin-bottom: 16px
}

.hp-plan h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #3E2723;
    margin-bottom: 8px;
    font-weight: 700
}

.hp-plan-price {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #D4AF37, #8B4513);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px
}

.hp-plan-period {
    font-size: 12px;
    color: #5D4037;
    /* Darkened brown for contrast */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px
}

.hp-plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    text-align: left;
    flex-grow: 1
}

.hp-plan-features li {
    padding: 8px 0;
    font-size: 13px;
    color: #5D4037;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 8px
}

.hp-plan-features li::before {
    content: '✓';
    color: #43A047;
    font-weight: 700;
    font-size: 14px
}

/* Conclave */
.hp-conclave {
    position: relative;
    background: var(--temple-white);
    padding: 100px 24px;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
}

.hp-conclave::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 153, 51, 0.08) 0%, transparent 70%);
}

.hp-conclave-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto
}

.hp-conclave h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    color: var(--text-heading);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
}

.hp-conclave h2 span {
    color: var(--saffron);
}

.hp-conclave p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hp-countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap
}

.hp-countdown-item {
    background: var(--sandal-cream);
    border: 1px solid rgba(230, 168, 23, 0.2);
    border-radius: 20px;
    padding: 20px 28px;
    min-width: 100px;
    box-shadow: var(--shadow-soft);
}

.hp-countdown-num {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--kumkum-red);
    display: block
}

.hp-countdown-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.hp-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px
}

.hp-highlight {
    background: var(--ivory);
    border: 1px solid rgba(182, 90, 60, 0.1);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: var(--shadow-soft);
    transition: all .4s cubic-bezier(.22, .61, .36, 1);
}

.hp-highlight:hover {
    background: rgba(201, 168, 76, .08);
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-4px)
}

.hp-highlight .material-symbols-outlined {
    font-size: 40px;
    color: var(--saffron);
    margin-bottom: 16px
}

.hp-highlight h4 {
    color: var(--text-heading);
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 700
}

.hp-highlight p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6
}

/* Temple Showcase */
.hp-temples-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 8px 4px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
}

.hp-temples-scroll::-webkit-scrollbar {
    display: none
}

.hp-temple-card {
    min-width: 280px;
    max-width: 320px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, .12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
    transition: all .4s;
    scroll-snap-align: start;
    flex-shrink: 0
}

.hp-temple-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(201, 168, 76, .15);
    border-color: rgba(201, 168, 76, .3)
}

.hp-temple-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #F5E6CA, #EDD9B5)
}

.hp-temple-info {
    padding: 20px
}

.hp-temple-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #2A1506;
    margin-bottom: 6px;
    font-weight: 700
}

.hp-temple-loc {
    font-size: 13px;
    color: #5A4A3A;
    /* Darkened brown for contrast */
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px
}

.hp-temple-time {
    font-size: 12px;
    color: #8B6914;
    /* Darkened gold for contrast */
    font-weight: 600
}

.hp-temple-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #FFF0DC, #F5DFC0);
    color: #C73E1D;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s
}

.hp-temple-btn:hover {
    background: linear-gradient(135deg, #F5DFC0, #E8C89A);
    transform: translateX(4px)
}

/* Why Choose */
.hp-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px
}

.hp-why-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 24px;
    background: var(--temple-white);
    border: 1px solid rgba(182, 90, 60, 0.1);
    box-shadow: var(--shadow-soft);
    transition: all .4s cubic-bezier(.22, .61, .36, 1);
}

.hp-why-card:hover {
    background: var(--sandal-cream);
    border-color: var(--marigold-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.hp-why-card .material-symbols-outlined {
    font-size: 42px;
    color: var(--saffron);
    margin-bottom: 16px
}

.hp-why-card h4 {
    color: var(--text-heading);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px
}

.hp-why-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6
}

/* Testimonials */
.hp-testimonials {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 8px 4px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none
}

.hp-testimonials::-webkit-scrollbar {
    display: none
}

.hp-testimonial {
    min-width: 320px;
    max-width: 400px;
    background: var(--temple-white);
    border: 1px solid rgba(230, 168, 23, 0.15);
    border-radius: 28px;
    padding: 40px 32px;
    scroll-snap-align: start;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
    transition: all .4s cubic-bezier(.22, .61, .36, 1);
}

.hp-testimonial:hover {
    border-color: var(--saffron);
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.hp-testimonial-quote {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.hp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.hp-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: var(--saffron-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 19px;
    font-weight: 800;
    font-family: 'Tiro Devanagari Hindi', serif;
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.2);
}

.hp-testimonial-name {
    font-size: 16px;
    color: var(--text-heading);
    font-weight: 800;
    margin-bottom: 2px;
}

.hp-testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Testimonials Wrapper & Navigation */
.hp-testimonials-wrapper {
    position: relative;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hp-testi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--saffron, #FF9933);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hp-testi-arrow .material-symbols-outlined {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.hp-testi-arrow:hover {
    background: var(--saffron, #FF9933);
    color: #ffffff;
    border-color: var(--saffron, #FF9933);
    box-shadow: 0 12px 40px rgba(255, 153, 51, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.hp-testi-prev {
    left: -15px;
}

.hp-testi-prev:hover .material-symbols-outlined {
    transform: translateX(-2px);
}

.hp-testi-next {
    right: -15px;
}

.hp-testi-next:hover .material-symbols-outlined {
    transform: translateX(2px);
}

.hp-testi-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
}

.hp-testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    padding: 0;
}

.hp-testi-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hp-testi-dot.active {
    width: 28px;
    border-radius: 100px;
    background: var(--saffron, #FF9933);
    box-shadow: 0 0 15px rgba(255, 153, 51, 0.5);
}

@media (max-width: 768px) {
    .hp-testimonials-wrapper {
        padding: 0;
    }
    .hp-testi-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 24px;
    }
    .hp-testi-arrow {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        width: 44px;
        height: 44px;
        margin: 0;
    }
    .hp-testi-arrow:hover {
        transform: scale(1.05);
    }
    .hp-testi-dots {
        margin-top: 0;
    }
}

/* App Section */
.hp-app {
    background: var(--sandal-cream);
    background-image: url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="M15 0l1 14h14l-11 9 4 14-8-10-8 10 4-14-11-9h14z" fill="%23E6A817" fill-opacity="0.04" fill-rule="evenodd"/></svg>');
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
}

.hp-app::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, .15) 0%, transparent 50%)
}

.hp-app-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto
}

.hp-app h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.5vw, 48px);
    color: var(--text-heading);
    margin-bottom: 20px;
    font-weight: 900;
}

.hp-app p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1.8
}

.hp-app-features {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.hp-app-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--ivory);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--kumkum-red);
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
}

.hp-app-feat .material-symbols-outlined {
    font-size: 20px
}

/* CTA */
.hp-cta {
    position: relative;
    background: var(--ivory);
    padding: 120px 24px;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
}

.hp-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, .08))
}

.hp-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto
}

.hp-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    color: var(--text-heading);
    margin-bottom: 24px;
    font-weight: 900;
    line-height: 1.2
}

.hp-cta h2 span {
    color: var(--saffron)
}

.hp-cta p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.hp-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

/* Footer */
.hp-footer {
    background: var(--sandal-cream);
    background-image: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M20 0l2 18h18l-15 11 6 18-11-13-11 13 6-18-15-11h18z" fill="%23B65A3C" fill-opacity="0.03" fill-rule="evenodd"/></svg>');
    padding: 80px 24px 40px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.hp-footer-top {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: left;
    margin-bottom: 40px
}

.hp-footer-brand h3 {
    font-family: 'Playfair Display', serif;
    color: var(--kumkum-red);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px
}

.hp-footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6
}

.hp-footer-col h4 {
    color: var(--text-heading);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px
}

.hp-footer-col a {
    display: block;
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 0;
    transition: all .3s
}

.hp-footer-col a:hover {
    color: var(--primary);
    transform: translateX(4px)
}

.hp-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px
}

.hp-footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kumkum-red);
    transition: all .4s cubic-bezier(.22, .61, .36, 1);
    font-size: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
}

.hp-footer-social a:hover {
    background: var(--saffron);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    border-color: var(--saffron);
}

.hp-footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--marigold-gold), transparent);
    opacity: 0.3;
    margin: 40px 0 24px
}

.hp-footer-shloka {
    font-family: 'Tiro Devanagari Hindi', serif;
    color: var(--text-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.8;
}

.hp-footer-copy {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

/* Scroll reveal */
.hp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1)
}

.hp-reveal.hp-visible {
    opacity: 1;
    transform: translateY(0)
}

.hp-reveal-d1 {
    transition-delay: .1s
}

.hp-reveal-d2 {
    transition-delay: .2s
}

.hp-reveal-d3 {
    transition-delay: .3s
}

.hp-reveal-d4 {
    transition-delay: .4s
}

/* Responsive */
@media(max-width:768px) {
    .hp-hero {
        min-height: 90vh;
        padding: 80px 16px 40px
    }

    .hp-om {
        font-size: 64px
    }

    .hp-stats {
        gap: 24px
    }

    .hp-section,
    .hp-conclave,
    .hp-app,
    .hp-cta {
        padding: 56px 16px
    }

    .hp-countdown {
        gap: 12px
    }

    .hp-countdown-item {
        padding: 12px 16px;
        min-width: 65px
    }

    .hp-countdown-num {
        font-size: 28px
    }

    .hp-highlights {
        grid-template-columns: 1fr 1fr
    }

    .hp-why-grid {
        grid-template-columns: 1fr 1fr
    }

    .hp-footer-top {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hp-footer-social {
        justify-content: center
    }
}

@media(max-width:480px) {
    .hp-highlights {
        grid-template-columns: 1fr
    }

    .hp-why-grid {
        grid-template-columns: 1fr
    }

    .hp-hero-btns,
    .hp-cta-btns {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 0 16px;
    }

    .hp-hero-btns .hp-btn,
    .hp-cta-btns .hp-btn {
        width: 100%;
        justify-content: center;
    }

    .hp-wisdom-banner {
        padding: 28px 20px;
    }
}

/* ============================================================
   SANATAN WISDOM SECTION
   ============================================================ */
.hp-wisdom-section {
    position: relative;
    background: linear-gradient(180deg, var(--temple-white) 0%, var(--ivory) 100%);
    overflow: hidden;
}

.hp-wisdom-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(255, 153, 51, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 10% 90%, rgba(230, 168, 23, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hp-wisdom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 56px;
}

.hp-wisdom-card {
    background: white;
    border-radius: 28px;
    padding: 42px 36px 36px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 10px 35px rgba(62, 39, 35, 0.06);
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
    overflow: hidden;
}

.hp-wisdom-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 6px;
    background: linear-gradient(135deg, #FF8C00, #E65100);
    opacity: 0.8;
    transition: height 0.4s ease, opacity 0.4s ease;
}

.hp-wisdom-card:hover::before {
    height: 10px;
    opacity: 1;
}

.hp-wisdom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(201, 168, 76, 0.18);
    border-color: rgba(201, 168, 76, 0.4);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF2 100%);
}

.hp-wisdom-quote-mark {
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    line-height: 1;
    color: rgba(230, 168, 23, 0.12);
    user-select: none;
    pointer-events: none;
    transition: all 0.5s ease;
}

.hp-wisdom-card:hover .hp-wisdom-quote-mark {
    color: rgba(230, 168, 23, 0.25);
    transform: scale(1.1) rotate(5deg);
}

.hp-wisdom-shloka {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--kumkum-red);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(248, 231, 194, 0.5), rgba(255, 248, 238, 0.8));
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: inset 0 2px 5px rgba(255,255,255,0.5);
}

.hp-wisdom-title {
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    color: var(--text-heading);
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.3;
}

.hp-wisdom-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.hp-wisdom-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    flex-wrap: wrap;
    gap: 10px;
}

.hp-wisdom-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--copper);
    font-style: italic;
}

.hp-wisdom-badge {
    background: rgba(230, 168, 23, 0.15);
    color: #8B6914;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(230, 168, 23, 0.3);
}

/* Wisdom Banner */
.hp-wisdom-banner {
    background: linear-gradient(135deg, var(--text-heading) 0%, #3E1512 100%);
    border-radius: 30px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(93, 31, 26, 0.25);
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 153, 51, 0.3);
}

.hp-wisdom-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255, 153, 51, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hp-wb-content {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 700px;
    z-index: 1;
}

.hp-wb-icon {
    font-size: 56px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hp-wb-text h4 {
    font-family: 'Tiro Devanagari Hindi', 'Playfair Display', serif;
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hp-wb-text p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .hp-wisdom-banner {
        padding: 36px 28px;
        flex-direction: column;
        text-align: center;
    }
    .hp-wb-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   NEW HOMEPAGE SECTIONS (SANATAN DIGITAL MISSION)
   ============================================================ */

/* Trust + Urgency Strip */
.hp-trust-strip {
    background: linear-gradient(135deg, var(--temple-white), var(--sandal-cream));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 70px 24px;
    position: relative;
    overflow: hidden;
}

.hp-trust-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(230, 168, 23, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hp-reality-container {
    max-width: 1200px;
    margin: 0 auto 48px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.hp-reality-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--kumkum-red);
    margin-bottom: 24px;
    text-align: center;
    font-weight: 800;
}

.hp-reality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.hp-reality-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.hp-reality-card:hover {
    transform: translateY(-4px);
    border-color: var(--marigold-gold);
}

.hp-reality-icon {
    font-size: 28px;
    background: var(--saffron-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

.hp-reality-text {
    font-size: 15px;
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.5;
}

.hp-trust-stats {
    max-width: 1200px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .hp-trust-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hp-reality-container {
        padding: 28px 20px;
    }
}

.hp-trust-stat-box {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.hp-trust-stat-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--saffron);
}

.hp-trust-stat-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.hp-trust-stat-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-heading);
    font-weight: 800;
    margin-bottom: 8px;
}

.hp-trust-stat-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.hp-trust-line {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #FFFFFF, var(--sandal-cream));
    color: var(--text-heading);
    padding: 32px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    font-family: 'Tiro Devanagari Hindi', 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    line-height: 1.4;
    border: 1px solid rgba(230, 168, 23, 0.4);
}

/* Vision Section */
.hp-vision-section {
    background: linear-gradient(135deg, var(--ivory), var(--temple-white));
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.hp-vision-box {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    padding: 64px 48px;
    text-align: center;
    border: 1px solid rgba(201, 168, 76, 0.3);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.hp-vision-box::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 6px;
    background: var(--saffron-gradient);
    border-radius: 0 0 8px 8px;
}

.hp-vision-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: inline-block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 12px rgba(230, 168, 23, 0.3));
}

.hp-vision-text {
    font-family: 'Tiro Devanagari Hindi', 'Playfair Display', serif;
    font-size: clamp(22px, 3.5vw, 32px);
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hp-vision-box {
        padding: 40px 28px;
    }
}

/* Why Important Section */
.hp-why-important {
    background: var(--sandal-cream);
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0l3 27h27l-22 17 9 27-17-20-17 20 9-27-22-17h27z" fill="%23E6A817" fill-opacity="0.04" fill-rule="evenodd"/></svg>');
    padding: 100px 24px;
}

.hp-problem-sub {
    text-align: center;
    color: var(--kumkum-red);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.hp-challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto 56px;
}

.hp-challenge-card {
    background: white;
    border-radius: 24px;
    padding: 36px 30px;
    border: 1px solid rgba(193, 39, 45, 0.15);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hp-challenge-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--kumkum-red);
}

.hp-challenge-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFEBEE, #FFCDD2);
    color: var(--kumkum-red);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.hp-challenge-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--text-heading);
    font-weight: 800;
    margin-bottom: 12px;
}

.hp-challenge-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.hp-root-cause {
    max-width: 900px;
    margin: 0 auto 56px;
    background: linear-gradient(135deg, #FFFFFF, var(--sandal-cream));
    color: var(--text-heading);
    padding: 24px 36px;
    border-radius: 20px;
    text-align: center;
    font-family: 'Tiro Devanagari Hindi', 'Playfair Display', serif;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    border: 1px solid rgba(230, 168, 23, 0.4);
    box-shadow: var(--shadow-medium);
}

.hp-solution-box {
    max-width: 1000px;
    margin: 0 auto 56px;
    background: white;
    border-radius: 28px;
    padding: 48px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    box-shadow: var(--shadow-medium);
}

.hp-solution-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--text-heading);
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.hp-solution-intro {
    font-size: 16px;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 32px;
    font-weight: 500;
}

.hp-solution-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.hp-solution-point {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--temple-white);
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    font-size: 15.5px;
    color: var(--text-main);
    font-weight: 600;
}

.hp-solution-point .material-symbols-outlined {
    color: var(--tulsi-green);
    font-size: 28px;
}

.hp-insights-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.hp-insight-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hp-insight-card.emotional {
    border-top: 6px solid var(--kumkum-red);
}

.hp-insight-card.anecdotal {
    border-top: 6px solid var(--marigold-gold);
}

.hp-insight-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--temple-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hp-insight-card.emotional .hp-insight-badge {
    color: var(--kumkum-red);
    border: 1px solid rgba(193, 39, 45, 0.2);
}

.hp-insight-card.anecdotal .hp-insight-badge {
    color: var(--copper);
    border: 1px solid rgba(182, 90, 60, 0.2);
}

.hp-insight-quote {
    font-family: 'Tiro Devanagari Hindi', 'Playfair Display', serif;
    font-size: 20px;
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.6;
    font-style: italic;
}

.hp-anecdotal-list {
    list-style: none;
    padding: 0;
}

.hp-anecdotal-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15.5px;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.hp-anecdotal-list li .material-symbols-outlined {
    color: var(--saffron);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .hp-solution-box {
        padding: 32px 24px;
    }
    .hp-insight-card {
        padding: 30px 24px;
    }
}

/* Divya Kripa Key Tool Section */
.hp-divya-kripa {
    background: var(--temple-white);
    padding: 100px 24px;
    position: relative;
}

.hp-dk-positioning {
    max-width: 900px;
    margin: 0 auto 56px;
    background: white;
    border-radius: 28px;
    padding: 48px 40px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.hp-dk-positioning p {
    font-size: 16.5px;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 20px;
}

.hp-dk-positioning p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--kumkum-red);
}

.hp-dk-endeavours {
    max-width: 1200px;
    margin: 0 auto 56px;
}

.hp-dk-endeavours-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--text-heading);
    font-weight: 800;
    margin-bottom: 40px;
}

.hp-dk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.hp-dk-card {
    background: white;
    border-radius: 20px;
    padding: 30px 24px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.hp-dk-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--marigold-gold);
}

.hp-dk-card-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FFF0DC, #F5DFC0);
    color: var(--copper);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.hp-dk-card-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--text-heading);
    font-weight: 800;
    margin-bottom: 6px;
}

.hp-dk-card-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.hp-dk-core-line {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFFFFF, var(--sandal-cream));
    color: var(--text-heading);
    padding: 36px 48px;
    border-radius: 28px;
    text-align: center;
    font-family: 'Tiro Devanagari Hindi', 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    border: 1px solid rgba(230, 168, 23, 0.4);
    box-shadow: var(--shadow-medium);
}

.hp-dk-unified-card {
    margin-top: 24px;
    background: linear-gradient(135deg, #FFF8EE, #FFFFFF);
    color: var(--kumkum-red);
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 800;
    border-color: rgba(193, 39, 45, 0.24);
}

@media (max-width: 768px) {
    .hp-dk-positioning {
        padding: 32px 24px;
    }
    .hp-dk-core-line {
        padding: 28px 24px;
    }
}

/* Who Can Join Section */
.hp-who-join {
    background: var(--sandal-cream);
    padding: 100px 24px;
}

.hp-join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1100px; margin: 0 auto 48px;
}

.hp-join-card {
    background: white;
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.hp-join-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--saffron);
}

.hp-join-icon {
    width: 80px; height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, #FFF5E6, #FFEDD6);
    color: var(--kumkum-red);
    display: flex; align-items: center; justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    transition: all 0.4s ease;
}

.hp-join-card:hover .hp-join-icon {
    transform: scale(1.1) rotate(8deg);
    background: var(--saffron-gradient);
    color: white;
}

.hp-join-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-heading);
    margin-bottom: 12px;
    font-weight: 800;
}

.hp-join-list {
    max-width: 900px;
    margin: 0 auto 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.hp-join-pill {
    background: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-heading);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex; align-items: center; gap: 8px;
}

.hp-join-pill .material-symbols-outlined {
    color: var(--saffron);
}

/* How It Works Section */
.hp-how-works {
    background: var(--temple-white);
    padding: 100px 24px;
}

.hp-steps-flow {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

@media (max-width: 850px) {
    .hp-steps-flow {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hp-step-card {
    background: white;
    border-radius: 28px;
    padding: 48px 36px 36px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: var(--shadow-soft);
    position: relative;
    text-align: center;
    transition: all 0.4s ease;
}

.hp-step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--saffron);
}

.hp-step-num {
    position: absolute;
    top: -24px; left: 50%;
    transform: translateX(-50%);
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--saffron-gradient);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 24px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 153, 51, 0.4);
    border: 4px solid white;
}

.hp-step-icon {
    font-size: 48px;
    color: var(--kumkum-red);
    margin-bottom: 20px;
}

.hp-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-heading);
    font-weight: 800;
    margin-bottom: 20px;
}

.hp-step-points {
    list-style: none; padding: 0;
    text-align: left;
    display: flex; flex-direction: column; gap: 12px;
}

.hp-step-points li {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px; color: var(--text-muted);
    font-weight: 500;
}

.hp-step-points li .material-symbols-outlined {
    color: var(--tulsi-green);
    font-size: 20px;
}

/* ============================================================
   Conclave Meet Section (Ultra Premium Redesign)
   ============================================================ */
.hp-conclave-meet {
    background: linear-gradient(135deg, var(--sandal-cream) 0%, #FFFDF9 50%, var(--sandal-cream) 100%);
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

/* Ambient background glows */
.hp-conclave-aura {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    animation: conclaveAuraPulse 8s ease-in-out infinite alternate;
}

.hp-conclave-aura-1 {
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: var(--saffron);
}

.hp-conclave-aura-2 {
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: var(--marigold-gold);
    animation-delay: 4s;
}

@keyframes conclaveAuraPulse {
    0% { transform: scale(1); opacity: 0.12; }
    100% { transform: scale(1.3); opacity: 0.22; }
}

/* Floating ambient particles */
.hp-conclave-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 80%, rgba(255, 153, 51, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(230, 168, 23, 0.05) 0%, transparent 40%);
}

.hp-conclave-card {
    max-width: 1050px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 40px;
    padding: 64px 56px;
    border: 1px solid rgba(230, 168, 23, 0.35);
    box-shadow: 0 25px 70px rgba(62, 39, 35, 0.08), 0 0 0 12px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hp-conclave-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 90px rgba(62, 39, 35, 0.14), 0 0 0 12px rgba(255, 255, 255, 0.6);
    border-color: rgba(230, 168, 23, 0.6);
    background: rgba(255, 255, 255, 0.95);
}

.hp-conclave-card-accent {
    position: absolute;
    top: 0; left: 0; right: 0; height: 8px;
    background: linear-gradient(90deg, var(--saffron), var(--kumkum-red), var(--marigold-gold), var(--saffron));
    background-size: 300% 100%;
    animation: conclaveGradientShimmer 6s linear infinite;
}

@keyframes conclaveGradientShimmer {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

.hp-conclave-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(255, 153, 51, 0.08) 0%, transparent 60%);
    opacity: 0.6;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.hp-conclave-card:hover .hp-conclave-card-bg {
    opacity: 1;
}

.hp-conclave-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.hp-conclave-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFF8EE, #FFF0DC);
    border: 1px solid rgba(230, 168, 23, 0.4);
    padding: 8px 24px;
    border-radius: 50px;
    color: var(--kumkum-red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(230, 168, 23, 0.15);
    animation: badgeFloat 4s ease-in-out infinite alternate;
}

@keyframes badgeFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-4px); }
}

.hp-conclave-badge .material-symbols-outlined {
    font-size: 20px;
    color: var(--marigold-gold);
}

.hp-conclave-maintitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 8px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hp-conclave-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    background: var(--saffron-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hp-conclave-header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 300px;
    margin: 0 auto;
}

.hp-hd-line {
    height: 2px;
    flex-grow: 1;
    background: linear-gradient(90deg, transparent, rgba(230, 168, 23, 0.5), transparent);
}

.hp-hd-om {
    font-size: 24px;
    color: var(--marigold-gold);
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(230, 168, 23, 0.3));
}

/* Meta Grid */
.hp-conclave-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

@media (max-width: 850px) {
    .hp-conclave-meta-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.hp-conclave-meta-box {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 24px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hp-conclave-meta-box:hover {
    transform: translateY(-5px);
    background: white;
    border-color: var(--marigold-gold);
    box-shadow: 0 15px 35px rgba(230, 168, 23, 0.15);
}

.hp-conclave-meta-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hp-conclave-meta-box:hover .hp-conclave-meta-icon {
    transform: scale(1.15) rotate(8deg);
}

.loc-icon {
    background: linear-gradient(135deg, #FFF0DC, #F5DFC0);
    color: var(--copper);
    box-shadow: 0 8px 20px rgba(182, 90, 60, 0.15);
    border: 1px solid rgba(182, 90, 60, 0.2);
}

.date-icon {
    background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
    color: #7B1FA2;
    box-shadow: 0 8px 20px rgba(123, 31, 162, 0.15);
    border: 1px solid rgba(123, 31, 162, 0.2);
}

.time-icon {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: #2E7D32;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.15);
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.hp-conclave-meta-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}

.hp-meta-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.hp-meta-val {
    font-size: 16px;
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.4;
    word-break: break-word;
}

/* Body (2 Columns) */
.hp-conclave-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 56px;
    position: relative;
    z-index: 2;
}

@media (max-width: 850px) {
    .hp-conclave-body {
        grid-template-columns: 1fr;
    }
}

.hp-conclave-box {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hp-conclave-obj {
    border-top: 5px solid var(--saffron);
}

.hp-conclave-attend {
    border-top: 5px solid var(--kumkum-red);
}

.hp-conclave-box:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 20px 45px rgba(230, 168, 23, 0.12);
    border-color: rgba(230, 168, 23, 0.3);
}

.hp-conclave-box-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(255, 153, 51, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hp-conclave-box:hover .hp-conclave-box-bg {
    opacity: 1;
}

.hp-conclave-box-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.hp-box-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    flex-shrink: 0;
}

.hp-conclave-box:hover .hp-box-icon {
    transform: scale(1.15) rotate(-8deg);
}

.obj-icon {
    background: var(--saffron-gradient);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 153, 51, 0.3);
}

.attend-icon {
    background: linear-gradient(135deg, #C1272D, #8B1E23);
    color: white;
    box-shadow: 0 8px 24px rgba(193, 39, 45, 0.3);
}

.hp-conclave-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-heading);
    font-weight: 800;
    margin: 0;
}

.hp-conclave-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.hp-conclave-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hp-conclave-list li:hover {
    transform: translateX(8px);
    background: white;
    border-color: rgba(230, 168, 23, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.hp-check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tulsi-green);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.hp-conclave-list li:hover .hp-check-icon {
    transform: scale(1.2);
}

.hp-conclave-list li span {
    font-size: 16px;
    color: var(--text-main);
    font-weight: 600;
}

/* CTA Wrapper */
.hp-conclave-cta-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hp-conclave-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--saffron-gradient);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(255, 153, 51, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.hp-conclave-cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.hp-conclave-cta-btn:hover::before {
    left: 100%;
}

.hp-conclave-cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 153, 51, 0.6);
    background: linear-gradient(135deg, #FF9933, #FF7722);
    border-color: var(--marigold-gold);
}

.hp-cta-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.hp-conclave-cta-btn:hover .hp-cta-arrow {
    transform: translateX(6px);
}

.hp-conclave-trust-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    background: rgba(230, 168, 23, 0.1);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(230, 168, 23, 0.2);
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
}

.hp-conclave-trust-note .material-symbols-outlined {
    color: var(--tulsi-green);
    font-size: 18px;
}

@media (max-width: 768px) {
    .hp-conclave-meet { padding: 80px 16px; }
    .hp-conclave-card { padding: 40px 24px; border-radius: 32px; }
    .hp-conclave-maintitle { font-size: 28px; }
    .hp-conclave-box { padding: 28px 20px; }
    .hp-conclave-cta-btn { width: 100%; padding: 16px 24px; font-size: 16px; }
    .hp-conclave-trust-note { padding: 8px 16px; font-size: 12px; flex-direction: column; text-align: center; }
}

/* ============================================================
   Strong Close CTA (Ultra Premium Redesign)
   ============================================================ */
.hp-strong-close {
    background: linear-gradient(135deg, rgba(193, 39, 45, 0.95), rgba(230, 81, 0, 0.92), rgba(182, 90, 60, 0.95)), url('sanatan_heritage_bg.png?v=20260528_3') center/cover no-repeat;
    background-attachment: fixed;
    padding: 140px 24px 120px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hp-strong-close::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* Floating ambient particles */
.hp-sc-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hp-sc-particles::before,
.hp-sc-particles::after {
    position: absolute;
    font-size: 32px;
    opacity: 0.15;
    animation: floatParticle 8s ease-in-out infinite;
}

.hp-sc-particles::before {
    content: '🪔';
    top: 20%;
    left: 10%;
}

.hp-sc-particles::after {
    content: '🙏';
    bottom: 25%;
    right: 10%;
    animation-delay: 4s;
    font-size: 42px;
}

.hp-sc-card {
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
    border-radius: 48px;
    padding: 72px 56px;
    overflow: hidden;
    border-top: 3px solid var(--marigold-gold);
}

.hp-sc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hp-sc-icon-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFFFFF, var(--sandal-cream));
    margin: 0 auto 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 0 12px rgba(255, 255, 255, 0.15);
    animation: pulseAura 3s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

@keyframes pulseAura {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 0 12px rgba(255, 255, 255, 0.15);
    }
    50% {
        box-shadow: 0 20px 50px rgba(255, 153, 51, 0.45), 0 0 0 24px rgba(255, 255, 255, 0.28);
    }
}

.hp-sc-icon-wrapper .mission-om {
    font-size: 56px;
    margin: 0;
    line-height: 1;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}

.hp-sc-title {
    font-family: 'Tiro Devanagari Hindi', 'Playfair Display', serif;
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 900;
    margin-bottom: 36px;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    line-height: 1.15;
}

.hp-sc-lines-wrapper {
    max-width: 850px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hp-sc-line-box {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
    border-left: 5px solid var(--marigold-gold);
    border-radius: 20px;
    padding: 24px 36px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    text-align: left;
}

.hp-sc-line-box:hover {
    transform: translateX(8px) translateY(-3px);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    border-left-color: #FFF;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.hp-sc-line-text {
    font-family: 'Tiro Devanagari Hindi', 'Playfair Display', serif;
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 700;
    color: #FFFDF9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    line-height: 1.5;
    margin: 0;
}

.hp-sc-btns {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.hp-sc-btns .hp-btn-secondary {
    background: white;
    color: var(--kumkum-red);
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 18px;
    padding: 16px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hp-sc-btns .hp-btn-secondary:hover {
    background: var(--temple-white);
    color: #C1272D;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.35);
    border-color: #FFF;
}

.hp-sc-btns .hp-btn-primary {
    background: var(--saffron-gradient);
    color: white;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 40px;
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.4);
    border: 2px solid rgba(255, 153, 51, 0.6);
}

.hp-sc-btns .hp-btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 45px rgba(255, 153, 51, 0.6);
    border-color: var(--marigold-gold);
}

@media (max-width: 768px) {
    .hp-strong-close { padding: 100px 20px 80px; }
    .hp-sc-card { padding: 48px 28px; border-radius: 36px; }
    .hp-sc-icon-wrapper { width: 90px; height: 90px; margin-bottom: 28px; }
    .hp-sc-icon-wrapper .mission-om { font-size: 46px; }
    .hp-sc-line-box { padding: 20px 24px; }
    .hp-sc-btns { gap: 16px; }
    .hp-sc-btns .hp-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Premium Hindi Initiative Section Redesign
   ============================================================ */
.hp-premium-initiative-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 1050px;
    margin: 0 auto 56px;
}

.hp-premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(230, 168, 23, 0.25);
    box-shadow: 0 15px 40px rgba(62, 39, 35, 0.06);
    padding: 40px 48px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    text-align: left;
}

.hp-premium-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(255, 153, 51, 0.08) 0%, transparent 60%);
    opacity: 0.6;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.hp-premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(62, 39, 35, 0.12);
    border-color: rgba(230, 168, 23, 0.5);
    background: rgba(255, 255, 255, 0.95);
}

.hp-premium-card:hover .hp-premium-card-bg {
    opacity: 1;
}

.hp-premium-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hp-premium-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    flex-shrink: 0;
}

.hp-premium-card:hover .hp-premium-icon-box {
    transform: scale(1.1) rotate(-5deg);
}

.lead-icon {
    background: linear-gradient(135deg, #FFF0DC, #F5DFC0);
    color: var(--copper);
    border: 1px solid rgba(182, 90, 60, 0.2);
}

.heritage-icon {
    background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
    color: #7B1FA2;
    border: 1px solid rgba(123, 31, 162, 0.2);
}

.continuity-icon {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: #2E7D32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.grand-icon {
    background: linear-gradient(135deg, var(--marigold-gold), #FF9933);
    color: white;
    box-shadow: 0 10px 28px rgba(230, 168, 23, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hp-premium-badge {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
    background: rgba(230, 168, 23, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(230, 168, 23, 0.3);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.grand-badge {
    background: linear-gradient(135deg, #FFF8EE, #FFF0DC);
    color: var(--kumkum-red);
    border-color: rgba(193, 39, 45, 0.25);
    font-size: 16px;
}

.hp-premium-text-lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.85;
    margin: 0;
}

.hp-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

@media (max-width: 860px) {
    .hp-premium-grid {
        grid-template-columns: 1fr;
    }
    .hp-premium-card {
        padding: 32px 28px;
    }
    .hp-premium-text-lead {
        font-size: 18px;
    }
    .hp-premium-text-grand {
        font-size: 19px !important;
    }
}

.hp-premium-text {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.85;
    margin: 0;
}

/* Grand Mission Highlight Card */
.hp-premium-grand {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 238, 0.9));
    border: 2px solid rgba(230, 168, 23, 0.4);
    box-shadow: 0 20px 50px rgba(230, 168, 23, 0.15);
    padding: 48px 56px;
}

.hp-premium-grand:hover {
    box-shadow: 0 30px 70px rgba(230, 168, 23, 0.25);
    border-color: var(--marigold-gold);
}

.hp-premium-grand-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--saffron), var(--kumkum-red), var(--marigold-gold));
    background-size: 200% 100%;
    animation: grandGradient 6s linear infinite;
}

@keyframes grandGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.hp-premium-text-grand {
    font-size: 21px;
    font-weight: 600;
    color: var(--text-heading);
    line-height: 1.95;
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 120;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 12px 18px 12px 14px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.36), 0 6px 16px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.44), 0 8px 20px rgba(0, 0, 0, 0.18);
}

.whatsapp-float:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

.whatsapp-float-icon {
    width: 30px;
    height: 30px;
    fill: currentColor;
    flex: 0 0 auto;
}

@media (max-width: 640px) {
    .whatsapp-float {
        right: 16px;
        bottom: 88px;
        width: 56px;
        min-height: 56px;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-float span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

/* ════════════════════════════════════════════════ *
 *   MEDIA GALLERY SLIDER STYLES
 * ════════════════════════════════════════════════ */
.hp-media-slider-section {
    background: linear-gradient(180deg, var(--sandal-cream) 0%, var(--temple-white) 100%);
    padding: 100px 24px;
    border-top: 1px solid rgba(230, 168, 23, 0.15);
    border-bottom: 1px solid rgba(230, 168, 23, 0.15);
}

.hp-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: 40px auto 0;
    max-width: 100%;
}

.hp-slider-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 16px 0; /* Add padding so box shadows don't get clipped */
}

.hp-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hp-slide {
    flex: 0 0 25%;
    padding: 0 12px;
    box-sizing: border-box;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

@media (max-width: 992px) {
    .hp-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 600px) {
    .hp-slide {
        flex: 0 0 100%;
    }
}

.hp-slide-card {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.25);
    background: var(--temple-white);
    box-shadow: 0 8px 24px rgba(62, 39, 35, 0.05);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), 
                box-shadow 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                border-color 0.4s ease;
}

.hp-slide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(201, 168, 76, 0.2);
    border-color: rgba(230, 168, 23, 0.5);
}

.hp-slide-media-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.hp-slide-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hp-slide-card:hover .hp-slide-media {
    transform: scale(1.06);
}

/* Gradients and Overlays */
.hp-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 15, 5, 0.8) 0%, rgba(30, 15, 5, 0.1) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.hp-slide-card:hover .hp-slide-overlay {
    opacity: 1;
}

.hp-slide-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
    letter-spacing: 0.5px;
}

.hp-slide-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--marigold-gold);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.hp-slide-type span {
    font-size: 14px;
}

/* Video Indicators */
.hp-video-indicator {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.hp-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                background-color 0.3s ease,
                color 0.3s ease;
}

.hp-play-btn span {
    font-size: 32px;
    margin-left: 4px; /* Align play triangle */
}

.hp-slide-card:hover .hp-play-btn {
    transform: scale(1.12);
    background: var(--saffron-gradient);
    border-color: transparent;
    color: #fff;
}

/* Slider Controls */
.hp-slider-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(230, 168, 23, 0.25);
    color: var(--text-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(62, 39, 35, 0.08);
    position: absolute;
    z-index: 10;
    transition: all 0.3s ease;
}

.hp-slider-arrow:hover {
    background: var(--saffron-gradient);
    color: #fff;
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(255, 153, 51, 0.3);
}

.hp-slider-arrow.disabled {
    opacity: 0;
    pointer-events: none;
}

.hp-slider-prev {
    left: -26px;
}

.hp-slider-next {
    right: -26px;
}

@media (max-width: 768px) {
    .hp-slider-prev {
        left: -10px;
    }
    .hp-slider-next {
        right: -10px;
    }
    .hp-slider-arrow {
        width: 44px;
        height: 44px;
    }
}

/* Slider Dots */
.hp-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.hp-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 105, 20, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.hp-slider-dot:hover {
    background: rgba(139, 105, 20, 0.5);
}

.hp-slider-dot.active {
    width: 28px;
    border-radius: 5px;
    background: var(--marigold-gold);
    box-shadow: 0 0 10px rgba(230, 168, 23, 0.4);
}

/* Loading Placeholder */
.hp-slider-loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 250px;
    gap: 16px;
    color: var(--text-muted);
}

.hp-slider-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(230, 168, 23, 0.1);
    border-top-color: var(--marigold-gold);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ════════════════════════════════════════════════ *
 *   LIGHTBOX STYLES
 * ════════════════════════════════════════════════ */
.hp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 8, 4, 0.97);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(8px);
}

.hp-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.hp-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
}

.hp-lightbox-close:hover {
    background: var(--kumkum-red);
    border-color: transparent;
    transform: scale(1.08) rotate(90deg);
}

.hp-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 50;
}

.hp-lightbox-arrow:hover {
    background: var(--saffron-gradient);
    border-color: transparent;
    transform: translateY(-50%) scale(1.08);
}

.hp-lightbox-prev {
    left: 32px;
}

.hp-lightbox-next {
    right: 32px;
}

@media (max-width: 768px) {
    .hp-lightbox-prev { left: 16px; }
    .hp-lightbox-next { right: 16px; }
    .hp-lightbox-arrow {
        width: 44px;
        height: 44px;
    }
}

.hp-lightbox-content {
    width: 90%;
    max-width: 1000px;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    user-select: none;
}

.hp-lightbox-content img,
.hp-lightbox-content video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hp-lightbox-content img.loaded,
.hp-lightbox-content video.loaded {
    opacity: 1;
    transform: scale(1);
}

.hp-lightbox-caption {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    max-width: 600px;
    padding: 0 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

