/**
* template:  GLODENT

TABLE OF CONTENTS

        + Global
        + Header
        + Header Content
        + About Us
        + Services
        + Offer
		+ Team
		+ Pricing
        + FAQ
		+ Testimonials
        + Booking
        + Contacts

*/

@import 'reset.css';
@import 'all.min.css';
@import 'owl.carousel.min.css';
@import 'owl.theme.default.min.css';
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&amp;family=Roboto&amp;display=swap');


/**************************************
*
*         GLOBAL   
*
***************************************/


:root {
	--color-blue: #8bc34a;
	/* Apple Green (Accent) */
	--color-dark-blue: #4a148c;
	/* Dark Purple (Primary) */
	--color-purple: #673ab7;
	/* Medium Purple */
	--color-dark: #222222;
	--color-gray: #f7f9fb;
	--color-white: #ffffff;
	--color-light-gray: #808586;
}

html,
body {
	overflow-x: hidden !important;
	width: 100%;
	margin: 0;
	padding: 0;
}

/* [v-cloak] {
	display: none !important;
} */

.header-content h1 {
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.single-team img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.aboutus-img img {
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	width: 100%;
	height: auto;
	display: block;
}

.service-card {
	background: white;
	padding: 30px;
	border-radius: 20px !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
	border-bottom: 4px solid #eee;
	transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out !important;
	overflow: hidden;
	position: relative;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.service-card:hover {
	transform: translateY(-8px) scale(1.02) !important;
	box-shadow: 0 15px 35px rgba(103, 58, 183, 0.12) !important;
	border-bottom-color: var(--color-purple) !important;
}

.service-card i,
.service-card img {
	transition: transform 0.3s ease-out;
}

.service-card:hover img {
	transform: scale(1.05);
	/* Removed rotation to prevent shaking */
}

.service-icon-img {
	width: 65px;
	height: 65px;
	margin-bottom: 20px;
	object-fit: contain;
}

@-webkit-keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#preload {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20000;
	background-color: var(--color-dark-blue);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#preload img {
	display: block;
	width: 32px;
	height: auto;
	-webkit-animation-name: load;
	animation-name: load;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

::-moz-selection {
	background-color: var(--color-dark-blue);
	color: var(--color-white);
}

::selection {
	background-color: var(--color-dark-blue);
	color: var(--color-white);
}

body {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-light-gray);
}

a {
	display: inline-block;
	text-decoration: none;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

img {
	display: block;
}

.wrapper {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	color: var(--color-dark-blue);
	line-height: 1.2;
	margin-bottom: 30px;
	text-transform: uppercase;
}

h1 {
	font-size: 75px;

}

h2 {
	font-size: 50px;
}

h3 {
	font-size: 20px;
}

.container {
	max-width: 1200px;
	width: 100%;
	padding: 0 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
}

.ptb {
	padding-top: 80px;
	padding-bottom: 80px;
}

.align-center {
	text-align: center;
}

.flex-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.btn {
	padding: 15px 30px;
	font-size: 14px;
	color: var(--color-white);
	text-transform: uppercase;
	background-color: var(--color-blue);
	border-radius: 3px;
	letter-spacing: 3px;
}

.btn:hover {
	background-color: var(--color-dark-blue);
}

.selection {
	color: var(--color-blue);
}

.suptitle {
	display: inline-block;
	color: var(--color-dark-blue);
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
	position: relative;
}

.suptitle:before {
	content: "";
	width: 50px;
	height: 1px;
	background-color: var(--color-dark-blue);
	position: absolute;
	top: 50%;
	right: -60px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.wrapper-title {
	margin-bottom: 50px;
}

#scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 9999;
	padding: 0;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--color-blue);
	color: white !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#scroll-top i {
	font-size: 24px;
	color: white !important;
}

.fixedmenu {
	background-color: var(--color-white);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

#closemenu,
#openmenu {
	display: none;
}

.res-booking {
	display: none;
	font-size: 14px;
	margin-top: 20px;
}

.res-booking .error {
	color: #ff0000;
}

.res-booking .send {
	color: var(--color-blue);
}


/**************************************
*
*         HEADER   
*
***************************************/


.wrapper-bottom-header {
	background-color: var(--color-dark-blue);
}

.wrapper-top-header {
	background-color: var(--color-purple);
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: white;
}

.header-top a {
	color: white;
	font-weight: 500;
	transition: all 0.3s;
}

.header-top a:hover {
	color: var(--color-blue);
}

.header-contact-left p {
	margin: 0;
	font-size: 14px;
}

.header-contact-center a {
	font-size: 14px;
}

.social-link li a {
	font-size: 1.2rem;
}

.social-link li a:hover {
	transform: translateY(-3px);
	display: inline-block;
}

.header-top .social-link a {
	color: var(--color-dark-blue);
	font-size: 20px;
}

.header-top .social-link a:hover {
	color: var(--color-blue);
}

.header-contact p {
	margin-right: 20px;
}

.header-contact i {
	margin-right: 5px;
}

.social-link li {
	float: left;
	margin-left: 20px;
}

.bottom-header {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 15px;
	padding-bottom: 15px;
}

#logo img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid white;
}

