/* =========================================================
   CONTACT SECTION LAYOUT
   ========================================================= */
.contact-section {
	max-width: 1200px;
	margin: 100px auto;
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-form-wrapper h2 {
	font-size: 2rem;
	margin-bottom: 10px;
	color: var(--text-main);
}

.contact-form-wrapper p {
	color: var(--text-muted);
	margin-bottom: 30px;
}

.contact-form {
	background: #f9fafb;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}

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

.form-group label {
	display: block;
	font-weight: 600;
	color: var(--text-main);
	margin-bottom: 6px;
}

.form-group label span {
	color: var(--accent);
	margin-left: 2px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-subtle);
	font: inherit;
	font-size: 0.95rem;
	background: #ffffff;
}

textarea {
	resize: vertical;
	max-width: 100%;
}

input:invalid,
textarea:invalid {
	border-color: #dc2626;
}

input:valid,
textarea:valid {
	border-color: #16a34a;
}

.form-submit {
	width: 100%;
	border: none;
	border-radius: var(--radius-md);
	padding: 14px 18px;
	background: var(--accent);
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
}

.form-submit:hover {
	background: #1d4ed8;
	transform: translateY(-2px);
}

.form-group input[type="checkbox"] {
	width: auto;
	margin-right: 8px;
	accent-color: var(--accent);
	transform: scale(1.1);
	cursor: pointer;
}

.form-group.consent-group {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* =========================================================
   CONTACT INFORMATION
   ========================================================= */
.contact-info-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
}

.info-card {
	background: var(--card-bg);
	border-radius: var(--radius-md);
	padding: 24px;
	box-shadow: var(--shadow-card);
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.info-card h3 {
	color: var(--text-main);
	margin-bottom: 6px;
}

.info-card p,
.info-card a {
	color: var(--text-muted);
	font-size: 0.95rem;
}

.info-card-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	flex-shrink: 0;
}

.info-card-body h3 {
	margin-bottom: 4px;
}

.info-card-body p {
	margin: 0;
}

/* =========================================================
   NAPOLI MAP SECTION
   ========================================================= */
.napoli-map-section {
	text-align: center;
}

.napoli-map-section .section-intro {
	margin-bottom: 50px;
}

.map-frame {
	display: inline-block;
	position: relative;
	background: white;
	border-radius: 50%;
	padding: 20px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s ease;
}

.map-frame img {
	width: 420px;
	height: 420px;
	border-radius: 50%;
	object-fit: cover;
}

.map-frame:hover {
	transform: scale(1.05) translateY(-6px) rotate(-1.5deg);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12), 0 0 25px rgba(37, 99, 235, 0.15);
	transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s ease;
}

/* =========================================================
   MEDIA QUERIES
   ========================================================= */
@media (max-width: 600px) {
	.map-frame img {
		width: 250px;
		height: 250px;
	}
}

@media (max-height: 500px) and (orientation: landscape) {
	.map-frame img {
		width: 300px;
		height: 300px;
	}
}

@media (max-width: 900px) {
	.contact-container {
		grid-template-columns: 1fr;
	}
}
