/* ── Modern Contact Page Styles ── */
body { font-family: 'Inter', sans-serif; }

/* Hero Banner */
.contact-hero {
	background: linear-gradient(135deg, #0f2346 0%, #1a3a6e 50%, #0d6efd 100%);
	padding: 110px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.contact-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -20%;
	width: 600px;
	height: 600px;
	background: rgba(255,255,255,0.04);
	border-radius: 50%;
}
.contact-hero::after {
	content: '';
	position: absolute;
	bottom: -60%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: rgba(255,255,255,0.04);
	border-radius: 50%;
}
.contact-hero h1 {
	color: #fff;
	font-size: 48px;
	font-weight: 700;
	letter-spacing: -1px;
	margin-bottom: 12px;
}
.contact-hero p {
	color: rgba(255,255,255,0.75);
	font-size: 17px;
	font-weight: 300;
	margin: 0;
}
.hero-badge {
	display: inline-block;
	background: rgba(255,255,255,0.15);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 6px 18px;
	border-radius: 30px;
	margin-bottom: 20px;
	border: 1px solid rgba(255,255,255,0.2);
}

/* Contact Section Wrapper */
#contact-modern {
	background: #f4f7fb;
	padding: 70px 0 80px;
}

/* Info Cards */
.info-card {
	background: #fff;
	border-radius: 16px;
	padding: 28px 24px;
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	box-shadow: 0 2px 20px rgba(0,0,0,0.06);
	transition: transform 0.25s, box-shadow 0.25s;
}
.info-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(13,110,253,0.13);
}
.info-card-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	background: linear-gradient(135deg, #0f2346, #0d6efd);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
}
.info-card-body h5 {
	font-size: 13px;
	font-weight: 600;
	color: #0d6efd;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 5px;
}
.info-card-body p,
.info-card-body a {
	font-size: 15px;
	color: #333;
	margin: 0;
	text-decoration: none;
	line-height: 1.6;
}
.info-card-body a:hover { color: #0d6efd; }

/* Form Card */
.form-card {
	background: #fff;
	border-radius: 20px;
	padding: 42px 40px;
	box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}
.form-card h2 {
	font-size: 26px;
	font-weight: 700;
	color: #0f2346;
	margin-bottom: 6px;
}
.form-card .subtitle {
	color: #888;
	font-size: 14px;
	margin-bottom: 30px;
}
.modern-input {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid #e8edf5;
	border-radius: 12px;
	font-size: 15px;
	color: #333;
	background: #f9fbff;
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
	margin-bottom: 16px;
	font-family: 'Inter', sans-serif;
}
.modern-input:focus {
	border-color: #0d6efd;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(13,110,253,0.08);
}
.modern-input::placeholder { color: #aab; }
textarea.modern-input {
	resize: vertical;
	min-height: 140px;
}

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

.btn-send {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #0f2346, #0d6efd);
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 15px 36px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.2s, transform 0.2s;
	font-family: 'Inter', sans-serif;
	width: 100%;
	justify-content: center;
	margin-top: 6px;
}
.btn-send:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

/* Map */
#map-canvas {
	height: 380px;
	width: 100%;
	background: #dde;
}

/* Section label */
.section-label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 28px;
}
.section-label span {
	font-size: 13px;
	font-weight: 700;
	color: #0d6efd;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.section-label::after {
	content: '';
	flex: 1;
	height: 2px;
	background: linear-gradient(to right, #0d6efd22, transparent);
	border-radius: 2px;
}

.contact-hero-inner {
	position: relative;
	z-index: 2;
}
.map-wrap {
	padding: 0;
}
.whatsapp-note {
	color: #aaa;
	font-size: 13px;
}

/* ── Career Form Extras ── */
.career-about-box {
	background: #f4f7fb;
	border-left: 3px solid #0d6efd;
	border-radius: 10px;
	padding: 20px;
	margin-top: 8px;
}
.career-about-box h5 {
	font-size: 14px;
	font-weight: 700;
	color: #0f2346;
	margin: 0 0 10px;
}
.career-about-box p {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

.career-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #444;
	margin-bottom: 6px;
	letter-spacing: 0.3px;
}
.career-hint {
	font-weight: 400;
	color: #aaa;
	font-size: 12px;
}
.modern-select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230d6efd' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	cursor: pointer;
}
.career-radio-group {
	margin-bottom: 16px;
}
.career-radio-row {
	display: flex;
	gap: 24px;
	margin-top: 8px;
}
.career-radio-opt {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #444;
	cursor: pointer;
	font-weight: 400;
}
.career-radio-opt input[type="radio"] {
	accent-color: #0d6efd;
	width: 16px;
	height: 16px;
}

