:root {
	--gp-bg-dark: #0e1116;
	--gp-bg-section: #1c1f26;
	--gp-accent-cyan: #00c6a7;
	--gp-accent-coral: #ff4c29;
	--gp-accent-gold: #ffd369;
	--gp-text-light: #eaeaea;
	--gp-text-muted: #a0a0a0;
	--gp-transition: all 0.3s ease;
	--gp-shadow: 0 4px 20px rgba(0, 198, 167, 0.15);
	--gp-glow: 0 0 20px rgba(0, 198, 167, 0.3);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Roboto', sans-serif;
	background-color: var(--gp-bg-dark);
	color: var(--gp-text-light);
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--gp-transition);
}

ul {
	list-style: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
	margin-bottom: 1rem;
	font-size: 1rem;
	color: var(--gp-text-light);
}

.gp-text-muted {
	color: var(--gp-text-muted);
}

.gp-text-accent-cyan {
	color: var(--gp-accent-cyan);
}

.gp-text-accent-coral {
	color: var(--gp-accent-coral);
}

.gp-text-accent-gold {
	color: var(--gp-accent-gold);
}

/* ===========================
   LAYOUT UTILITIES
   =========================== */
.gp-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.gp-section {
	padding: 5rem 0;
}

.gp-section-alt {
	background-color: var(--gp-bg-section);
}

.gp-grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.gp-grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.gp-grid-4 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

.gp-flex {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.gp-flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.gp-flex-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gp-text-center {
	text-align: center;
}

/* ===========================
   BUTTONS
   =========================== */
.gp-btn {
	display: inline-block;
	padding: 0.875rem 2rem;
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	border-radius: 8px;
	transition: var(--gp-transition);
	cursor: pointer;
	border: 2px solid transparent;
}

.gp-btn-primary {
	background-color: var(--gp-accent-cyan);
	color: var(--gp-bg-dark);
	border-color: var(--gp-accent-cyan);
}

.gp-btn-primary:hover {
	background-color: transparent;
	color: var(--gp-accent-cyan);
	box-shadow: var(--gp-glow);
}

.gp-btn-secondary {
	background-color: transparent;
	color: var(--gp-accent-coral);
	border-color: var(--gp-accent-coral);
}

.gp-btn-secondary:hover {
	background-color: var(--gp-accent-coral);
	color: var(--gp-bg-dark);
	box-shadow: 0 0 20px rgba(255, 76, 41, 0.3);
}

.gp-btn-outline {
	background-color: transparent;
	color: var(--gp-text-light);
	border-color: var(--gp-text-light);
}

.gp-btn-outline:hover {
	background-color: var(--gp-text-light);
	color: var(--gp-bg-dark);
}

/* ===========================
   HEADER
   =========================== */
.gp-header {
	background-color: var(--gp-bg-section);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 1rem 0;
	border-bottom: 2px solid var(--gp-accent-cyan);
}

.gp-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.gp-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--gp-accent-cyan);
	letter-spacing: 1px;
}

.gp-nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.gp-nav-link {
	font-size: 1rem;
	font-weight: 500;
	color: var(--gp-text-light);
	position: relative;
	padding: 0.5rem 0;
}

.gp-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--gp-accent-cyan);
	transition: width 0.3s ease;
}

.gp-nav-link:hover::after,
.gp-nav-link.gp-active::after {
	width: 100%;
}

.gp-nav-link:hover {
	color: var(--gp-accent-cyan);
}

.gp-mobile-toggle {
	display: none;
	position: relative;
	z-index: 1005;
	font-size: 1.5rem;
	color: var(--gp-text-light);
	cursor: pointer;
}

/* ===========================
   HERO SECTION
   =========================== */
.gp-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 6rem 2rem;
	background: linear-gradient(
			135deg,
			rgba(14, 17, 22, 0.7),
			rgba(28, 31, 38, 0.7)
		),
		url('assets/gp-hero.webp') center/cover;
	overflow: hidden;
	background-attachment: fixed;
}

