/*
Theme Name: Laya Lash Theme
Theme URI: https://prajulnp.in
Author: Antigravity
Author URI: https://prajulnp.in
Description: A premium, ultra-modern custom dark-purple WordPress theme for Laya Lash (Digital Marketing Trainer and Freelance Digital Marketer) featuring high-performance animations, glowing accents, flying birds, and data stream backgrounds.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: layalash-theme
*/

/* ==========================================
   1. DESIGN SYSTEM & CSS VARIABLES
   ========================================== */
:root {
	/* Palette */
	--bg-deep-purple: #1a0a2e;
	--bg-darker: #0d0518;
	--brand-violet: #4a1a8a;
	--brand-violet-glow: rgba(74, 26, 138, 0.4);
	--accent-orange: #ff8c00;
	--accent-orange-glow: rgba(255, 140, 0, 0.4);
	--highlight-pink: #ff6b9d;
	--highlight-pink-glow: rgba(255, 107, 157, 0.4);
	--glow-cyan: #00d4ff;
	--glow-cyan-glow: rgba(0, 212, 255, 0.4);
	
	/* Neutral Texts */
	--text-light: #f3f0f7;
	--text-muted: #a69cb5;
	
	/* Typography */
	--font-headings: 'Outfit', sans-serif;
	--font-body: 'Inter', sans-serif;
	
	/* Transitions */
	--transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-quick: all 0.2s ease-in-out;
}

/* ==========================================
   2. RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	overflow-x: hidden;
}

body {
	background-color: var(--bg-deep-purple);
	color: var(--text-light);
	font-family: var(--font-body);
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
}

/* Glow gradient overlays */
body::before {
	content: '';
	position: absolute;
	top: 10%;
	left: -20%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, var(--brand-violet-glow) 0%, transparent 70%);
	z-index: -2;
	pointer-events: none;
}

body::after {
	content: '';
	position: absolute;
	bottom: 15%;
	right: -20%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, var(--glow-cyan-glow) 0%, transparent 70%);
	z-index: -2;
	pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-headings);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

a {
	color: var(--text-light);
	text-decoration: none;
	transition: var(--transition-quick);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ==========================================
   3. TYPOGRAPHY & UTILITIES
   ========================================== */
.text-gradient-cyan-pink {
	background: linear-gradient(135deg, var(--glow-cyan) 0%, var(--highlight-pink) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-gradient-violet-orange {
	background: linear-gradient(135deg, var(--brand-violet) 0%, var(--accent-orange) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.glow-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 2rem;
	font-family: var(--font-headings);
	font-weight: 600;
	border-radius: 50px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	cursor: pointer;
}

.glow-btn-primary {
	background: linear-gradient(135deg, var(--brand-violet) 0%, var(--highlight-pink) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 15px var(--brand-violet-glow);
}

.glow-btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--highlight-pink) 0%, var(--accent-orange) 100%);
	opacity: 0;
	z-index: -1;
	transition: var(--transition-smooth);
}

.glow-btn-primary:hover::before {
	opacity: 1;
}

.glow-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(255, 107, 157, 0.4);
}

.glow-btn-secondary {
	background: transparent;
	border: 2px solid var(--glow-cyan);
	box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.glow-btn-secondary:hover {
	background: var(--glow-cyan);
	color: var(--bg-darker);
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 212, 255, 0.5);
}

/* Glassmorphism elements */
.glass-panel {
	background: rgba(26, 10, 46, 0.55);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
}

/* Container */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* ==========================================
   4. NAVIGATION HEADER
   ========================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: var(--transition-smooth);
	padding: 1.5rem 0;
}

.site-header.scrolled {
	padding: 0.8rem 0;
	background: rgba(13, 5, 24, 0.85);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-logo a {
	font-family: var(--font-headings);
	font-weight: 800;
	font-size: 1.6rem;
	letter-spacing: -0.5px;
}

.site-logo span {
	font-size: 1.8rem;
	margin-left: 2px;
}

.main-navigation ul {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

.main-navigation a {
	font-family: var(--font-headings);
	font-weight: 500;
	font-size: 1rem;
	position: relative;
	color: var(--text-muted);
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--glow-cyan);
	transition: var(--transition-quick);
	box-shadow: 0 0 8px var(--glow-cyan);
}

.main-navigation a:hover,
.main-navigation .active a {
	color: var(--text-light);
}

.main-navigation a:hover::after,
.main-navigation .active a::after {
	width: 100%;
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--text-light);
	font-size: 1.5rem;
	cursor: pointer;
}

