/* ========================= */
/* RESET */
/* ========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#faf8f3;
  color:#222;
  overflow-x:hidden;
  line-height:1.7;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}

ul{
  list-style:none;
}

button,
input,
textarea,
select{
  font-family:'Poppins',sans-serif;
}

.container{
  width:90%;
  max-width:1250px;
  margin:auto;
}

/* ========================= */
/* HEADER */
/* ========================= */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(18px);
  z-index:99999;
  box-shadow:0 2px 18px rgba(0,0,0,0.06);
  border-bottom:1px solid rgba(0,0,0,0.04);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

/* ========================= */
/* LOGO */
/* ========================= */

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo img{
  width:68px;
  height:68px;
  object-fit:contain;
}

.logo-text h2{
  font-size:28px;
  line-height:1;
  color:#111;
  font-family:'Cinzel',serif;
}

.logo-text p{
  color:#b88a1b;
  font-size:12px;
  margin-top:5px;
  font-weight:600;
  letter-spacing:1px;
}



/* ========================= */
/* NAVIGATION */
/* ========================= */

.nav-menu{
  display:flex;
  gap:34px;
}

.nav-menu a{
  color:#222;
  font-weight:500;
  transition:0.3s;
  position:relative;
}

.nav-menu a:hover{
  color:#b88a1b;
}

.nav-menu a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:2px;
  background:#b88a1b;
  transition:0.3s;
}