.gp-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(0, 198, 167, 0.1),
		transparent 70%
	);
	pointer-events: none;
}

.gp-hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
}

.gp-hero-title {
	font-size: clamp(2.5rem, 6vw, 4rem);
	margin-bottom: 1.5rem;
	color: var(--gp-text-light);
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.gp-hero-subtitle {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	margin-bottom: 2.5rem;
	color: var(--gp-text-muted);
	font-weight: 300;
}

.gp-hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ===========================
   CARDS
   =========================== */
.gp-card {
	background-color: var(--gp-bg-section);
	border-radius: 12px;
	padding: 2rem;
	transition: var(--gp-transition);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.gp-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--gp-shadow);
	border-color: var(--gp-accent-cyan);
}

.gp-card-icon {
	font-size: 2.5rem;
	color: var(--gp-accent-cyan);
	margin-bottom: 1rem;
}

.gp-card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--gp-text-light);
}

.gp-card-text {
	color: var(--gp-text-muted);
	line-height: 1.6;
}

.gp-card-link {
	display: inline-block;
	margin-top: 1rem;
	color: var(--gp-accent-cyan);
	font-weight: 500;
	transition: var(--gp-transition);
}

.gp-card-link:hover {
	color: var(--gp-accent-coral);
	transform: translateX(5px);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.gp-testimonial {
	background-color: var(--gp-bg-section);
	border-left: 4px solid var(--gp-accent-gold);
	padding: 2rem;
	border-radius: 8px;
	transition: var(--gp-transition);
	display: flex !important;
	flex-direction: column;
	height: 100%;
}

.gp-testimonial:hover {
	transform: translateX(8px);
	box-shadow: var(--gp-shadow);
}

.gp-testimonial-quote {
	font-size: 1.1rem;
	font-style: italic;
	margin-bottom: 1rem;
	color: var(--gp-text-light);
}

.gp-testimonial-author {
	font-weight: 600;
	color: var(--gp-accent-gold);
	font-size: 1rem;
	margin-top: auto;
}

/* ===========================
   ACCORDION
   =========================== */
.gp-accordion {
	background-color: var(--gp-bg-section);
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.gp-accordion-header {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--gp-bg-section);
	transition: var(--gp-transition);
}

.gp-accordion-header:hover {
	background-color: rgba(0, 198, 167, 0.1);
}

.gp-accordion-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0;
	color: var(--gp-text-light);
}

.gp-accordion-icon {
	font-size: 1.5rem;
	color: var(--gp-accent-cyan);
	transition: transform 0.3s ease;
}

.gp-accordion.gp-active .gp-accordion-icon {
	transform: rotate(180deg);
}

.gp-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
	padding: 0 1.5rem;
}

.gp-accordion.gp-active .gp-accordion-content {
	max-height: 1000px !important;
	padding: 1.5rem;
}

.gp-accordion-text {
	color: var(--gp-text-muted);
	line-height: 1.6;
}

/* ===========================
   TABS
   =========================== */
.gp-tabs-nav {
	display: flex !important;
	gap: 1rem;
	margin-bottom: 2rem;
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
	flex-wrap: wrap;
}

.gp-tab-btn {
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 500;
	color: var(--gp-text-muted);
	background-color: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	cursor: pointer;
	transition: var(--gp-transition);
}

.gp-tab-btn:hover {
	color: var(--gp-accent-cyan);
}

.gp-tab-btn.gp-active {
	color: var(--gp-accent-cyan);
	border-bottom-color: var(--gp-accent-cyan);
}

.gp-tab-content {
	display: none;
	animation: gp-fadeIn 0.5s ease;
}

.gp-tab-content.gp-active {
	display: block;
}

/* ===========================
   FORM
   =========================== */
.gp-form {
	background-color: var(--gp-bg-section);
	padding: 2.5rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.gp-form-group {
	margin-bottom: 1.5rem;
}

.gp-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--gp-text-light);
	font-size: 1rem;
}

