@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ========================================
   GLOBAL STYLES
======================================== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #111827;
	background-color: #f9fafb;
	overflow-x: hidden;
}

.plp-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ========================================
   TYPOGRAPHY
======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 1rem;
	color: #111827;
}

h1 {
	font-size: 3.5rem;
	font-weight: 800;
}

h2 {
	font-size: 2.5rem;
	font-weight: 700;
}

h3 {
	font-size: 1.875rem;
	font-weight: 600;
}

h4 {
	font-size: 1.5rem;
	font-weight: 600;
}

p {
	margin-bottom: 1.5rem;
	color: #374151;
}

a {
	text-decoration: none;
	color: #3b82f6;
	transition: all 0.3s ease;
}

a:hover {
	color: #1d4ed8;
}

/* ========================================
   BUTTONS
======================================== */

.plp-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 2rem;
	border: none;
	border-radius: 12px;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.plp-btn: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: left 0.5s;
}

.plp-btn:hover:before {
	left: 100%;
}

.plp-btn-primary {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: #ffffff;
	box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}

.plp-btn-primary:hover {
	background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px 0 rgba(59, 130, 246, 0.5);
	color: #ffffff;
}

.plp-btn-secondary {
	background: #ffffff;
	color: #3b82f6;
	border: 2px solid #3b82f6;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.plp-btn-secondary:hover {
	background: #3b82f6;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.plp-btn-accent {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
}

.plp-btn-accent:hover {
	background: linear-gradient(135deg, #059669 0%, #047857 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px 0 rgba(16, 185, 129, 0.5);
	color: #ffffff;
}

/* ========================================
   HEADER
======================================== */

.plp-header {
	background: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.plp-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.plp-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #111827;
	text-decoration: none;
}

.plp-logo i {
	font-size: 1.875rem;
	color: #3b82f6;
}

.plp-nav {
	display: flex;
	align-items: center;
}

.plp-nav ul {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin: 0;
}

.plp-nav li {
	position: relative;
}

.plp-nav a {
	font-weight: 500;
	color: #374151;
	padding: 0.5rem 0;
	position: relative;
	transition: all 0.3s ease;
}

.plp-nav a:before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #3b82f6, #10b981);
	transition: width 0.3s ease;
}

.plp-nav a:hover:before,
.plp-nav a.plp-active:before {
	width: 100%;
}

.plp-nav a:hover,
.plp-nav a.plp-active {
	color: #3b82f6;
}

.plp-header-cta {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: #ffffff;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 500;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.plp-header-cta:hover {
	background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.plp-mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #374151;
	cursor: pointer;
}

.plp-mobile-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #ffffff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	padding: 1rem 0;
}

.plp-mobile-nav ul {
	flex-direction: column;
	gap: 1rem;
	padding: 0 2rem;
	display: flex;
}

.plp-mobile-nav ul li {
	list-style-type: none;
}

.plp-mobile-nav.plp-active {
	display: block;
	animation: plp-slideDown 0.3s ease;
}

@keyframes plp-slideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ========================================
   HERO SECTION
======================================== */

.plp-hero {
	background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
	padding: 140px 0 100px;
	position: relative;
	overflow: hidden;
}

.plp-hero:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/plp-hero.webp') top/cover;
	opacity: 0.3;
}

.plp-hero-content {
	text-align: center;
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.plp-hero h1 {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #111827 0%, #374151 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.plp-hero-subtitle {
	font-size: 1.375rem;
	color: #6b7280;
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.plp-hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

@keyframes plp-backgroundMove {
	0% {
		transform: translateX(0) translateY(0);
	}
	100% {
		transform: translateX(60px) translateY(60px);
	}
}

/* ========================================
   SECTIONS
======================================== */

.plp-section {
	padding: 80px 0;
	position: relative;
}

.plp-section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #111827;
}

.plp-section-subtitle {
	text-align: center;
	font-size: 1.25rem;
	color: #6b7280;
	margin-bottom: 4rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* ========================================
   CARDS AND GRID
======================================== */

.plp-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.plp-cards-grid-1 {
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.plp-cards-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.plp-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.plp-card:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #10b981);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.plp-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.plp-card:hover:before {
	transform: scaleX(1);
}

.plp-card-icon {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: #ffffff;
}

.plp-icon-1 {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.plp-icon-2 {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.plp-icon-3 {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.plp-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #111827;
}

.plp-card p {
	color: #6b7280;
	margin-bottom: 1.5rem;
}

.plp-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #3b82f6;
	font-weight: 500;
	transition: all 0.3s ease;
}

.plp-card-link:hover {
	color: #1d4ed8;
	transform: translateX(4px);
}

/* ========================================
   METHOD CARDS
======================================== */

.plp-method-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.plp-method-card:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(180deg, #3b82f6, #10b981);
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.plp-method-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.plp-method-card:hover:before {
	transform: scaleY(1);
}

.plp-method-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.plp-method-icon {
	width: 50px;
	height: 50px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.25rem;
	color: #ffffff;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.plp-method-card h3 {
	font-size: 1.375rem;
	margin-bottom: 0;
}

.plp-method-description {
	color: #6b7280;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.plp-method-features {
	list-style: none;
	padding: 0;
}

.plp-method-features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	color: #374151;
}

.plp-method-features li:before {
	content: '✓';
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: bold;
	flex-shrink: 0;
}

/* ========================================
   TESTIMONIALS
======================================== */

.plp-testimonial {
	background: #ffffff;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	text-align: center;
}

.plp-testimonial:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.15);
}

.plp-testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 auto 1.5rem;
}

