/* ============================================
   Contact Page Styles — pixel-perfect
   ============================================ */

/* --- Contact Hero --- */
.contact-hero {
	position: relative;
	width: 100%;
	background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 100%);
	padding: 150px 0 90px;
	/* overflow: hidden; */
}

.contact-bg-left {
    position: absolute;
    top: 30%;
    left: -5%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    
}

.contact-bg-right {
    position: absolute;
    top: 45%;
    right: -27%;
    height: 100%;
    /* max-height: 600px; */
    pointer-events: none;
    z-index: 0;
}
.contact-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	align-items: center;
	display: flex;

	justify-content: space-between;
	gap: 60px;
}

.contact-hero-left {
	flex: 1;

	padding-top: 50px;
}

.contact-hero-title {
	font-family: 'Manrope', sans-serif;
	font-size: 64px;
	font-weight: 800;
	line-height: 1.18;
	color: #0f172a;
	text-align: left;
	margin: 0 0 22px;
	letter-spacing: -0.5px;
}

.contact-hero-highlight {
	color: #155dfc;
}

.contact-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.75;
    color: #64748b;
    text-align: left;
    margin: 0;
}
/* --- Form Card --- */


.contact-form-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 24px 22px;
	box-shadow: 0 8px 40px rgba(21, 93, 252, 0.07), 0 1.5px 4px rgba(0, 0, 0, 0.03);
	border: 1px solid #101828;
	max-width: 520px;
}


.contact-form-title {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 4px;
	text-align: center;
}

.contact-form-desc {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #4A5565;
	margin: 0 0 14px;
	text-align: center;
	line-height: 1.5;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.contact-form-row {
	display: flex;
	gap: 10px;
}

.contact-form-row > * {
	flex: 1 1 0;
	min-width: 0;
}

.ct-phone-wrap .ct-country-select,
.ct-phone-wrap .ct-phone-input {
	flex: unset;
}
.ct-phone-wrap .ct-phone-input {
	flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	padding: 10px 12px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #f8fafc;
	color: #0f172a;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	width: 100%;
	box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #94a3b8;
	font-size: 14px;
}

.contact-form select {
	color: #94a3b8;
	font-size: 14px;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 34px;
}

.contact-form select option:not(:first-child) {
	color: #0f172a;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: #155dfc;
	box-shadow: 0 0 0 3px rgba(21, 93, 252, 0.06);
	background: #fff;
}

.contact-form textarea {
	resize: vertical;
	min-height: 60px;
}

.contact-form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 9px 22px;
	background: #155dfc;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
	align-self: flex-end;
	margin: 0 auto;
	margin-top: 2px;
}

.contact-form-submit img {
	width: 13px;
	height: 13px;
	filter: brightness(10);
}

.contact-form-submit:hover {
	background: #1249d6;
	transform: translateY(-1px);
}

/* Phone field with country code */
.ct-phone-wrap {
	flex: 1.3;
	min-width: 0;
	display: flex;
	align-items: stretch;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #f8fafc;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.ct-phone-wrap:focus-within {
	border-color: #155dfc;
	box-shadow: 0 0 0 3px rgba(21, 93, 252, 0.06);
}
.ct-country-select {
	width: 72px;
	flex-shrink: 0;
	border: none !important;
	border-right: 1px solid #e2e8f0 !important;
	border-radius: 0 !important;
	background: #f1f5f9 !important;
	background-image: none !important;
	padding: 9px 2px 9px 8px !important;
	font-size: 14px !important;
	color: #475569 !important;
	cursor: pointer;
	outline: none;
	box-shadow: none !important;
	-webkit-appearance: none;
	appearance: none;
}
.ct-country-select:focus {
	box-shadow: none !important;
	border-color: #e2e8f0 !important;
}
.ct-phone-input {
	flex: 1;
	min-width: 0;
	border: none !important;
	border-radius: 0 !important;
	background: #f8fafc !important;
	padding-top: 10px !important;
	padding-right: 12px !important;
	padding-bottom: 10px !important;
	font-size: 16px;
	outline: none;
	box-shadow: none !important;
}
.ct-phone-input:focus {
	box-shadow: none !important;
}
.ct-phone-input::placeholder {
	color: #94a3b8;
	font-size: 14px;
}

/* Error state for phone wrap */
.ct-phone-wrap.has-error {
	border-color: #ef4444;
}

