/* ============================================
   MINIMAL PASTEL PORTFOLIO - STYLES
   ============================================ */

/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

/* ============================================
   CSS VARIABLES - PASTEL THEME
   ============================================ */
:root {
	/* Pastel Colors */
	--pastel-mint: #b8e8d2;
	--pastel-peach: #ffdab3;
	--pastel-lavender: #d4c4fb;
	--pastel-sky: #b5d8f7;
	--pastel-rose: #f7d1d5;
	--pastel-cream: #fff8e7;

	/* Accent Colors */
	--accent-primary: #7c9eb2;
	--accent-secondary: #9b8aa3;
	--accent-warm: #c4a484;

	/* Neutrals */
	--bg-light: #fafbfc;
	--bg-white: #ffffff;
	--bg-card: #ffffff;
	--text-dark: #2d3436;
	--text-medium: #636e72;
	--text-light: #b2bec3;

	/* Borders */
	--border-light: #e8ecef;
	--border-soft: rgba(0, 0, 0, 0.06);

	/* Shadows */
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);

	/* Spacing */
	--section-padding: 100px 0;
	--container-width: 1100px;
}

body {
	font-family:
		"Inter",
		-apple-system,
		BlinkMacSystemFont,
		sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--bg-light);
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 1000;
	border-bottom: 1px solid var(--border-soft);
}

.nav-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 64px;
}

.nav-logo .logo-text {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--accent-primary);
	letter-spacing: -0.02em;
}

.nav-menu {
	display: flex;
	gap: 2.5rem;
}

.nav-link {
	color: var(--text-medium);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	transition: color 0.2s ease;
}

.nav-link:hover {
	color: var(--text-dark);
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.bar {
	width: 22px;
	height: 2px;
	background-color: var(--text-dark);
	transition: 0.3s;
	border-radius: 2px;
}

/* ============================================
   HERO SECTION - REDESIGNED
   ============================================ */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	background: linear-gradient(
		135deg,
		var(--bg-white) 0%,
		var(--pastel-cream) 50%,
		var(--bg-light) 100%
	);
	padding-top: 64px;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 80%;
	height: 150%;
	background: radial-gradient(
		ellipse,
		var(--pastel-mint) 0%,
		transparent 70%
	);
	opacity: 0.4;
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 60%;
	height: 100%;
	background: radial-gradient(
		ellipse,
		var(--pastel-lavender) 0%,
		transparent 70%
	);
	opacity: 0.3;
	pointer-events: none;
}

.hero-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 40px 24px;
	width: 100%;
	position: relative;
	z-index: 1;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-content {
	text-align: left;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: var(--bg-white);
	border-radius: 24px;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--text-medium);
	border: 1px solid var(--border-light);
}

.decade-badge {
	background: linear-gradient(
		135deg,
		var(--pastel-lavender) 0%,
		#e6dff9 100%
	);
	color: #7b6b9e;
	border-color: #c8b8e8;
	font-weight: 600;
}

.decade-badge i {
	color: #8b7aaf;
}

.badge-dot {
	width: 8px;
	height: 8px;
	background: #4caf50;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.1);
	}
}

.hero-title {
	font-size: 3.2rem;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.15;
	margin-bottom: 20px;
	letter-spacing: -0.03em;
}

.hero-highlight {
	position: relative;
	color: #6ba8c2;
}

.hero-highlight::after {
	content: "";
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 100%;
	height: 8px;
	background: var(--pastel-mint);
	z-index: -1;
	border-radius: 4px;
}

.hero-description {
	font-size: 1.15rem;
	color: var(--text-medium);
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 480px;
}

.hero-cta {
	display: flex;
	gap: 16px;
	margin-bottom: 48px;
}

.hero-cta .btn-primary {
	padding: 16px 28px;
}

.hero-cta .btn-primary i {
	transition: transform 0.2s ease;
}

.hero-cta .btn-primary:hover i {
	transform: translateX(4px);
}

.hero-stats {
	display: flex;
	gap: 40px;
}

.hero-stat {
	display: flex;
	flex-direction: column;
}

.hero-stat .stat-number {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1;
}

.hero-stat .stat-label {
	font-size: 0.85rem;
	color: var(--text-light);
	margin-top: 4px;
}

/* Hero Visual - Right Side */
.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 500px;
}