.plp-testimonial-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.plp-testimonial-text {
	color: #374151;
	font-style: italic;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.plp-testimonial-author {
	font-weight: 600;
	color: #111827;
	margin-bottom: 0.25rem;
}

.plp-testimonial-role {
	color: #6b7280;
	font-size: 0.875rem;
}

/* ========================================
   TEAM CARDS
======================================== */

.plp-team-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	text-align: center;
}

.plp-team-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 24px -5px rgba(0, 0, 0, 0.15);
}

.plp-team-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 1.5rem;
}

.plp-team-name {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #111827;
}

.plp-team-role {
	color: #3b82f6;
	font-weight: 500;
	margin-bottom: 1rem;
}

.plp-team-bio {
	color: #6b7280;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* ========================================
   FORM STYLES
======================================== */

.plp-form-container {
	background: #ffffff;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.plp-form-group {
	margin-bottom: 1.5rem;
}

.plp-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #374151;
}

.plp-form-input,
.plp-form-textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 1rem;
	font-family: 'Inter', sans-serif;
	transition: all 0.3s ease;
	background: #ffffff;
}

.plp-form-input:focus,
.plp-form-textarea:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.plp-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.plp-form-button {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: #ffffff;
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	justify-content: center;
}

.plp-form-button:hover {
	background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* ========================================
   CONTACT INFO
======================================== */

.plp-contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	color: #374151;
}

.plp-contact-item i {
	width: 20px;
	color: #3b82f6;
	flex-shrink: 0;
}

/* ========================================
   MAP
======================================== */
/* Map Section */
.plp-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.plp-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.plp-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.plp-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
======================================== */

.plp-footer {
	background: #f3f4f6;
	padding: 60px 0 30px;
}

.plp-footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.plp-footer-brand h3 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #111827;
}

.plp-footer-brand i {
	color: #3b82f6;
	font-size: 1.75rem;
}

.plp-footer-brand p {
	color: #6b7280;
	line-height: 1.6;
}

.plp-footer-section h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #111827;
}

.plp-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.plp-footer-links a {
	color: #6b7280;
	transition: color 0.3s ease;
}

.plp-footer-links a:hover {
	color: #3b82f6;
}

.plp-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #d1d5db;
	color: #6b7280;
}

/* ========================================
   COOKIE POPUP
======================================== */

.plp-cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	padding: 1.5rem;
	z-index: 10000;
	max-width: 500px;
	margin: 0 auto;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

.plp-cookie-popup.plp-show {
	transform: translateY(0);
	opacity: 1;
}

.plp-cookie-content {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.plp-cookie-text {
	flex: 1;
}

.plp-cookie-text p {
	margin: 0;
	font-size: 0.875rem;
	color: #374151;
}

.plp-cookie-text a {
	color: #3b82f6;
	text-decoration: underline;
}

.plp-cookie-buttons {
	display: flex;
	gap: 0.75rem;
	flex-shrink: 0;
}

.plp-cookie-btn {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.plp-cookie-accept {
	background: #3b82f6;
	color: #ffffff;
}

.plp-cookie-accept:hover {
	background: #1d4ed8;
}

.plp-cookie-decline {
	background: #f3f4f6;
	color: #6b7280;
}

.plp-cookie-decline:hover {
	background: #e5e7eb;
	color: #374151;
}

/* ========================================
   BACK TO TOP
======================================== */

.plp-back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: #ffffff;
	border: none;
	border-radius: 50%;
	font-size: 1.25rem;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1000;
}

.plp-back-to-top.plp-show {
	opacity: 1;
	visibility: visible;
}

.plp-back-to-top:hover {
	background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
	transform: translateY(-2px);
}

/* ========================================
   READING PROGRESS
======================================== */

.plp-reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 3px;
	background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
	z-index: 9999;
	transition: width 0.3s ease;
}