.gp-form-input,
.gp-form-textarea {
	width: 100%;
	padding: 1rem;
	font-size: 1rem;
	background-color: var(--gp-bg-dark);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: var(--gp-text-light);
	transition: var(--gp-transition);
	font-family: inherit;
}

.gp-form-input:focus,
.gp-form-textarea:focus {
	outline: none;
	border-color: var(--gp-accent-cyan);
	box-shadow: 0 0 0 3px rgba(0, 198, 167, 0.1);
}

.gp-form-textarea {
	resize: vertical;
	min-height: 150px;
}

.gp-form-error {
	color: var(--gp-accent-coral);
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.gp-form-group.gp-error .gp-form-error {
	display: block;
}

.gp-form-group.gp-error .gp-form-input,
.gp-form-group.gp-error .gp-form-textarea {
	border-color: var(--gp-accent-coral);
}

/* ===========================
   MAP
   =========================== */
.gp-map-container {
	border-radius: 12px;
	overflow: hidden;
	height: 100%;
	background-color: var(--gp-bg-section);
}

.gp-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.gp-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.gp-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.gp-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ===========================
   FOOTER
   =========================== */
.gp-footer {
	background-color: var(--gp-bg-dark);
	padding: 4rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gp-footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.gp-footer-section h3 {
	color: var(--gp-accent-cyan);
	margin-bottom: 1.5rem;
	font-size: 1.25rem;
}

.gp-footer-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gp-accent-cyan);
	margin-bottom: 1rem;
}

.gp-footer-tagline {
	color: var(--gp-text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

.gp-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.gp-footer-link {
	color: var(--gp-text-muted);
	font-size: 0.95rem;
	transition: var(--gp-transition);
	display: inline-block;
}

.gp-footer-link:hover {
	color: var(--gp-accent-cyan);
	transform: translateX(5px);
}

.gp-footer-contact-item {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1rem;
	align-items: flex-start;
}

.gp-footer-contact-icon {
	color: var(--gp-accent-gold);
	font-size: 1.25rem;
	margin-top: 0.25rem;
}

.gp-footer-contact-text {
	color: var(--gp-text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

.gp-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	color: var(--gp-text-muted);
	font-size: 0.9rem;
}

/* ===========================
   COOKIE POPUP
   =========================== */
.gp-cookie-popup {
	position: fixed;
	display: none;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--gp-bg-section);
	padding: 1.5rem;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	transform: translateY(100%);
	transition: transform 0.4s ease;
	border-top: 2px solid var(--gp-accent-cyan);
}

.gp-cookie-popup.gp-show {
	transform: translateY(0);
	display: block;
}

.gp-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.gp-cookie-text {
	flex: 1;
	color: var(--gp-text-muted);
	font-size: 0.95rem;
}

.gp-cookie-text a {
	color: var(--gp-accent-cyan);
	text-decoration: underline;
}

.gp-cookie-buttons {
	display: flex;
	gap: 1rem;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes gp-fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes gp-slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes gp-slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes gp-slideInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.gp-fade-in {
	animation: gp-fadeIn 0.8s ease forwards;
}

.gp-slide-in-left {
	animation: gp-slideInLeft 0.8s ease forwards;
}

.gp-slide-in-right {
	animation: gp-slideInRight 0.8s ease forwards;
}

.gp-slide-in-up {
	animation: gp-slideInUp 0.8s ease forwards;
}

/* Scroll Animation Classes */
.gp-scroll-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.gp-scroll-animate.gp-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===========================
   SECTION TITLES
   =========================== */
.gp-section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 1rem;
	text-align: center;
	color: var(--gp-text-light);
	position: relative;
	display: inline-block;
	width: 100%;
}

.gp-section-title::after {
	content: '';
	display: block;
	width: 100px;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--gp-accent-cyan),
		var(--gp-accent-coral)
	);
	margin: 1rem auto 0;
	border-radius: 2px;
}

