/* ==========================================
   DIVINE DHARMA
   HOME PAGE
========================================== */

/* HERO */

.hero{

    min-height:calc(100vh - 80px);

    display:flex;

    align-items:center;

    background:
    radial-gradient(circle at top right,#ffe7a8 0%,#fff8e7 35%,#ffffff 100%);

}

.hero-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

}

.hero-subtitle{

    display:inline-block;

    padding:10px 18px;

    background:#fff3d6;

    color:#8B0000;

    border-radius:50px;

    font-weight:600;

    margin-bottom:20px;

}

.hero h1{

    font-size:4rem;

    margin-bottom:20px;

    color:#222;

}

.hero p{

    font-size:1.1rem;

    margin-bottom:35px;

    max-width:600px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/* RIGHT SIDE */

.hero-right{

    display:flex;

    justify-content:center;

}

.hero-card{

    width:100%;

    max-width:500px;

    background:white;

    border-radius:30px;

    padding:35px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    border:1px solid rgba(212,175,55,.3);

}

.hero-card h3{

    margin-bottom:20px;

    color:#8B0000;

}

.hero-feature{

    display:flex;

    align-items:center;

    gap:15px;

    margin:18px 0;

}

.hero-icon{

    width:55px;

    height:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:linear-gradient(135deg,#D4AF37,#C66A0A);

    color:white;

    font-size:24px;

}

.hero-feature strong{

    display:block;

    margin-bottom:4px;

}

.hero-stats{

    margin-top:50px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-box{

    text-align:center;

    background:white;

    padding:25px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.stat-box h2{

    color:#C66A0A;

    margin-bottom:8px;

}

/* MOBILE */

@media(max-width:992px){

.hero-wrapper{

grid-template-columns:1fr;

}

.hero{

padding:70px 0;

}

.hero{

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero p{

margin:auto auto 35px;

}

.hero-card{

margin-top:40px;

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.hero h1{

font-size:2.3rem;

}

.hero-stats{

grid-template-columns:1fr;

}

}

/* ==================================================
   FEATURED TEMPLES
================================================== */

#featured-temples{
    background:#ffffff;
}

.badge{
    display:inline-block;
    padding:8px 18px;
    background:#FFF4D9;
    color:#B7791F;
    border-radius:50px;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:15px;
}

.section-title{
    font-size:2.5rem;
    margin-bottom:15px;
    color:#222;
}

.section-subtitle{
    max-width:700px;
    margin:0 auto 60px;
    color:#666;
    line-height:1.8;
}

.text-center{
    text-align:center;
}

.temple-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.temple-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s ease;
    border:1px solid rgba(212,175,55,.18);
}

.temple-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.temple-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s ease;
}

.temple-card:hover img{
    transform:scale(1.08);
}

.temple-content{
    padding:25px;
}

.temple-content h3{
    margin-bottom:15px;
    color:#222;
    font-size:1.4rem;
}

.temple-content p{
    color:#666;
    margin-bottom:25px;
    line-height:1.7;
}

.temple-content .btn{
    width:100%;
    justify-content:center;
}

/* ===============================
   Responsive
================================ */

@media (max-width:992px){

    .temple-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .section-title{
        font-size:2rem;
    }

    .section-subtitle{
        margin-bottom:40px;
    }

    .temple-grid{
        grid-template-columns:1fr;
    }

}

/* ==================================================
   ONLINE PUJA SERVICES
================================================== */

#online-puja{
    background:linear-gradient(180deg,#FFFDF8 0%,#FFF7E8 100%);
}

.puja-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:20px;
}

.puja-card{
    background:#ffffff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    border:1px solid rgba(212,175,55,.20);
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.puja-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.puja-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2.3rem;
    background:linear-gradient(135deg,#D4AF37,#C66A0A);
    color:#fff;
}

.puja-card h3{
    margin-bottom:15px;
    font-size:1.35rem;
    color:#222;
}

.puja-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
    min-height:90px;
}

.puja-card .btn{
    width:100%;
    justify-content:center;
}

/* Hover */

.puja-card:hover .puja-icon{
    transform:rotate(8deg) scale(1.08);
    transition:.35s;
}

/* Tablet */

@media (max-width:1200px){

    .puja-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media (max-width:768px){

    .puja-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .puja-card{
        padding:30px 20px;
    }

    .puja-icon{
        width:80px;
        height:80px;
        font-size:2rem;
    }

    .puja-card p{
        min-height:auto;
    }

}

/* ==================================================
   PILGRIMAGE PACKAGES
================================================== */

#pilgrimage{
    background:#ffffff;
    padding:100px 0;
}

.pilgrimage-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:20px;
}

.pilgrimage-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.20);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.pilgrimage-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.pilgrimage-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.pilgrimage-card:hover img{
    transform:scale(1.08);
}