/* ==========================================
   5. BACKGROUND CANVAS & ELEMENTS
   ========================================== */
#particles-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	pointer-events: none;
}

.grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(26, 10, 46, 0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(26, 10, 46, 0.1) 1px, transparent 1px);
	background-size: 50px 50px;
	z-index: 0;
	pointer-events: none;
}

/* ==========================================
   6. HERO SECTION & FLYING BIRDS
   ========================================== */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 100px;
	overflow: hidden;
}

.hero-parallax-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	pointer-events: none;
	z-index: 0;
	will-change: transform;
}

.hero-glow-sphere {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.15;
}

.sphere-1 {
	top: 20%;
	left: 10%;
	width: 400px;
	height: 400px;
	background: var(--brand-violet);
}

.sphere-2 {
	bottom: 10%;
	right: 15%;
	width: 500px;
	height: 500px;
	background: var(--glow-cyan);
}

.hero-container {
	position: relative;
	z-index: 10;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.hero-tag {
	font-family: var(--font-headings);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--accent-orange);
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	display: inline-block;
	background: rgba(255, 140, 0, 0.1);
	padding: 0.4rem 1.2rem;
	border-radius: 20px;
	border: 1px solid rgba(255, 140, 0, 0.2);
}

.hero-title {
	font-size: 3.8rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -1px;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: var(--text-muted);
	margin-bottom: 2.5rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.hero-actions {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
}

/* ANIMATED FLYING BIRDS LAYER */
.birds-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 2;
	overflow: hidden;
}

.bird-container {
	position: absolute;
	top: 20%;
	left: -10%;
	transform: scale(0);
	will-change: transform;
}

/* Flying path animations */
.bird-container-1 {
	animation: fly-right-1 30s linear infinite;
	animation-delay: 0s;
}

.bird-container-2 {
	animation: fly-right-2 25s linear infinite;
	animation-delay: 7s;
}

.bird-container-3 {
	animation: fly-right-3 35s linear infinite;
	animation-delay: 15s;
}

.bird {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26' fill='%2300d4ff'%3E%3Cpath d='M13,2C9,6,3,10,0,10c3,1,7,0,10-2c1,1,2,2,3,4c1-2,2-3,3-4c3,2,7,3,10,2C23,10,17,6,13,2z'/%3E%3C/svg%3E");
	background-size: contain;
	width: 32px;
	height: 32px;
	animation: flap 0.6s ease-in-out infinite alternate;
	transform-origin: center;
}

.bird-container-2 .bird {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26' fill='%23ff6b9d'%3E%3Cpath d='M13,2C9,6,3,10,0,10c3,1,7,0,10-2c1,1,2,2,3,4c1-2,2-3,3-4c3,2,7,3,10,2C23,10,17,6,13,2z'/%3E%3C/svg%3E");
	width: 24px;
	height: 24px;
	animation-duration: 0.45s;
}

.bird-container-3 .bird {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26' fill='%23ff8c00'%3E%3Cpath d='M13,2C9,6,3,10,0,10c3,1,7,0,10-2c1,1,2,2,3,4c1-2,2-3,3-4c3,2,7,3,10,2C23,10,17,6,13,2z'/%3E%3C/svg%3E");
	width: 40px;
	height: 40px;
	animation-duration: 0.75s;
}

@keyframes flap {
	0% {
		transform: scaleY(1) rotate(5deg);
	}
	100% {
		transform: scaleY(-0.3) rotate(-15deg);
	}
}

@keyframes fly-right-1 {
	0% {
		left: -10%;
		top: 25%;
		transform: scale(0.6) translateY(0);
	}
	50% {
		top: 20%;
		transform: scale(0.6) translateY(-40px);
	}
	100% {
		left: 110%;
		top: 15%;
		transform: scale(0.6) translateY(0);
	}
}

@keyframes fly-right-2 {
	0% {
		left: -10%;
		top: 45%;
		transform: scale(0.4) translateY(0);
	}
	50% {
		top: 50%;
		transform: scale(0.4) translateY(30px);
	}
	100% {
		left: 110%;
		top: 35%;
		transform: scale(0.4) translateY(0);
	}
}

