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

/*
FULL UPDATED ABOUT.CSS

* Preserved original structure
* Fixed premium about section
* Equal width cards
* Equal height layout
* Same pattern background on both cards
* Responsive tablet/mobile fixes
* No sections removed
  */

/* ========================= */
/* 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.8;
}

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

a{
text-decoration:none;
}

ul{
list-style:none;
}

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

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

.header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
background:rgba(255,255,255,0.96);
backdrop-filter:blur(12px);
border-bottom:1px solid rgba(0,0,0,0.05);
transition:0.3s ease;
}

.navbar{
height:90px;
display:flex;
align-items:center;
justify-content:space-between;
}

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

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

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

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

.logo-text p{
color:#b88a1b;
font-size:13px;
}

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

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

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

.nav-menu a:hover

.nav-menu a::after{
content:'';
position:absolute;
left:0;
bottom:-8px;
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,#e0b74f);
color:#fff;
padding:16px 34px;
border-radius:60px;
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
font-weight:600;
transition:0.3s;
border:none;
cursor:pointer;
}

.call-btn:hover,
.btn:hover{
transform:translateY(-4px);
box-shadow:0 12px 28px rgba(184,138,27,0.22);
}

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

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

.mobile-call-btn{
width:46px;
height:46px;
border-radius:50%;
background:linear-gradient(to right,#b88a1b,#e0b74f);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
}

.hamburger{
width:48px;
height:48px;
border-radius:50%;
background:linear-gradient(to right,#b88a1b,#e0b74f);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
cursor:pointer;
}

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

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

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

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

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

.about-hero{
padding-top:185px;
padding-bottom:120px;
background:
linear-gradient(rgba(250,248,243,0.93),rgba(250,248,243,0.96)),
url('../images/spiritual-bg.webp');
background-size:cover;
background-position:center;
text-align:center;
}

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

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

.about-hero-content p{
max-width:900px;
margin:auto;
color:#555;
font-size:18px;
}

/* ========================= */
/* ABOUT */
/* ========================= */

.about-section{
padding:110px 0;
background:#faf8f3;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:stretch;
}

.about-image{
position:relative;
height:100%;
display:flex;
}

.about-image::before{
content:'';
position:absolute;
inset:0;

background:
linear-gradient(
rgba(248,244,234,0.82),
rgba(248,244,234,0.82)
),
url('../images/pattern.png');

background-size:cover;
background-position:center;

border-radius:36px;
}

.about-image img{
position:relative;
z-index:2;

width:100%;
height:100%;

object-fit:contain;

padding:30px;

border-radius:36px;

display:block;
}

.section-tag{
color:#b88a1b;
font-weight:600;
margin-bottom:16px;
letter-spacing:1px;
}

.about-content{
position:relative;

background:
linear-gradient(
rgba(248,244,234,0.88),
rgba(248,244,234,0.88)
),
url('../images/pattern.png');

background-size:cover;
background-position:center;

border-radius:36px;

padding:55px;

display:flex;
flex-direction:column;
justify-content:center;

box-shadow:
0 25px 70px rgba(0,0,0,0.06);

height:100%;
}

.about-content h2{
font-size:54px;
line-height:1.12;
letter-spacing:-1px;
margin-bottom:26px;
font-family:'Cinzel',serif;
color:#111;
}

.about-content p{
color:#555;
margin-bottom:22px;
font-size:17px;
line-height:2;
max-width:720px;
}

/* KEEP ALL REMAINING ORIGINAL CSS BELOW THIS EXACTLY AS YOUR FILE */


*{
  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.8;
}

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

a{
  text-decoration:none;
}

ul{
  list-style:none;
}

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

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

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,0.05);
  transition:0.3s ease;
}