.pilgrimage-content{
    padding:28px;
}

.package-duration{
    display:inline-block;
    background:#FFF4D9;
    color:#B7791F;
    font-size:.85rem;
    font-weight:600;
    padding:8px 14px;
    border-radius:50px;
    margin-bottom:18px;
}

.pilgrimage-content h3{
    font-size:1.5rem;
    color:#222;
    margin-bottom:15px;
}

.pilgrimage-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.package-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    border-top:1px solid #eee;
    padding-top:20px;
}

.package-footer small{
    display:block;
    color:#888;
    margin-bottom:4px;
}

.package-footer h4{
    margin:0;
    color:#C66A0A;
    font-size:1.4rem;
}

.package-footer .btn{
    white-space:nowrap;
}

/* ==========================
   Responsive
========================== */

@media(max-width:1200px){

    .pilgrimage-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    #pilgrimage{
        padding:70px 0;
    }

    .pilgrimage-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .pilgrimage-card img{
        height:220px;
    }

    .package-footer{
        flex-direction:column;
        align-items:flex-start;
    }

    .package-footer .btn{
        width:100%;
        justify-content:center;
    }

}

/* ==================================================
   ASTROLOGY SERVICES
================================================== */

#astrology{
    background:linear-gradient(180deg,#FFF9ED 0%,#FFFFFF 100%);
    padding:100px 0;
}

.astrology-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:20px;
}

.astro-card{
    background:#ffffff;
    border:1px solid rgba(212,175,55,.18);
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.astro-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 50px rgba(0,0,0,.15);
}

.astro-icon{

    width:90px;
    height:90px;

    margin:0 auto 25px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:linear-gradient(135deg,#D4AF37,#C66A0A);

    color:#fff;

    font-size:40px;

}

.astro-card h3{

    margin-bottom:15px;

    font-size:1.4rem;

    color:#222;

}

.astro-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

    min-height:90px;

}

.astro-card .btn{

    width:100%;

    justify-content:center;

}

/* Tablet */

@media(max-width:1200px){

    .astrology-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/* Mobile */

@media(max-width:768px){

    #astrology{

        padding:70px 0;

    }

    .astrology-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .astro-card{

        padding:30px 20px;

    }

    .astro-icon{

        width:80px;

        height:80px;

        font-size:34px;

    }

    .astro-card p{

        min-height:auto;

    }

}

/* ==================================================
   GEMSTONE STORE
================================================== */

#gemstone-store{
    padding:100px 0;
    background:linear-gradient(180deg,#FFFFFF 0%,#FFF9ED 100%);
}

.gemstone-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:20px;
}

