/* ===================================================
   GOOGLE FONTS
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');


/* ===================================================
   RESET
=================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F8F6F1;
    color:#2B2B2B;
    line-height:1.7;
    overflow-x:hidden;
    padding-top:85px;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    border:none;
    outline:none;
    cursor:pointer;
    font-family:inherit;
}

input,
textarea{
    font-family:inherit;
    outline:none;
}


/* ===================================================
   ROOT VARIABLES
=================================================== */

:root{

    --primary:#C89B3C;
    --primary-light:#E2C46B;

    --background:#F8F6F1;

    --white:#ffffff;

    --dark:#2B2B2B;

    --gray:#666666;

    --border:#E5DAC5;

    --radius:16px;

    --shadow:0 15px 35px rgba(0,0,0,.08);

    --transition:.35s ease;

    --container:1280px;

}


/* ===================================================
   COMMON CLASSES
=================================================== */

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

section{

    padding:100px 0;

}

.text-center{

    text-align:center;

}

.section-title{

    font-family:'Cinzel',serif;

    font-size:46px;

    color:var(--dark);

}

.section-title span{

    color:var(--primary);

}

.section-description{

    font-size:17px;

    color:var(--gray);

    max-width:700px;

    margin:20px auto 0;

}
/* ===================================================
   HEADER
=================================================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:85px;
    background:rgba(248,246,241,.95);
    backdrop-filter:blur(15px);
    border-bottom:1px solid var(--border);
    z-index:1000;
}

.navbar{
    height:85px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ===================================================
   LOGO
=================================================== */

.logo{
    display:flex;
    flex-direction:column;
}

.logo h2{
    font-family:'Cinzel',serif;
    font-size:30px;
    color:var(--primary);
    letter-spacing:4px;
}

.logo span{
    font-size:11px;
    letter-spacing:3px;
    color:var(--gray);
    margin-top:2px;
}

/* ===================================================
   NAVIGATION
=================================================== */

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-links a{
    position:relative;
    font-size:16px;
    font-weight:500;
    transition:var(--transition);
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--primary);
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width:100%;
}

/* ===================================================
   NAV BUTTONS
=================================================== */

.nav-buttons{
    display:flex;
    align-items:center;
    gap:15px;
}

.whatsapp-btn,
.book-btn{
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);
}

.whatsapp-btn{
    border:2px solid var(--primary);
    color:var(--primary);
}

.whatsapp-btn:hover{
    background:var(--primary);
    color:#fff;
}

.book-btn{
    background:var(--primary);
    color:#fff;
}

.book-btn:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow);
}
/* ===================================================
   HERO SECTION
=================================================== */

.hero{
    min-height:calc(100vh - 85px);
    display:flex;
    align-items:center;
    background:
        linear-gradient(rgba(248,246,241,.82),rgba(248,246,241,.90)),
        url('../images/hero/hero-bg.jpg');
    background-size:cover;
    background-position:center;
    padding:40px 0 60px;
}

.hero .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.hero-content{
    flex:1;
    max-width:650px;
}

.hero-subtitle{
    color:var(--primary);
    font-size:18px;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-family:'Cinzel',serif;
    font-size:64px;
    line-height:1.15;
    color:var(--dark);
    margin-bottom:25px;
}

.hero h1 span{
    color:var(--primary);
}

.hero-description{
    font-size:18px;
    color:var(--gray);
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:flex-end;
}

.hero-image img{
    width:100%;
    max-width:520px;
    object-fit:contain;
    filter:drop-shadow(0 20px 40px rgba(0,0,0,.15));
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}
/* ===================================================
   TRUST SECTION
=================================================== */

.trust-section{
    background:#ffffff;
    padding:80px 0;
}

.trust-section .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.trust-card{
    background:#F8F6F1;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:var(--transition);
}

.trust-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}

.trust-card h2{
    font-size:42px;
    color:var(--primary);
    font-family:'Cinzel',serif;
    margin-bottom:10px;
}

.trust-card p{
    color:var(--gray);
    font-size:16px;
}
/*==================================================
            POPULAR SERVICES
==================================================*/

.services{
    padding:120px 0;
    background:#F8F6F1;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#fff;
    color:#C89B3C;
    border:1px solid #E8D8AF;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-title{
    font-size:48px;
    font-family:'Cinzel',serif;
    margin-bottom:18px;
    color:#222;
}

.section-title span{
    color:#C89B3C;
}

.section-description{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:18px;
}

/* GRID */

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

/* CARD */

.service-card{

    display:flex;

    flex-direction:column;

    overflow:hidden;

    background:#fff;

    border-radius:22px;

    border:1px solid #E8E3D6;

    transition:.40s;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    border-color:#C89B3C;

}

/* IMAGE */

.service-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.service-card:hover img{

    transform:scale(1.08);

}

/* CONTENT */

.service-content{

    padding:28px;

}

.service-content h3{

    font-size:28px;

    font-family:'Cinzel',serif;

    margin-bottom:15px;

    color:#222;

}

.service-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:28px;

    min-height:85px;

}

/* BUTTONS */

.service-buttons{

    display:flex;

    justify-content:space-between;

    gap:15px;

}

/* Learn */

.learn-btn{

    flex:1;

    text-align:center;

    padding:13px;

    border:2px solid #C89B3C;

    border-radius:40px;

    color:#C89B3C;

    font-weight:600;

    transition:.35s;

}

