/*CSS Custom Properties*/
:root {
  --font-playfair: 'Playfair Display', sans-serif;
  --font-cormorant: 'Cormorant Garamond', sans-serif;
  --font-outfit: 'Outfit', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --section-title-color: #1a1a1a;
  --text-body-color: #4b5563;
  --white: #FFFFFF;
  --light-white: #F0FDF4;
  --green: #00674f;
  --dark-green: #004d3b;
  --gold: #c8a45d;
  --gold-light: #e8c97a;
  --gold-soft: #e8d8b0;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
body{
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-body-color);
  transition: all 0.4s ease;
  padding-top: 126.7px;
}
body #main-header+main .full-width-region{
  overflow-x: hidden;
}
.content-editor-user #toolbar-bar > .toolbar-tab{
  display: none;
}
.content-editor-user #toolbar-bar > .toolbar-tab:last-child{
  display: block;
}
body.user-logged-in{
  padding-top: 122px !important;
}
body.user-logged-in.toolbar-tray-open{
  padding-top: 161px !important;
}
.toolbar-oriented .toolbar-bar{
  z-index: 99999;
}
img{
  max-width: 100%;
}

/******header section*******/
body.user-logged-in header{
  top: 39px;
}
body.user-logged-in.toolbar-tray-open header{
  top: 80px !important;
}
body header{
  background : #000 !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  min-height: 83px;
}
/*live market*/
.market-block{
  background: var(--dark-green);
}
/*logo*/
.navbar-brand{
  margin: 0;
  padding: 5px 0;
}
.navbar-brand > div{
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.logo-section img{
  margin: 0;
  width: 70px;
  height: auto;
  padding-right: 10px;
}
.logo-section .site-title{
  font-family: var(--font-playfair);
  color: var(--green) !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-transform: capitalize;
  display: flex;
  letter-spacing: 1px;
}
.logo-section a.site-title:focus,
.logo-section a.site-title:active,
.logo-section a.site-title:hover{
  color: var(--green);
}
/*.navbar-brand .site-slogan{*/
.logo-section .site-slogan{
  font-family: var(--font-inter);
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
}
/*navbar menu*/
.navbar-nav .nav-item a{
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
.navbar-nav .nav-item a.active,
.navbar-nav .nav-item a:hover{
  color: var(--gold);
}
/*header contact button*/
.header-contact-block a.btn:focus,
.header-contact-block a.btn:active,
.header-contact-block a.btn{
  background-color: var(--green);
  color: var(--white);
  border-radius: 20PX;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 20px 8px 40px;
  outline: 0;
  border: 0;
}
.header-contact-block a.btn.btn-call{
  background-image: url(../images/icons/call-white.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center left 15px;
}
.header-contact-block a.btn.btn-wa{
  background-image: url(../images/icons/whatsapp-white.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center left 15px;
}
.header-contact-block a.btn:hover{
  background-color: var(--dark-green);  
}
@media (max-width: 1199.98px){
  .logo-section .site-title{
    font-size: 17px;
    line-height: 17px;
  }
  .logo-section .site-slogan{
    font-size: 9px;
    line-height: 9px;
    display: inline-flex;
  }
  .navbar-nav .nav-item a{
    font-size: 14px;
    line-height: 24px;   
  }
  .header-contact-block a.btn{
    padding: 8px 15px 8px 35px;
    background-position: center left 10px !important;
  }
}
@media (max-width: 990.98px){
  .logo-section .site-title{
    font-size: 17px;
    line-height: 17px;
  }
  .logo-section .site-slogan{
    font-size: 9px;
    line-height: 9px;
    display: inline-flex;
  }
  /*navbar menu*/
  #main-header .navbar-toggler{
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: 0;
    outline: 0;
    box-shadow: 0 4px 12px rgba(200, 164, 93, 0.25);
    display: flex;
    width: 50px;
    height: 40px;
    padding: 4px 12px;
    position: relative;  
  }
  #main-header .navbar-toggler span{
    background: var(--gold);
    height: 1.5px;
    display: inline-flex;
    transition: var(--transition);
    position: absolute;
    left: 12px;
    right: 12px;
  }
  #main-header .navbar-toggler.collapsed span:nth-child(1){
    top: 9px;
  }
  #main-header .navbar-toggler.collapsed span:nth-child(2){
    top: 50%;
    transform: translateY(-50%);
  }
  #main-header .navbar-toggler.collapsed span:nth-child(3){
    bottom: 8px;
  } 
  #main-header .navbar-toggler:not(.collapsed) span:nth-child(1){
    transform: rotate(45deg);
    top: 50%;
  }
  #main-header .navbar-toggler:not(.collapsed) span:nth-child(2){
    opacity: 0;
    display: none;
  }
  #main-header .navbar-toggler:not(.collapsed) span:nth-child(3){
    transform: rotate(-45deg);
    bottom: auto;
    top: 50%;
  } 
}
/******header section ends*******/