.product-card{

    position:relative;

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(212,175,55,.20);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.product-badge{

    position:absolute;

    top:15px;

    left:15px;

    padding:7px 15px;

    background:#C66A0A;

    color:#fff;

    border-radius:50px;

    font-size:.8rem;

    font-weight:600;

    z-index:5;

}

.product-card img{

    width:100%;

    height:240px;

    object-fit:contain;

    padding:25px;

    transition:.35s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-content{

    padding:25px;

}

.product-content h3{

    font-size:1.35rem;

    margin-bottom:12px;

    color:#222;

}

.product-content p{

    color:#666;

    line-height:1.7;

    margin-bottom:20px;

    min-height:75px;

}

.product-price{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:25px;

}

.price{

    font-size:1.6rem;

    font-weight:700;

    color:#C66A0A;

}

.old-price{

    color:#999;

    text-decoration:line-through;

}

.product-content .btn{

    width:100%;

    justify-content:center;

}

/* ======================
   Responsive
====================== */

@media(max-width:1200px){

    .gemstone-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    #gemstone-store{

        padding:70px 0;

    }

    .gemstone-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .product-card img{

        height:220px;

    }

    .product-content p{

        min-height:auto;

    }

}
/* ==================================================
   DAILY PANCHANG
================================================== */

#daily-panchang{
    padding:100px 0;
    background:linear-gradient(180deg,#FFF8ED 0%,#FFFFFF 100%);
}

.panchang-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:35px;
    margin-top:20px;
}

.panchang-card,
.timing-card{

    background:#ffffff;

    border-radius:24px;

    padding:35px;

    border:1px solid rgba(212,175,55,.18);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.panchang-card:hover,
.timing-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.panchang-card h3,
.timing-card h3{

    font-size:1.8rem;

    color:#222;

    margin-bottom:30px;

}

.panchang-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.panchang-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 18px;

    background:#FFF8EE;

    border-radius:14px;

    border-left:5px solid #D4AF37;

}

.panchang-row span{

    color:#666;

    font-weight:500;

}

.panchang-row strong{

    color:#222;

    font-weight:700;

}

.timing-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.timing-box{

    background:#FFF8EE;

    border-radius:18px;

    padding:22px;

    text-align:center;

    border:1px solid rgba(212,175,55,.15);

    transition:.35s;

}

.timing-box:hover{

    background:#FFF1D8;

    transform:translateY(-5px);

}

.timing-box span{

    display:block;

    color:#777;

    margin-bottom:12px;

    font-size:.95rem;

}

.timing-box h4{

    color:#C66A0A;

    font-size:1.25rem;

    margin:0;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:992px){

    .panchang-wrapper{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    #daily-panchang{

        padding:70px 0;

    }

    .timing-grid{

        grid-template-columns:1fr;

    }

    .panchang-card,
    .timing-card{

        padding:28px;

    }

    .panchang-card h3,
    .timing-card h3{

        font-size:1.5rem;

    }

}

@media(max-width:576px){

    .panchang-row{

        flex-direction:column;

        align-items:flex-start;

        gap:8px;

    }

}

/* ==================================================
   FESTIVAL COUNTDOWN
================================================== */

#festival-countdown{
    padding:100px 0;
    background:linear-gradient(180deg,#FFFFFF 0%,#FFF7EA 100%);
}

.festival-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:20px;

}

.festival-card{

    background:#ffffff;

    border-radius:24px;

    padding:35px 28px;

    text-align:center;

    border:1px solid rgba(212,175,55,.18);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.festival-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.festival-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,#D4AF37,#C66A0A);

    color:#fff;

    font-size:40px;

}

.festival-card h3{

    margin-bottom:15px;

    font-size:1.5rem;

    color:#222;

}

.festival-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

    min-height:90px;

}

.countdown{

    display:flex;

    justify-content:center;

    gap:15px;

}

.count-box{

    flex:1;

    background:#FFF7EB;

    border-radius:16px;

    padding:18px 12px;

    border:1px solid rgba(212,175,55,.15);

    transition:.3s;

}

.count-box:hover{

    background:#FFEFD2;

}

.count-value{

    display:block;

    font-size:1.8rem;

    font-weight:700;

    color:#C66A0A;

    margin-bottom:6px;

}