.learn-btn:hover{

    background:#C89B3C;

    color:#fff;

}

/* CALL */

.call-btn{

    flex:1;

    background:#2B2B2B;

    color:#fff;

    border:none;

    padding:13px;

    border-radius:40px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.call-btn:hover{

    background:#C89B3C;

    color:#fff;

}

/* MOBILE */

@media(max-width:991px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services{

padding:80px 0;

}

.services-grid{

grid-template-columns:1fr;

}

.section-title{

font-size:36px;

}

.service-content h3{

font-size:24px;

}

.service-buttons{

flex-direction:column;

}

}
/*==================================================
        SERVICE HERO
==================================================*/

.service-hero{

    padding:140px 0 90px;

    background:#F8F6F1;

}

.breadcrumb{

    margin-bottom:45px;

    color:#777;

    font-size:15px;

}

.breadcrumb a{

    color:#666;

}

.breadcrumb strong{

    color:#C89B3C;

}

.service-hero-grid{

display:flex;

justify-content:center;

align-items:center;

}

.service-hero-content{

max-width:850px;

margin:auto;

text-align:center;

}
.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}
.service-tag{

    display:inline-block;

    padding:10px 18px;

    background:#fff;

    border:1px solid #E5DAC5;

    border-radius:50px;

    color:#C89B3C;

    font-weight:600;

    margin-bottom:25px;

}

.service-hero-content h1{

font-size:62px;

font-family:'Cinzel',serif;

line-height:1.2;

margin-bottom:25px;

text-align:center;

}

.service-hero-content h1 span{

display:block;

color:#C89B3C;

}

.service-hero-content p{

max-width:700px;

margin:20px auto;

font-size:18px;

line-height:1.8;

text-align:center;

}
@media(max-width:768px){

.service-hero-content{

width:100%;

padding:0 20px;

}

.service-hero-content h1{

font-size:34px !important;

line-height:1.3;

}

.service-hero-content p{

font-size:16px;

}

}
.service-hero-grid{

display:block !important;

}

.service-right img{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}
/*==================================================
        ABOUT PUJA
==================================================*/

.about-puja{

    padding:100px 0;

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:22px;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin:20px 0;

}

.about-list{

    margin-top:30px;

}

.about-list li{

    margin-bottom:16px;

    font-size:17px;

    color:#2B2B2B;

    font-weight:500;

}
/*==================================================
        BENEFITS SECTION
==================================================*/

.benefits-section{
    padding:110px 0;
    background:#F8F6F1;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.benefit-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    border:1px solid #E8E3D6;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.benefit-card:hover{
    transform:translateY(-10px);
    border-color:#C89B3C;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.benefit-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;
    background:#FFF7E8;
    color:#C89B3C;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
}

.benefit-card h3{
    font-size:24px;
    font-family:'Cinzel',serif;
    margin-bottom:15px;
}

.benefit-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){
    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .benefits-grid{
        grid-template-columns:1fr;
    }
}
/*==================================================
            PUJA PROCESS
==================================================*/

.process-section{

    padding:120px 0;

    background:#fff;

}

.timeline{

    max-width:900px;

    margin:70px auto 0;

    position:relative;

}

.timeline::before{

    content:"";

    position:absolute;

    left:30px;

    top:0;

    width:3px;

    height:100%;

    background:#C89B3C;

}

.timeline-item{

    display:flex;

    gap:35px;

    margin-bottom:45px;

    position:relative;

}

.timeline-number{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#C89B3C;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    font-weight:700;

    flex-shrink:0;

    z-index:2;

}

.timeline-content{

    background:#F8F6F1;

    padding:28px;

    border-radius:18px;

    width:100%;

    border:1px solid #E5DAC5;

    transition:.35s;

}

