/********** Template CSS **********/
:root {
	--primary: #d4d109;
	--light: #f8fff3;
	--dark: #212411;
}

.fw-medium {
	font-weight: 500 !important;
}

.fw-semi-bold {
	font-weight: 600 !important;
}

.error-message {
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	margin-bottom: 0;
	min-height: 1.2rem;
	display: block;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.error-message:not(:empty) {
	opacity: 1;
}

/* Додатковий стиль для полів з помилками */
.form-control.error {
	border-color: #dc3545 !important;
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !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 ***/
.ie-header {
	background: linear-gradient(90deg, #131313, #1c1c1c);
	color: #fff;
	padding: 15px 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 999;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.ie-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 30px;
}

.ie-logo a {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

.ie-logo a:hover {
	color: #f29b30;
}

.ie-nav ul {
	list-style: none;
	display: flex;
	gap: 30px;
	margin: 0;
	padding: 0;
}

.ie-nav ul li a {
	text-decoration: none;
	color: #e8e8e8;
	font-weight: 500;
	font-size: 15px;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.ie-nav ul li a:hover {
	color: #f29b30;
}


.ie-menu-icon {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.ie-menu-icon span {
	height: 3px;
	width: 24px;
	background: #fff;
	display: block;
	border-radius: 2px;
}

#ie-menu-toggle {
	display: none;
}

@media (max-width: 992px) {
	.ie-menu-icon {
		display: flex;
	}

	.ie-nav {
		position: absolute;
		top: 100%;
		left: 0;
		background-color: #1c1c1c;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease-in-out;
	}

	#ie-menu-toggle:checked+.ie-menu-icon+.ie-nav {
		max-height: 400px;
	}

	.ie-nav ul {
		flex-direction: column;
		padding: 20px;
		gap: 15px;
	}

	.ie-nav ul li a {
		font-size: 16px;
	}
}

:root {
	--bg-color: #f8fffc;
	--accent-color: #d4d109;
	--text-color: #666565;
	--white: #ffffff;
}

/* Footer Styles */
.footer-modern {
	background: #1a1a2b;
	color: #e0e0e0;
	padding: 80px 40px 40px;
	font-family: 'Segoe UI', sans-serif;
}

.footer-container {
	max-width: 1300px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 60px;
	margin-bottom: 40px;
}

.footer-logo {
	font-size: 2rem;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 20px;
	transition: transform 0.3s ease;
}

.footer-logo:hover {
	transform: translateY(-3px);
}

.footer-desc {
	font-size: 1rem;
	line-height: 1.6;
	color: #b5b5b5;
}

.footer-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 20px;
}

.footer-link-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-link-list li {
	margin-bottom: 12px;
}

.footer-link-list a {
	color: #b5b5b5;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link-list a:hover {
	color: #0fe18a;
	transform: translateX(5px);
}

.footer-contact {
	font-size: 1rem;
	color: #b5b5b5;
	word-break: break-all;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid #33384d;
	font-size: 0.9rem;
	color: #7c7c9d;
}

@media (max-width: 768px) {
	.footer-modern {
		padding: 60px 20px 30px;
	}
}


/* 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: #000652;
	padding: 15px 25px 22px;
	transition: right 0.3s ease;
	box-shadow: 0 5px 10px rgb(0, 0, 0);
	z-index: 999;
	width: 100%;

	@media (max-width: 600px) {
		width: 100%;
	}
}

.cookie-wrapper .show {
	right: 20px;
}

.hidden {
	display: none;
}

header i {
	color: #74848a;
	font-size: 32px;
	text-align: center;
}

header h2 {
	color: #547387;
	font-weight: 500;
	text-align: center;
}

.data {
	text-align: center;
}

.data p a {
	color: #620000;
	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 #00ff26;
	color: #fff;
	background: #550000;
	padding: 8px 0;
	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: #f4bcff;
}

#declineBtn {
	background-color: transparent;
	color: #f4bcff;
}

#declineBtn:hover {
	color: #fff;
	background: #550000;
}

/* new styles  */
/* Variables globales */
:root {
	--bg-primary: #fff;
	--text-primary: #383838;
	--accent-color: #d4d109;
	--border-radius: 0;
	--shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Styles pour le bloc hero */
.ie-hero {
	position: relative;
	background: url('/images/hero-bg.jpg') no-repeat center center/cover;
	min-height: 65vh;
	display: flex;
	align-items: center;
	color: #ffffff;
}

.ie-hero-overlay {
	background: rgba(18, 18, 32, 0.85);
	width: 100%;
	padding: 100px 0;
}

.ie-hero-content {
	max-width: 700px;
	padding: 40px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	backdrop-filter: blur(10px);
	animation: fadeInUp 1s ease-out both;
}

.ie-hero-heading {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.2;
	color: #f6f6f6;
	margin-bottom: 20px;
}

.ie-hero-text {
	font-size: 1.25rem;
	line-height: 1.6;
	color: #dddddd;
	margin-bottom: 30px;
}

.ie-hero-button {
	display: inline-block;
	padding: 12px 32px;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(90deg, #a864ff, #5edfff);
	border: none;
	border-radius: 50px;
	transition: background 0.3s ease;
	text-decoration: none;
}

.ie-hero-button:hover {
	background: linear-gradient(90deg, #5edfff, #a864ff);
}

@keyframes fadeInUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@media (max-width: 768px) {
	.ie-hero-content {
		padding: 30px 20px;
	}

	.ie-hero-heading {
		font-size: 2.2rem;
	}

	.ie-hero-text {
		font-size: 1.05rem;
	}
}

.stats-card {
	background: var(--bg-primary);
	border: 2px solid #f0f0f0;
	border-radius: var(--border-radius);
	padding: 2rem;
	height: 100%;
	transition: all 0.3s ease;
}

.stats-card:hover {
	border-color: var(--accent-color);
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.stats-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 0.5rem;
}

.stats-label {
	color: var(--heading-color);
	font-weight: 600;
	font-size: 1rem;
}

.btn-primary-custom {
	background-color: var(--accent-color);
	border: 2px solid var(--accent-color);
	color: white;
	padding: 12px 32px;
	font-weight: 600;
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
	background-color: transparent;
	color: var(--accent-color);
	transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.hero-section {
		padding: 60px 0;
	}

	.stats-card {
		margin-bottom: 1.5rem;
	}
}

/* Styles pour le bloc À propos */
.ie-about {
	background: linear-gradient(145deg, rgba(28, 28, 40, 0.85), rgba(43, 43, 62, 0.85));
	color: #ffffff;
	padding: 100px 0;
}

.ie-about-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px;
}

.ie-about-image {
	flex: 1 1 45%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.ie-about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: brightness(0.95);
}

.ie-about-content {
	flex: 1 1 50%;
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 40px;
	border-radius: 24px;
	animation: fadeInUp 1.2s ease forwards;
	opacity: 0;
}

.ie-about-heading {
	font-size: 2.6rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #f6f6f6;
}

.ie-about-paragraph {
	font-size: 1.15rem;
	line-height: 1.6;
	color: #cccccc;
	margin-bottom: 2rem;
}

.ie-about-features {
	list-style: none;
	padding-left: 0;
}

.ie-about-features li {
	font-size: 1rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	color: #e6e6e6;
}

.ie-about-features i {
	color: #ffd700;
	font-size: 1.3rem;
}

@keyframes fadeInUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@media (max-width: 992px) {
	.ie-about-wrapper {
		flex-direction: column;
	}

	.ie-about-content {
		padding: 30px 20px;
	}

	.ie-about-heading {
		font-size: 2rem;
	}
}


/* Styles pour le bloc Programmes */
.ie-programs {
	background: linear-gradient(145deg, rgba(28, 28, 40, 0.85), rgba(43, 43, 62, 0.85));
	padding: 100px 0;
	color: #f0f0f0;
	margin: 10rem 0 4rem 0;
}

.ie-programs-heading {
	text-align: center;
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 60px;
	color: #ffffff;
}

.ie-programs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
}

.ie-program-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 40px 30px;
	backdrop-filter: blur(8px);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	animation: fadeInUp 1.2s ease both;
}

.ie-program-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.ie-program-title {
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 30px;
	color: #f7f7f7;
}

.ie-program-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ie-program-list li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1rem;
	font-size: 1rem;
	color: #dddddd;
}

.ie-program-list i {
	font-size: 1.3rem;
	color: #ffe066;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.ie-programs-heading {
		font-size: 2.2rem;
	}

	.ie-program-card {
		padding: 30px 20px;
	}

	.ie-program-title {
		font-size: 1.4rem;
	}

	.ie-program-list li {
		font-size: 0.95rem;
	}
}

/* Styles pour le bloc Avantages */
.growth-benefits-section {
	padding: 100px 0;
	background: linear-gradient(145deg, rgba(28, 28, 40, 0.85), rgba(43, 43, 62, 0.85));
	color: #f1f1f1;
	margin: 8rem 0;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: #ffffff;
}

.section-subtitle {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.75);
	max-width: 700px;
	margin: 0 auto;
}