.count-box small{

    color:#777;

    font-size:.85rem;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:1200px){

    .festival-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    #festival-countdown{

        padding:70px 0;

    }

    .festival-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .festival-card{

        padding:30px 22px;

    }

    .festival-icon{

        width:80px;

        height:80px;

        font-size:34px;

    }

    .festival-card p{

        min-height:auto;

    }

}

@media(max-width:480px){

    .countdown{

        flex-direction:column;

        gap:12px;

    }

}

/* ==================================================
   TESTIMONIALS
================================================== */

#testimonials{
    padding:100px 0;
    background:linear-gradient(180deg,#FFF8ED 0%,#FFFFFF 100%);
}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:20px;

}

.testimonial-card{

    background:#ffffff;

    border-radius:24px;

    padding:35px;

    border:1px solid rgba(212,175,55,.18);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.testimonial-top{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:25px;

}

.testimonial-top img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #D4AF37;

}

.testimonial-top h3{

    margin:0;

    font-size:1.3rem;

    color:#222;

}

.testimonial-top span{

    color:#888;

    font-size:.95rem;

}

.rating{

    margin-bottom:20px;

    color:#D4AF37;

    font-size:1.2rem;

    letter-spacing:2px;

}

.testimonial-card p{

    color:#666;

    line-height:1.9;

    font-style:italic;

    position:relative;

}

.testimonial-card p::before{

    content:"“";

    font-size:4rem;

    color:rgba(212,175,55,.20);

    position:absolute;

    top:-30px;

    left:-10px;

    font-family:Georgia,serif;

}

.testimonial-card p::after{

    content:"”";

    font-size:4rem;

    color:rgba(212,175,55,.20);

    position:absolute;

    bottom:-55px;

    right:0;

    font-family:Georgia,serif;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:1200px){

    .testimonial-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    #testimonials{

        padding:70px 0;

    }

    .testimonial-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .testimonial-card{

        padding:30px;

    }

}

@media(max-width:480px){

    .testimonial-top{

        flex-direction:column;

        text-align:center;

    }

}

/* ==================================================
   LATEST BLOG
================================================== */

#latest-blog{

    padding:100px 0;

    background:linear-gradient(180deg,#FFFFFF 0%,#FFF8ED 100%);

}

.blog-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:20px;

}

.blog-card{

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid rgba(212,175,55,.18);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.blog-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.blog-image{

    position:relative;

    overflow:hidden;

}

.blog-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    display:block;

    transition:.45s;

}

.blog-card:hover .blog-image img{

    transform:scale(1.08);

}

.blog-category{

    position:absolute;

    top:18px;

    left:18px;

    background:#D4AF37;

    color:#ffffff;

    padding:8px 16px;

    border-radius:30px;

    font-size:.85rem;

    font-weight:600;

}

.blog-content{

    padding:30px;

}

.blog-meta{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:10px;

    color:#777;

    font-size:.90rem;

    margin-bottom:18px;

}

.blog-content h3{

    margin-bottom:18px;

    font-size:1.45rem;

    line-height:1.5;

}

.blog-content h3 a{

    color:#222;

    text-decoration:none;

    transition:.3s;

}

.blog-content h3 a:hover{

    color:#C66A0A;

}

.blog-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:25px;

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    border:2px solid #D4AF37;

    border-radius:50px;

    text-decoration:none;

    color:#C66A0A;

    font-weight:600;

    transition:.3s;

}

.btn-outline:hover{

    background:#D4AF37;

    color:#ffffff;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:1200px){

    .blog-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    #latest-blog{

        padding:70px 0;

    }

    .blog-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .blog-content{

        padding:25px;

    }

    .blog-image img{

        height:220px;

    }

}

@media(max-width:480px){

    .blog-meta{

        flex-direction:column;

        align-items:flex-start;

    }

    .blog-content h3{

        font-size:1.25rem;

    }

}

/* ==================================================
   NEWSLETTER & COMMUNITY
================================================== */

