/********** Template CSS **********/
:root {
	--primary: green;
	--light: #fafdfb;
	--dark: rgb(13, 39, 13);
}

.fw-medium {
	font-weight: 500 !important;
}
.money_for_gold_item_name {
	background-color: green;
	color: #fff;
	padding: 4px 10px;
	font-size: 18px;
	display: inline;
	margin-bottom: 8px;
}
.fw-semi-bold {
	font-weight: 600 !important;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 45px;
	bottom: 45px;
	z-index: 99;
}

/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.5s ease-out,
		visibility 0s linear 0.5s;
	z-index: 99999;
}

#spinner.show {
	transition:
		opacity 0.5s ease-out,
		visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}

/*** Button ***/
.btn {
	font-weight: 500;
	text-transform: uppercase;
	transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
	color: #ffffff;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
	margin-right: 30px;
	padding: 25px 0;
	color: #ffffff;
	font-size: 15px;
	text-transform: uppercase;
	outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
	color: #000000;
}

@media (max-width: 991.98px) {
	.navbar-dark .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}
}

/*** Header end ***/
/* Footer */
.footer-section {
	background: linear-gradient(135deg, rgb(27, 58, 27) 0%, green 100%);
	color: white;
	padding: 3rem 0 2rem;
}

.footer-brand {
	font-size: 2rem;
	font-weight: 700;
	color: white;
	text-decoration: none;
	margin-bottom: 2rem;
	display: inline-block;
	transition: all 0.3s ease;
}

.footer-brand:hover {
	color: var(--bg-color);
	transform: translateY(-2px);
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.footer-link {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.footer-link:hover {
	color: white;
	background: rgba(255, 246, 246, 0.1);
	border-color: rgba(255, 246, 246, 0.2);
	transform: translateY(-2px);
}

.footer-email {
	color: var(--bg-color);
	font-weight: 500;
	font-size: 1.1rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.footer-divider {
	width: 60px;
	height: 2px;
	background: var(--bg-color);
	margin: 2rem auto;
	border-radius: 2px;
	opacity: 0.6;
}

.footer-copyright {
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1.5rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
	.footer-nav {
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
	}

	.footer-brand {
		font-size: 1.6rem;
	}

	.footer-email {
		font-size: 1rem;
	}
}
/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
	.cookie-wrapper {
		width: 100%;
	}
}

.cookie-wrapper {
	position: fixed;
	bottom: 0px;
	right: 0;
	width: 40%;
	background: #fff;
	padding: 15px 25px 22px;
	transition: right 0.3s ease;
	box-shadow: 0 5px 10px rgb(0, 0, 0);
	z-index: 999;
	@media (max-width: 600px) {
		width: 100%;
	}
}
.cookie-wrapper .show {
	right: 20px;
}

.hidden {
	display: none;
}
header i {
	color: green;
	font-size: 32px;
	text-align: center;
}
header h2 {
	font-weight: 500;
	text-align: center;
}
.data {
	text-align: center;
}
.data p a {
	color: green;
	text-decoration: none;
	text-align: center !important;
}
.data p a:hover {
	text-decoration: underline;
}
.buttons {
	padding: 20px 0px;
	text-align: center;
}
.buttons .cookie-button {
	border: 2px solid green;
	color: #fff;
	padding: 8px 0;
	background: green;
	cursor: pointer;
	width: calc(100% / 2 - 10px);
	transition: all 0.5s ease;
	max-width: 150px;
	border-radius: 0;
}
.buttons #acceptBtn:hover {
	background-color: transparent;
	color: green;
}
#declineBtn {
	background-color: #fff;
	color: green;
}
#declineBtn:hover {
	background-color: green;
	color: #fff;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #333;
	color: white;
	padding: 1rem;
}

.logo {
	font-size: 1.5rem;
}

.nav-links {
	list-style: none;
	display: flex;
}

.nav-links li {
	margin-left: 20px;
}

.nav-links a {
	color: white;
	text-decoration: none;
	font-size: 1.2rem;
}

.burger {
	display: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-between;
	height: 21px;
}

.burger div {
	width: 25px;
	height: 3px;
	background-color: white;
}

@media (max-width: 578px) {
	.nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		position: absolute;
		top: 60px;
		left: 0;
		background-color: #333;
	}

	.nav-links li {
		text-align: center;
		margin: 10px 0;
	}

	.burger {
		display: flex;
	}

	.nav-active {
		display: flex;
	}
}
hr {
	margin: 1rem 0;
	border: 1px solid green;
}

@media (max-width: 768px) {
	.display-3 {
		font-size: 34px;
	}
}

/* new styles  */
/* Variables de couleur */
:root {
	--bg-color: rgb(171, 216, 171);
	--text-color: #0f0d1a;
	--accent-color: green;
	--light-gray: #f8f9fa;
	--border-color: green;
}

/* Styles globaux */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Header fixe */
.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	background-color: rgb(202, 217, 202) !important;
	border-bottom: 3px solid var(--border-color);
	backdrop-filter: blur(10px);
}