@keyframes fly-right-3 {
	0% {
		left: -10%;
		top: 15%;
		transform: scale(0.8) translateY(0);
	}
	50% {
		top: 25%;
		transform: scale(0.8) translateY(50px);
	}
	100% {
		left: 110%;
		top: 20%;
		transform: scale(0.8) translateY(0);
	}
}

/* FLOATING MARKETING ICONS */
.floating-icons-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.floating-icon {
	position: absolute;
	color: var(--brand-violet);
	opacity: 0.25;
	font-size: 1.8rem;
	will-change: transform;
}

.icon-1 {
	top: 15%;
	left: 15%;
	color: var(--glow-cyan);
	animation: float-slow-1 20s ease-in-out infinite alternate;
}

.icon-2 {
	top: 40%;
	right: 12%;
	color: var(--highlight-pink);
	animation: float-slow-2 25s ease-in-out infinite alternate;
}

.icon-3 {
	bottom: 25%;
	left: 20%;
	color: var(--accent-orange);
	animation: float-slow-3 22s ease-in-out infinite alternate;
}

.icon-4 {
	top: 60%;
	left: 8%;
	font-size: 1.4rem;
	animation: float-slow-2 18s ease-in-out infinite alternate;
}

.icon-5 {
	bottom: 15%;
	right: 25%;
	font-size: 2.2rem;
	color: var(--brand-violet);
	animation: float-slow-1 30s ease-in-out infinite alternate;
}

@keyframes float-slow-1 {
	0% {
		transform: translateY(0) rotate(0deg) scale(1);
	}
	50% {
		transform: translateY(-25px) rotate(45deg) scale(1.05);
	}
	100% {
		transform: translateY(-50px) rotate(90deg) scale(1);
	}
}

@keyframes float-slow-2 {
	0% {
		transform: translateY(0) rotate(0deg) scale(1);
	}
	50% {
		transform: translateY(30px) rotate(-35deg) scale(0.95);
	}
	100% {
		transform: translateY(-10px) rotate(-70deg) scale(1);
	}
}

@keyframes float-slow-3 {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}
	50% {
		transform: translate(-30px, -20px) rotate(20deg);
	}
	100% {
		transform: translate(15px, -40px) rotate(40deg);
	}
}

/* ==========================================
   7. SECTIONS GENERAL & CINEMATIC TRANSITIONS
   ========================================== */
.section {
	padding: 7.5rem 0;
	position: relative;
	z-index: 10;
}

.section-dark {
	background: var(--bg-darker);
}

.section-header {
	text-align: center;
	margin-bottom: 4.5rem;
}

.section-tag {
	font-family: var(--font-headings);
	font-weight: 700;
	color: var(--glow-cyan);
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 2px;
	margin-bottom: 0.6rem;
	display: block;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1.2rem;
}

.section-desc {
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto;
	font-size: 1.05rem;
}

/* Cinematic Reveal System */
.reveal-element {
	opacity: 0;
	transform: translateY(40px) scale(0.96);
	filter: blur(6px);
	transition: 
		opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
		filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: transform, opacity, filter;
}

.reveal-element.revealed {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ==========================================
   8. ABOUT ME SECTION & STATS
   ========================================== */
.about-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 4rem;
	align-items: center;
}

.about-text h3 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

.about-text p {
	color: var(--text-muted);
	margin-bottom: 1.5rem;
	font-size: 1.05rem;
}

.highlight-box {
	border-left: 3px solid var(--highlight-pink);
	padding-left: 1.2rem;
	font-style: italic;
	color: var(--text-light);
	font-weight: 500;
	margin: 2rem 0;
}

.about-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.8rem;
}

.stat-card {
	padding: 2.2rem 1.8rem;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	transition: var(--transition-smooth);
	overflow: hidden;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
	pointer-events: none;
	opacity: 0;
	transition: var(--transition-smooth);
}

.stat-card:hover::before {
	opacity: 1;
}

.stat-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 212, 255, 0.3);
	box-shadow: 0 12px 30px rgba(0, 212, 255, 0.15);
}

.stat-card-pink:hover {
	border-color: rgba(255, 107, 157, 0.3);
	box-shadow: 0 12px 30px rgba(255, 107, 157, 0.15);
}

.stat-card-pink::before {
	background: radial-gradient(circle, rgba(255, 107, 157, 0.08) 0%, transparent 60%);
}

