/* Main Styles */
html {
  	scroll-behavior: smooth;
	overflow-anchor: none;
}

h1, h2, h3, h4, h5, h6 {
  	font-family: var(--wp--preset--font-family--plus-jakarta-sans), sans-serif;
}

p {
	font-family: var(--wp--preset--font-family--inter), sans-serif;
}

body, h1, h2, h3, h4, h5, h6, p, span, ul, li {
	margin: 0;
}

h1 {
    font-size: 3.5rem; /* 56px */
}	
h2 {
	font-size: 2.5rem; /* 40px */
}
h3 {
	font-size: 2rem; /* 32px */
}
h4 {
	font-size: 1.5rem; /* 24px */
}
h5 {
	font-size: 1.25rem; /* 20px */
}
h6 {
	font-size: 1rem; /* 16px */
}

p {
    font-size: 1rem; /* 16px */
}

span {
    font-size: 0.75rem; /* 12px */
}

a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color from the parent element */
}

.fade-in-up {
  	opacity: 0;
  	transform: translateY(24px);
  	transition: opacity 1.3s ease-out, transform 1.3s ease-out;
  	will-change: transform, opacity;
}

.fade-in-up.is-visible {
  	opacity: 1;
  	transform: translateY(0);
}

@keyframes fadeInUp {
  	to {
    	opacity: 1;
    	transform: translateY(0);
  	}
}

/* Preloader */
#preloader {
  	position: fixed;
  	inset: 0;
  	background: #fff;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	z-index: 999999;
}

#preloader img {
	width: 75px;
	height: auto;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: opacity 1.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
	opacity: 0;
	transform: translateY(-20px);
}

header.is-loaded {
	opacity: 1;
	transform: translateY(0);
}

header.header-hidden {
    transform: translateY(-100%);
	opacity: 1;
}

header.header-visible {
    transform: translateY(0);
}

header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

header .container {
	max-width: 1440px;
	display: flex;
  	justify-content: space-between;
  	align-items: center;
	padding: 20px 40px;
	margin: 0 auto;
}

header .site-logo img {
  	height: 50px;
	image-rendering: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
}

header .header-main-nav {
	display: flex;
	gap: 35px;
	align-items: center;
}

header .header-main-nav .menu-items {
  	display: flex;
  	gap: 30px;
  	list-style: none;
}

header .header-main-nav .menu-items li a {
  	color: #000000;
  	font-weight: 300;
	letter-spacing: .25px;
  	transition: color 0.3s ease;
}

header .header-main-nav .menu-items li a:hover {
  	color: rgba(0, 0, 0, 0.6);
}

header .header-main-nav .menu-items .contact {
	margin-top: -1px;
}

header .header-main-nav .buttons {
	display: flex;
	gap: 25px;
}

header .header-main-nav .buttons .btn {
	font-size: 14px;
	margin-left: 10px;
	padding: 14px 40px;
    border: 1px solid #000000;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
	color: #ffffff;
	background-color: #000000;
	text-transform: uppercase;
	letter-spacing: 1px;
}

header .header-main-nav .buttons .btn:last-of-type {
	margin-left: 0;
}

header .header-main-nav .buttons .btn:hover {
	background-color: rgba(0, 0, 0, 0.6);
	color: rgba(255, 255, 255, 255.6);
	border-color: transparent;
}

header .header-main-nav .buttons:has(p:nth-of-type(2)) p:last-of-type .btn {
    background-color: transparent;
    color: #000000;
	border: 1px solid #000000;
}

header .header-main-nav .buttons:has(p:nth-of-type(2)) p:last-of-type .btn:hover {
    background-color: #000000;
    color: #ffffff;
}

header.scrolled .header-main-nav .buttons .btn {
	font-size: 14px;
	margin-left: 10px;
	padding: 14px 40px;
    background-color: #000000;
    border-radius: 8px;
    transition: background-color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
}

header.scrolled .header-main-nav .buttons .btn:last-of-type {
	margin-left: 0;
}

header.scrolled .header-main-nav .buttons .btn:hover {
	background-color: rgba(0, 0, 0, 0.6);
	border-color: transparent;
	color: rgba(255, 255, 255, 255.6);
}

header .header-main-nav .buttons:has(p:nth-of-type(2)) p:last-of-type .btn {
    background-color: transparent;
    color: #000000;
	border-color: #000000;
}

