/* ===== LEAF GANESHA - Creative Full Page Theme ===== */

:root {
    --section-py: 70px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --shadow-soft: 0 18px 45px rgba(31, 122, 58, 0.08);
    --shadow-card: 0 14px 36px rgba(31, 122, 58, 0.12);
    --shadow-hover: 0 22px 50px rgba(31, 122, 58, 0.18);
}

/* ===== Global Section Helpers ===== */
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: #e8f7df;
    color: var(--color-green);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 700;
    color: var(--color-green);
    line-height: 1.25;
    margin-bottom: 10px;
}

.section-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-green), var(--color-green-light));
}

.section-desc {
    font-size: 15px;
    color: #6d756f;
    line-height: 1.7;
    margin: 0;
}

.site-content {
    overflow-x: hidden;
}

/* ===== Buttons Enhanced ===== */
.btn-primary {
    box-shadow: 0 10px 24px rgba(31, 122, 58, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.btn-primary:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(31, 122, 58, 0.32);
}

.btn-white {
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-2px);
}

/* ===== Hero ===== */
.hero-section {
    position: relative;
    min-height: 88vh;
    border-radius: 0 0 80px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../ganpati/image/1.jpeg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 32%, rgba(255, 255, 255, 0.45) 58%, rgba(255, 255, 255, 0.12) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 40%);
    border-radius: 0 0 80px 80px;
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 560px;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(31, 122, 58, 0.12);
    color: var(--color-green);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 16px;
    color: #5f6658;
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 480px;
}

/* ===== Idols Gallery - New Showcase Design ===== */
.idols-section {
    padding: 10px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fff4 100%);
}

.idols-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Idols section image slider */
.idols-gallery-slider {
    margin-top: 0;
}

.idols-gallery-head {
    text-align: center;
    max-width: 680px;
    margin: 48px auto 28px;
}

.idols-gallery-head .section-title {
    margin-bottom: 10px;
}

.idols-gallery-head .section-desc {
    margin: 0;
}

.idols-gallery-frame {
    position: relative;
}

.idols-gallery-viewport {
    overflow: hidden;
    border-radius: 24px;
}

.idols-gallery-track {
    display: flex;
    gap: 18px;
    transition: transform 0.55s ease;
    will-change: transform;
}

.idols-gallery-item {
    flex: 0 0 calc(25% - 13.5px);
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    background: #f3faf0;
    border: 1px solid rgba(31, 122, 58, 0.12);
    box-shadow: var(--shadow-soft);
}

.idols-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.45s ease;
}

.idols-gallery-item:hover img {
    transform: scale(1.05);
}

.idols-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--color-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.idols-gallery-btn:hover {
    background: var(--color-green);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.idols-gallery-prev {
    left: 10px;
}

.idols-gallery-next {
    right: 10px;
}

.idols-gallery-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    padding: 0 12px;
}

.idols-gallery-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    padding: 0;
    background: rgba(31, 122, 58, 0.25);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, width 0.25s ease;
}

.idols-gallery-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--color-green);
}

.idol-showcase-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(31, 122, 58, 0.12);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.idol-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.idol-showcase-media {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f3faf0;
}

.idol-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.idol-showcase-card:hover .idol-showcase-media img {
    transform: scale(1.06);
}

.idol-showcase-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-green);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.idol-showcase-info {
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.idol-showcase-info h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
    line-height: 1.35;
}

.idol-showcase-info p {
    font-size: 14px;
    color: #6d756f;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.idol-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 22px rgba(31, 122, 58, 0.22);
}

.idol-book-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(31, 122, 58, 0.3);
}

/* ===== Video ===== */
.video-section {
    padding: var(--section-py) 0;
    background: #fff;
}

.video-wrapper {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 4px solid #fff;
}

/* ===== Usecase Section ===== */
.usecase-section {
    padding: var(--section-py) 0;
    background: linear-gradient(135deg, #f7fff4 0%, #eef9e8 100%);
}

.usecase-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(31, 122, 58, 0.1);
    position: relative;
    overflow: hidden;
}

.usecase-box::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(31, 122, 58, 0.08);
    border-radius: 50%;
    top: -80px;
    right: -70px;
}

.usecase-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.usecase-tag {
    display: inline-block;
    background: #e8f7df;
    color: var(--color-green);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 13px;
}

.usecase-head h2 {
    color: var(--color-green);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.25;
}

