:root {
	--ct-bg: #eeeeee;
	--ct-navy: #173e62;
	--ct-tan: #bda588;
	--ct-white: #ffffff;
	--ct-muted: #000;
	--ct-light: #f5f3f0;
}

/* ─── Section ─── */
.ctp-section {
	background: var(--ct-bg);
	padding: 90px 0 100px;
	position: relative;
	overflow: hidden;
}

/* Decorative background circle */
.ctp-section::after {
	content: '';
	position: absolute;
	top: -180px;
	right: -180px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(23, 62, 98, 0.05) 0%, transparent 70%);
	pointer-events: none;
}

/* ─── Section Header ─── */
.ctp-header {
	margin-bottom: 56px;
}

.ctp-eyebrow {
	font-size: 11px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--ct-tan);
	font-weight: 500;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.ctp-eyebrow::before {
	content: '';
	width: 32px;
	height: 1.5px;
	background: var(--ct-tan);
	display: inline-block;
}

.ctp-section-title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 600;
	color: var(--ct-navy);
	line-height: 1.1;
}

.ctp-section-title em {
	font-style: italic;
	color: var(--ct-tan);
}

/* ─── LEFT CARD ─── */
.ctp-left-card {
	background: var(--ct-navy);
	border-radius: 16px;
	padding: 48px 40px 44px;
	height: 100%;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(23, 62, 98, 0.22);
}

/* Decorative circle inside card */
.ctp-left-card::before {
	content: '';
	position: absolute;
	bottom: -80px;
	right: -80px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	pointer-events: none;
}

.ctp-left-card::after {
	content: '';
	position: absolute;
	bottom: -20px;
	right: 60px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: rgba(189, 165, 136, 0.08);
	pointer-events: none;
}

.ctp-card-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(189, 165, 136, 0.15);
	border: 1px solid rgba(189, 165, 136, 0.25);
	color: var(--ct-tan);
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 500;
	padding: 6px 14px;
	border-radius: 100px;
	margin-bottom: 24px;
}

.ctp-card-title {
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 10px;
}

.ctp-card-subtitle {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.45);
	font-weight: 300;
	line-height: 1.7;
	margin-bottom: 36px;
}

/* Divider */
.ctp-card-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin-bottom: 32px;
}

/* Info rows */
.ctp-info-row {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 26px;
}

.ctp-info-row:last-of-type {
	margin-bottom: 0;
}

.ctp-icon-box {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(189, 165, 136, 0.12);
	border: 1px solid rgba(189, 165, 136, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ct-tan);
	font-size: 16px;
	transition: background 0.3s, transform 0.3s;
	margin-top: 1px;
}

.ctp-info-row:hover .ctp-icon-box {
	background: var(--ct-tan);
	color: var(--ct-navy);
	transform: scale(1.08);
}

.ctp-info-label {
	font-size: 11px;
	font-weight: 600;
	color: var(--ct-tan);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.ctp-info-value {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.65);
	font-weight: 300;
	line-height: 1.75;
	margin: 0;
}

.ctp-info-value a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	transition: color 0.2s;
}

.ctp-info-value a:hover {
	color: var(--ct-tan);
}

/* Social */
.ctp-social-wrap {
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ctp-social-label {
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	font-weight: 500;
	margin-bottom: 14px;
}

.ctp-socials {
	display: flex;
	gap: 10px;
}

.ctp-soc-btn {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.ctp-soc-btn:hover {
	background: var(--ct-tan);
	border-color: var(--ct-tan);
	color: var(--ct-navy);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(189, 165, 136, 0.3);
}

/* ─── RIGHT FORM ─── */
.ctp-form-card {
	background: var(--ct-white);
	border-radius: 16px;
	padding: 48px 44px 44px;
	height: 100%;
	box-shadow: 0 8px 40px rgba(23, 62, 98, 0.08);
	position: relative;
	overflow: hidden;
}

/* Tan top accent */
.ctp-form-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--ct-navy) 0%, var(--ct-tan) 100%);
}

.ctp-form-title {
	font-size: 34px;
	font-weight: 600;
	color: var(--ct-navy);
	margin-bottom: 6px;
	line-height: 1.15;
}

.ctp-form-subtitle {
	font-size: 14px;
	color: var(--ct-muted);
	font-weight: 300;
	margin-bottom: 32px;
}

/* Form fields */
.ctp-field-group {
	margin-bottom: 20px;
}

.ctp-field-label {
	display: block;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--ct-navy);
	margin-bottom: 8px;
	letter-spacing: 0.3px;
}

.ctp-field {
	width: 100%;
	background: var(--ct-light);
	border: 1.5px solid transparent;
	border-radius: 8px;
	padding: 13px 16px;
	font-size: 13.5px;
	color: var(--ct-navy);
	font-weight: 300;
	transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.ctp-field::placeholder {
	color: #b8c5ce;
}

.ctp-field:focus {
	background: #fff;
	border-color: var(--ct-tan);
	box-shadow: 0 0 0 4px rgba(189, 165, 136, 0.12);
}

.ctp-field.ctp-error {
	border-color: #e07070;
	background: #fff8f8;
}

textarea.ctp-field {
	resize: none;
	min-height: 128px;
}

/* Submit */
.ctp-submit-row {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 8px;
	flex-wrap: wrap;
}

.ctp-btn {
	background: var(--ct-navy);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 14px 36px;
	font-size: 13.5px;
	font-weight: 500;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
}

.ctp-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent 40%, rgba(189, 165, 136, 0.15) 100%);
	opacity: 0;
	transition: opacity 0.3s;
}

.ctp-btn:hover {
	background: #0e2b47;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(23, 62, 98, 0.28);
}

.ctp-btn:hover::after {
	opacity: 1;
}

.ctp-btn:active {
	transform: translateY(0);
}

.ctp-btn-icon {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	transition: transform 0.3s;
}

.ctp-btn:hover .ctp-btn-icon {
	transform: translateX(3px);
}

/* Success */
.ctp-success-msg {
	display: none;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--ct-navy);
	font-weight: 400;
	background: rgba(23, 62, 98, 0.05);
	border: 1px solid rgba(23, 62, 98, 0.12);
	border-radius: 8px;
	padding: 10px 16px;
}

.ctp-success-msg.show {
	display: flex;
}

.ctp-success-msg i {
	color: var(--ct-tan);
	font-size: 17px;
}

/* ─── Responsive ─── */
@media (max-width: 991px) {

	.ctp-left-card,
	.ctp-form-card {
		padding: 36px 28px;
	}
}

@media (max-width: 767px) {
	.ctp-section {
		padding: 60px 0 70px;
	}

	.ctp-form-title {
		font-size: 26px;
	}

	.ctp-card-title {
		font-size: 24px;
	}
}