.navbar-brand {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--accent-color) !important;
	letter-spacing: -0.02em;
}

.navbar-nav .nav-link {
	color: var(--text-color) !important;
	font-weight: 500;
	padding: 0.5rem 1rem !important;
	transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: var(--accent-color) !important;
}

/* new styles  */

/* Variables globales */
:root {
	--bg-color: #fff6f6;
	--text-color: #210d1a;
	--accent-color: green;
	--accent-hover: green;
}

/* Bloc Héro */
.hero-section {
	min-height: 100vh;
	background: url('../img/hero.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
}

.hero-content {
	background: rgb(202, 217, 202);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 20px 40px rgba(33, 13, 26, 0.1);
	border: 1px solid rgba(175, 34, 87, 0.1);
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, var(--text-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.5rem;
	font-weight: 300;
	margin-bottom: 2rem;
	color: var(--accent-color);
	font-style: italic;
}

.hero-description {
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
	color: var(--text-color);
	opacity: 0.9;
}

.btn-hero {
	background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
	color: white;
	padding: 1rem 2.5rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px green;
}

.btn-hero:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px green;
	color: white;
}

/* Responsive */
@media (max-width: 768px) {
	.hero-content {
		padding: 2rem;
		margin: 1rem;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.25rem;
	}

	.hero-description {
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.btn-hero {
		padding: 0.8rem 2rem;
		font-size: 1rem;
	}
}

/* Bloc À propos */
.about-section {
	padding: 5rem 0;
	background: linear-gradient(
		135deg,
		rgb(202, 217, 202) 0%,
		rgba(255, 246, 246, 0.5) 100%
	);
}

.about-card {
	background: white;

	padding: 3rem;
	box-shadow: 0 15px 35px green;
	border: 3px solid green;
	margin-bottom: 2rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 3rem;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--accent-color);
	border-radius: 2px;
}

.mission-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--accent-color);
	margin-bottom: 1.5rem;
}

.values-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
}

.values-list li {
	padding: 1rem 0;
	border-bottom: 1px solid green;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.values-list li:last-child {
	border-bottom: none;
}

.value-icon {
	color: var(--accent-color);
	font-size: 1.5rem;
	margin-top: 0.2rem;
}

.value-content strong {
	color: var(--accent-color);
	font-weight: 600;
}

/* Bloc Méthodes */
.methods-section {
	padding: 5rem 0;
	background: white;
}

.method-card {
	padding: 2.5rem;
	height: 100%;

	transition: all 0.3s ease;
}

.method-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px green;
}

.method-img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 15px;
	margin-bottom: 1.5rem;
}

.method-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 1rem;
}

.method-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
}

.method-list li {
	padding: 0.5rem 0;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.method-list li::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--accent-color);
	border-radius: 50%;
	margin-top: 0.7rem;
	flex-shrink: 0;
}

.format-tag {
	display: inline-block;
	background: var(--accent-color);
	color: white;
	padding: 0.3rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	margin: 0.25rem;
}

.formats-container {
	margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
	.about-card,
	.method-card {
		padding: 2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.method-img {
		height: 150px;
	}
}
/* Bloc Avantages */
.advantages-section {
	padding: 5rem 0;
	background: linear-gradient(
		135deg,
		rgba(175, 34, 87, 0.03) 0%,
		rgb(202, 217, 202) 100%
	);
}

.advantage-item {
	background: white;
	border-radius: 20px;
	padding: 2.5rem;
	height: 100%;
	border: 3px solid green;
	transition: all 0.3s ease;

	overflow: hidden;
}

.advantage-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(33, 13, 26, 0.12);
}

.advantage-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: green;
	margin-bottom: 1rem;
}

.advantage-text {
	color: var(--text-color);
	opacity: 0.8;
	line-height: 1.7;
}

/* Bloc Comment rejoindre */
.join-section {
	padding: 5rem 0;
	background: white;
}

.join-content {
	background: var(--bg-color);
	border-radius: 25px;
	padding: 3rem;
	border: 1px solid rgba(175, 34, 87, 0.1);
}

.join-image {
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(33, 13, 26, 0.15);
	width: 100%;
	object-fit: cover;
}

.step-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	padding: 1.5rem;
	background: white;
	border-radius: 15px;
	border: 1px solid rgba(175, 34, 87, 0.08);
	transition: all 0.3s ease;
}

.step-item:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(33, 13, 26, 0.08);
}

.step-number {
	background: var(--accent-color);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	flex-shrink: 0;
	box-shadow: 0 8px 20px rgba(175, 34, 87, 0.3);
}

.step-content {
	flex: 1;
}

.step-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0.5rem;
}

.step-description {
	color: var(--text-color);
	opacity: 0.8;
	line-height: 1.6;
}

.btn-join {
	background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
	color: white;
	padding: 1.2rem 3rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.3s ease;
	box-shadow: 0 15px 35px rgba(175, 34, 87, 0.3);
	margin-top: 2rem;
}