/* File Upload */
.career-file-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}
.career-file-input {
	display: none;
}
.career-file-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #0f2346, #0d6efd);
	color: #fff;
	padding: 10px 20px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.2s;
	white-space: nowrap;
	margin: 0;
}
.career-file-label:hover { opacity: 0.88; }
.career-file-name {
	font-size: 13px;
	color: #888;
}

/* ── Modern Footer ── */
#footer-modern {
	background: #0b1a35;
	font-family: 'Inter', sans-serif;
}

.footer-top {
	padding: 60px 0 40px;
}

/* Brand */
.fm-logo {
	max-width: 160px;
	margin-bottom: 18px;
}
.fm-desc {
	color: rgba(255,255,255,0.55);
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 22px;
}
.fm-socials { display: flex; gap: 10px; }
.fm-social-btn {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.1);
	color: rgba(255,255,255,0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	transition: background 0.2s, color 0.2s, transform 0.2s;
	text-decoration: none;
}
.fm-social-btn:hover {
	background: #0d6efd;
	border-color: #0d6efd;
	color: #fff;
	transform: translateY(-3px);
}

/* Widget Title */
.fm-title {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 22px;
	padding-bottom: 12px;
	border-bottom: 2px solid #0d6efd;
	display: inline-block;
}

/* Quick Links */
.fm-links {
	list-style: none;
	padding: 0;
	margin: 0;
}
.fm-links li {
	margin-bottom: 10px;
}
.fm-links li a {
	color: rgba(255,255,255,0.55);
	font-size: 14px;
	text-decoration: none;
	transition: color 0.2s, padding-left 0.2s;
	display: flex;
	align-items: center;
	gap: 8px;
}
.fm-links li a::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #0d6efd;
	flex-shrink: 0;
	opacity: 0.6;
	transition: opacity 0.2s;
}
.fm-links li a:hover {
	color: #fff;
	padding-left: 4px;
}
.fm-links li a:hover::before { opacity: 1; }

/* Contact List */
.fm-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.fm-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 18px;
	color: rgba(255,255,255,0.55);
	font-size: 14px;
	line-height: 1.6;
}
.fm-contact-icon {
	width: 34px;
	height: 34px;
	min-width: 34px;
	background: rgba(13,110,253,0.15);
	border: 1px solid rgba(13,110,253,0.3);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0d6efd;
	font-size: 14px;
}
.fm-contact-list li a {
	color: rgba(255,255,255,0.55);
	text-decoration: none;
	transition: color 0.2s;
}
.fm-contact-list li a:hover { color: #fff; }

/* Divider */
.footer-divider {
	border: none;
	border-top: 1px solid rgba(255,255,255,0.07);
	margin: 0;
}

/* Copyright Bar */
.footer-bottom {
	padding: 18px 0;
	background: rgba(0,0,0,0.2);
}
.fm-copy p {
	color: rgba(255,255,255,0.4);
	font-size: 13px;
	margin: 0;
	line-height: 1.8;
}
.fm-copy a {
	color: rgba(255,255,255,0.4);
	text-decoration: none;
	transition: color 0.2s;
}
.fm-copy a:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 767px) {
	.contact-hero h1 { font-size: 32px; }
	.form-card { padding: 28px 18px; }
	.form-row-grid { grid-template-columns: 1fr; gap: 0; }
	.footer-top { padding: 40px 0 24px; }
	.fm-brand { margin-bottom: 32px; }
	.fm-widget { margin-bottom: 28px; }
	.footer-bottom .text-right { text-align: left !important; margin-top: 6px; }
}