.stat-number {
	font-size: 3rem;
	font-family: var(--font-headings);
	font-weight: 800;
	margin-bottom: 0.4rem;
	line-height: 1;
}

.stat-number.cyan-text {
	color: var(--glow-cyan);
	text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.stat-number.pink-text {
	color: var(--highlight-pink);
	text-shadow: 0 0 10px rgba(255, 107, 157, 0.3);
}

.stat-number.orange-text {
	color: var(--accent-orange);
	text-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.stat-label {
	font-family: var(--font-headings);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ==========================================
   9. SERVICES SECTION
   ========================================== */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.2rem;
}

.service-card {
	padding: 3rem 2rem;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.04);
	transition: var(--transition-smooth);
	z-index: 1;
	overflow: hidden;
}

.service-icon-wrap {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	font-size: 1.6rem;
	margin-bottom: 2rem;
	position: relative;
}

.icon-cyan {
	background: rgba(0, 212, 255, 0.1);
	color: var(--glow-cyan);
	border: 1px solid rgba(0, 212, 255, 0.2);
}

.icon-pink {
	background: rgba(255, 107, 157, 0.1);
	color: var(--highlight-pink);
	border: 1px solid rgba(255, 107, 157, 0.2);
}

.icon-orange {
	background: rgba(255, 140, 0, 0.1);
	color: var(--accent-orange);
	border: 1px solid rgba(255, 140, 0, 0.2);
}

.service-card h3 {
	font-size: 1.4rem;
	margin-bottom: 1.2rem;
	font-weight: 600;
}

.service-card p {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 255, 255, 0.1);
}

.service-card-cyan:hover {
	box-shadow: 0 15px 35px rgba(0, 212, 255, 0.12), inset 0 0 15px rgba(0, 212, 255, 0.05);
	border-color: rgba(0, 212, 255, 0.25);
}

.service-card-pink:hover {
	box-shadow: 0 15px 35px rgba(255, 107, 157, 0.12), inset 0 0 15px rgba(255, 107, 157, 0.05);
	border-color: rgba(255, 107, 157, 0.25);
}

.service-card-orange:hover {
	box-shadow: 0 15px 35px rgba(255, 140, 0, 0.12), inset 0 0 15px rgba(255, 140, 0, 0.05);
	border-color: rgba(255, 140, 0, 0.25);
}

/* ==========================================
   10. PORTFOLIO SECTION
   ========================================== */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: 2.2rem;
}

.portfolio-item {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	height: 380px;
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: var(--transition-smooth);
	z-index: 1;
}

/* Default color-block visual fallback backgrounds */
.portfolio-bg-1 {
	background: linear-gradient(135deg, var(--bg-deep-purple) 0%, var(--brand-violet) 100%);
}
.portfolio-bg-2 {
	background: linear-gradient(135deg, var(--bg-deep-purple) 0%, var(--highlight-pink) 100%);
}
.portfolio-bg-3 {
	background: linear-gradient(135deg, var(--bg-deep-purple) 0%, var(--accent-orange) 100%);
}

.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(13, 5, 24, 0.95) 15%, rgba(13, 5, 24, 0.4) 60%, transparent 100%);
	z-index: 2;
	transition: var(--transition-smooth);
}

.portfolio-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 2.2rem;
	z-index: 3;
	transition: var(--transition-smooth);
}

.portfolio-cat {
	font-family: var(--font-headings);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--glow-cyan);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
	display: block;
}

.portfolio-item h3 {
	font-size: 1.5rem;
	margin-bottom: 0.8rem;
	line-height: 1.3;
}

.portfolio-desc {
	font-size: 0.95rem;
	color: var(--text-muted);
	opacity: 0;
	height: 0;
	overflow: hidden;
	transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-bg {
	transform: scale(1.08);
}

.portfolio-item:hover .portfolio-desc {
	opacity: 1;
	height: auto;
	margin-top: 0.8rem;
}

.portfolio-item:hover .portfolio-content {
	transform: translateY(-5px);
}

/* ==========================================
   11. TESTIMONIALS SECTION
   ========================================== */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.2rem;
}

