* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #fffbea;
	color: #2c2c2c;
	line-height: 1.6;
	overflow-x: hidden;
}

/* Typography */
.gp-title-xl {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.gp-title-lg {
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

.gp-title-md {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0.75rem;
}

.gp-title-sm {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}

.gp-subtitle {
	font-size: 1.25rem;
	font-weight: 400;
	color: #666;
	margin-bottom: 2rem;
}

.gp-text {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.gp-text-sm {
	font-size: 0.875rem;
	line-height: 1.5;
}

/* Container & Layout */
.gp-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.gp-section {
	padding: 5rem 0;
	min-height: 100vh;
	/* display: flex; */
	align-items: center;
}

.gp-split-screen {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	min-height: 80vh;
}

.gp-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.gp-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.gp-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

/* Header Styles */
.gp-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 251, 234, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(10, 116, 218, 0.1);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
}

.gp-header.gp-scrolled {
	background: rgba(255, 251, 234, 0.98);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gp-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gp-logo {
	font-size: 1.75rem;
	font-weight: 700;
	color: #0a74da;
	text-decoration: none;
	transition: all 0.3s ease;
}

.gp-logo:hover {
	transform: scale(1.05);
	color: #7fdbda;
}

.gp-nav {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 5px;
}

.gp-nav-link {
	text-decoration: none;
	color: #2c2c2c;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.gp-nav-link:hover {
	color: #0a74da;
	background-color: rgba(10, 116, 218, 0.1);
	transform: translateY(-2px);
}

.gp-mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
	background: none;
	border: none;
	transition: all 0.3s ease;
}

.gp-mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: #0a74da;
	margin: 3px 0;
	transition: all 0.3s ease;
	transform-origin: center;
}

.gp-mobile-menu-toggle.gp-active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.gp-mobile-menu-toggle.gp-active span:nth-child(2) {
	opacity: 0;
}

.gp-mobile-menu-toggle.gp-active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

.gp-mobile-nav {
	position: fixed;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(255, 251, 234, 0.98);
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(10, 116, 218, 0.1);
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
	padding: 2rem 0;
	text-align: center;
}

.gp-mobile-nav.gp-active {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.gp-mobile-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 1rem;
	align-items: center;
}

.gp-mobile-nav .gp-nav-link {
	font-size: 1.1rem;
	padding: 1rem 2rem;
	border-radius: 30px;
	width: 100%;
	text-align: center;
	display: block;
}

.gp-mobile-nav .gp-nav-link:hover {
	background: linear-gradient(135deg, #0a74da, #7fdbda);
	color: white;
	transform: scale(1.05);
}

/* Button Styles */
.gp-btn {
	display: inline-block;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.gp-btn-primary {
	background: linear-gradient(135deg, #0a74da, #7fdbda);
	color: white;
	box-shadow: 0 4px 15px rgba(10, 116, 218, 0.3);
}

.gp-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(10, 116, 218, 0.4);
	background: linear-gradient(135deg, #085bb3, #6bc5c4);
}

.gp-btn-secondary {
	background: transparent;
	color: #0a74da;
	border: 2px solid #0a74da;
}

.gp-btn-secondary:hover {
	background: #0a74da;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3);
}

.gp-btn-ghost {
	background: transparent;
	color: #2c2c2c;
	border: 2px solid transparent;
}

.gp-btn-ghost:hover {
	border-color: #7fdbda;
	color: #0a74da;
	transform: translateY(-2px);
}

.gp-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
}

/* Card Styles */
.gp-card {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.gp-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #0a74da, #7fdbda);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.gp-card:hover::before {
	transform: scaleX(1);
}

.gp-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	background: rgba(255, 255, 255, 0.9);
}

.gp-card-icon {
	font-size: 3rem;
	color: #0a74da;
	margin-bottom: 1rem;
	display: block;
	transition: all 0.3s ease;
}

.gp-card:hover .gp-card-icon {
	color: #7fdbda;
	transform: scale(1.1);
}

/* Hero Section */
.gp-hero {
	background: linear-gradient(
		135deg,
		#fffbea 0%,
		rgba(127, 219, 218, 0.1) 100%
	);
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.gp-hero-visual {
	width: 100%;
	height: 100%;
}

.gp-hero-visual img {
	object-fit: cover;
	width: 100%;

	height: 100%;
}

.gp-hero-content {
	flex: 1;
	z-index: 2;
}

.gp-hero-title {
	font-size: 4rem;
	font-weight: 800;
	background: linear-gradient(135deg, #0a74da, #7fdbda);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
	animation: gp-fade-in-up 1s ease;
}

.gp-hero-subtitle {
	font-size: 1.5rem;
	color: #666;
	margin-bottom: 3rem;
	animation: gp-fade-in-up 1s ease 0.2s both;
}

.gp-hero-buttons {
	display: flex;
	gap: 1rem;
	animation: gp-fade-in-up 1s ease 0.4s both;
}

/* Why Section */
.gp-why {
	background: linear-gradient(
		45deg,
		rgba(127, 219, 218, 0.05),
		rgba(10, 116, 218, 0.05)
	);
	position: relative;
}

.gp-why-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-top: 3rem;
}

.gp-why-card {
	text-align: center;
	padding: 3rem 2rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.gp-why-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.gp-why-link a {
	margin-top: auto;
}

.gp-why-icon {
	font-size: 4rem;
	color: #0a74da;
	margin-bottom: 2rem;
	display: block;
	transition: all 0.3s ease;
}

.gp-why-card:hover .gp-why-icon {
	color: #7fdbda;
	transform: scale(1.2) rotate(10deg);
}

/* Workshops Section */
.gp-workshops {
	background: linear-gradient(
			45deg,
			rgba(127, 219, 218, 0.8),
			rgba(10, 116, 218, 0.5)
		),
		url('assets/en-bg-workshop.webp') center/cover;
	position: relative;
	background-attachment: fixed;
	overflow: hidden;
}

.gp-workshops-carousel {
	display: grid;
	gap: 2rem;

	padding: 2rem 0;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.gp-workshops-carousel::-webkit-scrollbar {
	display: none;
}

.gp-workshop-card {
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
	cursor: pointer;
}

.gp-workshop-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #0a74da, #7fdbda);
}

.gp-workshop-date {
	color: #0a74da;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
}

.gp-workshop-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c2c2c;
}

.gp-workshop-instructor {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 1.5rem 0;
}

.gp-instructor-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0a74da, #7fdbda);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.gp-instructor-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.gp-instructor-name {
	font-weight: 500;
	color: #2c2c2c;
}

/* Dashboard Section */
/* Dashboard Section */
.gp-dashboard {
	background: linear-gradient(
		135deg,
		rgba(10, 116, 218, 0.05),
		rgba(127, 219, 218, 0.05)
	);
	text-align: center;
}

.gp-dashboard-demo {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);
	border-radius: 25px;
	padding: 3rem;
	margin: 3rem 0;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.gp-progress-chart {
	width: 100%;
	height: 300px;
	margin: 2rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.gp-progress-ring {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: conic-gradient(#0a74da 0deg 252deg, #e5f1fe 252deg 360deg);
	transition: all 0.5s ease;
}

.gp-progress-ring::before {
	content: '';
	position: absolute;
	width: 140px;
	height: 140px;
	background: #fffbea;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.gp-progress-text {
	font-size: 2.5rem;
	font-weight: bold;
	color: #0a74da;
	position: relative;
	z-index: 2;
}

.gp-dashboard-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.gp-tab-btn {
	padding: 0.75rem 2rem;
	background: transparent;
	border: 2px solid #0a74da;
	border-radius: 25px;
	color: #0a74da;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.gp-tab-btn.gp-active {
	background: #0a74da;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(10, 116, 218, 0.3);
}

.gp-tab-btn:hover:not(.gp-active) {
	background: rgba(10, 116, 218, 0.1);
	transform: translateY(-2px);
}

/* Tips Section */
.gp-tips {
	background: #fffbea;
}

.gp-tips-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	margin-top: 3rem;
}

.gp-tip-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

.gp-tip-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gp-tip-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #0a74da, #7fdbda);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 3rem;
	position: relative;
	overflow: hidden;
}

.gp-tip-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gp-tip-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: all 0.5s ease;
}

.gp-tip-card:hover .gp-tip-image::before {
	left: 100%;
}

.gp-tip-content {
	padding: 2rem;
}

.gp-tip-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c2c2c;
}