.usecase-head p {
    color: #6d756f;
    font-size: 16px;
    line-height: 1.7;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.usecase-card {
    background: #fbfff8;
    border: 1px solid rgba(31, 122, 58, 0.12);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: 0.3s ease;
}

.usecase-card i {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    color: #fff;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.usecase-card h5 {
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.usecase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(31, 122, 58, 0.25);
}

/* ===== Testimonials ===== */
.testimonials-section {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, #f7fff4 0%, #ffffff 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card-new {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(31, 122, 58, 0.12);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.review-card-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.review-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(15, 61, 31, 0.25) 100%);
}

.review-card-body {
    padding: 24px 22px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.review-quote-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 14px;
}

.review-card-body p {
    font-size: 15px;
    color: #5f6658;
    line-height: 1.75;
    margin-bottom: 16px;
    flex: 1;
}

.review-card-body .stars {
    color: #f5a623;
    font-size: 14px;
    margin-bottom: 14px;
}

.review-author {
    padding-top: 14px;
    border-top: 1px solid rgba(31, 122, 58, 0.1);
}

.review-author strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.review-author span {
    font-size: 12px;
    color: var(--color-green);
    font-weight: 600;
}

/* ===== Leaf Banner ===== */
.leaf-banner-section {
    margin: 0;
    border-radius: 0;
    padding: var(--section-py) 0;
}

.leaf-banner-inner {
    position: relative;
    z-index: 1;
}

/* ===== Help Section ===== */
.help-section {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, #fff 0%, #f7fff4 100%);
    border-bottom: none;
}

.help-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
    padding: 40px 42px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(31, 122, 58, 0.12);
    box-shadow: var(--shadow-soft);
}

.help-left h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--color-dark);
    margin: 12px 0 10px;
}

.help-left p {
    color: #6d756f;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.btn-help-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
}

.help-right img {
    max-width: 200px;
    margin: 0 auto;
}

/* ===== Shop CTA ===== */
.shop-cta-section {
    padding: var(--section-py) 0;
    background-color: #1f7a3a;
    background-image: linear-gradient(135deg, #0f3d1f 0%, #1f7a3a 55%, #2d9a4e 100%);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.shop-cta-card {
    text-align: center;
    max-width: 720px;
}

.shop-cta-section h2 {
    color: #fff;
    margin-bottom: 14px;
}

.shop-cta-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.7;
}

.shop-cta-section .btn-primary {
    background: #fff;
    color: var(--color-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.shop-cta-section .btn-primary:hover {
    background: #f0fff0;
}

/* ===== Donate / Pre-Book ===== */
.donate-section {
    padding: 40px 0 40px;
    background: #f7fff4;
}

.donate-wrap {
    text-align: center;
}

.btn-donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 200px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    box-shadow: 0 12px 28px rgba(31, 122, 58, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-donate:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(31, 122, 58, 0.38);
}

/* ===== Footer ===== */
.site-footer {
    background: #0d1f14;
    color: rgba(255, 255, 255, 0.88);
}

.footer-brand img {
    max-width: 173px;
    height: auto;
    margin-bottom: 16px;
}

.footer-contact .social-links {
    margin-top: 18px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background: #fff;
    color: var(--color-green);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #08150e;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom a:hover {
    color: #fff;
}

/* ===== Floating WhatsApp ===== */
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
    color: #fff;
}

/* ===== Eco Celebrate Section ===== */
.eco-celebrate-section {
    padding: var(--section-py) 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.eco-celebrate-section::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(31, 122, 58, 0.08);
    top: -90px;
    right: -80px;
}

.eco-celebrate-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(31, 122, 58, 0.12);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    margin-bottom: 28px;
}

.eco-celebrate-visual {
    position: relative;
    min-height: 520px;
    background: #f3faf0;
}

.eco-visual-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.eco-slider-track {
    position: absolute;
    inset: 0;
}

.eco-slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.eco-slider-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.eco-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eco-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.eco-slider-btn:hover {
    background: var(--color-green);
    color: #fff;
}

.eco-slider-prev {
    left: 14px;
}

.eco-slider-next {
    right: 14px;
}

.eco-slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 92px;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
}

.eco-slider-dot {
    width: 9px;
    height: 9px;
    border: none;
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, width 0.25s ease;
}

.eco-slider-dot.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--color-green);
}