.hero-card-stack {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-profile-card {
	position: relative;
	background: var(--bg-white);
	border-radius: 24px;
	padding: 32px;
	box-shadow: var(--shadow-lg);
	text-align: center;
	max-width: 320px;
	margin: 0 auto;
	border: 1px solid var(--border-light);
	z-index: 2;
}

.hero-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid var(--pastel-mint);
	margin-bottom: 16px;
}

.profile-info h2 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 4px;
}

.profile-info p {
	font-size: 0.9rem;
	color: var(--text-medium);
}

/* Floating Cards */
.floating-card {
	position: absolute;
	background: var(--bg-white);
	border-radius: 14px;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-light);
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--text-dark);
	z-index: 3;
	animation: float 4s ease-in-out infinite;
}

.floating-card i {
	font-size: 1rem;
}

.floating-card.card-1 {
	top: -10px;
	left: -20px;
	background: linear-gradient(135deg, var(--pastel-mint) 0%, #d4f0e4 100%);
	animation-delay: 0s;
}

.floating-card.card-2 {
	top: 30px;
	right: -30px;
	background: linear-gradient(
		135deg,
		var(--pastel-lavender) 0%,
		#e6dff9 100%
	);
	animation-delay: 1s;
}

.floating-card.card-3 {
	bottom: 30px;
	left: -30px;
	background: linear-gradient(135deg, var(--pastel-sky) 0%, #d0e8f7 100%);
	animation-delay: 2s;
}

.floating-card.card-4 {
	bottom: -10px;
	right: -20px;
	background: linear-gradient(135deg, var(--pastel-peach) 0%, #ffe8d4 100%);
	animation-delay: 3s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
}

.scroll-line {
	width: 2px;
	height: 40px;
	background: linear-gradient(to bottom, var(--accent-primary), transparent);
	border-radius: 2px;
	animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
	0%,
	100% {
		opacity: 0.3;
		height: 40px;
	}
	50% {
		opacity: 1;
		height: 50px;
	}
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
	padding: 14px 28px;
	border: none;
	border-radius: 8px;
	font-weight: 500;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-primary {
	background: var(--accent-primary);
	color: white;
}

.btn-primary:hover {
	background: #6a8a9d;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-secondary {
	background: var(--bg-white);
	color: var(--text-dark);
	border: 1px solid var(--border-light);
}

.btn-secondary:hover {
	background: var(--bg-light);
	transform: translateY(-2px);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-dark);
	text-align: center;
	margin-bottom: 48px;
	letter-spacing: -0.02em;
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */
.expertise {
	padding: var(--section-padding);
	background: var(--bg-white);
}

.expertise-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.expertise-card {
	background: var(--bg-light);
	padding: 32px 24px;
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.expertise-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--border-light);
}

.expertise-card:nth-child(1) {
	background: linear-gradient(
		135deg,
		var(--pastel-mint) 0%,
		rgba(184, 232, 210, 0.3) 100%
	);
}
.expertise-card:nth-child(2) {
	background: linear-gradient(
		135deg,
		var(--pastel-lavender) 0%,
		rgba(212, 196, 251, 0.3) 100%
	);
}
.expertise-card:nth-child(3) {
	background: linear-gradient(
		135deg,
		var(--pastel-peach) 0%,
		rgba(255, 218, 179, 0.3) 100%
	);
}
.expertise-card:nth-child(4) {
	background: linear-gradient(
		135deg,
		var(--pastel-sky) 0%,
		rgba(181, 216, 247, 0.3) 100%
	);
}

.expertise-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 14px;
}

.expertise-icon i {
	font-size: 1.5rem;
	color: var(--accent-primary);
}

.expertise-card h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.expertise-card p {
	font-size: 0.9rem;
	color: var(--text-medium);
	line-height: 1.6;
	margin-bottom: 16px;
}

.expertise-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
}

.expertise-tags span {
	font-size: 0.75rem;
	padding: 4px 10px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 12px;
	color: var(--text-medium);
	font-weight: 500;
}

/* ============================================
   TECH STACK SECTION
   ============================================ */
.tech-stack {
	padding: 80px 0;
	background: var(--bg-light);
}

.stack-categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}

.stack-category {
	text-align: center;
}

.stack-category h4 {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-light);
	margin-bottom: 12px;
	font-weight: 600;
}