.gp-tip-text {
	color: #666;
	line-height: 1.6;
}

/* Pricing Section */
.gp-pricing {
	background: linear-gradient(
		135deg,
		rgba(127, 219, 218, 0.1),
		rgba(10, 116, 218, 0.05)
	);
	text-align: center;
}

.gp-pricing-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.gp-pricing-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border-radius: 25px;
	padding: 3rem 2rem;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.gp-pricing-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.gp-pricing-link a {
	margin-top: auto;
}

.gp-pricing-card.gp-featured {
	border-color: #0a74da;
	transform: scale(1.05);
}

.gp-pricing-card.gp-featured::before {
	content: 'POPULAIRE';
	position: absolute;
	top: 20px;
	right: -43px;
	background: #0a74da;
	color: white;
	padding: 0.5rem 3rem;
	font-size: 0.75rem;
	font-weight: bold;
	transform: rotate(45deg);
	letter-spacing: 1px;
}

.gp-pricing-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.gp-pricing-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c2c2c;
}

.gp-pricing-price {
	font-size: 3rem;
	font-weight: bold;
	color: #0a74da;
	margin-bottom: 0.5rem;
}

.gp-pricing-period {
	color: #666;
	margin-bottom: 2rem;
}

.gp-pricing-features {
	list-style: none;
	margin-bottom: 2rem;
	text-align: left;
}