.gp-section-subtitle {
	text-align: center;
	color: var(--gp-text-muted);
	font-size: 1.1rem;
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* ===========================
   SPECIAL EFFECTS
   =========================== */
.gp-gradient-text {
	background: linear-gradient(
		135deg,
		var(--gp-accent-cyan),
		var(--gp-accent-coral),
		var(--gp-accent-gold)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.gp-glow-box {
	position: relative;
	overflow: hidden;
}

.gp-glow-box::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(0, 198, 167, 0.15), transparent 60%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.gp-glow-box:hover::before {
	opacity: 1;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.gp-mb-1 {
	margin-bottom: 1rem;
}
.gp-mb-2 {
	margin-bottom: 2rem;
}
.gp-mb-3 {
	margin-bottom: 3rem;
}
.gp-mt-1 {
	margin-top: 1rem;
}
.gp-mt-2 {
	margin-top: 2rem;
}
.gp-mt-3 {
	margin-top: 3rem;
}
.gp-p-1 {
	padding: 1rem;
}
.gp-p-2 {
	padding: 2rem;
}
.gp-p-3 {
	padding: 3rem;
}

.gp-hidden {
	display: none;
}

.gp-visible {
	display: block;
}

/* ===========================
   CONTENT SECTIONS
   =========================== */
.gp-content-block {
	background-color: var(--gp-bg-section);
	padding: 2.5rem;
	border-radius: 12px;

	border-left: 4px solid var(--gp-accent-cyan);
}

.gp-content-block h3 {
	color: var(--gp-accent-cyan);
	margin-bottom: 1rem;
}

.gp-content-block p {
	color: var(--gp-text-muted);
	line-height: 1.8;
}

.gp-list-styled {
	list-style: none;
	padding-left: 0;
}

.gp-list-styled li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 1rem;
	color: var(--gp-text-muted);
}

.gp-list-styled li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--gp-accent-cyan);
	font-weight: bold;
	font-size: 1.2rem;
}

/* ===========================
   IMAGE OVERLAYS
   =========================== */
.gp-image-overlay {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}

.gp-image-overlay::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 198, 167, 0.3),
		rgba(255, 76, 41, 0.3)
	);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gp-image-overlay:hover::after {
	opacity: 1;
}

.gp-image-overlay img {
	transition: transform 0.4s ease;
}

.gp-image-overlay:hover img {
	transform: scale(1.1);
}

/* ===========================
   BADGE
   =========================== */
.gp-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
	background-color: var(--gp-accent-cyan);
	color: var(--gp-bg-dark);
}

.gp-badge-coral {
	background-color: var(--gp-accent-coral);
}

.gp-badge-gold {
	background-color: var(--gp-accent-gold);
}

/* ===========================
   DIVIDER
   =========================== */
.gp-divider {
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--gp-accent-cyan),
		transparent
	);
	margin: 3rem 0;
}

/* ===========================
   LOADING SPINNER
   =========================== */
.gp-spinner {
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 4px solid rgba(0, 198, 167, 0.2);
	border-top-color: var(--gp-accent-cyan);
	border-radius: 50%;
	animation: gp-spin 0.8s linear infinite;
}

@keyframes gp-spin {
	to {
		transform: rotate(360deg);
	}
}

/* ===========================
   CONTACT PAGE SPECIFICS
   =========================== */
.gp-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 3rem;
}

@media (max-width: 768px) {
	.gp-contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* ===========================
   GUIDES PAGE SPECIFICS
   =========================== */
.gp-guide-card {
	background-color: var(--gp-bg-section);
	border-radius: 12px;
	overflow: hidden;
	transition: var(--gp-transition);
	border: 1px solid rgba(255, 255, 255, 0.05);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.gp-guide-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--gp-shadow);
}

