/**
 * Organic Mr. Teamwork Add-ons - Contact Us Widget Stylesheet
 * Scoped under .omtw-contact-*
 */

/* ==========================================================================
   Section Container & Layout
   ========================================================================== */
.omtw-contact-section {
	position: relative;
	background-color: #FAF9F5;
	padding: 60px 24px;
	box-sizing: border-box;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #2D3748;
}

.omtw-contact-container {
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	max-width: 1140px;
	width: 100%;
}

/* ==========================================================================
   Top Header Section
   ========================================================================== */
.omtw-contact-header {
	text-align: center;
	max-width: 780px;
	margin: 0 auto 48px auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.omtw-contact-eyebrow {
	display: inline-block;
	background: #E2ECE7;
	color: #062D22;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 30px;
}

.omtw-contact-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 36px;
	font-weight: 700;
	color: #062D22;
	margin: 0;
	line-height: 1.25;
}

.omtw-contact-subtitle {
	font-size: 15px;
	font-weight: 400;
	color: #64748B;
	line-height: 1.6;
	margin: 0;
}

/* ==========================================================================
   2-Column Grid Split (Left Details Card + Right Form Card)
   ========================================================================== */
.omtw-contact-grid {
	display: flex;
	gap: 32px;
	align-items: stretch;
}

.omtw-contact-left-col {
	flex: 0 0 38%;
	max-width: 38%;
	display: flex;
}

.omtw-contact-right-col {
	flex: 0 0 62%;
	max-width: 62%;
	display: flex;
}

/* ==========================================================================
   Left Column: Contact Details Card
   ========================================================================== */
.omtw-contact-details-card {
	background: #F9F9F7;
	border: 1px solid #EAEAEA;
	border-radius: 20px;
	padding: 36px 30px;
	width: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	box-sizing: border-box;
}

.omtw-contact-card-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 22px;
	font-weight: 700;
	color: #062D22;
	margin: 0 0 24px 0;
}

.omtw-contact-items-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 28px;
}

.omtw-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.omtw-contact-icon-ring {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #062D22;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 10px rgba(6, 45, 34, 0.15);
}

.omtw-contact-icon-ring i {
	font-size: 18px;
}

.omtw-contact-icon-ring svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.omtw-contact-item-info {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.omtw-contact-item-label {
	font-size: 14px;
	font-weight: 700;
	color: #062D22;
	margin: 0;
}

.omtw-contact-item-value {
	font-size: 13px;
	font-weight: 400;
	color: #64748B;
	line-height: 1.4;
	word-break: break-word;
}

.omtw-contact-divider {
	height: 1px;
	background: #EAEAEA;
	margin: 0 0 24px 0;
	border: none;
}

.omtw-contact-b2b-box {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: auto;
}

.omtw-contact-b2b-title {
	font-size: 14px;
	font-weight: 700;
	color: #062D22;
	margin: 0;
}

.omtw-contact-b2b-desc {
	font-size: 13px;
	font-weight: 400;
	color: #64748B;
	line-height: 1.5;
	margin: 0;
}

/* ==========================================================================
   Right Column: Form Card
   ========================================================================== */
.omtw-contact-form-card {
	background: #FFFFFF;
	border: 1px solid #EAEAEA;
	border-radius: 20px;
	padding: 36px 36px;
	width: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
	box-sizing: border-box;
}

.omtw-contact-form-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.omtw-contact-form-row {
	display: flex;
	gap: 20px;
}

.omtw-contact-form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.omtw-contact-form-group.col-half {
	flex: 1 1 50%;
}

.omtw-contact-form-group.col-full {
	flex: 1 1 100%;
}

.omtw-contact-label {
	font-size: 13px;
	font-weight: 600;
	color: #334155;
}

.omtw-contact-input,
.omtw-contact-select,
.omtw-contact-textarea {
	width: 100%;
	background: #F9F9F7;
	border: 1.5px solid #EAEAEA;
	border-radius: 10px;
	padding: 12px 16px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #1E293B;
	outline: none;
	transition: all 0.25s ease;
	box-sizing: border-box;
}

.omtw-contact-input::placeholder,
.omtw-contact-textarea::placeholder {
	color: #94A3B8;
	font-size: 13.5px;
}

.omtw-contact-input:focus,
.omtw-contact-select:focus,
.omtw-contact-textarea:focus {
	background: #FFFFFF;
	border-color: #062D22;
	box-shadow: 0 0 0 3px rgba(6, 45, 34, 0.08);
}

.omtw-contact-select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%3C64748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 16px;
	padding-right: 38px;
	cursor: pointer;
}

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

.omtw-contact-submit-btn {
	width: 100%;
	background: #062D22;
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 700;
	padding: 14px 28px;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 14px rgba(6, 45, 34, 0.2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 6px;
}

.omtw-contact-submit-btn:hover {
	background: #0A3D2E;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(6, 45, 34, 0.3);
}

.omtw-contact-submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none !important;
}

/* ==========================================================================
   AJAX Response Alert Banner
   ========================================================================== */
.omtw-contact-response {
	display: none;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	margin-top: 16px;
}

.omtw-contact-response.success {
	display: block;
	background: #F0FDF4;
	border: 1px solid #BBF7D0;
	color: #166534;
}

.omtw-contact-response.error {
	display: block;
	background: #FEF2F2;
	border: 1px solid #FECACA;
	color: #991B1B;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 991px) {
	.omtw-contact-grid {
		flex-direction: column;
		gap: 24px;
	}

	.omtw-contact-left-col,
	.omtw-contact-right-col {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.omtw-contact-section {
		padding: 40px 16px;
	}

	.omtw-contact-title {
		font-size: 26px;
	}

	.omtw-contact-form-row {
		flex-direction: column;
		gap: 20px;
	}

	.omtw-contact-details-card,
	.omtw-contact-form-card {
		padding: 24px 20px;
		border-radius: 16px;
	}
}