.stack-items {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	max-width: 200px;
}

.stack-items span {
	font-size: 0.8rem;
	padding: 6px 12px;
	background: var(--bg-white);
	border-radius: 20px;
	color: var(--text-medium);
	font-weight: 500;
	border: 1px solid var(--border-light);
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects {
	padding: var(--section-padding);
	background: var(--bg-white);
}

.project-filters {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 10px 20px;
	border: 1px solid var(--border-light);
	background: var(--bg-white);
	border-radius: 24px;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--text-medium);
	cursor: pointer;
	transition: all 0.2s ease;
}

.filter-btn:hover {
	border-color: var(--accent-primary);
	color: var(--accent-primary);
}

.filter-btn.active {
	background: var(--accent-primary);
	border-color: var(--accent-primary);
	color: white;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.project-card {
	background: var(--bg-light);
	padding: 28px;
	border-radius: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.project-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--border-light);
}

.project-card.hidden {
	display: none;
}

.project-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-white);
	border-radius: 12px;
	margin-bottom: 16px;
}

.project-icon i {
	font-size: 1.25rem;
	color: var(--accent-primary);
}

/* Project card color variations */
.project-card[data-category="firmware"] .project-icon {
	background: var(--pastel-mint);
}
.project-card[data-category="webapp"] .project-icon {
	background: var(--pastel-sky);
}
.project-card[data-category="desktop"] .project-icon {
	background: var(--pastel-lavender);
}
.project-card[data-category="ai"] .project-icon {
	background: var(--pastel-peach);
}

.project-card h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 8px;
}

.project-card p {
	font-size: 0.85rem;
	color: var(--text-medium);
	margin-bottom: 16px;
	line-height: 1.5;
}

.project-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.project-tags span {
	font-size: 0.7rem;
	padding: 4px 8px;
	background: var(--bg-white);
	border-radius: 10px;
	color: var(--text-medium);
	font-weight: 500;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
	padding: var(--section-padding);
	background: var(--bg-light);
}

.contact-subtitle {
	text-align: center;
	color: var(--text-medium);
	margin-top: -32px;
	margin-bottom: 48px;
	font-size: 1.05rem;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 48px;
	max-width: 900px;
	margin: 0 auto;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-top: 20px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.contact-item i {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-white);
	border-radius: 12px;
	color: var(--accent-primary);
	font-size: 1rem;
}

.contact-item a,
.contact-item span {
	color: var(--text-medium);
	text-decoration: none;
	font-size: 0.95rem;
}

.contact-item a:hover {
	color: var(--accent-primary);
}

.contact-form {
	background: var(--bg-white);
	padding: 32px;
	border-radius: 16px;
	box-shadow: var(--shadow-sm);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--border-light);
	border-radius: 10px;
	font-size: 0.95rem;
	font-family: inherit;
	transition: border-color 0.2s ease;
	background: var(--bg-light);
}

.contact-form input {
	margin-bottom: 16px;
}

.contact-form textarea {
	resize: vertical;
	min-height: 120px;
	margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--accent-primary);
	background: var(--bg-white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: var(--text-light);
}

.contact-form .btn {
	width: 100%;
	justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
	padding: 32px 0;
	background: var(--bg-white);
	border-top: 1px solid var(--border-light);
}

.footer p {
	text-align: center;
	color: var(--text-light);
	font-size: 0.85rem;
}

/* ============================================
   PROJECT MODAL
   ============================================ */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.modal.active {
	display: flex;
}

.modal-content {
	background: var(--bg-white);
	border-radius: 20px;
	max-width: 600px;
	width: 100%;
	max-height: 85vh;
	overflow-y: auto;
	position: relative;
	animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border: none;
	background: var(--bg-light);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-medium);
	transition: all 0.2s ease;
	z-index: 10;
}

.modal-close:hover {
	background: var(--border-light);
	color: var(--text-dark);
}

.modal-body {
	padding: 40px;
}

.modal-header {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 24px;
}

.modal-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--pastel-mint);
	border-radius: 16px;
	flex-shrink: 0;
}

.modal-icon i {
	font-size: 1.5rem;
	color: var(--accent-primary);
}

.modal-header-text h2 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 4px;
}

.modal-header-text p {
	color: var(--text-medium);
	font-size: 0.9rem;
}