.timeline-content:hover{

    transform:translateX(8px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.timeline-content h3{

    font-size:24px;

    margin-bottom:12px;

    font-family:'Cinzel',serif;

}

.timeline-content p{

    color:#666;

    line-height:1.8;

}

@media(max-width:768px){

.timeline::before{

left:25px;

}

.timeline-item{

gap:20px;

}

.timeline-number{

width:50px;

height:50px;

font-size:18px;

}

}
/*==================================================
                    FAQ
==================================================*/

.faq-section{

    padding:120px 0;

    background:#fff;

}

.faq-container{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    background:#F8F6F1;

    border:1px solid #E5DAC5;

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

    transition:.35s;

}

.faq-item:hover{

    border-color:#C89B3C;

}

.faq-item summary{

    padding:24px 30px;

    cursor:pointer;

    font-size:20px;

    font-weight:600;

    list-style:none;

    position:relative;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item summary::after{

    content:"+";

    position:absolute;

    right:30px;

    font-size:26px;

    color:#C89B3C;

}

.faq-item[open] summary::after{

    content:"−";

}

.faq-item p{

    padding:0 30px 25px;

    color:#666;

    line-height:1.8;

}
/*==================================================
            BOOKING CTA
==================================================*/

.booking-cta{

    padding:120px 0;

    background:linear-gradient(135deg,#1E1E1E,#2E2E2E);

}

.booking-wrapper{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

    align-items:center;

}

.booking-content h2{

    font-size:52px;

    font-family:'Cinzel',serif;

    color:#fff;

    margin:20px 0;

}

.booking-content h2 span{

    color:#C89B3C;

}

.booking-content p{

    color:#ddd;

    line-height:1.9;

    margin-bottom:35px;

}

.booking-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.booking-features div{

    color:#fff;

    font-size:17px;

}

.booking-buttons{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.call-large{

    background:#C89B3C;

    color:#fff;

    text-align:center;

    padding:18px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    transition:.35s;

}

.call-large:hover{

    transform:translateY(-4px);

    background:#d6aa45;

}

.whatsapp-large{

    background:#25D366;

    color:#fff;

    text-align:center;

    padding:18px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    transition:.35s;

}

.whatsapp-large:hover{

    transform:translateY(-4px);

}

@media(max-width:991px){

.booking-wrapper{

grid-template-columns:1fr;

}

.booking-features{

grid-template-columns:1fr;

}

}
/*==================================================
        RELATED SERVICES
==================================================*/

.related-services{
    padding:120px 0;
    background:#fff;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.related-card{
    background:#F8F6F1;
    border:1px solid #E5DAC5;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
    text-align:center;
    text-decoration:none;
    color:#2B2B2B;
}

.related-card:hover{
    transform:translateY(-10px);
    border-color:#C89B3C;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.related-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.4s;
}

.related-card:hover img{
    transform:scale(1.05);
}

.related-card h3{
    padding:22px;
    font-size:24px;
    font-family:'Cinzel',serif;
}

@media(max-width:991px){
    .related-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .related-grid{
        grid-template-columns:1fr;
    }
}
/*==================================================
                    FOOTER
==================================================*/

.footer{

    background:#1E1E1E;

    color:#fff;

    padding:80px 0 20px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

}

.footer-logo{

    color:#C89B3C;

    font-family:'Cinzel',serif;

    margin-bottom:20px;

}

.footer-column p{

    color:#ccc;

    line-height:1.8;

    margin-bottom:12px;

}

.footer-column h3{

    margin-bottom:20px;

    color:#fff;

}

.footer-column ul{

    list-style:none;

}

.footer-column li{

    margin-bottom:12px;

}

.footer-column a{

    color:#ccc;

    text-decoration:none;

    transition:.3s;

}

.footer-column a:hover{

    color:#C89B3C;

}

.footer-whatsapp{

    display:inline-block;

    margin-top:20px;

    background:#25D366;

    color:#fff !important;

    padding:12px 24px;

    border-radius:50px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    margin-top:50px;

    padding-top:20px;

    text-align:center;

    color:#aaa;

}

@media(max-width:991px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

}

}
/*==========================================
 WHY CHOOSE
==========================================*/

.why-choose{
    padding:100px 0;
    background:#F8F6F1;
}

.choose-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.choose-card{

    background:#ffffff;
    padding:35px 30px;
    border-radius:20px;

    text-align:center;

    transition:.4s;

    border:1px solid rgba(200,155,60,.15);

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.choose-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.choose-icon{

    width:80px;
    height:80px;

    margin:auto;

    border-radius:50%;

    background:#C89B3C;

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:36px;

    margin-bottom:25px;

}

.choose-card h3{

    font-size:24px;

    color:#2B2B2B;

    margin-bottom:15px;

}

.choose-card p{

    color:#666;

    line-height:1.8;

    font-size:15px;

}
/*==========================================
  HOW BOOKING WORKS
==========================================*/

.booking-process{
    padding:100px 0;
    background:#ffffff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.process-card{

    background:#F8F6F1;

    padding:40px 25px;

    text-align:center;

    border-radius:20px;

    border:1px solid rgba(200,155,60,.15);

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.process-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#C89B3C;

    transform:scaleX(0);

    transition:.4s;

}

.process-card:hover::before{

    transform:scaleX(1);

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.process-number{

    width:55px;
    height:55px;

    margin:auto;

    border-radius:50%;

    background:#C89B3C;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

    font-weight:700;

    margin-bottom:20px;

}

.process-icon{

    font-size:45px;

    margin-bottom:20px;

}

.process-card h3{

    font-size:22px;

    color:#2B2B2B;

    margin-bottom:15px;

}

.process-card p{

    color:#666;

    line-height:1.8;

    font-size:15px;

}
/*==========================================
 FEATURED PUJAS
==========================================*/

.featured-pujas{

padding:100px 0;

background:#F8F6F1;

}

.featured-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:60px;

}

.featured-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.featured-card:hover{

transform:translateY(-10px);

}

.featured-card img{

width:100%;

height:260px;

object-fit:cover;

transition:.5s;

}

.featured-card:hover img{

transform:scale(1.08);

}

.featured-content{

padding:30px;

}

.featured-content h3{

font-size:26px;

margin-bottom:15px;

color:#2B2B2B;

}

.featured-content p{

line-height:1.8;

color:#666;

margin-bottom:25px;

}
/*==========================================
 TESTIMONIALS
==========================================*/

.testimonials{

padding:100px 0;

background:#ffffff;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.testimonial-card{

background:#F8F6F1;

padding:35px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.05);

transition:.4s;

border:1px solid rgba(200,155,60,.15);

}

.testimonial-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.stars{

font-size:22px;

color:#C89B3C;

margin-bottom:20px;

}

.testimonial-card p{

color:#666;

line-height:1.9;

margin-bottom:25px;

font-style:italic;

}

.client-info h4{

color:#2B2B2B;

margin-bottom:5px;

}

.client-info span{

color:#888;

font-size:14px;

}
/*==========================================
 GALLERY
==========================================*/

.gallery-section{

    padding:100px 0;
    background:#F8F6F1;

}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;

}

.gallery-item{

    overflow:hidden;
    border-radius:20px;
    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.gallery-item img{

    width:100%;
    height:300px;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.1);

}

.gallery-btn{

    text-align:center;
    margin-top:50px;

}
/*==========================================
 FAQ
==========================================*/

.faq-section{

    padding:100px 0;

    background:#ffffff;

}

.faq-wrapper{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    background:#F8F6F1;

    margin-bottom:20px;

    border-radius:15px;

    border:1px solid rgba(200,155,60,.15);

    overflow:hidden;

}

.faq-item summary{

    padding:22px 25px;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    color:#2B2B2B;

    list-style:none;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item summary::after{

    content:"+";

    float:right;

    font-size:24px;

    color:#C89B3C;

}

.faq-item[open] summary::after{

    content:"−";

}

.faq-item p{

    padding:0 25px 25px;

    color:#666;

    line-height:1.8;

}
/*==========================================
 CALL TO ACTION
==========================================*/

.cta-section{

padding:100px 0;

background:linear-gradient(rgba(25,25,25,.75),rgba(25,25,25,.75)),
url("../images/cta-bg.jpg") center/cover no-repeat;

}

.cta-box{

max-width:900px;

margin:auto;

text-align:center;

color:#fff;

}

.cta-box h2{

font-size:52px;

line-height:1.3;

margin:20px 0;

}

.cta-box h2 span{

color:#C89B3C;

}

.cta-box p{

max-width:700px;

margin:0 auto 35px;

line-height:1.9;

font-size:17px;

color:#ddd;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.cta-buttons .book-btn{

padding:16px 36px;

}

.cta-buttons .whatsapp-btn{

padding:16px 36px;

}
/*==========================================
 CONTACT
==========================================*/

.contact-section{

padding:100px 0;

background:#F8F6F1;

}

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

margin-top:60px;

}

.contact-card{

display:flex;

gap:20px;

align-items:center;

background:#fff;

padding:25px;

margin-bottom:20px;

border-radius:18px;

box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.contact-icon{

width:60px;

height:60px;

background:#C89B3C;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:26px;

color:#fff;

}

.contact-card h3{

margin-bottom:8px;

color:#2B2B2B;

}

.contact-card a,
.contact-card p{

color:#666;

text-decoration:none;

}

.contact-form{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.contact-form form{

display:flex;

flex-direction:column;

gap:20px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

padding:16px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

outline:none;

font-family:inherit;

}

.contact-form textarea{

resize:vertical;

min-height:140px;

}
/*==========================================
 FOOTER
==========================================*/

.footer{

padding:80px 0 20px;

background:#1F1A17;

color:#fff;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.2fr;

gap:40px;

}

.footer-logo{

font-size:34px;

color:#C89B3C;

margin-bottom:20px;

}

.footer-column p{

line-height:1.8;

color:#ccc;

margin-bottom:15px;

}

.footer-column h3{

margin-bottom:20px;

color:#fff;

}

.footer-column ul{

list-style:none;

}

.footer-column ul li{

margin-bottom:12px;

}

.footer-column a{

color:#ccc;

text-decoration:none;

transition:.3s;

}

.footer-column a:hover{

color:#C89B3C;

}

.footer-social{

display:flex;

gap:15px;

margin-top:25px;

}

.footer-social a{

width:45px;

height:45px;

background:#C89B3C;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

font-size:20px;

}

.footer-btn{

display:inline-block;

margin-top:20px;

background:#C89B3C;

color:#fff !important;

padding:14px 28px;

border-radius:10px;

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.1);

margin-top:60px;

padding-top:25px;

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:20px;

}

.footer-links{

display:flex;

gap:25px;

}
/*==========================================
 UPCOMING FESTIVAL
==========================================*/

.festival-section{

padding:100px 0;

background:linear-gradient(135deg,#fff9ef,#f8f6f1);

}

.festival-box{

display:grid;

grid-template-columns:1.2fr 1fr;

gap:60px;

align-items:center;

background:#fff;

padding:60px;

border-radius:25px;

box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.festival-tag{

display:inline-block;

padding:10px 18px;

background:#C89B3C;

color:#fff;

border-radius:30px;

font-size:14px;

font-weight:600;

margin-bottom:20px;

}

.festival-left h2{

font-size:52px;

margin-bottom:20px;

color:#2B2B2B;

}

.festival-left h2 span{

color:#C89B3C;

}

.festival-left p{

line-height:1.9;

color:#666;

margin-bottom:35px;

}

.festival-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.secondary-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 34px;

border:2px solid #C89B3C;

border-radius:10px;

color:#C89B3C;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.secondary-btn:hover{

background:#C89B3C;

color:#fff;

}

.countdown{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.time-box{

background:#F8F6F1;

padding:35px 20px;

text-align:center;

border-radius:18px;

border:1px solid rgba(200,155,60,.15);

}

.time-box h3{

font-size:48px;

color:#C89B3C;

margin-bottom:10px;

}

.time-box span{

font-size:16px;

font-weight:600;

color:#555;

}
/*==========================================
 KRISHNA JANMASHTAMI
==========================================*/

.festival-section{

padding:100px 0;

background:linear-gradient(135deg,#FFFDF8,#F8F6F1);

}

.festival-content{

display:grid;

grid-template-columns:1.2fr 1fr;

gap:60px;

align-items:center;

background:#fff;

padding:60px;

border-radius:25px;

box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.festival-badge{

display:inline-block;

background:#C89B3C;

color:#fff;

padding:10px 20px;

border-radius:40px;

font-size:14px;

font-weight:600;

margin-bottom:25px;

}

.festival-left h2{

font-size:52px;

margin-bottom:20px;

line-height:1.2;

color:#2B2B2B;

}

.festival-left h2 span{

display:block;

color:#C89B3C;

}

.festival-left p{

font-size:17px;

line-height:1.9;

color:#666;

margin-bottom:25px;

}

.festival-date{

font-size:18px;

font-weight:600;

margin-bottom:35px;

color:#2B2B2B;

}

.festival-date strong{

color:#C89B3C;

}

.festival-btns{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.secondary-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 35px;

border:2px solid #C89B3C;

border-radius:10px;

text-decoration:none;

font-weight:600;

color:#C89B3C;

transition:.3s;

}

.secondary-btn:hover{

background:#C89B3C;

color:#fff;

}

.countdown{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.time-card{

background:#F8F6F1;

padding:35px 20px;

text-align:center;

border-radius:18px;

border:1px solid rgba(200,155,60,.15);

transition:.3s;

}

.time-card:hover{

transform:translateY(-6px);

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.time-card h2{

font-size:52px;

color:#C89B3C;

margin-bottom:10px;

}

.time-card span{

font-weight:600;

color:#555;

letter-spacing:1px;

}
/*==========================================
 TODAY'S PANCHANG
==========================================*/

.panchang-section{

padding:100px 0;

background:#fff;

}

.panchang-card{

max-width:1100px;

margin:auto;

margin-top:60px;

background:#F8F6F1;

border-radius:25px;

padding:50px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.panchang-header{

text-align:center;

margin-bottom:40px;

}

.panchang-header h3{

font-size:34px;

color:#2B2B2B;

margin-bottom:10px;

}

.panchang-header span{

font-size:18px;

font-weight:600;

color:#C89B3C;

}

.panchang-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.panchang-item{

background:#fff;

padding:22px;

border-radius:15px;

border:1px solid rgba(200,155,60,.15);

display:flex;

justify-content:space-between;

align-items:center;

transition:.3s;

}

.panchang-item:hover{

transform:translateY(-5px);

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.panchang-item strong{

color:#2B2B2B;

}

.panchang-item span{

font-weight:600;

color:#555;

}

.success{

color:#16a34a !important;

}

.danger{

color:#dc2626 !important;

}

.panchang-btn{

text-align:center;

margin-top:40px;

}
/*==========================================
 FLOATING BUTTONS
==========================================*/

.floating-buttons{

position:fixed;

right:25px;

bottom:25px;

display:flex;

flex-direction:column;

gap:15px;

z-index:9999;

}

.floating-whatsapp,
.floating-call{

width:65px;

height:65px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

text-decoration:none;

color:#fff;

font-size:28px;

box-shadow:0 10px 25px rgba(0,0,0,.20);

transition:.35s;

animation:floatButton 2s infinite;

}

.floating-whatsapp{

background:#25D366;

}

.floating-call{

background:#C89B3C;

}

.floating-whatsapp:hover,
.floating-call:hover{

transform:scale(1.12);

}

@keyframes floatButton{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-6px);

}

100%{

transform:translateY(0);

}

}
/*==========================================
 MOBILE STICKY BAR
==========================================*/

.mobile-sticky-bar{

position:fixed;

left:0;

bottom:0;

width:100%;

height:72px;

background:#ffffff;

display:none;

grid-template-columns:repeat(3,1fr);

box-shadow:0 -5px 20px rgba(0,0,0,.12);

z-index:9998;

border-top:1px solid rgba(200,155,60,.2);

}

.mobile-sticky-bar a{

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-decoration:none;

color:#2B2B2B;

font-weight:600;

transition:.3s;

}

.mobile-sticky-bar a span{

font-size:24px;

margin-bottom:4px;

}

.mobile-sticky-bar a small{

font-size:13px;

}

.mobile-sticky-bar a:hover{

background:#F8F6F1;

color:#C89B3C;

}
/*==========================================
 BACK TO TOP BUTTON
==========================================*/

.back-to-top{

position:fixed;

left:25px;

bottom:25px;

width:60px;

height:60px;

border:none;

border-radius:50%;

background:#C89B3C;

color:#fff;

font-size:28px;

cursor:pointer;

display:flex;

justify-content:center;

align-items:center;

box-shadow:0 10px 25px rgba(0,0,0,.20);

opacity:0;

visibility:hidden;

transform:translateY(20px);

transition:.35s;

z-index:9999;

}

.back-to-top.show{

opacity:1;

visibility:visible;

transform:translateY(0);

}

.back-to-top:hover{

background:#b78727;

transform:translateY(-5px);

}
/*==========================================
 SCROLL PROGRESS BAR
==========================================*/

#scrollProgress{

position:fixed;

top:0;

left:0;

width:0%;

height:4px;

background:linear-gradient(90deg,#C89B3C,#E2C46B);

z-index:10000;

transition:width .1s linear;

box-shadow:0 2px 8px rgba(200,155,60,.5);

}
/*==========================================
 GOOGLE REVIEWS
==========================================*/

.reviews-section{

padding:100px 0;

background:#ffffff;

}

.reviews-slider{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.review-card{

background:#F8F6F1;

padding:35px;

border-radius:20px;

border:1px solid rgba(200,155,60,.18);

box-shadow:0 10px 30px rgba(0,0,0,.06);

transition:.35s;

}

.review-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.google-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:20px;

}

.google-top span{

background:#C89B3C;

color:#fff;

padding:6px 14px;

border-radius:30px;

font-size:12px;

}

.review-card p{

line-height:1.9;

color:#666;

margin-bottom:25px;

font-style:italic;

}

.review-user strong{

display:block;

color:#2B2B2B;

}

.review-user small{

color:#888;

}
/*==========================================
 PREMIUM PRELOADER
==========================================*/

#preloader{

position:fixed;

top:0;

left:0;

width:100%;

height:100vh;

background:#F8F6F1;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

transition:.6s ease;

}

#preloader.hide{

opacity:0;

visibility:hidden;

}

.loader-box{

text-align:center;

}

.loader-ring{

width:90px;

height:90px;

border:6px solid rgba(200,155,60,.2);

border-top:6px solid #C89B3C;

border-radius:50%;

margin:auto;

animation:loaderSpin 1s linear infinite;

}

.loader-box h2{

margin-top:30px;

font-size:32px;

letter-spacing:4px;

color:#2B2B2B;

}

.loader-box p{

margin-top:10px;

color:#777;

font-size:16px;

letter-spacing:1px;

}

@keyframes loaderSpin{

100%{

transform:rotate(360deg);

}
}
html{
    scroll-behavior:smooth;
}
/*==========================================
ABOUT HERO
==========================================*/

.about-hero{
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("../images/about-banner.jpg") center/cover no-repeat;
    padding:120px 0 80px;
}

.about-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-hero-content h1{
    font-size:60px;
    color:#fff;
    line-height:1.2;
    margin-bottom:20px;
    font-family:"Cinzel",serif;
}

.hero-content h1 span{
    color:#C89B3C;
}

.about-hero-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:40px;
    background:#C89B3C;
    color:#fff;
    font-weight:600;
    margin-bottom:25px;
}

.hero-content p{
    color:#f1f1f1;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.about-hero-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    padding:15px 35px;
    background:#C89B3C;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    transition:.4s;
    font-weight:600;
}

.btn-primary:hover{
    background:#b68428;
    transform:translateY(-4px);
}

.btn-secondary{
    padding:15px 35px;
    border:2px solid #fff;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    transition:.4s;
    font-weight:600;
}

.btn-secondary:hover{
    background:#fff;
    color:#000;
}

.about-hero-image{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}


/*==========================================
ABOUT SECTION
==========================================*/

.about-section{
    padding:100px 0;
    background:#F8F6F1;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.section-tag{
    color:#C89B3C;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.about-content h2{
    font-size:45px;
    margin:18px 0;
    color:#222;
    font-family:"Cinzel",serif;
}

.about-content p{
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;
}

.about-features div{
    background:#fff;
    padding:18px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.about-features div:hover{
    transform:translateY(-6px);
}

.about-features i{
    color:#C89B3C;
    margin-right:10px;
}


/*==========================================
COUNTER
==========================================*/

.counter-section{
    padding:90px 0;
    background:#fff;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.counter-box{
    background:#fff;
    border-radius:18px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.counter-box:hover{
    transform:translateY(-8px);
}

.counter-box h2{
    font-size:48px;
    color:#C89B3C;
    margin-bottom:10px;
}

.counter-box p{
    color:#555;
    font-size:17px;
}


/*==========================================
WHY CHOOSE US
==========================================*/

.why-us{
    padding:100px 0;
    background:#F8F6F1;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#C89B3C;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
    color:#222;
    font-family:"Cinzel",serif;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#C89B3C;
    color:#fff;
    font-size:30px;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
    color:#222;
}

.why-card p{
    color:#666;
    line-height:1.8;
}
/*==========================================
TIMELINE
==========================================*/

.timeline{
    padding:100px 0;
    background:#ffffff;
}

.timeline-item{
    max-width:850px;
    margin:30px auto;
    background:#F8F6F1;
    padding:35px;
    border-left:6px solid #C89B3C;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.timeline-item:hover{
    transform:translateY(-8px);
}

.timeline-item h3{
    color:#C89B3C;
    margin-bottom:15px;
    font-size:28px;
}

.timeline-item p{
    color:#555;
    line-height:1.8;
}


/*==========================================
SERVICE AREA
==========================================*/

.service-area{
    padding:100px 0;
    background:#F8F6F1;
}

.area-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.area-grid span{
    background:#fff;
    padding:18px;
    text-align:center;
    border-radius:12px;
    font-weight:600;
    color:#444;
    box-shadow:0 8px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.area-grid span:hover{
    background:#C89B3C;
    color:#fff;
    transform:translateY(-5px);
}


/*==========================================
FAQ
==========================================*/

.faq{
    padding:100px 0;
    background:#fff;
}

.faq-item{
    max-width:900px;
    margin:25px auto;
    background:#F8F6F1;
    padding:28px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.faq-item:hover{
    transform:translateY(-6px);
}

.faq-item h3{
    color:#222;
    margin-bottom:15px;
}

.faq-item p{
    color:#666;
    line-height:1.8;
}


/*==========================================
CTA
==========================================*/

.about-cta{
    padding:100px 0;
    text-align:center;
    background:linear-gradient(135deg,#1d1d1d,#2d2d2d);
}

.about-cta h2{
    color:#fff;
    font-size:48px;
    margin-bottom:20px;
    font-family:"Cinzel",serif;
}

.about-cta p{
    color:#ddd;
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
    line-height:1.8;
}


/*==========================================
FOOTER
==========================================*/

.footer{
    background:#111;
    color:#fff;
    padding:80px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer h3{
    margin-bottom:20px;
    color:#C89B3C;
}

.footer p{
    color:#bbb;
    line-height:1.9;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:#bbb;
    text-decoration:none;
    transition:.3s;
}

.footer ul li a:hover{
    color:#C89B3C;
}

.footer hr{
    margin:45px 0 20px;
    border:0;
    border-top:1px solid rgba(255,255,255,.1);
}

.copyright{
    text-align:center;
    color:#888;
}


/*==========================================
GLOBAL IMAGE STYLE
==========================================*/

img{
    max-width:100%;
    display:block;
}


/*==========================================
SMOOTH TRANSITIONS
==========================================*/

section{
    overflow:hidden;
}

a,
button,
img,
.card,
.why-card,
.counter-box,
.timeline-item,
.faq-item,
.area-grid span{
    transition:.35s ease;
}


/*==========================================
CUSTOM SCROLLBAR
==========================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f2f2f2;
}

::-webkit-scrollbar-thumb{
    background:#C89B3C;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#b88728;
}


/*==========================================
SELECTION COLOR
==========================================*/

::selection{
    background:#C89B3C;
    color:#fff;
}


/*==========================================
UTILITY CLASSES
==========================================*/

.text-center{
    text-align:center;
}

.mt-30{
    margin-top:30px;
}

.mt-50{
    margin-top:50px;
}

.mb-30{
    margin-bottom:30px;
}

.mb-50{
    margin-bottom:50px;
}

.pt-100{
    padding-top:100px;
}

.pb-100{
    padding-bottom:100px;
}

.rounded{
    border-radius:15px;
}

.shadow{
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}


/*==========================================
PREMIUM HOVER EFFECT
==========================================*/

.why-card:hover,
.counter-box:hover,
.timeline-item:hover,
.faq-item:hover,
.area-grid span:hover{
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}
/*==========================
SCROLL TO TOP
==========================*/

.scrollTop{

position:fixed;

right:25px;

bottom:25px;

width:50px;

height:50px;

border:none;

border-radius:50%;

background:#C89B3C;

color:#fff;

font-size:20px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.4s;

z-index:999;

}

.scrollTop.show{

opacity:1;

visibility:visible;

}

.scrollTop:hover{

background:#b88628;

transform:translateY(-5px);

}


/*==========================
STICKY NAVBAR
==========================*/

.header.sticky{

position:fixed;

width:100%;

top:0;

left:0;

background:#f7f5f5;

box-shadow:0 8px 20px rgba(0,0,0,.08);

z-index:999;

animation:slideDown .4s;

}

@keyframes slideDown{

from{

transform:translateY(-100%);

}

to{

transform:translateY(0);

}

}
.hero-subtitle{
    color:#C89B3C !important;
    font-size:18px;
    font-weight:600;
    margin-bottom:20px;
}
/* ===== HERO FIX ===== */

.hero-subtitle{
    display:block !important;
    color:#C89B3C !important;
    font-size:18px !important;
    font-weight:600 !important;
    opacity:1 !important;
    visibility:visible !important;
    margin-bottom:20px !important;
}

.hero-description{
    display:block !important;
    color:#666 !important;
    font-size:18px !important;
    line-height:1.8 !important;
    opacity:1 !important;
    visibility:visible !important;
    margin:25px 0 35px !important;
}

.hero-content p{
    color:#666 !important;
}

.hero-content{
    max-width:650px !important;
}

.hero h1{
    color:#2B2B2B !important;
}

.hero h1 span{
    color:#C89B3C !important;
}
/* ===== NAVBAR & HERO GAP FIX ===== */

body{
    padding-top:85px !important;
}

.header{
    position:fixed !important;
    top:0;
    left:0;
    width:100%;
    height:85px;
    z-index:9999;
}

.hero{
    margin-top:0 !important;
    padding-top:40px !important;
    min-height:calc(100vh - 85px) !important;
    display:flex;
    align-items:center;
}

.hero .container{
    margin-top:0 !important;
    padding-top:0 !important;
}
/* ===============================
MOBILE NAVBAR
=============================== */

.menu-toggle{
    display:none;
    width:42px;
    cursor:pointer;
    z-index:99999;
}

.menu-toggle span{
    display:block;
    width:100%;
    height:4px;
    margin:7px 0;
    background:#C89B3C;
    border-radius:20px;
    transition:.35s;
}

@media(max-width:991px){

.nav-buttons{
    display:none;
}

.menu-toggle{
    display:block;
}

.nav-links{

    position:fixed;

    top:85px;

    right:-100%;

    width:280px;

    height:calc(100vh - 85px);

    background:#fff;

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    padding:35px;

    gap:25px;

    transition:.4s;

    box-shadow:-5px 0 20px rgba(0,0,0,.1);

}

.nav-links.active{

    right:0;

}

.nav-links li{

    width:100%;

}

.nav-links a{

    font-size:18px;

    width:100%;

    display:block;

}

.menu-toggle.active span:nth-child(1){

    transform:rotate(45deg) translateY(15px);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:rotate(-45deg) translateY(-15px);

}

}
/*==========================================
PREMIUM CURSOR
==========================================*/

.cursor-dot{

position:fixed;
width:8px;
height:8px;
background:#C89B3C;
border-radius:50%;
pointer-events:none;
z-index:999999;
transform:translate(-50%,-50%);

}

.cursor-ring{

position:fixed;
width:36px;
height:36px;
border:2px solid #C89B3C;
border-radius:50%;
pointer-events:none;
z-index:999998;
transform:translate(-50%,-50%);
transition:.12s linear;

}

a:hover~.cursor-ring,
button:hover~.cursor-ring{

transform:translate(-50%,-50%) scale(1.4);

}
/*==========================================
RIPPLE
==========================================*/

.ripple{

position:absolute;
border-radius:50%;
transform:scale(0);
animation:ripple .6s linear;
background:rgba(255,255,255,.4);

}

@keyframes ripple{

to{

transform:scale(4);

opacity:0;

}

}
html{

scroll-behavior:smooth;

}
/*==========================================
BACKGROUND PARTICLES
==========================================*/

#particles{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

pointer-events:none;

z-index:-1;

background-image:

radial-gradient(circle at 20% 20%, rgba(200,155,60,.08) 2px, transparent 2px),

radial-gradient(circle at 80% 40%, rgba(200,155,60,.05) 2px, transparent 2px),

radial-gradient(circle at 60% 80%, rgba(200,155,60,.06) 3px, transparent 3px);

background-size:180px 180px;

animation:particlesMove 30s linear infinite;

}

@keyframes particlesMove{

0%{

background-position:0 0,0 0,0 0;

}

100%{

background-position:250px 350px,-220px 180px,180px -250px;

}

}
.section-divider{

width:120px;

height:4px;

margin:18px auto 40px;

background:linear-gradient(90deg,#8B6B1E,#C89B3C,#F7D87C);

border-radius:50px;

}
.gallery-item,
.service-card,
.featured-card{

overflow:hidden;

}

.gallery-item img,
.service-card img,
.featured-card img{

transition:.7s;

}

.gallery-item:hover img,
.service-card:hover img,
.featured-card:hover img{

transform:scale(1.08) rotate(1deg);

filter:brightness(1.08);

}
::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#F8F6F1;

}

::-webkit-scrollbar-thumb{

background:#C89B3C;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#A97A22;

}
::selection{

background:#C89B3C;

color:#fff;

}
button,
a,
input,
textarea{

transition:.3s;

}

button:focus,
a:focus,
input:focus,
textarea:focus{

outline:none;

box-shadow:0 0 0 3px rgba(200,155,60,.25);

}button,
a,
input,
textarea{

transition:.3s;

}

button:focus,
a:focus,
input:focus,
textarea:focus{

outline:none;

box-shadow:0 0 0 3px rgba(200,155,60,.25);

}
/*==========================================
CENTER HERO (ABOUT + SERVICE PAGES)
==========================================*/

.about-hero-grid,
.service-hero-grid{

display:flex;
justify-content:center;
align-items:center;

}

.about-hero-image,
.service-hero-image{

display:none;

}

.about-hero-content,
.service-hero-content{

width:100%;
max-width:900px;
margin:auto;
text-align:center;

}

.about-hero-content h1,
.service-hero-content h1{

font-size:58px;
line-height:1.2;

}

.about-hero-content p,
.service-hero-content p{

max-width:750px;
margin:20px auto;
font-size:18px;
line-height:1.8;

}

.hero-buttons{

display:flex;
justify-content:center;
align-items:center;
gap:20px;
flex-wrap:wrap;

}

@media(max-width:768px){

.about-hero-content h1,
.service-hero-content h1{

font-size:36px;

}

.about-hero-content p,
.service-hero-content p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;
max-width:300px;

}

}
/*==========================================
SERVICE HERO MOBILE FIX
==========================================*/

@media(max-width:768px){

.service-hero{

padding:120px 20px 60px;

}

.service-hero .container{

width:100%;
max-width:100%;
padding:0 20px;

}

.service-hero-grid{

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

}

.service-hero-content{

width:100%;
max-width:100%;
text-align:center;
margin:0 auto;

}

.service-hero-content h1{

font-size:34px;
line-height:1.3;
word-break:break-word;

}

.service-hero-content p{

font-size:16px;
line-height:1.8;
max-width:100%;
margin:20px auto;

}

.hero-buttons{

display:flex;
flex-direction:column;
align-items:center;
gap:15px;

}

.hero-buttons a{

width:100%;
max-width:280px;

}

.service-hero-image{

display:none;

}

}
