*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--primary: #8e7dbe;
	/* Soft purple */
	--primary-dark: #6e5d9e;
	--primary-light: #b8abd8;
	--secondary: #ffb7b2;
	/* Soft Pink */
	--bg: #f9f9fc;
	--surface: #ffffff;
	--text-main: #4a4a4a;
	--text-light: #7a7a7a;
	--shadow: 0 10px 30px rgba(142, 125, 190, 0.12);
	--shadow-hover: 0 15px 35px rgba(142, 125, 190, 0.18);
	--radius: 24px;

	--font-heading: 'Merriweather', serif;
	--font-body: 'Poppins', sans-serif;

	--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
	font-family: var(--font-body);
	background: var(--bg);
	color: var(--text-main);
	line-height: 1.7;
	margin: 0;
	overflow-x: hidden;
	position: relative;
}

/* Background Blobs */
.bg-blobs {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}

.blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.6;
	animation: float 20s infinite alternate;
}

.blob-1 {
	top: -10%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: rgba(142, 125, 190, 0.15);
}

.blob-2 {
	bottom: -10%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: rgba(255, 183, 178, 0.15);
	animation-delay: -5s;
}

@keyframes float {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(50px, 50px) scale(1.1);
	}
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	color: var(--primary);
	margin-top: 0;
}

h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

h2 {
	font-size: 2.25rem;
	margin-bottom: 3rem;
	text-align: center;
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
}

h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: var(--secondary);
	margin: 0.5rem auto 0;
	border-radius: 2px;
}

h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: #2d2d2d;
}

p {
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

/* Utilities */
.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.section {
	padding: 6rem 0;
}

.alt-bg {
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
}

/* Animations */
.fade-in-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}

.delay-100 {
	transition-delay: 0.1s;
}

.delay-200 {
	transition-delay: 0.2s;
}

.delay-300 {
	transition-delay: 0.3s;
}

/* Header */
.site-header {
	padding: 1.5rem 0;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.brand {
	font-weight: 700;
	color: var(--primary);
	font-size: 1.4rem;
	font-family: var(--font-heading);
}

.primary-nav ul {
	display: flex;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav a {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text-main);
}

.primary-nav a:hover {
	color: var(--primary);
}

/* Hero */
.hero {
	padding: 6rem 0;
	min-height: 80vh;
	display: flex;
	align-items: center;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 4rem;
	align-items: center;
}

.hero-copy .lead {
	font-size: 1.15rem;
	color: var(--text-main);
	margin-bottom: 2.5rem;
}

.hero-copy .accent {
	color: var(--primary);
	position: relative;
	display: inline-block;
}

.hero-copy .accent::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 8px;
	background: var(--secondary);
	opacity: 0.4;
	z-index: -1;
}

.hero-card {
	background: var(--surface);
	padding: 2.5rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	text-align: center;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.avatar img {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	object-fit: cover;
	border: 6px solid #f0eeff;
	margin-bottom: 1.5rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	padding: 0.9rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: var(--transition);
	margin-right: 1rem;
	font-family: var(--font-body);
}

.btn.primary {
	background: var(--primary);
	color: white;
	box-shadow: 0 4px 15px rgba(142, 125, 190, 0.4);
}

.btn.primary:hover {
	transform: translateY(-3px);
	background: var(--primary-dark);
	box-shadow: 0 6px 20px rgba(142, 125, 190, 0.6);
}

.btn.outline {
	border: 2px solid var(--primary);
	color: var(--primary);
	background: transparent;
}

.btn.outline:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-3px);
}

/* About Highlights */
.highlights {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 2rem;
}

.highlights li {
	background: white;
	padding: 0.8rem 1.5rem;
	border-radius: 50px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	font-size: 0.9rem;
	color: var(--primary);
	font-weight: 500;
	border: 1px solid rgba(142, 125, 190, 0.1);
}

/* Services */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.service {
	background: var(--surface);
	padding: 3rem 2rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	transition: var(--transition);
	border: 1px solid rgba(255, 255, 255, 0.8);
	text-align: center;
}

.service:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
}

.service h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: var(--primary);
}

/* Grid 2 Column */
.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

/* Contact Form */
.contact-form {
	max-width: 600px;
	margin: 0 auto;
	background: white;
	padding: 3rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.input-group {
	margin-bottom: 1.5rem;
}

label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--primary);
	font-size: 0.9rem;
}

input,
textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 1rem;
	margin-bottom: 1.5rem;
	border: 2px solid #eee;
	border-radius: 12px;
	font-family: inherit;
	background: #fdfdfd;
	transition: var(--transition);
}

input:focus,
textarea:focus {
	border-color: var(--primary);
	outline: none;
	background: white;
	box-shadow: 0 0 0 4px rgba(142, 125, 190, 0.1);
}

.form-actions {
	text-align: center;
}

.contact-meta {
	text-align: center;
	margin-top: 3rem;
}

.contact-meta p {
	font-size: 1.1rem;
}

.contact-meta a {
	color: var(--primary);
	font-weight: 600;
	text-decoration: underline;
}

/* Footer */
.site-footer {
	margin-top: 4rem;
	padding: 4rem 0 2rem;
	text-align: center;
	color: #888;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	background: white;
}



@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.3);
	}

	100% {
		transform: scale(1);
	}
}

/* Mobile Toggle */
.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--primary);
}

@media (max-width: 900px) {
	.hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}

	.hero-card {
		order: -1;
		width: 80%;
		margin: 0 auto;
	}

	.grid-2 {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 991px) {
	.site-header {
		padding: 1rem 0;
	}

	.nav-toggle {
		display: block;
		z-index: 2001;
		/* Above menu */
		position: relative;
	}

	.primary-nav {
		display: block;
		/* Always block but hidden by transform/opacity */
		position: fixed;
		/* Full screen fixed */
		inset: 0;
		width: 100%;
		height: 100vh;
		background: rgba(255, 255, 255, 0.98);
		padding: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		backdrop-filter: blur(15px);
		box-sizing: border-box;
		z-index: 2000;

		/* Hidden state */
		opacity: 0;
		pointer-events: none;
		transition: all 0.4s ease;
	}

	.primary-nav.show {
		opacity: 1;
		pointer-events: auto;
	}

	.primary-nav ul {
		flex-direction: column;
		gap: 2rem;
	}

	.primary-nav a {
		font-size: 1.5rem;
		display: block;
		padding: 0.5rem;
		font-weight: 300;
	}

	h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.contact-form {
		padding: 2rem 1.5rem;
	}

	.section {
		padding: 4rem 0;
	}

	.hero-grid,
	.grid-2,
	.services-grid {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.hero {
		text-align: center;
		padding: 4rem 0;
	}

	.hero-card {
		order: -1;
		margin: 0 auto 2rem;
		width: 80%;
	}
}

@media (max-width: 480px) {
	.hero-card {
		width: 100%;
		padding: 1.5rem;
	}

	.avatar img {
		width: 140px;
		height: 140px;
	}

	.btn {
		width: 100%;
		justify-content: center;
		margin: 0.5rem 0;
	}

	.highlights {
		flex-direction: column;
		align-items: center;
	}

	.highlights li {
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}
}