/******footer section*******/
footer{
  background: #0d1612;
  padding: 30px 0 0;
}
footer .region-footer{
  flex-direction: row;
  padding-bottom: 30px;
}
.footer-branding .site-branding{
  text-decoration: none;
}
.footer-branding .brand-text-wrapper{
  gap: 7px; 
}
.footer-brand-desc{
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-link-block > h2{
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: var(--white);
}
footer .navbar-nav .nav-item a,
footer .footer-link-block a{
  font-size: 13px;
  line-height: 17px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 0 0 7px;
  display: inline-flex;
}
footer .footer-link-block a:hover{
  color: var(--gold);
}
.footer-bottom{
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.3);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  justify-content: space-between;
}
.copyright{
  color: rgba(255, 255, 255, 0.5);
}
.privacy > .region-privacy-region,
.copyright > .region-copyright-region{
  display: flex;
}
.footer-bottom a{
  text-decoration: none;
}
.footer-bottom a:hover{
  text-decoration: none;
  color: var(--gold);
}
.legal-menu-block .nav{
  display: flex;
  flex-direction: row;
  gap: 15px;
} 
.legal-menu-block .nav a{
  padding: 0 !important;
}
@media (max-width: 767.98px){
  footer .region-footer{
    flex-direction: column;
  }
  .footer-bottom{
    flex-direction: column;
  }
  .copyright{
    margin-bottom: 10px;
  }
}
/******footer section ends*******/

/******floating buttons*******/
.float-btn{
  position: fixed;
  right: 22px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 1030;
  transition: var(--transition);
  text-decoration: none;
}
.float-btn:hover{
  transform: scale(1.12);
  color: #fff;
}
.float-wa{
  bottom: 90px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.float-wa::after{
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/icons/whatsapp-white.svg) no-repeat center;
  background-size: 25px;
}
.float-call{
  bottom: 22px;
  background: #00674f;
  box-shadow: 0 6px 20px rgba(0,103,79,0.4);
}
.float-call::after{
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/icons/call-white.svg) no-repeat center;
  background-size: 25px;
}
/* WhatsApp pulse animation */
.float-wa::before{
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: ripplePulse 2.5s ease-out infinite;
}
@keyframes ripplePulse{
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
/* =============================================
   SCROLL TO TOP BUTTON
============================================= */
.scroll-top-btn {
  position: fixed;
  bottom: 22px;
  left: 22px;
  width: 46px; height: 46px;
  /*background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);*/
  background: #c8a45d;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(0,102,204,0.3);
  cursor: pointer;
  z-index: 1030;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.scroll-top-btn::before{
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/icons/arrow-up.svg) no-repeat center;
  background-size: 25px;    
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,102,204,0.45);
}
/******floating buttons ends*******/


/******Basic Page*******/
.page-node-type-page{
  background: var(--light-white);
}
.page-node-type-page article{
  padding: 70px 0;
}
/******Basic Page ends*******/

/******Login Page ends*******/
.user-login-form{
  padding: 70px 0;
  max-width: 500px;
  margin: 0 auto;
}
.user-login-form input[type="submit"]{
  background: var(--dark-green);
  color: var(--white);
  border-color: var(--dark-green);  
}
.user-login-form input[type="submit"]:hover{
  background: var(--green);
  border-color: var(--green);
}
/******Login Page ends*******/