/* Captcha scaled down to fit compact form */
#contactForm .g-recaptcha {
	transform: scale(0.85);
	transform-origin: center;
}

/* --- Get in Touch Section --- */
.contact-touch-section {
	width: 100%;
	background: #ffffff;
	padding: 80px 0;
}

.contact-touch-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 60px;
	text-align: center;
}

.contact-touch-title {
	font-family: 'Manrope', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 8px;
}

.contact-touch-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #64748b;
	margin: 0 0 44px;
	line-height: 1.6;
}

.contact-touch-cards {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.contact-touch-card {
	flex: 1;
	max-width: 380px;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 26px;
	background: #ffffff;
	border: 1px solid #101828;
	border-radius: 14px;
	transition: box-shadow 0.25s, border-color 0.25s;
}

.contact-touch-card:hover {
	border-color: #c7d2fe;
	box-shadow: 0 6px 24px rgba(21, 93, 252, 0.08);
}

.contact-touch-icon {
	width: 50px;
	height: 50px;
	/* border-radius: 12px; */
	/* background: #eef2ff; */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-touch-icon svg {
	width: 24px;
	height: 24px;
}

.contact-touch-info {
	text-align: left;
}

.contact-touch-label {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 2px;
}

.contact-touch-value {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #4A5565;
}
.lslsl {
    text-decoration: underline;
}
/* --- Our Locations Section --- */
.contact-locations-section {
	width: 100%;
	background: #f7f9fc;
	padding: 80px 0;
	background: linear-gradient(180deg, #EFF6FF 0%, rgba(239, 246, 255, 0) 100%);

}

.contact-locations-inner {
	max-width: 1280px;
	margin: 0 auto;
	/* padding: 0 60px; */
	text-align: center;
}

.contact-locations-title {
	font-family: 'Manrope', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 8px;
}

.contact-locations-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #64748b;
	margin: 0 0 44px;
	line-height: 1.6;
}

.contact-locations-cards {
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.contact-location-card {
	flex: 1;
	max-width: 400px;
	background: var(--Blue-BG, #EFF6FF);
	border: 1px solid #101828;
	border-radius: 16px;
	padding: 30px 26px 26px;
	text-align: left;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.25s, border-color 0.25s;
	position: relative;
	overflow: hidden;
}

.contact-location-watermark {
	position: absolute;
	top: 10px;
	right: 20px;
	width: 80px;
	height: 80px;
	opacity: 0.07;
	pointer-events: none;
}

.contact-location-card:hover {
	border-color: #c7d2fe;
	box-shadow: 0 6px 24px rgba(21, 93, 252, 0.08);
}

.contact-location-name {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 10px;
	padding-bottom: 12px;
	border-bottom: 1px solid #f0f2f5;
}

.contact-location-address {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #4A5565;
	margin: 0 0 6px;
	flex: 1;
	width: 90%;
}

.contact-location-phone {
   	font-family: 'Manrope', sans-serif;

    font-size: 16px;
    color: #4A5565;
    margin: 0 0 16px;
}

.contact-location-map {
    display: inline-flex;
    align-items: center;
    gap: 6px;
	font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #155dfc;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.contact-location-map img {
	border-radius: 2px;
}

.contact-location-map:hover {
	opacity: 0.75;
}

/* --- Prefer to Write CTA Banner --- */
.contact-write-cta-wrapper {
	width: 100%;
	padding: 20px 0 80px;
	display: flex;
	justify-content: center;
}

.contact-write-cta {
	max-width: 1280px;
	width: 90%;
	background: linear-gradient(135deg, #155dfc 0%, #1e3faf 100%);
	border-radius: 20px;
	padding: 44px 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 28px;
	position: relative;
	overflow: hidden;
}

/* .contact-write-cta::before {
	content: '';
	position: absolute;
	top: -40px;
	left: -40px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	pointer-events: none;
}

.contact-write-cta::after {
	content: '';
	position: absolute;
	bottom: -60px;
	right: -30px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	pointer-events: none;
} */


.contact-write-cta-icon img {
    width: 100%;
    height: auto;
}
.contact-write-cta-icon {
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.contact-write-cta-content {
 text-align: left;
	position: relative;
	z-index: 1;
}

.contact-write-cta-content h3 {
	font-family: 'Manrope', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 10px;
}

.contact-write-cta-content p {
	font-family: 'Manrope', sans-serif;

	font-size: 20px;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
	line-height: 1.5;
	margin: 0 0 10px;

}

.contact-write-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: #0f172a;
	color: #ffffff;
	border: none;
	border-radius: 10px;
	font-family: 'Manrope', sans-serif;

	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	white-space: nowrap;
}

.contact-write-cta-btn img {
	width: 13px;
	height: 13px;
	filter: brightness(10);
}

.contact-write-cta-btn:hover {
	background: #1e293b;
	color: #ffffff;
	transform: translateY(-1px);
}

select#ctCountryCode {
    width: 30%;
}

/* ============================================
   Responsive
   ============================================ */

@media screen and (max-width: 1100px) {
	.contact-hero-inner {
		padding: 0 40px;
		gap: 40px;
	}

	.contact-hero-title {
		font-size: 36px;
	}

	.contact-hero-right {
		width: 420px;
	}

	.contact-touch-inner,
	.contact-locations-inner {
		padding: 0 40px;
	}
}

@media screen and (max-width: 900px) {
	.contact-hero {
		padding: 80px 0 70px;
	}

	.contact-hero-inner {
		flex-direction: column;
		align-items: center;
		padding: 0 28px;
		gap: 36px;
	}

	.contact-hero-left {
		max-width: 100%;
		padding-top: 0;
		text-align: center;
	}

	.contact-hero-subtitle {
		max-width: 100%;
	}

	.contact-hero-title {
		font-size: 32px;
	}

	.contact-hero-right {
		width: 100%;
		max-width: 480px;
	}

	/* .contact-bg-left,
	.contact-bg-right {
		max-height: 400px;
	} */

	.contact-touch-section,
	.contact-locations-section {
		padding: 60px 0;
	}

	.contact-touch-inner,
	.contact-locations-inner {
		padding: 0 28px;
	}

	.contact-touch-cards {
		flex-direction: column;
		align-items: center;
	}

	.contact-touch-card {
		width: 100%;
		max-width: 420px;
	}

	.contact-locations-cards {
		flex-direction: column;
		align-items: center;
	}

	.contact-location-card {
		max-width: 100%;
		width: 100%;
	}

	.contact-write-cta {
		flex-direction: column;
		text-align: center;
		padding: 36px 30px;
		gap: 20px;
		max-width: 90%;
	}

	.contact-write-cta-content h3 {
		font-size: 19px;
	}
}

@media screen and (max-width: 600px) {
	.contact-hero {
		padding: 60px 0 30px;
	}

	.contact-hero-inner {
		padding: 0 18px;
		gap: 28px;
		padding-top: 80px;
	}

	.contact-hero-title {
		font-size: 36px;
		text-align: center;
	}

	.contact-hero-subtitle {
    font-size: 18px;
    text-align: center;
}

	.contact-form-card {
		padding: 20px 16px 22px;
	}

	.contact-form-row {
		flex-direction: column;
		gap: 10px;
	}

	.ct-phone-wrap {
		width: 100%;
	}

	.contact-form-submit {
		align-self: stretch;
	}

	.contact-touch-section,
	.contact-locations-section {
		padding: 50px 0;
	}

	.contact-touch-inner,
	.contact-locations-inner {
		padding: 0 18px;
	}

	.contact-touch-title,
	.contact-locations-title {
		font-size: 28px;
	}

	.contact-write-cta-wrapper {
		padding: 10px 0 60px;
	}

	.contact-write-cta {
		padding: 28px 22px;
		border-radius: 16px;
		max-width: 92%;
	}
.contact-touch-subtitle {

    font-size: 16px;

    margin: 0 0 25px;

}
	.contact-write-cta-content h3 {
		font-size: 17px;
	}

	.contact-write-cta-content p {
		font-size: 12px;
	}
	.contact-write-cta-content {
    text-align: center;

}
.contact-write-cta-icon img {
    width: 150px;
}
.contact-write-cta-content h3 {
    font-size: 26px;
}
.contact-write-cta-content p {
    font-size: 18px;
}
.contact-write-cta-btn{
	font-weight: 500;
}
.contact-bg-left {
    position: absolute;
    top: 3%;
    left: -10%;
    height: unset;
    pointer-events: none;
    z-index: 0;
    transform: rotate(27deg);
}
}