.eco-visual-chip {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    z-index: 4;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    border-left: 5px solid var(--color-green);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.eco-visual-chip strong {
    display: block;
    color: var(--color-dark);
    font-size: 16px;
    margin-bottom: 4px;
}

.eco-visual-chip span {
    color: #6d756f;
    font-size: 14px;
}

.eco-celebrate-content {
    padding: 36px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eco-content-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 7px 14px;
    border-radius: 50px;
    background: #e8f7df;
    color: var(--color-green);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.eco-celebrate-content h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--color-green-dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.eco-celebrate-content p {
    font-size: 15px;
    color: #6d756f;
    line-height: 1.75;
    margin-bottom: 12px;
}

.eco-content-points {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.eco-content-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f8fff5;
    border: 1px solid rgba(31, 122, 58, 0.12);
}

.eco-point-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.eco-content-point strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
    line-height: 1.35;
}

.eco-content-point span {
    display: block;
    font-size: 13px;
    color: #6d756f;
    line-height: 1.6;
}

.eco-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.eco-feature-card {
    background: #fff;
    border: 1px solid rgba(31, 122, 58, 0.12);
    border-radius: 22px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eco-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.eco-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.eco-feature-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.eco-feature-card p {
    font-size: 14px;
    color: #6d756f;
    line-height: 1.65;
    margin: 0;
}

.eco-celebrate-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0f3d1f 0%, #1f7a3a 100%);
    color: #fff;
    box-shadow: 0 16px 40px rgba(15, 61, 31, 0.22);
}

.eco-cta-text strong {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
}

.eco-cta-text span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.eco-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding: 13px 22px;
    border-radius: 50px;
    background: #25d366;
    color: #fff !important;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.eco-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    :root {
        --section-py: 56px;
    }

    .eco-celebrate-shell {
        grid-template-columns: 1fr;
    }

    .eco-celebrate-visual {
        min-height: 360px;
    }

    .idols-gallery-item {
        flex: 0 0 calc(50% - 9px);
        height: 260px;
    }

    .idols-gallery-prev {
        left: 8px;
    }

    .idols-gallery-next {
        right: 8px;
    }

    .idols-gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .eco-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .eco-slider-dots {
        bottom: 86px;
    }

    .eco-features-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .eco-celebrate-cta {
        flex-direction: column;
        text-align: center;
    }

    .hero-inner {
        min-height: 72vh;
    }

    .hero-content {
        max-width: 100%;
        padding: 100px 0 60px;
    }

    .hero-bg {
        background-position: center center;
    }

    .idols-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .idol-showcase-media {
        height: 260px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .help-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 28px;
    }

    .help-left .section-badge {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    :root {
        --section-py: 48px;
    }

    .container {
        padding: 0 16px;
    }

    .eco-celebrate-content {
        padding: 24px 20px;
    }

    .eco-features-row {
        grid-template-columns: 1fr;
    }

    .eco-celebrate-visual {
        min-height: 320px;
    }

    .idols-gallery-track {
        gap: 12px;
    }

    .idols-gallery-item {
        flex: 0 0 100%;
        height: 280px;
        border-radius: 16px;
    }

    .idols-gallery-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .idols-gallery-prev {
        left: 4px;
    }

    .idols-gallery-next {
        right: 4px;
    }

    .eco-slider-dots {
        bottom: 80px;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 15px;
    }

    .idols-showcase-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .idol-showcase-media {
        height: 300px;
    }

    .idol-showcase-info {
        padding: 18px 16px 20px;
    }

    .usecase-box {
        padding: 32px 20px;
    }

    .usecase-grid {
        grid-template-columns: 1fr;
    }

    .usecase-head h2 {
        font-size: 1.4rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card-image {
        height: 363px;
    }

    .review-card-body {
        padding: 20px 18px 22px;
    }

    .leaf-banner-section {
        padding: 48px 0;
    }

    .leaf-banner-content {
        padding: 22px 18px;
    }

    .help-card {
        padding: 28px 20px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 8px;
    }

    .countdown-item {
        padding: 14px 8px;
    }

    .countdown-digits {
        font-size: 1.8rem;
    }

    .natural-materials-points {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== Page Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroBgZoom {
    from {
        transform: scale(1.12);
    }
    to {
        transform: scale(1.02);
    }
}

@keyframes pulseWhatsapp {
    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
        transform: scale(1.06);
    }
}

.hero-bg {
    animation: heroBgZoom 1.6s ease-out forwards;
}

.hero-content > .hero-badge,
.hero-content > .hero-title,
.hero-content > .hero-subtitle,
.hero-content > .btn-shop {
    opacity: 0;
    animation: fadeInUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content > .hero-badge {
    animation-delay: 0.15s;
}

.hero-content > .hero-title {
    animation-delay: 0.35s;
}

.hero-content > .hero-subtitle {
    animation-delay: 0.55s;
}

.hero-content > .btn-shop {
    animation-delay: 0.75s;
}

.site-branding {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards 0.05s;
}

.reveal {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: opacity 0.75s ease, -webkit-transform 0.75s ease;
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.reveal-left {
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
}

.reveal.reveal-right {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
}

.reveal.reveal-scale {
    -webkit-transform: scale(0.94);
    transform: scale(0.94);
}

.reveal.is-visible {
    opacity: 1 !important;
    -webkit-transform: none !important;
    transform: none !important;
}

.reveal[data-delay="1"] {
    transition-delay: 0.1s;
}

.reveal[data-delay="2"] {
    transition-delay: 0.2s;
}

.reveal[data-delay="3"] {
    transition-delay: 0.3s;
}

.reveal[data-delay="4"] {
    transition-delay: 0.4s;
}

.reveal[data-delay="5"] {
    transition-delay: 0.5s;
}

.reveal[data-delay="6"] {
    transition-delay: 0.6s;
}

.floating-whatsapp {
    animation: pulseWhatsapp 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg,
    .hero-content > .hero-badge,
    .hero-content > .hero-title,
    .hero-content > .hero-subtitle,
    .hero-content > .btn-shop,
    .site-branding,
    .floating-whatsapp {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Murti Gallery - size-wise filter + responsive slider */
.murti-size-gallery {
    margin-top: 24px;
}

.murti-size-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 auto 28px;
    padding: 8px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(92, 179, 75, 0.18);
    box-shadow: 0 10px 28px rgba(28, 84, 45, 0.08);
    width: fit-content;
    max-width: 100%;
}

.murti-size-btn {
    appearance: none;
    border: 1px solid var(--color-green);
    background: #fff;
    color: var(--color-green);
    border-radius: 999px;
    padding: 9px 17px;
    min-width: 58px;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.murti-size-btn:hover,
.murti-size-btn.is-active {
    background: var(--color-green);
    color: #fff;
    box-shadow: 0 6px 16px rgba(86, 171, 72, .24);
}

.murti-size-btn:hover { transform: translateY(-1px); }

.murti-size-slider-shell {
    position: relative;
    padding: 0 42px;
}

.murti-size-viewport {
    overflow: hidden;
    width: 100%;
}

.murti-size-grid {
    display: flex;
    gap: 18px;
    transform: translate3d(0,0,0);
    transition: transform .42s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}

.murti-size-card {
    flex: 0 0 calc((100% - 54px) / 4);
    min-width: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(29, 84, 45, .10);
    box-shadow: 0 12px 32px rgba(29, 84, 45, .09);
    transition: transform .3s ease, box-shadow .3s ease, opacity .24s ease;
}

.murti-size-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(29, 84, 45, .14);
}

.murti-size-card.is-hidden { display: none; }

.murti-size-image {
    position: relative;
    height: 315px;
    overflow: hidden;
    background: #f7faf5;
}

.murti-size-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transition: transform .42s ease;
}

.murti-size-card:hover .murti-size-image img { transform: scale(1.025); }

.murti-size-label {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--color-green);
    color: #fff;
    box-shadow: 0 6px 18px rgba(31, 91, 45, .22);
    font-size: 13px;
    font-weight: 700;
}

.murti-size-info { padding: 15px 16px 18px; }
.murti-size-info h3 { margin: 0 0 6px; font-size: 17px; line-height: 1.35; color: #253528; }
.murti-size-info p { margin: 0; color: #68756a; font-size: 13px; line-height: 1.6; }

.murti-slider-btn {
    position: absolute;
    top: 44%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--color-green);
    box-shadow: 0 9px 26px rgba(27, 78, 41, .16);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
}

.murti-slider-btn:hover { background: var(--color-green); color: #fff; transform: translateY(-50%) scale(1.04); }
.murti-slider-btn:disabled { opacity: .35; cursor: default; }
.murti-slider-btn:disabled:hover { background: #fff; color: var(--color-green); transform: translateY(-50%); }
.murti-slider-prev { left: 0; transform: translateY(-50%); }
.murti-slider-next { right: 0; transform: translateY(-50%); }

.murti-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    min-height: 12px;
}

.murti-slider-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(44, 133, 66, .22);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}
.murti-slider-dot.is-active { width: 28px; background: var(--color-green); }

@media (max-width: 1100px) {
    .murti-size-card { flex-basis: calc((100% - 36px) / 3); }
    .murti-size-image { height: 300px; }
}

@media (max-width: 820px) {
    .murti-size-card { flex-basis: calc((100% - 18px) / 2); }
    .murti-size-image { height: 320px; }
}

@media (max-width: 600px) {
    .idols-gallery-head { margin-top: 38px; }
    .murti-size-filters {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 8px 4px 10px;
        margin-bottom: 18px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .murti-size-filters::-webkit-scrollbar { display: none; }
    .murti-size-btn { flex: 0 0 auto; padding: 9px 15px; }
    .murti-size-slider-shell { padding: 0 34px; }
    .murti-size-grid { gap: 0; }
    .murti-size-card { flex: 0 0 100%; }
    .murti-size-image { height: 390px; }
    .murti-size-info { padding: 15px 16px 18px; }
    .murti-slider-btn { width: 40px; height: 40px; }
    .murti-slider-prev { left: 5px; }
    .murti-slider-next { right: 5px; }
}

@media (max-width: 420px) {
    .murti-size-slider-shell { padding: 0 28px; }
    .murti-size-image { height: 345px; }
    .murti-slider-prev { left: 0; }
    .murti-slider-next { right: 0; }
}