.btn-join:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 45px rgba(175, 34, 87, 0.4);
	color: white;
}

/* Responsive */
@media (max-width: 768px) {
	.advantage-item,
	.join-content {
		padding: 2rem;
	}

	.join-image {
		height: 250px;
		margin-bottom: 2rem;
	}

	.step-item {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.step-number {
		margin: 0 auto;
	}
}
/* Bloc Témoignages */
.testimonials-section {
	padding: 5rem 0;
	background: white;
}

.testimonial-card {
	border-radius: 25px;
	padding: 0;
	overflow: hidden;
	border: 1px solid green;
	height: 100%;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px green;
}

.testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(33, 13, 26, 0.15);
}

.testimonial-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.testimonial-content {
	padding: 2.5rem;
}

.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--text-color);
	margin-bottom: 1.5rem;
	font-style: italic;
}

.testimonial-author {
	font-weight: 600;
	color: var(--accent-color);
	font-size: 1rem;
}

/* Bloc Tarifs */
.pricing-section {
	padding: 5rem 0;
	background: linear-gradient(
		135deg,
		rgb(202, 217, 202) 0%,
		rgba(255, 246, 246, 0.5) 100%
	);
}

.pricing-card {
	background: white;
	border-radius: 25px;
	padding: 3rem 2.5rem;
	text-align: center;
	height: 100%;
	border: 2px solid rgba(175, 34, 87, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.pricing-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 25px 50px rgba(175, 34, 87, 0.15);
}

.pricing-card.featured {
	border-color: var(--accent-color);
	transform: scale(1.05);
}

.pricing-plan {
	font-size: 1.5rem;
	font-weight: 700;
	color: green;
	margin-bottom: 1rem;
}

.pricing-amount {
	font-size: 3rem;
	font-weight: 800;
	color: var(--accent-color);
	margin-bottom: 0.5rem;
}

.pricing-currency {
	font-size: 1.2rem;
	opacity: 0.7;
}

.pricing-features {
	text-align: left;
	margin: 2rem 0;
	padding: 0;
	list-style: none;
}

.pricing-features li {
	padding: 0.75rem 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: green;
}

.pricing-features li::before {
	content: '';
	width: 8px;
	height: 8px;
	background: var(--accent-color);
	border-radius: 50%;
	flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.testimonial-content,
	.pricing-card {
		padding: 2rem;
	}

	.testimonial-image {
		height: 200px;
	}

	.pricing-amount {
		font-size: 2.5rem;
	}
}
/* Кнопка для тарифних планів */
.btn-pricing {
	background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
	color: white;
	padding: 0.8rem 2rem;
	border: none;
	border-radius: 25px;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px green;
	margin-top: 1.5rem;
	width: 100%;
}

.btn-pricing:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px green;
	color: white;
}

.btn-pricing.btn-featured {
	background: linear-gradient(135deg, green, #3d1a2e);
	box-shadow: 0 10px 25px rgba(33, 13, 26, 0.3);
}

.btn-pricing.btn-featured:hover {
	box-shadow: 0 15px 35px rgba(33, 13, 26, 0.4);
}

/* Bloc Formulaire */
.form-section {
	padding: 5rem 0;
	background: white;
}

.form-container {
	background: rgb(202, 217, 202);
	border-radius: 25px;
	padding: 3rem;
	border: 1px solid rgb(202, 217, 202);
	box-shadow: 0 20px 40px rgb(202, 217, 202);
}

.form-title {
	font-size: 2rem;
	font-weight: 600;
	color: black;
	margin-bottom: 1rem;
	text-align: center;
}

.form-description {
	color: black;
	opacity: 0.8;
	line-height: 1.7;
	text-align: center;
	margin-bottom: 3rem;
}

.form-floating {
	margin-bottom: 1.5rem;
}

.form-floating .form-control {
	background: white;
	border: 2px solid rgb(202, 217, 202);
	border-radius: 15px;
	padding: 1.2rem 1rem 0.6rem;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-floating .form-control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.2rem rgb(202, 217, 202);
	background: white;
}

.form-floating label {
	color: black;
	opacity: 0.7;
	padding: 1rem;
}

.form-floating .form-control:focus + label,
.form-floating .form-control:not(:placeholder-shown) + label {
	color: var(--accent-color);
	opacity: 1;
}

.btn-submit {
	background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
	border: none;
	border-radius: 50px;
	padding: 1.2rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	color: white;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px green;
}

.btn-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px green;
	background: linear-gradient(135deg, var(--accent-hover), var(--accent-color));
}

.error-message {
	color: var(--accent-color) !important;
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
	.contact-card,
	.form-container {
		padding: 2rem;
	}

	.social-links {
		gap: 0.5rem;
	}

	.social-link {
		width: 45px;
		height: 45px;
	}

	.form-title {
		font-size: 1.6rem;
	}
}