/* ========================================
   ANIMATIONS
======================================== */

.plp-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.plp-fade-in.plp-visible {
	opacity: 1;
	transform: translateY(0);
}

.plp-scale-in {
	transform: scale(0.9);
	opacity: 0;
	transition: all 0.4s ease;
}

.plp-scale-in.plp-visible {
	transform: scale(1);
	opacity: 1;
}

/* ========================================
   WORKSPACE SPECIFIC STYLES
======================================== */

.plp-workspace-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.plp-workspace-item {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.plp-workspace-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 24px -5px rgba(0, 0, 0, 0.15);
}

.plp-workspace-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #9ca3af;
}

.plp-workspace-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.plp-workspace-content {
	padding: 1.5rem;
}

.plp-workspace-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: #111827;
}

.plp-workspace-description {
	color: #6b7280;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* ========================================
   HABITS SPECIFIC STYLES
======================================== */

.plp-habit-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.plp-habit-card:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #10b981, #059669);
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.plp-habit-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.15);
}

.plp-habit-card:hover:before {
	transform: scaleY(1);
}

.plp-habit-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
}

.plp-habit-title {
	font-size: 1.375rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #111827;
}

.plp-habit-description {
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.plp-habit-benefits {
	list-style: none;
	padding: 0;
}

.plp-habit-benefits li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
	color: #374151;
	font-size: 0.95rem;
}

.plp-habit-benefits li:before {
	content: '→';
	color: #10b981;
	font-weight: bold;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
	.plp-cards-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 1.5rem;
	}

	.plp-footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

@media (max-width: 992px) {
	.plp-nav {
		display: none;
	}

	.plp-mobile-menu-toggle {
		display: block;
	}
}

@media (max-width: 768px) {
	.plp-hero h1 {
		font-size: 2.5rem;
	}

	.plp-hero-subtitle {
		font-size: 1.125rem;
	}

	.plp-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.plp-section-title {
		font-size: 2rem;
	}

	.plp-cards-grid,
	.plp-cards-grid-1,
	.plp-cards-grid-4 {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.plp-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.plp-cookie-content {
		flex-direction: column;
		gap: 1rem;
	}

	.plp-cookie-buttons {
		width: 100%;
		justify-content: center;
	}

	.plp-header-cta {
		display: none;
	}
}

@media (max-width: 480px) {
	.plp-container {
		padding: 0 15px;
	}

	.plp-logo {
		font-size: 1.1rem;
	}

	.plp-hero {
		padding: 120px 0 80px;
	}

	.plp-hero h1 {
		font-size: 2rem;
	}

	.plp-section {
		padding: 60px 0;
	}

	.plp-workspace-gallery {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.plp-card,
	.plp-method-card,
	.plp-habit-card {
		padding: 1.5rem;
	}

	.plp-form-container {
		padding: 1.5rem;
	}

	.plp-method-header h2 {
		font-size: 1.5rem;
	}

	.plp-method-features li {
		flex-wrap: wrap;
	}

	.plp-habit-benefits li {
		flex-wrap: wrap;
	}
}

.plp-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 3rem;
}

.plp-contact-info {
	background: #ffffff;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.plp-contact-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.plp-contact-icon i {
	color: #fff;
}

.plp-contact-details h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #111827;
}

.plp-contact-details p {
	color: #6b7280;
	margin-bottom: 0;
	line-height: 1.6;
}

.plp-contact-form-container {
	background: #ffffff;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.plp-contact-form-container h3 {
	color: #111827;
	font-size: 1.5rem;
	font-weight: 600;
}

.plp-form-select {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 1rem;
	font-family: 'Inter', sans-serif;
	transition: all 0.3s ease;
	background: #ffffff;
	color: #374151;
	cursor: pointer;
}