header .header-main-nav .buttons:has(p:nth-of-type(2)) p:last-of-type .btn:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}

header .header-main-mobile-nav, .mobile-menu-popup {
	display: none;
}

/* Footer */
footer .footer-cta .container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff; /* White text */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
	height: 500px;
}

footer .footer-cta .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Black overlay with 50% opacity */
    z-index: 1;
}

footer .footer-cta .subtitle {
	margin-bottom: 10px;
}

footer .footer-cta .subtitle span {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.5px;
	line-height: 1.4; 
	text-transform: uppercase;
}

footer .footer-cta h2,
footer .footer-cta p,
footer .footer-cta .footer-cta-buttons {
    position: relative;
    z-index: 2;
}

footer .footer-cta h2 {
    margin-bottom: 25px;
}

footer .footer-cta p {
	font-size: 18px;
	font-weight: 300;
    margin-bottom: 30px;
    max-width: 800px;
	line-height: 1.4;
	letter-spacing: .25px;
}

footer .footer-cta .footer-cta-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

footer .footer-cta .footer-cta-buttons p {
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: .25px;
	text-transform: uppercase;
}

footer .footer-cta .footer-cta-buttons a {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #ffffff;
    color: #000000;
	background-color: #ffffff;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

footer .footer-cta .footer-cta-buttons a:hover {
    background-color: rgba(255, 255, 255, 255.6);
    color: rgba(0, 0, 0, 0.6);
}

footer .footer-cta-buttons:has(p:nth-of-type(2)) p:last-of-type a {
    background-color: transparent;
  	color: #ffffff;
	border: 1px solid #ffffff;
}

footer .footer-cta-buttons:has(p:nth-of-type(2)) p:last-of-type a:hover {
	color: #000000;
    border-color: transparent;
    background-color: #ffffff;
}

footer .main-footer {
    display: flex;
    justify-content: space-between;
    padding: 50px 40px 30px;
    flex-wrap: wrap; /* allows wrapping on small screens */
    gap: 20px; /* spacing between columns */
	max-width: 1440px;
	margin: 0 auto;
}

footer .main-footer .footer-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

footer .main-footer .footer-left img {
    max-height: 150px; /* adjust logo size */
    margin-bottom: 25px;
	image-rendering: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
}

footer .main-footer .footer-left p {
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: .25px; 
}

footer .main-footer .footer-center, 
footer .main-footer .footer-right {
    width: 20%;
}

footer .main-footer .footer-center h4,
footer .main-footer .footer-right h4 {
    margin-bottom: 25px;
}

footer .main-footer .menu-items {
    list-style: none;
    padding: 0;
}

footer .main-footer .menu-items li {
    margin-bottom: 15px;
}

footer .main-footer .menu-items p {
	font-weight: 300;
	letter-spacing: .25px;
}

footer .main-footer .menu-items a {
	transition: color 0.3s ease, transform 0.3s ease;
}

footer .main-footer .menu-items a:hover {
	color: rgba(0, 0, 0, 0.6);
}


footer .main-footer .footer-right p {
	margin-bottom: 15px;
	font-weight: 300;
	letter-spacing: .25px;
}

footer .main-footer .footer-right a {
	transition: color 0.3s ease, transform 0.3s ease;
}

footer .main-footer .footer-right a:hover {
	color: rgba(0, 0, 0, 0.6);
}

footer .main-footer .footer-right i {
	margin-right: 10px;
}

footer .bootom-footer {
    padding: 20px 40px; /* adjust spacing */
    max-width: 1440px;
	margin: 0 auto;
}

footer .bootom-footer .container {
	display: flex;
    justify-content: space-between; /* push content to edges */
    align-items: center; /* vertically center items */
    flex-wrap: wrap; /* for smaller screens */
	border-top: 1px solid #ededed;
	padding: 20px 0 0; /* adjust spacing */
}

footer .bootom-footer .copyright-text {
    margin: 0;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: .25px;
}

footer .bootom-footer .footer-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5px; /* Space between icons */
}

footer .bootom-footer .footer-social li {
    display: inline-block;
}

footer .bootom-footer .footer-social li p {
	font-size: 14px;
}

footer .bootom-footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit; /* Use the current text color */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