.modal-section {
	margin-bottom: 24px;
}

.modal-section h4 {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-light);
	margin-bottom: 12px;
	font-weight: 600;
}

.modal-section p {
	color: var(--text-medium);
	line-height: 1.7;
	font-size: 0.95rem;
}

.modal-section ul {
	list-style: none;
	padding: 0;
}

.modal-section ul li {
	color: var(--text-medium);
	font-size: 0.9rem;
	padding: 6px 0;
	padding-left: 20px;
	position: relative;
}

.modal-section ul li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--accent-primary);
}

.modal-tech {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.modal-tech span {
	font-size: 0.8rem;
	padding: 6px 14px;
	background: var(--bg-light);
	border-radius: 20px;
	color: var(--text-medium);
	font-weight: 500;
}

/* ============================================
   NOTIFICATION
   ============================================ */
.notification {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%) translateY(100px);
	background: var(--text-dark);
	color: white;
	padding: 14px 28px;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 500;
	z-index: 3000;
	opacity: 0;
	transition: all 0.3s ease;
}

.notification.show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

.notification.success {
	background: #4caf50;
}

.notification.error {
	background: #f44336;
}

/* ============================================
   LINKEDIN SECTION
   ============================================ */
.linkedin-section {
	padding: 80px 0;
	background: var(--bg-white);
}

.linkedin-card {
	background: linear-gradient(
		135deg,
		var(--bg-light) 0%,
		var(--bg-white) 100%
	);
	border-radius: 20px;
	padding: 32px;
	box-shadow: var(--shadow-md);
	max-width: 900px;
	margin: 0 auto;
	border: 1px solid var(--border-light);
	position: relative;
	overflow: hidden;
}

.linkedin-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #0077b5 0%, #00a0dc 100%);
}

.linkedin-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.linkedin-logo {
	width: 36px;
	height: 36px;
	background: #0077b5;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
}

.linkedin-header h3 {
	color: var(--text-dark);
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0;
}

.linkedin-profile {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	margin-bottom: 24px;
}

.linkedin-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	flex-shrink: 0;
	overflow: hidden;
	border: 3px solid #0077b5;
}

.linkedin-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.linkedin-info {
	flex: 1;
}

.linkedin-info h2 {
	color: var(--text-dark);
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0 0 4px 0;
}

.linkedin-headline {
	color: var(--text-medium);
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0 0 16px 0;
}

.linkedin-stats {
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.linkedin-stat {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: var(--bg-white);
	border-radius: 10px;
	border: 1px solid var(--border-light);
}

.linkedin-stat i {
	font-size: 16px;
	color: #0077b5;
}

.linkedin-stat .stat-number {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1;
}

.linkedin-stat .stat-label {
	display: block;
	font-size: 0.7rem;
	color: var(--text-medium);
	margin-top: 2px;
}

.linkedin-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #0077b5;
	color: white;
	padding: 10px 20px;
	border-radius: 20px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.2s ease;
}

.linkedin-btn:hover {
	background: #005885;
	transform: translateY(-2px);
}

.linkedin-topics {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 20px;
	border-top: 1px solid var(--border-light);
}

.topic-tag {
	background: rgba(0, 119, 181, 0.08);
	color: #0077b5;
	padding: 6px 14px;
	border-radius: 16px;
	font-size: 0.8rem;
	font-weight: 500;
	border: 1px solid rgba(0, 119, 181, 0.15);
	transition: all 0.2s ease;
}

.topic-tag:hover {
	background: rgba(0, 119, 181, 0.12);
	transform: translateY(-2px);
}

/* ============================================
   MEETING BOOKING SECTION
   ============================================ */
.meeting-section {
	padding: 80px 0;
	background: var(--bg-light);
}

.meeting-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	max-width: 900px;
	margin: 0 auto;
}

.meeting-card {
	background: var(--bg-white);
	border-radius: 20px;
	padding: 32px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-light);
}