.testimonial-card {
	padding: 2.5rem;
	position: relative;
	border-radius: 16px;
	transition: var(--transition-smooth);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.quote-icon {
	position: absolute;
	top: 2rem;
	right: 2rem;
	font-size: 2.5rem;
	color: var(--brand-violet);
	opacity: 0.25;
}

.testimonial-content {
	font-style: italic;
	font-size: 1.05rem;
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--brand-violet);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-headings);
	font-weight: 700;
	color: var(--glow-cyan);
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.author-info h4 {
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 0.2rem;
}

.author-info p {
	font-size: 0.85rem;
	color: var(--text-muted);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 107, 157, 0.25);
	box-shadow: 0 15px 35px rgba(255, 107, 157, 0.08);
}

/* ==========================================
   12. CONTACT SECTION & FOOTER
   ========================================== */
.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 4.5rem;
}

.contact-info h3 {
	font-size: 1.8rem;
	margin-bottom: 1.2rem;
}

.contact-info p {
	color: var(--text-muted);
	margin-bottom: 2.5rem;
	font-size: 1.05rem;
}

.contact-details {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
	margin-bottom: 3rem;
}

.contact-details li {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.contact-icon {
	width: 48px;
	height: 48px;
	background: rgba(0, 212, 255, 0.05);
	border: 1px solid rgba(0, 212, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--glow-cyan);
	font-size: 1.1rem;
	flex-shrink: 0;
}

.contact-details h5 {
	font-size: 0.85rem;
	color: var(--text-muted);
	text-transform: uppercase;
	margin-bottom: 0.2rem;
}

.contact-details a, .contact-details span {
	font-size: 1.05rem;
	font-weight: 500;
}

.contact-details a:hover {
	color: var(--glow-cyan);
}

.social-links {
	display: flex;
	gap: 1.2rem;
}

.social-btn {
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: 1.1rem;
	transition: var(--transition-smooth);
}

.social-btn:hover {
	background: var(--brand-violet);
	color: var(--text-light);
	border-color: var(--highlight-pink);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px var(--brand-violet-glow);
}

/* Form Styling */
.contact-form {
	padding: 3rem;
	border-radius: 20px;
}

.form-group-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.8rem;
	margin-bottom: 1.8rem;
}

.form-group {
	margin-bottom: 1.8rem;
}

.form-group label {
	display: block;
	font-family: var(--font-headings);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-light);
	margin-bottom: 0.6rem;
}

.form-control {
	width: 100%;
	background: rgba(13, 5, 24, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 0.9rem 1.2rem;
	color: var(--text-light);
	font-family: var(--font-body);
	font-size: 0.95rem;
	transition: var(--transition-smooth);
}

.form-control:focus {
	outline: none;
	border-color: var(--glow-cyan);
	background: rgba(13, 5, 24, 0.85);
	box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

textarea.form-control {
	resize: vertical;
	min-height: 150px;
}

/* Footer Section */
.site-footer {
	background: var(--bg-darker);
	padding: 3rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.03);
	text-align: center;
	position: relative;
	z-index: 10;
}

.footer-logo {
	font-family: var(--font-headings);
	font-weight: 800;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.footer-nav {
	margin-bottom: 2rem;
}

.footer-nav ul {
	display: flex;
	justify-content: center;
	list-style: none;
	gap: 2rem;
}

.footer-nav a {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.footer-nav a:hover {
	color: var(--glow-cyan);
}

.copyright {
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* ==========================================
   13. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 991px) {
	.hero-title {
		font-size: 3rem;
	}
	
	.about-grid, .contact-grid {
		grid-template-columns: 1fr;
		gap: 3.5rem;
	}
	
	.about-text {
		order: 1;
	}
	
	.about-stats {
		order: 2;
	}
}

@media (max-width: 768px) {
	.main-navigation {
		display: none; /* Can implement mobile toggle dynamically if needed */
	}
	
	.mobile-menu-toggle {
		display: block;
	}
	
	.hero-title {
		font-size: 2.4rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.hero-actions {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}
	
	.hero-actions .glow-btn {
		width: 100%;
		max-width: 300px;
	}
	
	.form-group-row {
		grid-template-columns: 1fr;
		gap: 1.8rem;
	}
	
	.section {
		padding: 5rem 0;
	}
	
	.contact-form {
		padding: 2rem 1.5rem;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}
	
	.about-stats {
		grid-template-columns: 1fr;
	}
	
	.footer-nav ul {
		flex-direction: column;
		gap: 1rem;
	}
}
