/**
 * EB Contact Section Widget Styles
 *
 * Split layout: company info left, contact form right.
 * Dark background section.
 */

.eb-contact-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	padding: 80px 48px;
	background-color: #1E1B4B;
	border-radius: 0;
}

/* Info Side */
.eb-contact-section__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.eb-contact-section__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #B09360;
	display: block;
	margin-bottom: 16px;
}

.eb-contact-section__heading {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 600;
	color: #fff;
	margin-bottom: 20px;
	line-height: 1.2;
}

.eb-contact-section__desc {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 32px;
}

.eb-contact-section__details {
	list-style: none;
	padding: 0;
	margin: 0;
}

.eb-contact-section__details li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 16px;
	line-height: 1.5;
}

.eb-contact-section__details svg {
	width: 18px;
	height: 18px;
	color: #B09360;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Form Side */
.eb-contact-section__form {
	display: flex;
	flex-direction: column;
}

.eb-contact-section__form-heading {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 32px;
	letter-spacing: 0.03em;
}

.eb-contact-section__form-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.eb-contact-section__field--full {
	grid-column: span 2;
}

.eb-contact-section__field--half {
	grid-column: span 1;
}

.eb-contact-section__form-inner input,
.eb-contact-section__form-inner textarea {
	width: 100%;
	padding: 14px 0;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 15px;
	font-family: inherit;
	outline: none;
	transition: border-color 0.3s ease;
	resize: none;
}

.eb-contact-section__form-inner input:focus,
.eb-contact-section__form-inner textarea:focus {
	border-bottom-color: #B09360;
}

.eb-contact-section__form-inner input::placeholder,
.eb-contact-section__form-inner textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

/* Submit Button */
.eb-contact-section__submit {
	margin-top: 16px;
	padding: 14px 36px;
	background-color: #B09360;
	color: #fff;
	border: none;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
}

.eb-contact-section__submit:hover {
	background-color: #9A7D4E;
	transform: translateY(-2px);
}

.eb-contact-section__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* Message */
.eb-contact-section__message {
	margin-top: 16px;
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1.5;
}

.eb-contact-section__message--success {
	background-color: rgba(16, 185, 129, 0.15);
	color: #10B981;
	border: 1px solid rgba(16, 185, 129, 0.3);
}

.eb-contact-section__message--error {
	background-color: rgba(239, 68, 68, 0.15);
	color: #EF4444;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
	.eb-contact-section {
		gap: 40px;
		padding: 60px 32px;
	}
}

@media (max-width: 768px) {
	.eb-contact-section {
		grid-template-columns: 1fr;
		padding: 40px 24px;
		gap: 40px;
	}

	.eb-contact-section__form-inner {
		grid-template-columns: 1fr;
	}

	.eb-contact-section__field--half {
		grid-column: span 1;
	}

	.eb-contact-section__field--full {
		grid-column: span 1;
	}
}