.plp-form-select:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.plp-form-error {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.plp-form-error.plp-show {
	display: block;
}

/* Map Styles */
.plp-map-container {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	margin: 2rem 0;
}

.plp-mt-large {
	margin-top: 3rem;
}

.plp-cards-grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

/* FAQ Specific Styles */
.plp-cards-grid-2 .plp-card h4 {
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.plp-cards-grid-2 .plp-card p {
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

/* Contact Page Animations */

/* Contact Grid Responsive */
@media (max-width: 1024px) {
	.plp-contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.plp-cards-grid-2 {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.plp-contact-info,
	.plp-contact-form-container {
		padding: 1.5rem;
	}

	.plp-contact-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.plp-map {
		height: 300px;
	}

	.plp-cards-grid-2 {
		grid-template-columns: 1fr;
	}
}

.plp-policy-hero {
	background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
	padding: 120px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.plp-policy-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233B82F6' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='m0 40l40-40v40zm0 0v-40l40 40z'/%3E%3C/g%3E%3C/svg%3E")
		repeat;
	animation: float 20s ease-in-out infinite;
}

.plp-policy-header {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.plp-policy-header h1 {
	font-family: 'Poppins', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.plp-policy-subtitle {
	font-size: 1.3rem;
	color: #6b7280;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.plp-policy-meta {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.plp-policy-meta span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #6b7280;
	font-size: 0.95rem;
	padding: 0.75rem 1.5rem;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 50px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.plp-policy-meta i {
	color: #3b82f6;
}

/* Policy Content Section */
.plp-policy-section {
	padding: 80px 0;
	background-color: #f9fafb;
}

.plp-policy-content {
	max-width: 900px;
	margin: 0 auto;
}

.plp-policy-intro {
	text-align: center;
	margin-bottom: 4rem;
}

.plp-policy-intro p {
	font-size: 1.2rem;
	color: #4b5563;
	line-height: 1.8;
	background: #ffffff;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	border-left: 4px solid #3b82f6;
}

.plp-policy-sections {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.plp-policy-item {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid rgba(59, 130, 246, 0.1);
}

.plp-policy-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	border-color: rgba(59, 130, 246, 0.2);
}

.plp-policy-item {
	display: flex;
	align-items: flex-start;
	gap: 0;
}

.plp-policy-number {
	background: linear-gradient(135deg, #3b82f6, #1d4ed8);
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 2rem 0 0 2rem;
	border-radius: 16px;
	flex-shrink: 0;
	position: relative;
}

.plp-policy-number::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, #3b82f6, #10b981, #f59e0b);
	border-radius: 18px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.plp-policy-item:hover .plp-policy-number::before {
	opacity: 1;
}

.plp-policy-content-item {
	flex: 1;
	padding: 2rem;
}

.plp-policy-content-item h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.plp-policy-content-item p {
	color: #4b5563;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.plp-policy-content-item ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.plp-policy-content-item li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 0.75rem;
	color: #374151;
	line-height: 1.6;
}

.plp-policy-content-item li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: #10b981;
	font-weight: bold;
	font-size: 1.1rem;
}

.plp-policy-content-item li strong {
	color: #111827;
	font-weight: 600;
}

/* Policy Contacts */
.plp-policy-contacts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
	margin: 1.5rem 0;
}

.plp-policy-contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	background: #f9fafb;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
}

.plp-policy-contact-item i {
	color: #3b82f6;
	font-size: 1.1rem;
	width: 20px;
	text-align: center;
}

.plp-policy-contact-item span {
	color: #374151;
	font-size: 0.95rem;
}

.plp-policy-response-time {
	background: linear-gradient(
		135deg,
		rgba(59, 130, 246, 0.1),
		rgba(16, 185, 129, 0.1)
	);
	padding: 1rem;
	border-radius: 12px;
	border-left: 4px solid #10b981;
	margin-top: 1.5rem;
	font-size: 0.95rem;
	color: #374151;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
	.plp-policy-header h1 {
		font-size: 2.5rem;
	}

	.plp-policy-subtitle {
		font-size: 1.1rem;
	}

	.plp-policy-meta {
		gap: 1rem;
	}

	.plp-policy-meta span {
		font-size: 0.9rem;
		padding: 0.6rem 1.2rem;
	}

	.plp-policy-section {
		padding: 60px 0;
	}

	.plp-policy-item {
		flex-direction: column;
		text-align: center;
	}

	.plp-policy-number {
		align-self: center;
		margin: 1.5rem 0 0 0;
	}

	.plp-policy-content-item {
		padding: 1.5rem;
		text-align: left;
	}

	.plp-policy-contacts {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.plp-policy-contact-item {
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
	}
}

@media (max-width: 480px) {
	.plp-policy-header h1 {
		font-size: 1.5rem;
	}

	.plp-policy-subtitle {
		font-size: 1rem;
	}

	.plp-policy-intro p {
		padding: 1.5rem;
		font-size: 1rem;
	}

	.plp-policy-number {
		width: 60px;
		height: 60px;
		font-size: 1.2rem;
	}

	.plp-policy-content-item h3 {
		font-size: 1.3rem;
	}

	.plp-policy-content-item {
		padding: 1rem;
	}

	.plp-policy-content-item li {
		padding-left: 1.5rem;
		font-size: 0.95rem;
	}
}