.growth-block {
	background: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	border-left: 4px solid rgba(196, 18, 236, 0.5);
	border-radius: 12px;
	margin-bottom: 30px;
	transition: all 0.3s ease;
}

.growth-block:hover {
	background: rgba(255, 255, 255, 0.07);
	transform: translateY(-5px);
}

.block-label {
	font-size: 1.1rem;
	font-weight: bold;
	color: #a0f0df;
	margin-bottom: 0.5rem;
}

.block-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.block-text {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
}

.growth-image-wrapper {
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.growth-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 768px) {
	.section-title {
		font-size: 2rem;
	}

	.growth-block {
		padding: 1.5rem;
	}
}


/* Styles pour le bloc Histoires de réussite */
.success-section {
	padding: 80px 0;
	background-color: var(--bg-primary);
}

.success-title {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
}

.testimonial-card {
	background: #fafafa;
	border-left: 5px solid var(--accent-color);
	border-radius: var(--border-radius);
	padding: 2.5rem;
	margin-bottom: 2rem;
	position: relative;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	background: #f5f5f5;
	transform: translateX(5px);
}

.testimonial-quote {
	position: absolute;
	top: -10px;
	left: 20px;
	background: var(--accent-color);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.testimonial-text {
	color: var(--text-primary);
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-style: italic;
	margin-top: 1rem;
}

.testimonial-author {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
}

.author-icon {
	color: var(--accent-color);
	margin-right: 0.5rem;
	font-size: 1.2rem;
}


/* Styles pour le bloc Tarifs */

/* Responsive pour les nouveaux blocs */
@media (max-width: 768px) {

	.tips-title,
	.pricing-title {
		font-size: 2rem;
	}

	.tips-image {
		height: 250px;
		margin-bottom: 1rem;
	}

	.tip-item {
		padding: 1.5rem;
	}

	.pricing-card {
		padding: 2rem;
		margin-bottom: 2rem;
	}

	.pricing-card.featured {
		transform: none;
	}

	.plan-price {
		font-size: 2rem;
	}
}

/* Styles pour le bloc Contacts */
.contact-section {
	padding: 80px 0;
	background-color: var(--bg-primary);
}

.contact-title {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
}

.contact-description {
	font-size: 1.2rem;
	color: var(--text-primary);
	text-align: center;
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.contact-info {
	background: #fafafa;
	border: 2px solid #f0f0f0;
	border-radius: var(--border-radius);
	padding: 3rem;
	text-align: center;
	transition: all 0.3s ease;
}

.contact-info:hover {
	border-color: var(--accent-color);
	box-shadow: var(--shadow);
}

.email-link {
	display: inline-flex;
	align-items: center;
	background: var(--accent-color);
	color: white;
	padding: 1rem 2rem;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.2rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
}

.email-link:hover {
	background: var(--heading-color);
	color: white;
	text-decoration: none;
	transform: translateY(-2px);
}

.email-icon {
	margin-right: 0.5rem;
	font-size: 1.3rem;
}

.social-title {
	color: var(--heading-color);
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	color: white;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.5rem;
}

.social-link:hover {
	background: var(--heading-color);
	color: white;
	transform: translateY(-3px) scale(1.1);
}

/* Styles pour le bloc Formulaire */
.angebot-kontakt-section {
	padding: 100px 0;
	background: rgba(28, 28, 40, 0.85);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2px;
}

.angebot-kontakt-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1300px;
	width: 100%;
	padding: 0 40px;
}

.angebot-title {
	font-size: 2.8rem;
	color: #f5f5f5;
	margin-bottom: 50px;
	text-align: left;
}

.angebot-grid {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.angebot-card {
	flex: 1;
	background: #2e2e44;
	border-radius: 20px;
	padding: 30px;
	transition: all 0.3s ease;
	color: #fff;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.angebot-card.active {
	background: rgba(196, 18, 236, 0.12);
	border: 2px solid #c412ec;
}

.angebot-plan {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #ffffff;
}

.angebot-price {
	font-size: 2rem;
	font-weight: 600;
	color: #0fe18a;
	margin-bottom: 25px;
}

.angebot-price span {
	font-size: 1rem;
	color: #ccc;
	display: block;
}

.angebot-list {
	list-style: none;
	padding: 0;
}

.angebot-list li {
	margin-bottom: 12px;
	color: #e2e2e2;
	font-size: 1rem;
	padding-left: 18px;
	position: relative;
}

.angebot-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #0fe18a;
	font-size: 1rem;
}

.kontakt-formular {
	background: #2e2e44;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	color: #fff;
}

.form-title {
	font-size: 2.2rem;
	color: #f5f5f5;
	margin-bottom: 30px;
}

.kontakt-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-input {
	padding: 15px;
	border-radius: 10px;
	border: none;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	outline: none;
}

.form-input::placeholder {
	color: #ccc;
}

.form-button {
	background-color: #0fe18a;
	color: #1c1c28;
	padding: 15px;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.3s ease;
}

.form-button:hover {
	background-color: #0acb78;
}

@media (max-width: 992px) {
	.angebot-kontakt-container {
		grid-template-columns: 1fr;
	}
}


.error-message {
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	margin-bottom: 0;
	display: none;
}

.btn-primary {
	background-color: var(--accent-color);
	border: 2px solid var(--accent-color);
	color: white;
	font-weight: 600;
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-primary:hover {
	background-color: transparent;
	color: var(--accent-color);
	border-color: var(--accent-color);
	transform: translateY(-1px);
}

.btn-primary:focus {
	box-shadow: 0 0 0 0.2rem rgba(78, 21, 4, 0.25);
}

/* Responsive pour les blocs finaux */
@media (max-width: 768px) {

	.contact-title,
	.form-title {
		font-size: 2rem;
	}

	.contact-info {
		padding: 2rem;
	}

	.form-container {
		padding: 2rem;
	}

	.social-links {
		gap: 0.75rem;
	}

	.social-link {
		width: 45px;
		height: 45px;
		font-size: 1.3rem;
	}
}