.meeting-icon {
	width: 60px;
	height: 60px;
	background: var(--pastel-mint);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.meeting-icon i {
	font-size: 1.5rem;
	color: var(--accent-primary);
}

.meeting-card h3 {
	color: var(--text-dark);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.meeting-card > p {
	color: var(--text-medium);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 16px;
}

.meeting-topics {
	list-style: none;
	margin: 0 0 24px 0;
	padding: 0;
}

.meeting-topics li {
	color: var(--text-medium);
	font-size: 0.9rem;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.meeting-topics li i {
	color: var(--accent-primary);
	font-size: 14px;
}

.meeting-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--accent-primary);
	color: white;
	padding: 14px 28px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.2s ease;
	width: 100%;
	justify-content: center;
}

.meeting-btn:hover {
	background: #6a8a9d;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.calendar-card {
	background: linear-gradient(
		135deg,
		var(--pastel-lavender) 0%,
		var(--pastel-sky) 100%
	);
	border-radius: 20px;
	padding: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.calendar-visual {
	text-align: center;
}

.calendar-icon-large {
	width: 80px;
	height: 80px;
	background: var(--bg-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: var(--shadow-md);
}

.calendar-icon-large i {
	font-size: 2rem;
	color: var(--accent-secondary);
}

.calendar-visual h3 {
	color: var(--text-dark);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.calendar-visual p {
	color: var(--text-medium);
	font-size: 0.9rem;
	margin-bottom: 20px;
}

.calendar-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--bg-white);
	color: var(--text-dark);
	padding: 12px 24px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.2s ease;
	margin-bottom: 24px;
	border: 1px solid var(--border-light);
}

.calendar-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.calendar-features {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.feature-item i {
	font-size: 18px;
	color: var(--accent-secondary);
}

.feature-item span {
	color: var(--text-medium);
	font-size: 0.75rem;
	font-weight: 500;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero-content {
		text-align: center;
		order: 2;
	}

	.hero-visual {
		order: 1;
		min-height: 400px;
	}

	.hero-description {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-cta {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.expertise-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.projects-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 64px;
		left: 0;
		width: 100%;
		background: var(--bg-white);
		flex-direction: column;
		padding: 24px;
		gap: 16px;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		border-bottom: 1px solid var(--border-light);
	}

	.nav-menu.active {
		transform: translateX(0);
	}

	.hamburger {
		display: flex;
	}

	.hamburger.active .bar:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.hamburger.active .bar:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active .bar:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}

	.hero-title {
		font-size: 2.2rem;
	}

	.hero-visual {
		min-height: 350px;
	}

	.hero-profile-card {
		padding: 24px;
		max-width: 280px;
	}

	.hero-avatar {
		width: 80px;
		height: 80px;
	}

	.floating-card {
		padding: 10px 14px;
		font-size: 0.75rem;
	}

	.floating-card.card-1 {
		top: 10px;
		left: 5%;
	}

	.floating-card.card-2 {
		top: 40px;
		right: 5%;
	}

	.floating-card.card-3 {
		bottom: 60px;
		left: 5%;
	}

	.floating-card.card-4 {
		bottom: 20px;
		right: 5%;
	}

	.hero-stats {
		gap: 24px;
	}

	.hero-stat .stat-number {
		font-size: 1.5rem;
	}

	.expertise-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.stack-categories {
		gap: 32px;
	}

	.projects-grid {
		grid-template-columns: 1fr;
	}

	.project-filters {
		gap: 8px;
	}

	.filter-btn {
		padding: 8px 14px;
		font-size: 0.8rem;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.modal-content {
		margin: 16px;
		max-height: 90vh;
	}

	.modal-body {
		padding: 24px;
	}

	.modal-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	/* LinkedIn Section Responsive */
	.linkedin-card {
		padding: 24px;
	}

	.linkedin-profile {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.linkedin-avatar {
		width: 70px;
		height: 70px;
	}

	.linkedin-stats {
		justify-content: center;
	}

	.linkedin-topics {
		justify-content: center;
	}

	/* Meeting Section Responsive */
	.meeting-content {
		grid-template-columns: 1fr;
	}

	.meeting-card,
	.calendar-card {
		padding: 24px;
	}
}

@media (max-width: 480px) {
	.hero-cta {
		flex-direction: column;
		width: 100%;
	}

	.hero-cta .btn {
		width: 100%;
		justify-content: center;
	}

	.section-title {
		font-size: 1.5rem;
	}
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
}

.fade-in:nth-child(1) {
	animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
	animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
	animation-delay: 0.3s;
}
.fade-in:nth-child(4) {
	animation-delay: 0.4s;
}