.gp-guide-card-image {
	height: 200px;
	background: linear-gradient(
		135deg,
		rgba(0, 198, 167, 0.3),
		rgba(255, 76, 41, 0.3)
	);
	display: flex;
	align-items: center;
	justify-content: center;
}

.gp-guide-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gp-guide-card-body {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.gp-guide-card-body a {
	margin-top: auto;
}

.gp-guide-card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--gp-text-light);
}

.gp-guide-card-text {
	color: var(--gp-text-muted);
	margin-bottom: 1.5rem;
}

/* ===========================
   CULTURE PAGE SPECIFICS
   =========================== */
.gp-culture-feature {
	background: linear-gradient(
		135deg,
		rgba(0, 198, 167, 0.05),
		rgba(255, 76, 41, 0.05)
	);
	padding: 3rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 211, 105, 0.2);
	margin-bottom: 2rem;
}

.gp-culture-feature h3 {
	color: var(--gp-accent-gold);
}

/* ===========================
   HISTORY PAGE SPECIFICS
   =========================== */
.gp-timeline {
	position: relative;
	padding-left: 3rem;
}

.gp-timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		180deg,
		var(--gp-accent-cyan),
		var(--gp-accent-coral)
	);
}

.gp-timeline-item {
	position: relative;
	margin-bottom: 3rem;
}

.gp-timeline-item::before {
	content: '';
	position: absolute;
	left: -58px;
	top: 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: var(--gp-accent-gold);
	border: 3px solid var(--gp-bg-dark);
}

.gp-timeline-content {
	background-color: var(--gp-bg-section);
	padding: 2rem;
	border-radius: 12px;
	border-left: 4px solid var(--gp-accent-cyan);
}

/* ===========================
   ADDITIONAL SPACING
   =========================== */