.gp-pricing-features li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 2rem;
}

.gp-pricing-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #7fdbda;
	font-weight: bold;
}

.gp-pricing-comparison {
	margin-top: 4rem;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gp-comparison-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 1rem;
}

.gp-comparison-table th,
.gp-comparison-table td {
	padding: 1rem;
	text-align: center;
	border-bottom: 1px solid rgba(10, 116, 218, 0.1);
}

.gp-comparison-table th {
	background: rgba(10, 116, 218, 0.1);
	font-weight: 600;
	color: #0a74da;
}

.gp-comparison-table td.gp-check {
	color: #7fdbda;
	font-weight: bold;
	font-size: 1.2rem;
}

/* Contact Section */
.gp-contact {
	background: linear-gradient(135deg, #fffbea, rgba(127, 219, 218, 0.1));
}

.gp-contact-form {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);
	border-radius: 25px;
	padding: 3rem;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	max-width: 600px;
	margin: 0 auto;
}

.gp-form-group {
	margin-bottom: 2rem;
}

.gp-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #2c2c2c;
}

.gp-form-input,
.gp-form-textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	border: 2px solid rgba(10, 116, 218, 0.2);
	border-radius: 25px;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.9);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.gp-form-input:focus,
.gp-form-textarea:focus {
	outline: none;
	/* border-color: #0a74da; */
	box-shadow: 0 0 0 3px rgba(10, 116, 218, 0.1);
	background: white;
}

.gp-form-input.gp-error,
.gp-form-textarea.gp-error {
	border-color: #ff5e57;
	box-shadow: 0 0 0 3px rgba(255, 94, 87, 0.1);
}

.gp-form-input.gp-valid,
.gp-form-textarea.gp-valid {
	border-color: #7fdbda;
	box-shadow: 0 0 0 3px rgba(127, 219, 218, 0.1);
}

.gp-form-textarea {
	min-height: 120px;
	resize: vertical;
	border-radius: 15px;
}

.gp-error-message {
	color: #ff5e57;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.gp-error-message.gp-show {
	display: block;
}

/* Footer */
.gp-footer {
	background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
	color: white;
	padding: 4rem 0 2rem;
}

.gp-footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-bottom: 2rem;
}

.gp-footer-section h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #7fdbda;
}

.gp-footer-links {
	list-style: none;
}

.gp-footer-links li {
	margin-bottom: 0.75rem;
}

.gp-footer-links a {
	color: #ccc;
	text-decoration: none;
	transition: all 0.3s ease;
}

.gp-footer-links a:hover {
	color: #7fdbda;
	transform: translateX(5px);
}

