/* Modern CSS for ESC HARRY */
:root {
	--primary-color: #2563eb;
	--primary-dark: #1d4ed8;
	--secondary-color: #64748b;
	--accent-color: #f59e0b;
	--text-dark: #1e293b;
	--text-light: #64748b;
	--bg-light: #f8fafc;
	--bg-white: #ffffff;
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
		0 4px 6px -4px rgb(0 0 0 / 0.1);
	--border-radius: 12px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Header */
header {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(255, 255, 255, 0.9) 100%
	);
	backdrop-filter: blur(10px);
	padding: 80px 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	pointer-events: none;
}

.logo-container {
	margin-bottom: 30px;
	animation: fadeInUp 1s ease-out;
}

.logo-container img {
	max-width: 160px;
	height: auto;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
	transition: var(--transition);
}

.logo-container img:hover {
	transform: scale(1.05);
}

.company-info {
	margin-top: 10px;
	animation: fadeInUp 1s ease-out 0.2s both;
}

.company-name {
	font-size: 18px;
	font-weight: 500;
	color: var(--text-light);
	margin-bottom: 5px;
}

.company-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-dark);
	text-transform: uppercase;
	letter-spacing: 2px;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	animation: fadeInUp 1s ease-out 0.4s both;
}

h2 {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 30px;
	position: relative;
}

h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
	border-radius: 2px;
}

p {
	font-size: 18px;
	color: var(--text-light);
	max-width: 800px;
	margin: 0 auto 20px;
	line-height: 1.7;
}

/* Sections */
section {
	padding: 100px 20px;
	position: relative;
}

section:nth-child(even) {
	background: var(--bg-white);
}

section:nth-child(odd) {
	background: var(--bg-light);
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

/* Services */
.service-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1000px;
	margin: 50px auto 0;
	text-align: left;
}

.service-item {
	background: var(--bg-white);
	padding: 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-md);
	transition: var(--transition);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.service-item strong {
	color: var(--primary-color);
	font-size: 18px;
	display: block;
	margin-bottom: 10px;
}

/* Contact Form */
.contact-container {
	max-width: 600px;
	margin: 0 auto;
	background: var(--bg-white);
	padding: 40px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
	text-align: left;
}

.form-group {
	margin-bottom: 25px;
}

label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--text-dark);
}

input,
textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	font-size: 16px;
	transition: var(--transition);
	background: var(--bg-white);
}

input:focus,
textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea {
	resize: vertical;
	min-height: 120px;
}

/* Buttons */
.button {
	display: inline-block;
	padding: 15px 30px;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--primary-dark)
	);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	box-shadow: var(--shadow-md);
	margin-top: 20px;
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	text-decoration: none;
	color: white;
}

.button:active {
	transform: translateY(0);
}

/* Map */
.map-container {
	max-width: 800px;
	margin: 40px auto 0;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

iframe {
	width: 100%;
	height: 400px;
	border: 0;
}

/* Header Contact */
.header-contact {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10;
	margin-top: 0;
}

.phone-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 30px;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--primary-dark)
	);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	box-shadow: var(--shadow-md);
	margin-top: 20px;
}

.phone-link:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	text-decoration: none;
	color: white;
}

.phone-link:active {
	transform: translateY(0);
}

/* Contact Info */
.contact-info {
	margin-top: 30px;
	padding: 30px;
	background: var(--bg-light);
	border-radius: var(--border-radius);
	text-align: center;
}

.contact-info a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.contact-info a:hover {
	color: var(--primary-dark);
	text-decoration: none;
	transform: translateY(-2px);
}

.contact-info a[href*='instagram'] {
	color: #e4405f;
}

.contact-info a[href*='instagram']:hover {
	color: #c13584;
}

.contact-info p {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes glow {
	from {
		text-shadow: 0 0 5px rgba(37, 99, 235, 0.3), 0 0 10px rgba(37, 99, 235, 0.2);
	}
	to {
		text-shadow: 0 0 10px rgba(37, 99, 235, 0.5),
			0 0 20px rgba(37, 99, 235, 0.3);
	}
}

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

/* Responsive Design */
@media (max-width: 768px) {
	header,
	section {
		padding: 60px 20px;
	}

	.service-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contact-container {
		padding: 30px 20px;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.header-contact {
		position: relative;
		top: auto;
		right: auto;
		margin: 20px auto;
		text-align: center;
	}

	.phone-link {
		display: inline-flex;
		justify-content: center;
	}

	.company-title {
		font-size: 20px;
		letter-spacing: 1px;
	}
}

@media (max-width: 480px) {
	.button {
		padding: 12px 24px;
		font-size: 14px;
	}

	input,
	textarea {
		padding: 12px;
	}
}

/* Loading animation */
.loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #fff;
	animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Success message */
.success-message {
	background: #10b981;
	color: white;
	padding: 15px;
	border-radius: 8px;
	margin-top: 20px;
	text-align: center;
	animation: fadeInUp 0.5s ease-out;
}

/* Error message */
.error-message {
	background: #ef4444;
	color: white;
	padding: 15px;
	border-radius: 8px;
	margin-top: 20px;
	text-align: center;
	animation: fadeInUp 0.5s ease-out;
}