.gp-spacing-small {
	padding: 2rem 0;
}
.gp-spacing-medium {
	padding: 4rem 0;
}
.gp-spacing-large {
	padding: 6rem 0;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
	.gp-nav {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100vh;
		width: 70%;
		max-width: 300px;
		background-color: var(--gp-bg-section);
		flex-direction: column;
		padding: 5rem 2rem;
		transition: right 0.4s ease;
		box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
		align-items: flex-start;
		gap: 1.5rem;
	}

	.gp-nav.gp-active {
		right: 0;
	}

	.gp-mobile-toggle {
		display: block;
	}

	.gp-hero {
		padding: 4rem 1.5rem;
	}

	.gp-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.gp-hero-buttons .gp-btn {
		width: 100%;
		max-width: 280px;
	}

	.gp-container {
		padding: 0 1.5rem;
	}

	.gp-section {
		padding: 3rem 0;
	}

	.gp-grid-2,
	.gp-grid-3,
	.gp-grid-4 {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.gp-tabs-nav {
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.gp-tab-btn {
		flex-shrink: 0;
		padding: 0.75rem 1.5rem;
	}

	.gp-footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.gp-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.gp-cookie-buttons {
		justify-content: center;
		width: 100%;
	}

	.gp-form {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	html {
		font-size: 14px;
	}

	.gp-tabs-nav {
		flex-direction: column;
	}

	.gp-logo {
		font-size: 1.5rem;
	}

	.gp-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.95rem;
	}

	.gp-card {
		padding: 1.5rem;
	}

	.gp-form {
		padding: 1.25rem;
	}

	.gp-timeline-item::before {
		left: -52px;
	}

	.gp-grid-2 {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.gp-footer {
		padding: 3rem 0 1.5rem;
	}
}

.gp-legal-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
}

/* Контент-обёртка */
.gp-legal-content {
	background-color: #1c1f26;
	border-radius: 12px;
	padding: 50px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(0, 198, 167, 0.1);
}

/* Заголовок страницы */
.gp-legal-header {
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 2px solid rgba(0, 198, 167, 0.3);
}

.gp-legal-title {
	font-size: 42px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 15px;
	letter-spacing: -0.5px;
}

.gp-legal-subtitle {
	font-size: 14px;
	color: #00c6a7;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 25px;
}

.gp-legal-intro {
	font-size: 18px;
	color: #c4c4c4;
	line-height: 1.9;
	margin-top: 20px;
}

/* Секции */
.gp-legal-section {
	margin-bottom: 45px;
	padding: 30px;
	background-color: rgba(28, 31, 38, 0.5);
	border-radius: 8px;
	border-left: 4px solid #00c6a7;
	transition: all 0.3s ease;
}

.gp-legal-section:hover {
	background-color: rgba(28, 31, 38, 0.8);
	border-left-color: #ffd369;
	transform: translateX(5px);
}

.gp-legal-section-title {
	font-size: 28px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.gp-legal-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, #00c6a7, #008b7a);
	border-radius: 50%;
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	flex-shrink: 0;
}

/* Текстовые блоки */
.gp-legal-text {
	color: #eaeaea;
	font-size: 16px;
}

.gp-legal-text p {
	margin-bottom: 18px;
	line-height: 1.8;
}

.gp-legal-text p:last-child {
	margin-bottom: 0;
}

/* Выделения */
.gp-legal-highlight {
	color: #ffd369;
	font-weight: 600;
}

/* Ссылки */
.gp-legal-link {
	color: #00c6a7;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
	font-weight: 500;
}

.gp-legal-link:hover {
	color: #ffd369;
	border-bottom-color: #ffd369;
}

/* Контактная информация */
.gp-legal-contact-box {
	background-color: #0e1116;
	border: 2px solid #00c6a7;
	border-radius: 8px;
	padding: 25px;
	margin: 25px 0;
}

.gp-legal-contact-box p {
	margin-bottom: 10px;
	color: #eaeaea;
}

.gp-legal-contact-box p:last-child {
	margin-bottom: 0;
}

.gp-legal-contact-box strong {
	color: #ffd369;
	font-size: 18px;
}

/* Футер-нота */
.gp-legal-footer-note {
	font-style: italic;
	color: #c4c4c4;
	margin-top: 25px;
	padding: 20px;
	background-color: rgba(0, 198, 167, 0.05);
	border-radius: 6px;
	border-left: 3px solid #ff4c29;
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
	.gp-legal-container {
		padding: 40px 15px;
	}

	.gp-legal-content {
		padding: 30px 25px;
	}

	.gp-legal-title {
		font-size: 2rem;
	}

	.gp-legal-intro {
		font-size: 16px;
	}

	.gp-legal-section {
		padding: 20px;
		margin-bottom: 35px;
	}

	.gp-legal-section-title {
		font-size: 24px;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.gp-legal-number {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.gp-legal-text {
		font-size: 15px;
	}

	.gp-legal-contact-box {
		padding: 20px;
	}
}

/* Адаптивность для мобильных */
@media (max-width: 480px) {
	.gp-legal-container {
		padding: 30px 10px;
	}

	.gp-legal-content {
		padding: 25px 20px;
		border-radius: 8px;
	}

	.gp-legal-header {
		margin-bottom: 35px;
		padding-bottom: 25px;
	}

	.gp-legal-title {
		font-size: 1.3rem;
		line-height: 1.3;
	}

	.gp-legal-subtitle {
		font-size: 12px;
	}

	.gp-legal-intro {
		font-size: 15px;
	}

	.gp-legal-section {
		padding: 18px;
		margin-bottom: 30px;
	}

	.gp-legal-section:hover {
		transform: translateX(3px);
	}

	.gp-legal-section-title {
		font-size: 20px;
	}

	.gp-legal-number {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}

	.gp-legal-text {
		font-size: 14px;
	}

	.gp-legal-text p {
		margin-bottom: 15px;
	}

	.gp-legal-contact-box {
		padding: 18px;
	}

	.gp-legal-contact-box strong {
		font-size: 16px;
	}

	.gp-legal-footer-note {
		padding: 15px;
		font-size: 14px;
	}
}