.gp-footer-bottom {
	border-top: 1px solid rgba(127, 219, 218, 0.2);
	padding-top: 2rem;
	text-align: center;
	color: #999;
}

/* Cookie Popup */
.gp-cookie-popup {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
	max-width: 500px;
	margin: 0 auto;
}

.gp-cookie-popup.gp-show {
	transform: translateY(0);
	opacity: 1;
}

.gp-cookie-content {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.gp-cookie-text {
	flex: 1;
	font-size: 0.9rem;
	color: #2c2c2c;
	line-height: 1.4;
}

.gp-cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.gp-cookie-btn {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.gp-cookie-accept {
	background: #0a74da;
	color: white;
}

.gp-cookie-accept:hover {
	background: #085bb3;
	transform: translateY(-2px);
}

.gp-cookie-link {
	color: #0a74da;
	text-decoration: underline;
}

.gp-cookie-link:hover {
	color: #7fdbda;
}

/* Animations */
@keyframes gp-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes gp-float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes gp-rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(5deg);
	}
}

@keyframes gp-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes gp-gradient-shift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/*Animation Classes */
.gp-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.gp-fade-in.gp-visible {
	opacity: 1;
	transform: translateY(0);
}

.gp-pulse {
	animation: gp-pulse 2s ease-in-out infinite;
}