.navbar{
  height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

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

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

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

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

.logo-text p{
  color:#b88a1b;
  font-size:13px;
}

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

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

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

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

.nav-menu a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;
  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,#e0b74f);
  color:#fff;
  padding:16px 34px;
  border-radius:60px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:600;
  transition:0.3s;
  border:none;
  cursor:pointer;
}

.call-btn:hover,
.btn:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(184,138,27,0.22);
}

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

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

.mobile-call-btn{
  width:46px;
  height:46px;
  border-radius:50%;
  background:linear-gradient(to right,#b88a1b,#e0b74f);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hamburger{
  width:48px;
  height:48px;
  border-radius:50%;
  background:linear-gradient(to right,#b88a1b,#e0b74f);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  cursor:pointer;
}

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

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

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

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

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

.about-hero{
  padding-top:185px;
  padding-bottom:120px;
  background:
  linear-gradient(rgba(250,248,243,0.93),rgba(250,248,243,0.96)),
  url('../images/spiritual-bg.webp');
  background-size:cover;
  background-position:center;
  text-align:center;
}

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

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

.about-hero-content p{
  max-width:900px;
  margin:auto;
  color:#555;
  font-size:18px;
}

/* ========================= */
/* ABOUT */
/* ========================= */
/* ========================= */
/* ABOUT */
/* ========================= */

.about-section{
  padding:100px 0;
  position:relative;
  overflow:hidden;

  background:
  linear-gradient(
    to right,
    rgba(248,244,234,0.96) 0%,
    rgba(248,244,234,0.96) 46%,
    #ffffff 46%,
    #ffffff 100%
  );
}
.about-section::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:48%;
  height:100%;

  background:
  url('../images/pattern.png');

  background-size:cover;
  background-position:center;

  opacity:0.05;

  pointer-events:none;
}
.about-section::after{
  content:'';
  position:absolute;
  left:-120px;
  top:50%;
  transform:translateY(-50%);
  width:420px;
  height:420px;
  background:rgba(184,138,27,0.08);
  filter:blur(120px);
  border-radius:50%;
}
.about-grid{
  display:grid;
  grid-template-columns:1.25fr 1fr;
  gap:20px;
  align-items:center;
}

.about-image{
  height:100%;
}

.about-image img{
  width:100%;
  height:100%;
  min-height:auto;

 object-fit:contain;

   background:#f8f4ea;


  border-radius:36px;

  display:block;

  box-shadow:
  0 30px 80px rgba(0,0,0,0.10);
}
.about-image::before{
  content:'';
  position:absolute;
  inset:-25px;
  border-radius:40px;
  border:1px solid rgba(184,138,27,0.08);
  z-index:-1;
}

.section-tag{
  color:#b88a1b;
  font-weight:600;
  margin-bottom:16px;
  letter-spacing:1px;
}

.about-content{
  background:#fff;

  border-radius:36px;

  padding:55px;

  display:flex;
  flex-direction:column;
  justify-content:center;

  box-shadow:
  0 30px 80px rgba(0,0,0,0.06);

  height:100%;
}

.about-content h2{
  font-size:64px;
  line-height:1.12;
  letter-spacing:-1px;
  margin-bottom:26px;
  font-family:'Cinzel',serif;
  color:#111;
}

.about-content p{
  color:#555;
  margin-bottom:22px;
  font-size:17px;
  line-height:2;
  max-width:720px;
}

/* ========================= */
/* 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:56px;
  line-height:1.2;
  font-family:'Cinzel',serif;
}

/* ========================= */
/* CONSULTANTS */
/* ========================= */

.consultants-section{
  padding:120px 0;
  background:#f8f4ea;
}

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

.consultant-card{
  background:#fff;
  border-radius:36px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  transition:0.4s ease;
  display:flex;
  flex-direction:column;
  height:100%;
}

.consultant-card:hover{
  transform:translateY(-10px);
}

.consultant-card-image{
  width:100%;
  background:#f5f5f5;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.consultant-card-image img{
  width:100%;
  height:auto;
  max-height:520px;
  object-fit:contain;
  transition:0.5s ease;
  border-radius:24px;
}

.consultant-card:hover .consultant-card-image img{
  transform:scale(1.05);
}

.consultant-card-content{
  padding:36px 30px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.consultant-card-content h3{
  font-size:34px;
  line-height:1.2;
  margin-bottom:14px;
  font-family:'Cinzel',serif;
}

.consultant-card-content span{
  display:inline-block;
  color:#b88a1b;
  font-weight:600;
  margin-bottom:22px;
  letter-spacing:1px;
}

.consultant-card-content p{
  color:#555;
  font-size:16px;
  line-height:1.9;
  margin-bottom:18px;
}

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

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

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

.why-card{
  background:#f8f4ea;
  padding:40px 32px;
  border-radius:32px;
  text-align:center;
  transition:0.4s;
}

.why-card:hover{
  transform:translateY(-10px);
}

.why-card i{
  width:80px;
  height:80px;
  border-radius:24px;
  background:linear-gradient(to right,#b88a1b,#e0b74f);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  margin-bottom:24px;
  font-size:32px;
}

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

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

/* ========================= */
/* PROCESS */
/* ========================= */

.process-section{
  padding:120px 0;
  background:#f8f4ea;
}

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

.process-card{
  background:#fff;
  padding:50px 36px;
  border-radius:32px;
  text-align:center;
  transition:0.4s;
}

.process-card:hover{
  transform:translateY(-10px);
}

.process-number{
  width:80px;
  height:80px;
  border-radius:50%;
  background:linear-gradient(to right,#b88a1b,#e0b74f);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:700;
  margin:auto;
  margin-bottom:24px;
}

.process-card h3{
  font-size:28px;
  margin-bottom:18px;
  font-family:'Cinzel',serif;
}

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

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

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

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

.faq-item{
  background:#f8f4ea;
  border-radius:26px;
  overflow:hidden;
}

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

.faq-question span{
  width:42px;
  height:42px;
  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 30px 30px;
  color:#555;
}

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

/* ========================= */
/* CTA */
/* ========================= */

.cta-section{
  padding:120px 0;
  background:#f8f4ea;
}

.cta-box{
  background:linear-gradient(to right,#b88a1b,#e0b74f);
  color:#fff;
  padding:90px;
  border-radius:40px;
  text-align:center;
}

.cta-box h2{
  font-size:60px;
  margin-bottom:24px;
  font-family:'Cinzel',serif;
}

.cta-box p{
  max-width:850px;
  margin:auto;
  margin-bottom:30px;
  font-size:18px;
}

.cta-box .btn{
  background:#111;
}

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

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

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

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

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

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

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

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

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

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

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

.whatsapp-btn{
  position:fixed;
  right:22px;
  bottom:22px;
  width:64px;
  height:64px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  z-index:999999;
  box-shadow:0 10px 30px rgba(0,0,0,0.18);
  animation:whatsappPulse 2s infinite;
  transition:0.3s ease;
}

.whatsapp-btn:hover{
  transform:scale(1.08);
}

@keyframes whatsappPulse{

  0%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.08);
  }

  100%{
    transform:scale(1);
  }

}

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

@media(max-width:1200px){

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

}

@media(max-width:1100px){

.about-grid{
  display:grid;
  grid-template-columns:45% 45%;
  justify-content:space-between;
  align-items:stretch;
  gap:0;
}

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

}
@media(max-width:1024px){

  .about-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

 .about-image img{
  width:100%;
  height:100%;
  min-height:620px;

  object-fit:contain;

  background:#f8f4ea;

  padding:18px;

  border-radius:36px;

  display:block;

  box-shadow:
  0 30px 80px rgba(0,0,0,0.10);
}

  .about-content{
    padding:42px;
  }

  .about-content h2{
    font-size:46px;
  }

}

@media(max-width:768px){

 .about-section{
  padding:110px 0;
  background:#faf8f3;
}

.about-content h2{
  font-size:54px;
  line-height:1.12;
}
  .nav-menu,
  .nav-right{
    display:none;
  }

  .mobile-right{
    display:flex;
  }

  .about-hero{
    padding-top:150px;
    padding-bottom:90px;
  }

  .about-image img{
  height:360px;
}

.about-content{
  padding:28px 24px;
}

.about-content h2{
  font-size:36px;
}

  .about-hero-content h1{
    font-size:42px;
    line-height:1.2;
  }

  .about-content h2,
  .section-title h2,
  .cta-box h2{
    font-size:36px;
    line-height:1.3;
  }

  .about-content h2{
  font-size:42px;
  line-height:1.2;
}
  .consultants-grid,
  .why-grid,
  .process-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .consultant-card-image{
  padding:14px;
}

  .consultant-card-content{
    padding:30px 24px;
  }

  .consultant-card-content h3{
    font-size:30px;
  }

  .cta-box{
    padding:55px 24px;
  }

  .faq-question{
    font-size:17px;
    padding:24px;
  }

  .faq-answer p{
    padding:0 24px 24px;
  }

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

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

  .whatsapp-btn{
    width:58px;
    height:58px;
    right:18px;
    bottom:18px;
    font-size:30px;
  }

}

@media(max-width:480px){

  .about-content h2{
  font-size:34px;
}

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

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

  .consultant-card-image img{
  max-height:420px;
}

  .consultant-card-content h3{
    font-size:26px;
  }

  .hero-tag{
    font-size:14px;
    padding:10px 18px;
  }

  .cta-box{
    border-radius:28px;
  }

}
/* ========================= */
/* LEGAL SECTION */
/* ========================= */

.legal-section{
  padding:120px 0;
  background:#fff;
}

.legal-wrapper{
  max-width:1000px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:22px;
}

.legal-item{
  background:#f8f4ea;
  border-radius:26px;
  overflow:hidden;
}

.legal-question{
  width:100%;
  border:none;
  background:none;
  padding:28px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  font-size:20px;
  font-weight:600;
  text-align:left;
  color:#222;
}

.legal-question span{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#b88a1b;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  flex-shrink:0;
}

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

.legal-answer p{
  padding:0 30px 30px;
  color:#555;
  line-height:2;
}

.legal-item.active .legal-answer{
  max-height:500px;
}

@media(max-width:768px){

  .legal-question{
    font-size:17px;
    padding:24px;
  }

  .legal-answer p{
    padding:0 24px 24px;
  }

  .about-grid{
  grid-template-columns:1fr;
  gap:28px;
}

.about-image img{
  min-height:auto;
  height:420px;
}

.about-content{
  padding:32px 26px;
}

.about-content h2{
  font-size:38px;
}

}


.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;
}
}


/* ========================= */
/* FINAL FOOTER FIX */
/* ========================= */

.footer,
footer.footer{
background:#0b0b0b !important;
color:#ffffff !important;
position:relative;
z-index:2;
}

.footer *{
box-sizing:border-box;
}

.footer-grid,
.footer-column,
.footer-bottom,
.footer-policy-clean,
.ownership-note,
.vs-legal-note{
background:transparent !important;
}

.footer-column h3,
.footer-bottom p,
.ownership-note,
.vs-legal-note{
color:#ffffff !important;
}

.footer-column p,
.footer-column a,
.footer-policy-clean a{
color:#cfcfcf !important;
}

.footer-policy-clean{
background:#0b0b0b !important;
}

.footer-bottom{
background:#0b0b0b !important;
border-top:1px solid rgba(255,255,255,0.08) !important;
}

.ownership-note{
background:#0b0b0b !important;
}

.vs-legal-note{
background:#0b0b0b !important;
padding-bottom:30px !important;
}

body{
background:#faf8f3;
}