.nav-menu a:hover::after{
  width:100%;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.call-btn,
.btn{
  background:linear-gradient(to right,#b88a1b,#d8a93c);
  color:#fff;
  padding:15px 30px;
  border-radius:50px;
  border:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.call-btn:hover,
.btn:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(184,138,27,0.25);
}

.secondary-btn{
  background:#111;
}

/* ========================= */
/* MOBILE MENU */
/* ========================= */

.mobile-right{
  display:none;
  align-items:center;
  gap:12px;
}

.mobile-call-btn{
  width:44px;
  height:44px;
  border-radius:50%;
  background:#b88a1b;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hamburger{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#b88a1b;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  cursor:pointer;
}

.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:280px;
  height:100vh;
  background:#111;
  z-index:999999;
  display:flex;
  flex-direction:column;
  gap:25px;
  padding:100px 30px;
  transition:0.4s;
}

.mobile-menu.active{
  right:0;
}

.mobile-menu a{
  color:#fff;
  font-size:20px;
}

.close-btn{
  position:absolute;
  top:20px;
  right:20px;
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{
  padding-top:170px;
  padding-bottom:110px;
  background:
  linear-gradient(rgba(250,248,243,0.93),rgba(250,248,243,0.95)),
  url('../images/spiritual-bg.webp');
  background-size:cover;
  background-position:center;
}

.hero-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.hero-tag{
  display:inline-block;
  background:#fff;
  padding:12px 20px;
  border-radius:40px;
  color:#b88a1b;
  font-weight:600;
  margin-bottom:24px;
  box-shadow:0 5px 18px rgba(0,0,0,0.05);
}

.hero-content h1{
  font-size:68px;
  line-height:1.1;
  margin-bottom:25px;
  font-family:'Cinzel',serif;
}

.hero-text{
  font-size:18px;
  color:#555;
  margin-bottom:30px;
}

.hero-badges{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:34px;
}

.hero-badges span{
  background:#fff;
  padding:10px 18px;
  border-radius:40px;
  color:#b88a1b;
  font-size:14px;
  font-weight:600;
  box-shadow:0 5px 18px rgba(0,0,0,0.05);
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.hero-image img{
  border-radius:35px;
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* ========================= */
/* TRUST SECTION */
/* ========================= */

.trust-section{
  padding:40px 0 110px;
}

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

.trust-card{
  background:#fff;
  padding:34px 24px;
  border-radius:28px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.trust-card h3{
  font-size:42px;
  color:#b88a1b;
  margin-bottom:10px;
  font-family:'Cinzel',serif;
}

.trust-card p{
  color:#555;
  font-weight:500;
}

/* ========================= */
/* SECTION TITLE */
/* ========================= */

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title p{
  color:#b88a1b;
  font-weight:600;
  margin-bottom:14px;
}

.section-title h2{
  font-size:52px;
  font-family:'Cinzel',serif;
}

/* ========================= */
/* CONSULTANT */
/* ========================= */

.consultant-section{
  padding:110px 0;
  background:#fff;
}

.consultant-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.consultant-image img{
  border-radius:35px;
}

.section-tag{
  color:#b88a1b;
  font-weight:600;
  margin-bottom:14px;
}

.consultant-content h2{
  font-size:54px;
  margin-bottom:15px;
  font-family:'Cinzel',serif;
}

.consultant-content h3{
  color:#b88a1b;
  margin-bottom:20px;
}

.consultant-exp{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:24px;
  font-weight:600;
}

.consultant-content p{
  color:#555;
  margin-bottom:20px;
}

/* ========================= */
/* SERVICES */
/* ========================= */

.services{
  padding:110px 0;
}

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

/* ========================= */
/* BLOG SECTION */
/* ========================= */

.latest-blogs{
  padding:120px 0;
  background:#fff;
}

.latest-blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

.latest-blog-card{
  background:#f8f4ea;
  border-radius:28px;
  overflow:hidden;
  transition:0.35s ease;
  display:flex;
  flex-direction:column;
  color:#222;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  height:100%;
}

.latest-blog-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,0.10);
}

.latest-blog-image{
  width:100%;
  aspect-ratio:16/10;
  background:#fff;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
}

.latest-blog-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:18px;
  transition:0.4s ease;
}

.latest-blog-card:hover .latest-blog-image img{
  transform:scale(1.03);
}

.latest-blog-content{
  padding:24px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.latest-blog-content span{
  color:#b88a1b;
  font-size:13px;
  font-weight:600;
  margin-bottom:12px;
}

.latest-blog-content h3{
  font-size:22px;
  line-height:1.45;
  margin-bottom:14px;
  font-family:'Cinzel',serif;

  overflow:hidden;
  text-overflow:ellipsis;

  display:block;

  max-height:64px;
}

.latest-blog-content p{
  color:#666;
  font-size:15px;
  line-height:1.7;
  margin-bottom:22px;

  overflow:hidden;
  text-overflow:ellipsis;

  display:block;

  max-height:52px;
}

.blog-read-more{
  margin-top:auto;
  color:#b88a1b;
  font-weight:600;
  font-size:15px;
}

.blogs-btn-wrap{
  text-align:center;
  margin-top:55px;
}

.loading-blogs,
.no-blogs{
  text-align:center;
  padding:40px;
  color:#777;
}

/* ========================= */
/* WHY SECTION */
/* ========================= */

.why-section{
  padding:110px 0;
  background:#fff;
}

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

.why-card{
  background:#faf8f3;
  padding:38px 30px;
  border-radius:30px;
}

.why-icon{
  width:75px;
  height:75px;
  border-radius:22px;
  background:linear-gradient(to right,#b88a1b,#d8a93c);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin-bottom:22px;
}

.why-card h3{
  font-size:26px;
  margin-bottom:16px;
  font-family:'Cinzel',serif;
}

.why-card p{
  color:#555;
}

/* ========================= */
/* TESTIMONIALS */
/* ========================= */

.testimonial-section{
  padding:110px 0;
  background:#f7f3e9;
}

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

.testimonial-card{
  background:#fff;
  padding:35px 28px;
  border-radius:28px;
}

.stars{
  color:#d6a937;
  font-size:22px;
  margin-bottom:20px;
}

.testimonial-card p{
  color:#555;
  margin-bottom:22px;
}

.testimonial-card h4{
  font-size:22px;
  margin-bottom:4px;
  font-family:'Cinzel',serif;
}

.testimonial-card span{
  color:#b88a1b;
}

/* ========================= */
/* FAQ */
/* ========================= */

.faq-section{
  padding:110px 0;
  background:#fff;
}

.faq-container{
  max-width:1000px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.faq-item{
  background:#faf8f3;
  border-radius:24px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  border:none;
  background:none;
  padding:26px 28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-size:19px;
  font-weight:600;
  text-align:left;
}

.faq-question span{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#b88a1b;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:0.4s ease;
}

.faq-answer p{
  padding:0 28px 28px;
  color:#555;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

/* ========================= */
/* SEO CONTENT */
/* ========================= */

.seo-content-section{
  padding:110px 0;
}

.seo-content-box{
  background:#111;
  color:#fff;
  padding:70px;
  border-radius:35px;
  text-align:center;
}

.seo-content-box h2{
  font-size:52px;
  margin-bottom:24px;
  font-family:'Cinzel',serif;
}

.seo-content-box p{
  color:#ddd;
}

/* ========================= */
/* PRIVACY */
/* ========================= */

.privacy-section{
  padding:120px 0;
  background:#fffaf1;
}

.privacy-box{
  background:#fff;
  padding:50px;
  border-radius:32px;
  box-shadow:0 10px 35px rgba(0,0,0,0.06);
}

.privacy-box p{
  color:#555;
  line-height:2;
  margin-bottom:24px;
  font-size:16px;
}

.privacy-box p:last-child{
  margin-bottom:0;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer{
  background:#111;
  color:#fff;
  padding-top:80px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:50px;
  padding-bottom:50px;
}

.footer-column h3{
  font-size:28px;
  margin-bottom:22px;
  font-family:'Cinzel',serif;
}

.footer-column p,
.footer-column a{
  color:#ccc;
}

.footer-column ul{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-socials{
  display:flex;
  gap:14px;
  margin-top:22px;
}

.footer-socials a{
  width:45px;
  height:45px;
  border-radius:50%;
  background:#222;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
}

.footer-socials a:hover{
  background:#b88a1b;
  transform:translateY(-4px);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding:24px 0;
  text-align:center;
  color:#aaa;
}

/* ========================= */
/* POPUP */
/* ========================= */

.popup-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.75);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:999999;
  opacity:0;
  visibility:hidden;
  transition:0.4s ease;
  padding:20px;
}

.popup-overlay.active{
  opacity:1;
  visibility:visible;
}

.popup-box{
  width:100%;
  max-width:420px;
  background:#fff;
  border-radius:24px;
  padding:28px 24px;
  position:relative;
}

.popup-close{
  position:absolute;
  top:14px;
  right:14px;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:14px;
}

.popup-logo{
  width:65px;
  margin:auto;
  display:block;
  margin-bottom:14px;
}

.popup-box h2{
  text-align:center;
  margin-bottom:6px;
  font-size:26px;
  font-family:'Cinzel',serif;
}

.popup-box p{
  text-align:center;
  color:#666;
  margin-bottom:20px;
  font-size:14px;
}

.popup-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.popup-form input,
.popup-form select,
.popup-form textarea{
  width:100%;
  padding:13px 14px;
  border:1px solid #ddd;
  border-radius:12px;
  font-size:14px;
  outline:none;
}

.popup-form textarea{
  height:90px;
  resize:none;
}

.popup-form button{
  border:none;
  background:linear-gradient(to right,#b88a1b,#d8a93c);
  color:#fff;
  padding:14px;
  border-radius:50px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
}

/* ========================= */
/* WHATSAPP */
/* ========================= */

.whatsapp-btn{
  position:fixed;
  right:20px;
  bottom:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  z-index:999999;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1100px){

  .hero-container,
  .consultant-container{
    grid-template-columns:1fr;
  }

  .services-grid,
  .why-grid,
  .testimonial-grid,
  .latest-blog-grid,
  .trust-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .nav-menu{
    position:fixed;

    top:95px;
    left:0;

    width:100%;

    background:#fff;

    padding:30px 24px;

    display:none;

    flex-direction:column;

    gap:22px;

    z-index:9999;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.08);
  }

  .nav-menu.active{
    display:flex;
  }

  .nav-menu a{
    font-size:18px;
  }

  .nav-right{
    display:none;
  }

  .mobile-right{
    display:flex;
  }

  .hero{
    padding-top:140px;
  }

  .hero-content h1,
  .consultant-content h2,
  .section-title h2,
  .seo-content-box h2{
    font-size:40px;
  }

  .services-grid,
  .why-grid,
  .testimonial-grid,
  .latest-blog-grid,
  .footer-grid,
  .trust-grid{
    grid-template-columns:1fr;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .seo-content-box,
  .privacy-box{
    padding:40px 24px;
  }

  .hero-badges{
    flex-direction:column;
    align-items:flex-start;
  }

}

@media(max-width:480px){

  .hero-content h1{
    font-size:34px;
  }

  .section-title h2,
  .consultant-content h2,
  .seo-content-box h2{
    font-size:30px;
  }

  .hero-text{
    font-size:16px;
  }

  .logo-text h2{
    font-size:22px;
  }

  .logo img{
    width:58px;
    height:58px;
  }

  .hero-buttons .btn{
    width:100%;
  }

  .faq-question{
    font-size:16px;
    padding:22px;
  }

}
/* ========================= */
/* HOME LEGAL */
/* ========================= */

.home-legal{
  padding:100px 0;
  background:#fff;
}

.home-legal-box{
  background:#f8f4ea;
  border-radius:34px;
  padding:55px;
}

.home-legal-box h2{
  font-size:42px;
  margin-bottom:24px;
  font-family:'Cinzel',serif;
  text-align:center;
}

.home-legal-box > p{
  text-align:center;
  color:#555;
  line-height:2;
  max-width:900px;
  margin:auto;
}

.home-legal-links{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:40px;
}

.legal-toggle-btn{
  border:none;
  background:#b88a1b;
  color:#fff;
  padding:14px 24px;
  border-radius:50px;
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
}

.legal-toggle-btn:hover{
  transform:translateY(-3px);
}

.home-legal-content{
  display:none;
  margin-top:24px;
  background:#fff;
  padding:28px;
  border-radius:22px;
}

.home-legal-content.active{
  display:block;
}

.home-legal-content p{
  color:#555;
  line-height:2;
}

@media(max-width:768px){

  .home-legal{
    padding:70px 0;
  }

  .home-legal-box{
    padding:28px 18px;
    border-radius:24px;
  }

  .home-legal-box h2{
    font-size:28px;
    line-height:1.4;
    margin-bottom:18px;
  }

  .home-legal-box > p{
    font-size:15px;
    line-height:1.9;
  }

  .home-legal-links{
    flex-direction:column;
    gap:12px;
    margin-top:30px;
  }

  .legal-toggle-btn{
    width:100%;
    padding:14px 18px;
    font-size:15px;
    text-align:center;
  }

  .home-legal-content{
    padding:20px 16px;
    border-radius:18px;
  }

  .home-legal-content p{
    font-size:14px;
    line-height:1.9;
  }

}


.footer-policy-links a{
color:#fff;
font-size:14px;
text-decoration:none;
transition:.3s;
opacity:.9;
}
.footer-policy-links a:hover{
opacity:1;
color:#d4af37;
}

.global-whatsapp-btn{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:30px;
z-index:999999;
box-shadow:0 10px 25px rgba(0,0,0,.25);
text-decoration:none;
}




.footer-policy-clean a{
color:#cfcfcf;
text-decoration:none;
font-size:14px;
transition:.3s;
}

.footer-policy-clean a:hover{
color:#d4af37;
}

.global-whatsapp-btn{
position:fixed;
bottom:20px;
right:20px;
width:62px;
height:62px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#fff;
z-index:999999;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,.2);
}



.footer-policy-clean,
.footer-policy-links{
display:flex !important;
justify-content:center !important;
align-items:center !important;
gap:16px !important;
flex-wrap:wrap !important;
margin-top:25px !important;
padding-top:22px !important;
border-top:1px solid rgba(255,255,255,.08) !important;
}

.footer-policy-clean a,
.footer-policy-links a{
color:#d7d7d7 !important;
font-size:14px !important;
font-weight:500 !important;
text-decoration:none !important;
padding:8px 14px !important;
border-radius:8px !important;
transition:.3s ease !important;
}

.footer-policy-clean a:hover,
.footer-policy-links a:hover{
background:rgba(212,175,55,.12) !important;
color:#d4af37 !important;
}

@media(max-width:768px){
.footer-policy-clean,
.footer-policy-links{
gap:10px !important;
}

.footer-policy-clean a,
.footer-policy-links a{
font-size:13px !important;
padding:7px 12px !important;
}
}