.gp-gradient-bg {
	background: linear-gradient(-45deg, #0a74da, #7fdbda, #0a74da, #7fdbda);
	background-size: 400% 400%;
	animation: gp-gradient-shift 6s ease infinite;
}

/* Parallax Effects */
.gp-parallax {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.gp-container {
		padding: 0 1.5rem;
	}

	.gp-split-screen {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.gp-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.gp-pricing-cards {
		grid-template-columns: 1fr;
	}

	.gp-hero-title {
		font-size: 3rem;
	}
}

@media (max-width: 992px) {
	.gp-nav {
		display: none;
	}

	.gp-mobile-menu-toggle {
		display: flex;
	}

	.gp-hero-content {
		text-align: center;
	}

	.gp-hero-buttons {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.gp-hero-title {
		font-size: 2.5rem;
	}

	.gp-hero-subtitle {
		font-size: 1.2rem;
	}

	.gp-grid-2,
	.gp-grid-3,
	.gp-grid-4 {
		grid-template-columns: 1fr;
	}

	.gp-why-cards {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.gp-tips-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.gp-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.gp-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.gp-dashboard-tabs {
		flex-direction: column;
		align-items: center;
	}

	.gp-cookie-popup {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
	}

	.gp-cookie-content {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.gp-title-xl {
		font-size: 2.5rem;
	}

	.gp-pricing-cards {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.gp-title-lg {
		font-size: 2rem;
	}

	.gp-hero-title {
		font-size: 2rem;
	}

	.gp-section {
		padding: 3rem 0;
	}

	.gp-card {
		padding: 1.5rem;
	}

	.gp-contact-form {
		padding: 2rem;
	}

	.gp-workshops-carousel {
		gap: 1rem;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.gp-workshop-card {
		min-width: 280px;
	}

	.gp-progress-ring {
		width: 150px;
		height: 150px;
	}

	.gp-progress-text {
		font-size: 1.5rem;
	}
}

/* Print Styles */
@media print {
	.gp-header,
	.gp-cookie-popup {
		display: none;
	}

	.gp-section {
		break-inside: avoid;
		page-break-inside: avoid;
	}

	.gp-card {
		box-shadow: none;
		border: 1px solid #ddd;
	}

	.gp-btn {
		border: 2px solid #000;
		background: transparent !important;
		color: #000 !important;
	}
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
	.gp-btn-primary {
		background: #000;
		color: #fff;
		border: 2px solid #fff;
	}

	.gp-btn-secondary {
		background: #fff;
		color: #000;
		border: 2px solid #000;
	}

	.gp-card {
		border: 2px solid #000;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.gp-parallax {
		background-attachment: scroll;
	}
}

/* Screen Reader Only Content */
.gp-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Policy Pages Styles */
.gp-policy-page {
	padding-top: 100px;
	min-height: 100vh;
	background: #fffbea;
}

.gp-policy-header {
	text-align: center;
	margin-bottom: 3rem;
	padding: 2rem 0;
	background: linear-gradient(
		135deg,
		rgba(10, 116, 218, 0.05),
		rgba(127, 219, 218, 0.05)
	);
	border-radius: 20px;
}

.gp-policy-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #0a74da;
	margin-bottom: 1rem;
}

.gp-policy-date {
	color: #666;
	font-style: italic;
}

.gp-policy-content {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	line-height: 1.8;
}

.gp-policy-section {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(10, 116, 218, 0.1);
}

.gp-policy-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.gp-policy-section h2 {
	color: #0a74da;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #7fdbda;
	display: inline-block;
}

.gp-policy-section p {
	color: #2c2c2c;
	margin-bottom: 1rem;
	text-align: justify;
}

.gp-policy-section ul {
	margin: 1rem 0;
	padding-left: 2rem;
}

.gp-policy-section li {
	margin-bottom: 0.5rem;
	color: #2c2c2c;
}

/* Additional Utility Classes */
.gp-text-center {
	text-align: center;
}
.gp-text-left {
	text-align: left;
}
.gp-text-right {
	text-align: right;
}
.gp-text-justify {
	text-align: justify;
}

.gp-mb-1 {
	margin-bottom: 0.5rem;
}
.gp-mb-2 {
	margin-bottom: 1rem;
}
.gp-mb-3 {
	margin-bottom: 1.5rem;
}
.gp-mb-4 {
	margin-bottom: 2rem;
}

.gp-mt-1 {
	margin-top: 0.5rem;
}
.gp-mt-2 {
	margin-top: 1rem;
}
.gp-mt-3 {
	margin-top: 1.5rem;
}
.gp-mt-4 {
	margin-top: 2rem;
}

.gp-p-1 {
	padding: 0.5rem;
}
.gp-p-2 {
	padding: 1rem;
}
.gp-p-3 {
	padding: 1.5rem;
}
.gp-p-4 {
	padding: 2rem;
}

.gp-d-flex {
	display: flex;
}
.gp-d-block {
	display: block;
}
.gp-d-inline {
	display: inline;
}
.gp-d-none {
	display: none;
}

.gp-justify-center {
	justify-content: center;
}
.gp-justify-between {
	justify-content: space-between;
}
.gp-justify-around {
	justify-content: space-around;
}

.gp-align-center {
	align-items: center;
}
.gp-align-start {
	align-items: flex-start;
}
.gp-align-end {
	align-items: flex-end;
}

.gp-w-full {
	width: 100%;
}
.gp-h-full {
	height: 100%;
}

.gp-rounded {
	border-radius: 0.5rem;
}
.gp-rounded-lg {
	border-radius: 1rem;
}
.gp-rounded-xl {
	border-radius: 1.5rem;
}
.gp-rounded-full {
	border-radius: 50%;
}

.gp-shadow {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.gp-shadow-lg {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.gp-shadow-xl {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gp-border {
	border: 1px solid rgba(10, 116, 218, 0.2);
}
.gp-border-primary {
	border: 2px solid #0a74da;
}
.gp-border-secondary {
	border: 2px solid #7fdbda;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: rgba(10, 116, 218, 0.1);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #0a74da, #7fdbda);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #085bb3, #6bc5c4);
}

/* Selection Styles */
::selection {
	background: rgba(127, 219, 218, 0.3);
	color: #2c2c2c;
}

::-moz-selection {
	background: rgba(127, 219, 218, 0.3);
	color: #2c2c2c;
}

@media (max-width: 576px) {
	.gp-policy-title {
		font-size: 1.5rem;
	}
	.gp-policy-content {
		padding: 2rem;
	}
}
:root {
  --color-primary: #2A9D8F;
  --color-secondary: #E9C46A;
  --color-accent: #F4A261;
  --bg-light: #F0EFEB;
  --bg-workshops: url('assets/en-bg-workshop.webp') center/cover fixed;
  --text-dark: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
.gp-title-xl {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.gp-title-lg {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.gp-title-md {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.gp-title-sm {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.gp-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 2rem;
}

.gp-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.gp-text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Container & Layout */
.gp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gp-section {
  padding: 5rem 0;
  min-height: 100vh;
  align-items: center;
}

.gp-split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}

/* Header Styles */
.gp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(240, 239, 235, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42, 157, 143, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.gp-header.gp-scrolled {
  background: rgba(240, 239, 235, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gp-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.gp-logo:hover {
  transform: scale(1.05);
  color: var(--color-accent);
}

.gp-nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gp-nav-link:hover {
  color: var(--color-primary);
  background-color: rgba(42, 157, 143, 0.1);
  transform: translateY(-2px);
}

/* Button Styles */
.gp-btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
}

.gp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
}

.gp-btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.gp-btn-secondary:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(42, 157, 143, 0.3);
}

/* Card Styles */
.gp-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.gp-card:hover::before {
  transform: scaleX(1);
}

.gp-card-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
  transition: all 0.3s ease;
}

.gp-card:hover .gp-card-icon {
  color: var(--color-accent);
}

/* Workshops Section */
.gp-workshops {
  background: linear-gradient(45deg, rgba(42,157,143,0.8), rgba(228,197,106,0.5)), var(--bg-workshops);
  position: relative;
  overflow: hidden;
}

/* Dashboard Section */
.gp-progress-ring {
  background: conic-gradient(var(--color-primary) 0deg 270deg, #EBF4F2 270deg 360deg);
}

/* Footer */
.gp-footer {
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  color: white;
}

/* Contact Section */
.gp-contact {
  background: linear-gradient(135deg, var(--bg-light), rgba(42,157,143,0.1));
}
/* Background-color sections */
.gp-why {
  background-color: var(--color-secondary);
  background-image: none;
}

.gp-dashboard {
  background-color: rgba(42, 157, 143, 0.1);
  background-image: none;
}

.gp-pricing {
  background-color: rgba(233, 196, 106, 0.1);
  background-image: none;
}

/* Background-image sections */
.gp-hero {
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
}

.gp-tips {
  background: url('assets/tips-bg.jpg') center/cover no-repeat;
}

.gp-contact {
  background: url('assets/contact-bg.jpg') center/cover no-repeat;
}
#hero {
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 68%); /* ou ajustez l’opacité/color selon besoin */
  z-index: 0;
}

#hero .gp-container {
  position: relative;
  z-index: 1;
}
/* Hero text color override */
#hero .gp-hero-title,
#hero .gp-hero-subtitle,
#hero .gp-hero-buttons a {
  color: #ffffff !important;
}

/* Ensure button backgrounds remain visible */
#hero .gp-btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

#hero .gp-btn-secondary {
  border-color: #ffffff;
  color: #ffffff;
}

#hero .gp-btn-secondary:hover {
  background: #ffffff;
  color: var(--color-primary);
}
/* Styles for Policy Pages */
.gp-policy-page {
  background-color: #F0EFEB;
  padding: 100px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333333;
}

.gp-policy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gp-policy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2A9D8F;
  margin-bottom: 0.5rem;
}

.gp-policy-date {
  font-size: 0.9rem;
  font-style: italic;
  color: #7F8C8D;
}

.gp-policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 2.5rem;
  line-height: 1.8;
}

.gp-policy-section {
  margin-bottom: 2.5rem;
}

.gp-policy-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #0A74DA;
  border-bottom: 3px solid #F4A261;
  display: inline-block;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
}

.gp-policy-section p,
.gp-policy-section ul {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 1rem;
}

.gp-policy-section ul {
  padding-left: 1.5rem;
}

.gp-policy-section ul li {
  margin-bottom: 0.5rem;
  position: relative;
}

.gp-policy-section ul li::before {
  content: "•";
  position: absolute;
  left: -1rem;
  color: #2A9D8F;
}

@media (max-width: 768px) {
  .gp-policy-content {
    padding: 1.5rem;
  }
  .gp-policy-title {
    font-size: 2rem;
  }
  .gp-policy-section h2 {
    font-size: 1.5rem;
  }
  .gp-policy-section p,
  .gp-policy-section ul li {
    font-size: 0.95rem;
  }
}