#newsletter{

    padding:100px 0;

    background:linear-gradient(135deg,#FFF8EA 0%,#FFFFFF 100%);

}

.newsletter-wrapper{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:50px;

    align-items:center;

}

.newsletter-content h2{

    margin:20px 0;

    font-size:2.5rem;

    color:#222;

    line-height:1.3;

}

.newsletter-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

}

.newsletter-features{

    list-style:none;

    padding:0;

    margin:0;

}

.newsletter-features li{

    margin-bottom:18px;

    color:#444;

    font-size:1.05rem;

}

.newsletter-card{

    background:#ffffff;

    border-radius:24px;

    padding:40px;

    border:1px solid rgba(212,175,55,.18);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.newsletter-card h3{

    margin-bottom:15px;

    font-size:1.8rem;

    color:#222;

}

.newsletter-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

#newsletter-form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

#newsletter-form input{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:12px;

    outline:none;

    font-size:1rem;

    transition:.3s;

}

#newsletter-form input:focus{

    border-color:#D4AF37;

    box-shadow:0 0 0 4px rgba(212,175,55,.15);

}

#newsletter-form button{

    margin-top:5px;

}

.community-buttons{

    margin-top:30px;

    display:grid;

    gap:15px;

}

.community-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    padding:15px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.community-btn.whatsapp{

    background:#25D366;

    color:#ffffff;

}

.community-btn.telegram{

    background:#229ED9;

    color:#ffffff;

}

.community-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

/* ===========================
   Responsive
=========================== */

@media(max-width:992px){

    .newsletter-wrapper{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    #newsletter{

        padding:70px 0;

    }

    .newsletter-content h2{

        font-size:2rem;

    }

    .newsletter-card{

        padding:30px;

    }

}

@media(max-width:480px){

    .newsletter-content h2{

        font-size:1.7rem;

    }

    .newsletter-card{

        padding:25px;

    }

}

/* ==================================================
   FOOTER
================================================== */

#footer{

    background:#111111;

    color:#dddddd;

    padding:80px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:50px;

    margin-bottom:50px;

}

.footer-column h3{

    color:#D4AF37;

    font-size:2rem;

    margin-bottom:20px;

}

.footer-column h4{

    color:#ffffff;

    font-size:1.3rem;

    margin-bottom:20px;

}

.footer-column p{

    color:#bdbdbd;

    line-height:1.9;

    margin-bottom:25px;

}

.footer-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-column ul li{

    margin-bottom:14px;

}

.footer-column ul li a{

    color:#cfcfcf;

    text-decoration:none;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#D4AF37;

    padding-left:6px;

}

.footer-contact li{

    color:#cfcfcf;

    line-height:1.8;

}

.footer-social{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.footer-social a{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#222222;

    color:#D4AF37;

    text-decoration:none;

    font-size:18px;

    transition:.3s;

}

.footer-social a:hover{

    background:#D4AF37;

    color:#111111;

    transform:translateY(-4px);

}

.footer-column .btn{

    margin-top:20px;

    display:inline-flex;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.footer-bottom p{

    margin:0;

    color:#9d9d9d;

}

.footer-links{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.footer-links a{

    color:#cfcfcf;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#D4AF37;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:1200px){

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    #footer{

        padding:70px 0 25px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .footer-links{

        justify-content:center;

    }

}

@media(max-width:480px){

    .footer-column h3{

        font-size:1.7rem;

    }

    .footer-column h4{

        font-size:1.15rem;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-links{

        flex-direction:column;

        gap:12px;

    }

}

/* ==================================================
   FLOATING ACTION BUTTONS
================================================== */

/* Scroll Progress */

#scroll-progress{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:linear-gradient(90deg,#D4AF37,#C66A0A);

    z-index:99999;

    transition:width .15s linear;

}

/* Common Floating Button */

.floating-btn,
#backToTop{

    position:fixed;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    border:none;

    cursor:pointer;

    box-shadow:0 12px 30px rgba(0,0,0,.18);

    transition:.35s;

    z-index:9999;

}

/* Hover */

.floating-btn:hover,
#backToTop:hover{

    transform:translateY(-6px) scale(1.05);

}

/* Back To Top */

#backToTop{

    right:30px;

    bottom:30px;

    background:#D4AF37;

    color:#ffffff;

    font-size:22px;

    opacity:0;

    visibility:hidden;

    pointer-events:none;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

}