footer .bootom-footer .footer-social i {
    color: #000000; /* Default icon color */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
}

footer .bootom-footer .footer-social a:hover i {
    color: #ffffff; /* Change the color of the icon on hover */
}

footer .bootom-footer .footer-social a {
    border: 1px solid #ededed;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

footer .bootom-footer .footer-social a:hover {
    background-color: #000000; /* Change the background color on hover */
}

footer .bootom-footer .footer-social li:not(:last-child) {
    margin-right: 10px;
}

.sticky-button {
  	position: fixed;
  	bottom: 80px;
  	right: 40px;
  	z-index: 9999;
	opacity: 0;
    transform: translateY(20px);
    transition: all 1.3s ease;
}

.sticky-button.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-button a {
  	background: #000000;
	color: #ffffff;
    border-radius: 50%;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}


.sticky-button:hover a {
	background: rgba(255,255,255,255.6);
	color: rgba(0,0,0,0.6);
}

.sticky-button.sticky-dark a {
    background: #ffffff;
	color: #000000;
	box-shadow: 0 4px 8px rgba(255,255,255,0.1);
}

.sticky-button.sticky-dark:hover a {
    background: rgba(255,255,255,255.6);
	color: rgba(0,0,0,0.6);
}

.sticky-button:hover a {
	background: rgba(0,0,0,0.6);
	color: rgba(255,255,255,255.6);
}

.sticky-button .phone a {
    padding: 31px 24px 21px;
}

.sticky-button .comment-o a {
    padding: 31px 23.5px 25px;
}

.sticky-button .envelope-o a {
    padding: 32px 16px 25px 24px;
}

.sticky-button .whatsapp a {
	padding: 30px 24px 23px;
}

.sticky-button .telegram a {
    padding: 32px 23px 24px;
}

.sticky-button .commenting-o a {
    padding: 30px 22px 23px;
}

.sticky-button .weixin a {
    padding: 31px 12px 24px 22px;
}

.sticky-button i {
	font-size: 30px;
}

.sticky-button span {
	font-size: 18px;
	margin-right: 15px;
	opacity: 0;
    transform: translateX(-8px);
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sticky-button:hover span {
    opacity: 1;
    transform: translateX(0);
	color: rgba(0,0,0,0.6);
}

.sticky-button.sticky-dark span {
    color: #ffffff;
}

.sticky-button.sticky-dark:hover span {
    color: rgba(255,255,255,255.6);
}

@media (max-width: 1024px) {
	h1 { 
		font-size: 3rem; 
	}   /* 48px */
    h2 { 
		font-size: 2rem; 
	}   /* 32px */
    h3 { 
		font-size: 1.75rem; 
	} /* 28px */
    h4 { 
		font-size: 1.25rem; 
	} /* 20px */
    h5 { 
		font-size: 1rem; 
	}    /* 16px */
    h6 { 
		font-size: 0.875rem; 
	}/* 14px */
    
	p  { 
		font-size: 0.875rem; 
	}/* 14px */
    
	span { 
		font-size: 0.625rem; 
	}/* 10px */
	
	header .container {
		padding: 20px 30px;
	}
	
	header .header-main-nav {
		display: none;
	}
	
	header .header-main-mobile-nav svg {
		width: 25px;
		height: 25px;
		transition: fill 0.3s ease;
	}
	
	header .header-main-mobile-nav svg:hover {
		fill: rgba(0, 0, 0, 0.6);
	}
	
	header .header-main-mobile-nav {
		display: block;
		background: none;
		border: none;
		cursor: pointer;
		padding: 0;
	}

	.mobile-menu-popup {
		position: fixed;
		inset: 0;
		width: 100vw;
		height: 100dvh;
		z-index: 999999;
		background: #fff;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: 0.3s ease;
	}

	.mobile-menu-popup.active {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.mobile-menu-popup .mobile-menu-panel {
		width: 100%;
		height: 100%;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background: #fff;
		padding: 20px 30px;
		transform: translateX(100%);
		transition: 0.3s ease;
	}

	.mobile-menu-popup.active .mobile-menu-panel {
		transform: translateX(0);
	}
	
	.mobile-menu-popup .mobile-menu-header {
		display: flex;
		justify-content: space-between;
		margin-bottom: 40px;	
	}
	
	.mobile-menu-popup .mobile-menu-header .site-logo img {
		height: 50px;
		image-rendering: auto;
		backface-visibility: hidden;
		transform: translateZ(0);
	}

 	.mobile-menu-popup .mobile-menu-close {
		margin-right: 55px;
		padding: 0;
		background: none;
		border: none;
		cursor: pointer;
	}
	
	.mobile-menu-popup .mobile-menu-close svg {
		height: 25px;
		width: 25px;
	}
	
	.mobile-menu-popup .mobile-menu-close svg path {
		transition: fill 0.3s ease;
	}

	.mobile-menu-popup .mobile-menu-close:hover svg path {
		fill: rgba(0, 0, 0, 0.6);
	}
	
	.mobile-menu-popup .mobile-menu-panel h4 {
		margin-bottom: 30px;
	}

	.mobile-menu-popup .mobile-menu-items {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.mobile-menu-popup .mobile-menu-items li {
		margin-bottom: 20px;
	}
	
	.mobile-menu-popup .mobile-menu-items p {
		letter-spacing: .25px;
		font-weight: 300;
	}

	.mobile-menu-popup .mobile-menu-items a {
		text-decoration: none;
		transition: color 0.3s ease;
	}
	
	.mobile-menu-popup .mobile-menu-items a:hover {
		color: rgba(0, 0, 0, 0.6);
	}
	
	.mobile-menu-popup .buttons-mobile {
		display: inline-block;
		margin-top: 10px;
	}
	
	.mobile-menu-popup .buttons-mobile p {
		margin-bottom: 20px;
	}
	
	.mobile-menu-popup .buttons-mobile p:last-of-type {
		margin-bottom: 0;
	}

	.mobile-menu-popup .buttons-mobile .btn {
		font-size: 12px;
		margin-left: 10px;
		padding: 14px 40px;
		border: 1px solid #000000;
		border-radius: 8px;
		transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
		color: #ffffff;
		background-color: #000000;
		text-transform: uppercase;
		letter-spacing: 1px;
	}

	.mobile-menu-popup .buttons-mobile .btn:last-of-type {
		margin-left: 0;
	}

	.mobile-menu-popup .buttons-mobile .btn:hover {
		background-color: rgba(0, 0, 0, 0.6);
		color: rgba(255, 255, 255, 255.6);
		border-color: transparent;
	}

	.mobile-menu-popup .buttons-mobile:has(p:nth-of-type(2)) p:last-of-type .btn {
		background-color: transparent;
		color: #000000;
		border: 1px solid #000000;
	}

	.mobile-menu-popup .buttons-mobile:has(p:nth-of-type(2)) p:last-of-type .btn:hover {
		background-color: #000000;
		color: #ffffff;
	}

	body.mobile-menu-open {
		overflow: hidden;
	}
	
	.mobile-menu-popup .mobile-menu-footer {
		position: absolute;
    	bottom: 60px;
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		gap: 10px; /* Space between icons */
	}
	
	.mobile-menu-popup .mobile-menu-social {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		gap: 5px;
	}

	.mobile-menu-popup .mobile-menu-footer .mobile-menu-social li {
		display: inline-block;
	}

	.mobile-menu-popup .mobile-menu-footer .mobile-menu-social li p {
		font-size: 14px;
	}

	.mobile-menu-popup .mobile-menu-footer .mobile-menu-social a {
		display: flex;
		align-items: center;
		justify-content: center;
		color: inherit; /* Use the current text color */
		transition: all 0.3s ease; /* Smooth transition for hover effects */
	}

	.mobile-menu-popup .mobile-menu-footer .mobile-menu-social i {
		color: #000000; /* Default icon color */
		transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
	}

	.mobile-menu-popup .mobile-menu-footer .mobile-menu-social a:hover i {
		color: #ffffff; /* Change the color of the icon on hover */
	}

	.mobile-menu-popup .mobile-menu-footer .mobile-menu-social a {
		border: 1px solid #ededed;
		border-radius: 50%;
		width: 40px;
		height: 40px;
	}

	.mobile-menu-popup .mobile-menu-footer .mobile-menu-social a:hover {
		background-color: #000000; /* Change the background color on hover */
	}

	.mobile-menu-popup .mobile-menu-footer .mobile-menu-social li:not(:last-child) {
		margin-right: 10px;
	}
	
	footer .footer-cta .container {
		padding: 0 30px;
		height: 450px;
	}
	
	footer .footer-cta .subtitle {
		margin-bottom: 15px;
	}
	
	footer .footer-cta .subtitle span {
		font-size: 12px;
	}
	
	footer .footer-cta p {
		font-size: 16px;
		max-width: 555px;
	}
	
	footer .footer-cta .footer-cta-buttons p {
		font-size: 12px;
	}
	
	footer .main-footer {
		padding: 50px 30px 5px;
	}
	
	footer .main-footer .footer-left img {
		max-height: 100px;
	}
	
	footer .bootom-footer .copyright-text {
		font-size: 12px;
	}
	
	.sticky-button {
		bottom: 100px;
		right: 30px;
	}
	
	.sticky-button .phone a {
		padding: 31px 23px 21px;
	}
	
	.sticky-button .comment-o a {
		padding: 31px 22px 25px;
	}
	
	.sticky-button .envelope-o a {
		padding: 32px 14px 25px 22px;
	}
	
	.sticky-button .whatsapp a {
		padding: 30px 22px 23px;
	}
	
	.sticky-button .telegram a {
		padding: 32px 21.5px 24px;
	}
	
	.sticky-button .commenting-o a {
		padding: 30px 20px 23px;
	}
	
	.sticky-button .weixin a {
		padding: 31px 10.5px 24px 20px;
	}
}

@media (max-width: 767px) {
	h1 { 
		font-size: 2.5rem; 
	}   /* 40px */
    h2 { 
		font-size: 1.75rem; 
	}  /* 28px */
    h3 { 
		font-size: 1.5rem; 
	}   /* 24px */
    h4 { 
		font-size: 1.125rem; 
	} /* 18px */
    h5 { 
		font-size: 0.875rem; 
	} /* 14px */
    h6 { 
		font-size: 0.75rem; 
	}  /* 12px */
    
	p  { 
		font-size: 0.875rem; 
	} /* 14px */
    
	span { 
		font-size: 0.625rem; 
	}/* 10px */
	
	header .container {
		padding: 20px;
	}

	.mobile-menu-popup .mobile-menu-panel {
		width: 100%;
		height: 100%;
		overflow-y: auto;
    	-webkit-overflow-scrolling: touch;
		background: #ffffff;
		padding: 20px;
		transform: translateX(100%);
		transition: 0.3s ease;
	}

	.mobile-menu-popup .mobile-menu-header {
		display: flex;
		justify-content: space-between;
		margin-bottom: 40px;	
	}

 	.mobile-menu-popup .mobile-menu-close {
		margin-right: 40px;
		padding: 0;
		background: none;
		border: none;
		cursor: pointer;
	}
	
	.mobile-menu-popup .mobile-menu-footer .mobile-menu-social li p {
		font-size: 14px;
	}

	.mobile-menu-popup .mobile-menu-footer .mobile-menu-social a {
		border: 1px solid #ededed;
		border-radius: 50%;
		width: 40px;
		height: 40px;
	}

	footer .footer-cta .container {
		padding: 0 20px;
	}
	
	footer .main-footer {
		display: block;
		padding: 50px 20px 30px;
	}
	
	footer .main-footer .footer-left, footer .main-footer .footer-center, footer .main-footer .footer-right {
		width: 100%;
	}
	
	footer .main-footer .footer-left, footer .main-footer .footer-center {
		margin-bottom: 30px;
	}
	
	footer .main-footer .footer-left img {
		max-height: 80px;
	}
	
	footer .main-footer .footer-right p:last-child {
		margin-bottom: 0;
	}
	
	footer .main-footer .menu-items li:last-child {
		margin-bottom: 0;
	}
	
	footer .bootom-footer {
		border-top: 1px solid #ededed;
		padding: 30px 20px 20px;
	}
	
	footer .bootom-footer .container {
		display: block;
		border-top: none;
		padding: 0;
		text-align: center;
	}
	
	footer .bootom-footer .copyright-text {
		margin-bottom: 25px;
	}
	
	footer .bootom-footer .footer-social {
		justify-content: center;
	}
	
	.sticky-button {
        bottom: 75px;
        right: 20px;
    }
}