/* Premium Contact Page Styles */
.contact-page-premium {
	font-family: "Inter", "Public Sans", system-ui, sans-serif;
}

/* Hero Section Premium Styling */
#contact-hero {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
}

#contact-hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
	pointer-events: none;
}

.contact-hero-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

.contact-hero-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	color: #0f172a;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.contact-hero-subtitle {
	font-size: 1.25rem;
	color: #475569;
	max-width: 600px;
	margin: 0 auto 2rem;
	line-height: 1.6;
}

.contact-hero-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-premium-primary {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
	border: none;
}

.btn-premium-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-premium-secondary {
	background: white;
	color: #0f172a;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-premium-secondary:hover {
	background: #f8fafc;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Contact Methods Section */
#contact-methods {
	padding: 4rem 0;
	background: white;
}

.contact-methods-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.contact-method-card {
	background: white;
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #f1f5f9;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	opacity: 0;
	transform: translateY(20px);
}

.contact-method-card.is-visible {
	opacity: 1;
	transform: translateY(0);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}

.contact-method-card:hover {
	transform: translateY(-4px) scale(1.01);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method-card:hover .contact-method-icon {
	transform: scale(1.1);
	transition: transform 0.3s ease;
}

.contact-method-icon {
	width: 2.5rem;
	height: 2.5rem;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.contact-method-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #0f172a;
	margin-bottom: 0.75rem;
}

.contact-method-description {
	color: #475569;
	line-height: 1.5;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.contact-method-link {
	color: #10b981;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s ease;
	margin-top: auto;
	width: fit-content;
	align-self: flex-start;
}

.contact-method-link:hover {
	color: #059669;
	gap: 0.75rem;
}

/* Contact Form Section */
#contact-form {
	padding: 4rem 0;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	position: relative;
}

#contact-form::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="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.3" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.2;
	pointer-events: none;
}

.contact-form-container {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	border-radius: 1.5rem;
	padding: 3rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
}

.contact-form-title {
	font-size: 2rem;
	font-weight: 700;
	color: #0f172a;
	text-align: center;
	margin-bottom: 0.5rem;
}

.contact-form-subtitle {
	text-align: center;
	color: #475569;
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.form-group-premium {
	margin-bottom: 1.5rem;
}

.form-label-premium {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #334155;
}

.form-control-premium {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid #e2e8f0;
	border-radius: 0.5rem;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: white;
}

.form-control-premium:focus {
	border-color: #10b981;
	outline: none;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-control-premium::placeholder {
	color: #94a3b8;
}

.form-control-premium.error {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error-message {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.form-error-message.show {
	display: block;
	animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

.select-premium {
	appearance: none;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2394a3b8"><path d="M12 15.5l-6-6 1.41-1.41L12 12.67l4.59-4.58L18 9.5l-6 6z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1.25rem;
	padding-right: 2.5rem;
}

.btn-submit-premium {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	font-size: 1.05rem;
}

.btn-submit-premium:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-submit-premium:disabled {
	background: #94a3b8;
	cursor: not-allowed;
	transform: none;
}

/* Office Information Section */
#contact-office {
	padding: 4rem 0;
	background: white;
}

.office-info-container {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.office-card {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
}

.office-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.office-card-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #0f172a;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.office-card-icon {
	color: #10b981;
	font-size: 1.5rem;
}

.office-card-content {
	color: #475569;
	line-height: 1.6;
}

.office-card-content p {
	margin-bottom: 1rem;
}

.office-card-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.office-card-content li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	padding-left: 0;
}

.office-card-content li::before {
	content: "✓";
	background: #10b981;
	color: white;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	flex-shrink: 0;
}

/* Social Media Section */
#contact-socials {
	padding: 3rem 0;
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.social-media-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.social-media-title {
	color: white;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.social-media-icons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.social-media-icon {
	width: 3rem;
	height: 3rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.25rem;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-media-icon:hover {
	background: #10b981;
	border-color: #10b981;
	transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
	.contact-hero-title {
		font-size: 2.5rem;
	}

	.contact-form-container {
		padding: 2rem;
	}

	.contact-hero-actions {
		flex-direction: column;
		align-items: center;
	}

	.btn-premium-primary,
	.btn-premium-secondary {
		width: 100%;
		max-width: 300px;
	}
}

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

.animate-fade-in-up {
	animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 {
	animation-delay: 0.1s;
}

.animate-delay-2 {
	animation-delay: 0.2s;
}

.animate-delay-3 {
	animation-delay: 0.3s;
}

/* Utility Classes */
.text-gradient {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.bg-gradient-primary {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.shadow-premium {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.shadow-premium-lg {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