.menu {
	display: flex !important;
	flex-direction: row !important;
	gap: 30px;
	padding: 0;
}

.menu li {
	list-style: none;
	margin: 0;
}

.menu li a {
	color: white;
	text-transform: uppercase;
	font-weight: 600 !important;
	position: relative;
	padding: 10px 0;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.menu li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-blue);
	transition: width 0.3s ease;
}

.menu li a:hover {
	color: var(--color-blue) !important;
}

.menu li a:hover::after {
	width: 100%;
}

.btn-acceder {
	background-color: white;
	color: var(--color-dark-blue);
	border: 2px solid white;
	padding: 8px 20px;
	border-radius: 20px;
	font-weight: bold;
	transition: all 0.3s;
}

.btn-acceder:hover {
	background-color: var(--color-blue);
	color: white;
	border-color: var(--color-blue);
}


/**************************************
*
*         HEADER CONTENT   
*
***************************************/


.wrapper-header-img {
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	background-attachment: fixed;
	min-height: 750px;
}

.wrapper-header-content {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header-content {
	width: 100%;
}


/**************************************
*
*         ABOUT US   
*
***************************************/


#aboutus {
	position: relative;
	padding-top: 250px;
}

.wrapper-feature {
	max-width: 1400px;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: var(--color-gray);
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.single-feature {
	width: 25%;
	padding: 40px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.single-feature img {
	max-width: 64px;
	height: auto;
	margin: 0 auto;
	margin-bottom: 30px;
}

.aboutus-content {
	width: 55%;
	padding-left: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.aboutus-img img {
	width: 100%;
}

.aboutus-img {
	width: 45%;
}

.aboutus-content p {
	margin-bottom: 20px;
}

.wrapper-aboutus-progress {
	margin-top: 50px;
}

.single-progress {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-bottom: 30px;
}

.progress-img {
	width: 50px;
}

.progress-img img {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.progress-content {
	width: calc(100% - 50px);
	padding-left: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.progress-content h3 {
	margin-bottom: 5px;
}

.wrapper-singnature {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 50px;
}

.wrapper-singnature>img {
	width: 80px;
	height: auto;
	margin-right: 20px;
	border-radius: 50%;
}

.signature-content h3 {
	font-size: 16px;
	text-transform: none;
	margin-bottom: 5px;
}

.signature-content>img {
	max-width: 100px;
	height: auto;
}


/**************************************
*
*         SERVICES   
*
***************************************/


.wrapper-service article {
	width: calc(33.333333% - 20px);
	margin: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 40px 20px;
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.wrapper-service article:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.wrapper-service article img {
	max-width: 64px;
	height: auto;
	margin: 0 auto;
	margin-bottom: 30px;
}

/**************************************
*
*         OFFER  
*
***************************************/

.wrapper-offer {
	background-color: var(--color-gray);
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);

}

.offer-content {
	width: 60%;
	padding: 50px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.offer-content p {
	margin-bottom: 20px;
}

.offer-img {
	width: 40%;
	padding: 50px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}

.offer-img img {
	width: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
}


/**************************************
*
*         TEAM   
*
***************************************/


.wrapper-team {
	max-width: 1400px;
}


.single-team {
	background-color: var(--color-white);
}

.team-content {
	padding: 40px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
}

.wrapper-team-icon {
	position: absolute;
	top: -30px;
	left: 30px;
	background-color: var(--color-blue);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.wrapper-team-icon img {
	width: 30px !important;
	height: auto !important;
}

.team-content h3 {
	margin-bottom: 10px;
	text-transform: none;
}

.team-content .social-link {
	margin-top: 20px;
}

.team-content .social-link li {
	margin-left: 0px;
	margin: 0 5px;
}

.team-content .social-link li a {
	color: var(--color-dark-blue);
}

.team-content .social-link li a:hover {
	color: var(--color-blue);
}

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--color-blue);
}


/**************************************
*
*         PRICING  
*
***************************************/


.wrapper-pricing {
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.single-pricing {
	width: 25%;
	padding: 40px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.pricing-title img {
	max-width: 64px;
	height: auto;
	margin: 0 auto;
	display: block;
	margin-bottom: 20px;
}

.pricing-content {
	padding-top: 30px;
	padding-bottom: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 1px solid var(--color-dark-blue);
	border-top: 1px solid var(--color-dark-blue);
}

.single-price {
	padding-top: 30px;
}

.single-price p {
	font-size: 40px;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	color: var(--color-dark-blue);
}


/**************************************
*
*         FAQ 
*
***************************************/


#faq {
	background-color: var(--color-gray);
}

.wrapper-faq.container {
	width: 100%;
	max-width: 100%;
	padding: 0px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.faq-content {
	width: 40%;
	background-color: var(--color-white);
	padding: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform: translateX(30%);
	-ms-transform: translateX(30%);
	transform: translateX(30%);
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.faq-img {
	width: 60%;
}

.faq-img img {
	width: 100%;
}

.wrapper-accordion .content-accordion {
	display: none;
}

.wrapper-accordion h3 {
	margin-bottom: 20px;
	text-transform: none;
	cursor: pointer;
}

.wrapper-accordion h3 i {
	margin-right: 10px;
	font-size: 16px;
}

.content-accordion {
	padding-bottom: 10px;
}

.content-accordion p {
	margin-bottom: 10px;
}


/**************************************
*
*         TESTIMONIALS
*
***************************************/


#testimonials {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
	background-attachment: fixed;
}

#testimonials .suptitle,
#testimonials h2 {
	color: var(--color-white);
}

#testimonials .suptitle::before {
	background-color: var(--color-white);
}

.wrapper-testimonials {
	color: var(--color-white);
	max-width: 1000px;

}

.single-testimonials img {
	width: 80px !important;
	height: 80px !important;
	margin: 0 auto;
	border-radius: 50%;
	margin-bottom: 30px;
}

.wrapper-author h3 {
	margin-bottom: 10px;
	color: var(--color-white);
}

.wrapper-author {
	margin-top: 30px;
}


.wrapper-author p {
	color: var(--color-white);
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
}


/**************************************
*
*         BOOKING
*
***************************************/


.wrapper-booking {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.bookong-form {
	width: 60%;
	padding-right: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.booking-working-hours {
	width: 40%;
	background-color: var(--color-white);
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	padding: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.booking-working-hours h3 {
	font-size: 25px;
}

.wrapper-hours {
	margin-top: 30px;
}

.table-hours {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid var(--color-gray);
	margin-bottom: 20px;
}

.wrapper-input {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.wrapper-input input {
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px 20px 20px 0px;
	border: none;
	outline: none;
	background-color: var(--color-white);
	width: calc(50% - 20px);
	margin-bottom: 40px;
	color: var(--color-black);
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	border-bottom: 1px solid var(--color-dark-blue);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.wrapper-input input::-webkit-input-placeholder {
	color: var(--color-dark-blue);
}

.wrapper-input input::-moz-placeholder {
	color: var(--color-dark-blue);
}

.wrapper-input input:-ms-input-placeholder {
	color: vvar(--color-dark-blue);
}

.wrapper-input input::-ms-input-placeholder {
	color: var(--color-dark-blue);
}

.wrapper-input input::placeholder {
	color: vvar(--color-dark-blue);
}

.wrapper-input input:focus {
	border-bottom: 1px solid var(--color-blue);
}

.bookong-form button {
	border: none;
	outline: none;
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}


/**************************************
*
*         CONTACTS
*
***************************************/


#contacts {
	background-color: var(--color-dark-blue);
}

#contacts .social-link li {
	margin-left: 0px;
	margin-right: 20px;
}

#contacts .suptitle,
#contacts h2 {
	color: var(--color-white);
}

#contacts .suptitle:before {
	background-color: var(--color-white);
}

.wrapper-contact {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.wrapper-contact>div {
	width: 25%;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: var(--color-white);
}

.wrapper-contact>div p {
	margin-bottom: 10px;
}

.wrapper-contact>div a {
	color: var(--color-white);
}

.wrapper-contact>div a:hover {
	color: var(--color-blue);
}

.wrapper-contact>div h3 {
	color: var(--color-white);
	font-size: 20px;
}

.wrapper-map iframe {
	width: 100%;
	height: 400px;
	display: block;
}

.copyright {
	background-color: #1a2a44;
	padding: 10px 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
	font-size: 12px;
	color: #888;
}

.copyright p {
	margin: 0;
}

/**************************************
*
*         CUSTOM WIDGETS & MODAL
*
***************************************/

/* Lateral Sticky Buttons (Tabs) */
.whatsapp-sticker {
	position: fixed;
	top: 38%;
	right: -5px;
	transform: translateY(-50%) rotate(-90deg);
	transform-origin: right bottom;
	background-color: #25d366 !important;
	color: white !important;
	padding: 12px 25px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 12px 12px 0 0;
	cursor: pointer;
	z-index: 9998;
	box-shadow: -2px -2px 12px rgba(0, 0, 0, 0.2);
	text-transform: uppercase;
	transition: all 0.3s ease;
	letter-spacing: 1px;
	font-family: 'Oswald', sans-serif;
}

.whatsapp-sticker:hover {
	right: 0px;
	background-color: #1ebe57 !important;
	padding-bottom: 20px;
}

.lateral-btn {
	position: fixed;
	top: 60%;
	/* Adjusted to avoid overlap and look like an organizer tab */
	right: -5px;
	transform: translateY(-50%) rotate(-90deg);
	transform-origin: right bottom;
	background-color: var(--color-purple) !important;
	color: white !important;
	padding: 12px 25px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 12px 12px 0 0;
	cursor: pointer;
	z-index: 9998;
	box-shadow: -2px -2px 12px rgba(0, 0, 0, 0.2);
	text-transform: uppercase;
	transition: all 0.3s ease;
	letter-spacing: 1px;
	font-family: 'Oswald', sans-serif;
}

.lateral-btn:hover {
	right: 0px;
	background-color: var(--color-dark-blue) !important;
	padding-bottom: 20px;
}

/* Modern Modal */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
}

.modal-content {
	background: white;
	width: 90%;
	max-width: 500px;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
	position: relative;
	animation: modalSlideIn 0.4s ease-out forwards;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(50px) scale(0.9);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 24px;
	color: var(--color-light-gray);
	cursor: pointer;
	transition: color 0.3s;
}

.modal-close:hover {
	color: var(--color-dark-blue);
}

.modal-header h3 {
	margin-bottom: 10px;
	color: var(--color-dark-blue);
}

.modal-body .wrapper-input {
	margin-bottom: 20px;
	width: 100%;
}

.modal-body input,
.modal-body textarea {
	width: 100% !important;
	padding: 15px !important;
	margin-bottom: 15px !important;
	border: 1px solid #ddd !important;
	border-radius: 5px !important;
	box-sizing: border-box !important;
	font-family: 'Roboto', sans-serif !important;
}

.modal-body input:focus,
.modal-body textarea:focus {
	border-color: var(--color-blue) !important;
	outline: none;
}

.modal-body .btn {
	width: 100%;
	display: block;
	text-align: center;
	padding: 15px;
	font-weight: bold;
}

/* Pulse animation for WhatsApp */
@keyframes pulse-whatsapp {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}

	70% {
		box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

.whatsapp-float {
	animation: pulse-whatsapp 2s infinite;
}

/* Login Modal specific */
.login-modal {
	border-top: 5px solid var(--color-purple) !important;
}

.modal-icon-circle {
	width: 70px;
	height: 70px;
	background: #f3f4f6;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px;
	font-size: 32px;
	color: var(--color-purple);
}

.modal-body .wrapper-input {
	position: relative;
	margin-bottom: 20px;
}

.input-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	font-size: 18px;
	z-index: 5;
}

.modal-body .wrapper-input input {
	width: 100% !important;
	padding: 12px 15px 12px 45px !important;
	border: 1px solid #e5e7eb !important;
	border-radius: 10px !important;
	font-size: 15px !important;
	transition: all 0.3s !important;
	margin-bottom: 0 !important;
}

.modal-body .wrapper-input input:focus {
	border-color: var(--color-purple) !important;
	outline: none;
	box-shadow: 0 0 0 4px rgba(103, 58, 183, 0.1) !important;
}

.btn-login {
	width: 100%;
	padding: 14px !important;
	font-weight: bold;
	font-size: 16px;
	border-radius: 10px;
	margin-top: 10px;
	background: var(--color-purple) !important;
	color: white;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-login:hover {
	background: #5e35b1 !important;
	transform: translateY(-2px);
	box-shadow: 0 10px 15px -3px rgba(74, 20, 140, 0.3);
}

.btn-login:disabled {
	background: #9ca3af !important;
	cursor: not-allowed;
	transform: none;
}

.align-center {
	text-align: center;
}