/* WhatsApp */

.whatsapp-float{

    right:30px;

    bottom:110px;

    background:#25D366;

    color:#ffffff;

    font-size:30px;

}

/* Book Puja */

.puja-float{

    left:30px;

    bottom:30px;

    width:auto;

    height:60px;

    padding:0 24px;

    border-radius:60px;

    background:linear-gradient(135deg,#D4AF37,#C66A0A);

    color:#ffffff;

    gap:12px;

    font-weight:600;

    font-size:16px;

}

.puja-float i{

    font-size:20px;

}

.puja-float span{

    white-space:nowrap;

}

/* Floating Animation */

@keyframes floatButton{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

.whatsapp-float{

    animation:floatButton 3s ease-in-out infinite;

}

.puja-float{

    animation:floatButton 3.5s ease-in-out infinite;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:768px){

    #backToTop{

        right:18px;

        bottom:18px;

        width:52px;

        height:52px;

        font-size:18px;

    }

    .whatsapp-float{

        right:18px;

        bottom:82px;

        width:52px;

        height:52px;

        font-size:24px;

    }

    .puja-float{

        left:18px;

        bottom:18px;

        height:52px;

        padding:0 18px;

        font-size:14px;

    }

}

@media(max-width:480px){

    .puja-float span{

        display:none;

    }

    .puja-float{

        width:52px;

        height:52px;

        padding:0;

        border-radius:50%;

    }

}

/* ==================================================
   ABOUT PAGE
   HERO + STORY
================================================== */


/* ===========================
   ABOUT HERO
=========================== */

.about-hero{

    min-height:calc(100vh - 80px);

    display:flex;

    align-items:center;

    background:
    radial-gradient(circle at top right,#ffe7a8 0%,#fff8e7 35%,#ffffff 100%);

}


.about-hero-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}


.about-hero-content h1{

    font-size:4rem;

    color:#222;

    margin-bottom:20px;

}


.about-hero-content p{

    font-size:1.1rem;

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

    max-width:620px;

}


.about-hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}


/* ===========================
   HERO IMAGE
=========================== */

.about-hero-image{

    display:flex;

    justify-content:center;

}


.about-hero-card{

    background:#fff;

    border-radius:30px;

    padding:35px;

    border:1px solid rgba(212,175,55,.20);

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}


.about-hero-card img{

    width:100%;

    border-radius:22px;

    display:block;

}


/* ===========================
   STORY
=========================== */

#our-story{

    padding:100px 0;

    background:#ffffff;

}


.story-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}


.story-image{

    overflow:hidden;

    border-radius:24px;

    border:1px solid rgba(212,175,55,.18);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}


.story-image img{

    width:100%;

    display:block;

    transition:.45s;

}


.story-image:hover img{

    transform:scale(1.08);

}


.story-content h2{

    margin-bottom:25px;

    color:#222;

    font-size:2.5rem;

}


.story-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}


/* ===========================
   STORY HIGHLIGHTS
=========================== */

.story-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:40px;

}


.highlight-box{

    background:#FFF8EE;

    border:1px solid rgba(212,175,55,.15);

    border-radius:20px;

    padding:24px;

    transition:.35s;

}


.highlight-box:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(0,0,0,.10);

}


.highlight-box h3{

    color:#C66A0A;

    margin-bottom:10px;

    font-size:2rem;

}


.highlight-box p{

    margin:0;

    color:#666;

}