/**
 * Contact Page Styles
 * 
 * Styles for the Contact Us page template with floating labels.
 *
 * @package Onviqa
 * @since 1.0.0
 */

/* ==========================================================================
   Variables & Base
   ========================================================================== */

.only-contact-page {
	--contact-primary: #FF5100;
	--contact-primary-dark: #E54900;
	--contact-dark: #111111;
	--contact-gray-1: #222222;
	--contact-gray-2: #444444;
	--contact-gray-3: #666666;
	--contact-gray-4: #888888;
	--contact-gray-5: #BBBBBB;
	--contact-gray-6: #DDDDDD;
	--contact-gray-7: #E6E9F0;
	--contact-gray-8: #F5F6FA;
	--contact-white: #FFFFFF;
	--contact-radius: 12px;
	--contact-radius-sm: 8px;
	--contact-shadow: 0 24px 30px rgba(0, 0, 0, 0.1);
}

.only-contact-page {
	background-color: var(--contact-white);
}

.only-contact-container {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.only-contact-container {
		padding: 0 20px;
	}
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.only-contact-breadcrumbs {
	padding: 20px 0;
	border-bottom: 1px solid var(--contact-gray-7);
}

/* ==========================================================================
   Hero Section: Title + Form
   ========================================================================== */

.only-contact-hero {
	padding: 50px 0 80px;
}

.only-contact-hero__grid {
	display: grid;
	grid-template-columns: 1fr 600px;
	gap: 80px;
	align-items: start;
}

@media (max-width: 1200px) {
	.only-contact-hero__grid {
		grid-template-columns: 1fr 1fr;
		gap: 60px;
	}
}

@media (max-width: 900px) {
	.only-contact-hero__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* Hero Intro */
.only-contact-hero__intro {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.only-contact-title {
	font-family: 'DM Serif Display', serif;
	font-size: 40px;
	font-weight: 400;
	line-height: 1.35;
	color: var(--contact-dark);
	margin: 0;
}

.only-contact-wave {
	display: inline-block;
	animation: wave 1.5s ease-in-out infinite;
	transform-origin: 70% 70%;
}

@keyframes wave {
	0%, 100% { transform: rotate(0deg); }
	10% { transform: rotate(14deg); }
	20% { transform: rotate(-8deg); }
	30% { transform: rotate(14deg); }
	40% { transform: rotate(-4deg); }
	50%, 100% { transform: rotate(0deg); }
}

.only-contact-desc {
	font-size: 24px;
	line-height: 1.42;
	color: var(--contact-gray-3);
	margin: 0;
}

@media (max-width: 768px) {
	.only-contact-title {
		font-size: 32px;
	}
	
	.only-contact-desc {
		font-size: 18px;
	}
}

/* Email Links */
.only-contact-emails {
	margin-top: 26px;
}

.only-contact-emails__row {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.only-contact-email {
	font-size: 24px;
	font-weight: 600;
	color: var(--contact-dark);
	text-decoration: none;
	transition: color 0.2s ease;
}

.only-contact-email:hover {
	color: var(--contact-primary);
}

.only-contact-divider {
	width: 1px;
	height: 12px;
	background-color: var(--contact-gray-6);
}

.only-contact-emails__note {
	font-size: 20px;
	line-height: 1.4;
	color: var(--contact-gray-3);
	margin: 16px 0 0;
}

@media (max-width: 768px) {
	.only-contact-email {
		font-size: 18px;
	}
	
	.only-contact-emails__note {
		font-size: 16px;
	}
}

/* ==========================================================================
   Contact Form - Floating Labels (matches support form)
   ========================================================================== */

.only-contact-hero__form {
	background-color: var(--contact-gray-8);
	border-radius: var(--contact-radius);
	padding: 40px;
}

@media (max-width: 768px) {
	.only-contact-hero__form {
		padding: 24px;
	}
}

.only-contact-form {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.only-contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media (max-width: 600px) {
	.only-contact-form__row {
		grid-template-columns: 1fr;
	}
}

.only-contact-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.only-contact-label {
	font-family: 'Roboto Flex', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #CCCCCC;
	text-transform: none;
	position: absolute;
	padding: 0 4px;
	background: transparent;
	left: 56px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	pointer-events: none;
	transition: all 0.2s ease;
}

/* Textarea label positioning */
.only-contact-input-wrap--textarea .only-contact-label {
	top: 16px;
	transform: none;
}

/* Floating label when focused or filled */
.only-contact-input-wrap input:focus + .only-contact-label,
.only-contact-input-wrap input:not(:placeholder-shown) + .only-contact-label,
.only-contact-input-wrap textarea:focus + .only-contact-label,
.only-contact-input-wrap textarea:not(:placeholder-shown) + .only-contact-label {
	font-size: 10px;
	line-height: 12px;
	color: #888888;
	text-transform: uppercase;
	background: #FFFFFF;
	left: 12px;
	top: 0;
	transform: translateY(-50%);
}

.only-contact-input-wrap {
	position: relative;
	background-color: var(--contact-white);
	border: 1px solid #E6E9F0;
	border-radius: var(--contact-radius-sm);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	align-items: center;
}

.only-contact-input-wrap--textarea {
	align-items: flex-start;
	min-height: 140px;
}

.only-contact-input-wrap:focus-within {
	border-color: #FF5100;
	box-shadow: 0 0 0 3px rgba(255, 81, 0, 0.1);
}

.only-contact-input-wrap--error {
	border-color: #F44336;
}

.only-contact-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #888888;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	pointer-events: none;
}

.only-contact-icon--top {
	top: 16px;
	transform: none;
}

.only-contact-icon svg {
	width: 24px;
	height: 24px;
}

.only-contact-input-wrap input,
.only-contact-input-wrap textarea {
	width: 100%;
	height: 56px;
	padding: 10px 16px 10px 56px;
	font-family: 'Roboto Flex', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #222222;
	border: none;
	background: transparent;
	outline: none;
	resize: none;
	transition: border-color 0.2s ease;
}

.only-contact-input-wrap textarea {
	height: 140px;
	resize: vertical;
	padding-top: 16px;
}

.only-contact-input-wrap input::placeholder,
.only-contact-input-wrap textarea::placeholder {
	color: #CCCCCC;
	font-weight: 400;
	opacity: 1;
}

/* Honeypot */
.only-contact-honeypot {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

/* Phone field with country selector */
.only-contact-input-wrap--phone {
	display: flex;
	align-items: center;
	position: relative;
}

.only-contact-input-wrap--phone input[type="tel"] {
	padding-left: 110px !important; /* More space to prevent text touching country selector */
}

.only-contact-input-wrap--phone .contact-country-container {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	pointer-events: auto;
}

/* Adjust label position for phone field */
.only-contact-input-wrap--phone .only-contact-label {
	left: 110px;
}

/* Country selector styling overrides for contact form */
.only-contact-input-wrap--phone .ksq-country-selector {
	position: relative;
}

.only-contact-input-wrap--phone .ksq-country-trigger {
	background: transparent;
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	font-size: 14px;
	color: #666666;
}

.only-contact-input-wrap--phone .ksq-country-flag {
	font-size: 18px;
}

.only-contact-input-wrap--phone .ksq-country-dial {
	font-weight: 600;
	color: #222222;
	font-size: 14px;
}

.only-contact-input-wrap--phone .ksq-country-arrow {
	font-size: 10px;
	color: #888888;
	margin-left: 2px;
}

.only-contact-input-wrap--phone .ksq-country-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	background: #FFFFFF;
	border: 1px solid #E6E9F0;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	width: 220px;
	max-height: 280px;
	overflow: hidden;
	z-index: 1000;
}

.only-contact-input-wrap--phone .ksq-country-search-wrapper {
	padding: 8px;
	border-bottom: 1px solid #E6E9F0;
}

.only-contact-input-wrap--phone .ksq-country-search-input {
	width: 100%;
	padding: 6px 10px;
	border: 1px solid #E6E9F0;
	border-radius: 6px;
	font-size: 13px;
	outline: none;
	font-family: 'Roboto Flex', sans-serif;
}

.only-contact-input-wrap--phone .ksq-country-search-input:focus {
	border-color: #FF5100;
}

.only-contact-input-wrap--phone .ksq-country-list {
	max-height: 220px;
	overflow-y: auto;
}

.only-contact-input-wrap--phone .ksq-country-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.only-contact-input-wrap--phone .ksq-country-item:hover {
	background: #F5F6FA;
}

.only-contact-input-wrap--phone .ksq-country-item .ksq-country-flag {
	font-size: 16px;
}

.only-contact-input-wrap--phone .ksq-country-item .ksq-country-code {
	font-size: 11px;
	color: #888888;
	min-width: 28px;
}

.only-contact-input-wrap--phone .ksq-country-item .ksq-country-dial {
	font-size: 13px;
	color: #222222;
	font-weight: 500;
}

.only-contact-input-wrap--phone .ksq-country-no-results {
	padding: 16px;
	text-align: center;
	color: #888888;
	font-size: 13px;
}

/* Submit Button */
.only-contact-submit {
	width: 100%;
	height: 53px;
	padding: 16px 40px;
	background-color: var(--contact-primary);
	color: var(--contact-white);
	font-family: 'Roboto Flex', sans-serif;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: none;
	border-radius: var(--contact-radius);
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
}

.only-contact-submit:hover {
	background-color: var(--contact-primary-dark);
}

.only-contact-submit:active {
	transform: scale(0.98);
}

.only-contact-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.only-contact-submit__loading {
	display: none;
}

.only-contact-submit--loading .only-contact-submit__text {
	display: none;
}

.only-contact-submit--loading .only-contact-submit__loading {
	display: flex;
}

/* Spinner */
.only-spinner {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* Form Message */
.only-contact-form__message {
	padding: 16px;
	border-radius: 8px;
	font-family: 'Roboto Flex', sans-serif;
	font-size: 14px;
	line-height: 20px;
	display: none;
}

.only-contact-form__message--success {
	display: block;
	background: #E8F5E9;
	color: #2E7D32;
	border: 1px solid #4CAF50;
}

.only-contact-form__message--error {
	display: block;
	background: #FFEBEE;
	color: #C62828;
	border: 1px solid #F44336;
}

/* Field Error */
.only-contact-field-error {
	font-size: 12px;
	color: #F44336;
	margin-top: 4px;
	display: block;
}

/* ==========================================================================
   Contact Info Cards
   ========================================================================== */

.only-contact-info {
	padding: 0 0 80px;
}

.only-contact-info__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

@media (max-width: 900px) {
	.only-contact-info__grid {
		grid-template-columns: 1fr;
	}
}

.only-contact-card {
	display: flex;
	gap: 16px;
	padding: 50px;
	background-color: var(--contact-white);
	border: 1px solid var(--contact-gray-6);
}

.only-contact-card:first-child {
	border-right: none;
}

.only-contact-card:last-child {
	border-left: none;
}

@media (max-width: 900px) {
	.only-contact-card {
		border: 1px solid var(--contact-gray-6);
		border-bottom: none;
		padding: 30px;
	}
	
	.only-contact-card:first-child,
	.only-contact-card:last-child {
		border-left: 1px solid var(--contact-gray-6);
		border-right: 1px solid var(--contact-gray-6);
	}
	
	.only-contact-card:last-child {
		border-bottom: 1px solid var(--contact-gray-6);
	}
}

.only-contact-card__icon {
	flex-shrink: 0;
	color: var(--contact-gray-5);
}

.only-contact-card__icon svg {
	width: 80px;
	height: 80px;
}

@media (max-width: 1200px) {
	.only-contact-card__icon svg {
		width: 50px;
		height: 50px;
	}
}

.only-contact-card__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.only-contact-card__label {
	font-size: 20px;
	font-weight: 400;
	color: var(--contact-gray-3);
	margin: 0;
}

.only-contact-card__values {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.only-contact-card__values a,
.only-contact-card__values span {
	font-size: 22px;
	font-weight: 600;
	color: var(--contact-dark);
	text-decoration: none;
	line-height: 1.45;
	transition: color 0.2s ease;
}

.only-contact-card__values a:hover {
	color: var(--contact-primary);
}

@media (max-width: 768px) {
	.only-contact-card__values a,
	.only-contact-card__values span {
		font-size: 18px;
	}
}

/* ==========================================================================
   Map Section
   ========================================================================== */

.only-contact-map {
	padding: 0 0 80px;
}

.only-contact-map__wrapper {
	position: relative;
	border-radius: var(--contact-radius);
	overflow: hidden;
	border: 1px solid var(--contact-gray-6);
}

.only-contact-map__frame {
	width: 100%;
	height: 600px;
}

.only-contact-map__frame iframe {
	width: 100%;
	height: 100%;
	display: block;
}

@media (max-width: 768px) {
	.only-contact-map__frame {
		height: 400px;
	}
}

/* Floating Card on Map */
.only-contact-map__card {
	position: absolute;
	left: 40px;
	bottom: 40px;
	width: 450px;
	background-color: var(--contact-white);
	border: 1px solid var(--contact-gray-7);
	border-radius: var(--contact-radius-sm);
	box-shadow: var(--contact-shadow);
	padding: 40px;
}

@media (max-width: 900px) {
	.only-contact-map__card {
		position: relative;
		left: auto;
		bottom: auto;
		width: 100%;
		border-radius: 0 0 var(--contact-radius) var(--contact-radius);
	}
}

.only-contact-map__card-title {
	font-size: 24px;
	font-weight: 600;
	color: var(--contact-dark);
	margin: 0 0 16px;
}

.only-contact-map__card-address {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--contact-gray-2);
	margin: 0 0 32px;
}

.only-contact-map__card-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 28px;
	background-color: var(--contact-primary);
	color: var(--contact-white);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--contact-radius-sm);
	transition: background-color 0.2s ease;
}

.only-contact-map__card-btn:hover {
	background-color: var(--contact-primary-dark);
	color: var(--contact-white);
}

.only-contact-map__card-btn svg {
	width: 24px;
	height: 24px;
}

@media (max-width: 768px) {
	.only-contact-map__card {
		padding: 24px;
	}
	
	.only-contact-map__card-title {
		font-size: 20px;
	}
	
	.only-contact-map__card-address {
		font-size: 16px;
	}
}

/* ==========================================================================
   Success Modal
   ========================================================================== */

.only-contact-success-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.only-contact-success-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	animation: fadeIn 0.3s ease;
}

.only-contact-success-modal__content {
	position: relative;
	background: #ffffff;
	border-radius: 16px;
	max-width: 500px;
	width: 100%;
	padding: 40px 32px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: slideUp 0.4s ease;
}

.only-contact-success-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: transparent;
	border: none;
	font-size: 28px;
	line-height: 1;
	color: #999;
	cursor: pointer;
	padding: 4px 8px;
	transition: color 0.2s ease;
}

.only-contact-success-modal__close:hover {
	color: #333;
}

.only-contact-success-modal__icon {
	margin: 0 auto 24px;
	animation: scaleIn 0.5s ease 0.2s both;
}

.only-contact-success-modal__title {
	font-family: 'Roboto Flex', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #111;
	margin: 0 0 16px;
}

.only-contact-success-modal__message {
	font-family: 'Roboto Flex', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	margin: 0 0 32px;
}

.only-contact-success-modal__message strong {
	color: #4CAF50;
	font-weight: 600;
}

.only-contact-success-modal__details {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 20px;
	margin: 0 0 32px;
}

.only-contact-success-modal__detail {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: 'Roboto Flex', sans-serif;
	font-size: 14px;
	color: #666;
	margin-bottom: 12px;
}

.only-contact-success-modal__detail:last-child {
	margin-bottom: 0;
}

.only-contact-success-modal__detail svg {
	flex-shrink: 0;
}

.only-contact-success-modal__button {
	background: #FF5100;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	font-family: 'Roboto Flex', sans-serif;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.only-contact-success-modal__button:hover {
	background: #E04800;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 81, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.5);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.only-contact-success-modal__content {
		padding: 32px 24px;
	}

	.only-contact-success-modal__title {
		font-size: 20px;
	}

	.only-contact-success-modal__message {
		font-size: 14px;
	}

	.only-contact-success-modal__detail {
		font-size: 13px;
	}
}

/* ===========================================================================
   File Upload Styles
   =========================================================================== */

.only-contact-file-upload {
	margin-top: 8px;
}

.only-contact-file-label {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background-color: #f8f9fc;
	border: 2px dashed #E6E9F0;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.only-contact-file-label:hover {
	background-color: #f0f2f8;
	border-color: #FF5100;
}

.only-contact-file-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #ffffff;
	border-radius: 8px;
	color: #FF5100;
}

.only-contact-file-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.only-contact-file-text strong {
	font-size: 14px;
	font-weight: 600;
	color: #111111;
}

.only-contact-file-hint {
	font-size: 12px;
	color: #888888;
	display: block;
}

.only-contact-file-preview {
	margin-top: 12px;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.only-contact-file-label {
		padding: 14px 16px;
	}
	
	.only-contact-file-text strong {
		font-size: 13px;
	}
	
	.only-contact-file-hint {
		font-size: 11px;
	}
}

/* ==========================================================================
   Mobile Responsive Styles (max-width: 767px)
   ========================================================================== */

@media (max-width: 767px) {
	/* Remove breadcrumb separator line and set proper spacing */
	.only-contact-breadcrumbs {
		border-bottom: none;
		padding: 0;
	}

	/* Override inner breadcrumb wrapper padding - 16px from header */
	.only-contact-breadcrumbs .only-breadcrumb-wrapper {
		padding: 16px 0 0;
		margin: 0;
	}

	/* Hero Section - 24px gap from breadcrumb */
	.only-contact-hero {
		padding: 24px 0 40px;
	}

	.only-contact-hero__grid {
		gap: 24px;
	}

	/* Hero Intro Section */
	.only-contact-hero__intro {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding: 0;
		gap: 0;
	}

	/* Title */
	.only-contact-title {
		font-family: 'DM Serif Display', serif;
		font-style: normal;
		font-weight: 400;
		font-size: 22px;
		line-height: 26px;
		color: #111111;
		margin: 0 0 12px 0;
	}

	/* Description */
	.only-contact-desc {
		font-family: 'Roboto Flex', sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 12px;
		line-height: 18px;
		color: #666666;
		margin: 0 0 24px 0;
	}

	/* Email Section */
	.only-contact-emails {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding: 0;
		gap: 10px;
		margin: 0;
	}

	.only-contact-emails__row {
		display: flex;
		flex-direction: row;
		align-items: center;
		padding: 0;
		gap: 12px;
	}

	.only-contact-email {
		font-family: 'Roboto Flex', sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 12px;
		line-height: 14px;
		color: #000000;
	}

	.only-contact-divider {
		width: 0;
		height: 12px;
		border: 1px solid #DDDDDD;
		background: transparent;
	}

	.only-contact-emails__note {
		font-family: 'Roboto Flex', sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 10px;
		line-height: 12px;
		color: #666666;
		margin: 0;
	}

	/* Contact Form Container */
	.only-contact-hero__form {
		background: #F5F6FA;
		border-radius: 12px;
		padding: 24px 16px;
	}

	/* Form Layout */
	.only-contact-form {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	/* Form Fields Container */
	.only-contact-form__row {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	/* Individual Field */
	.only-contact-field {
		gap: 0;
	}

	/* Input Wrapper */
	.only-contact-input-wrap {
		background: #FFFFFF;
		border: 1px solid #E6E9F0;
		border-radius: 4px;
		height: 44px;
	}

	.only-contact-input-wrap--textarea {
		height: 120px;
		min-height: 120px;
	}

	/* Icon */
	.only-contact-icon {
		left: 12px;
		width: 18px;
		height: 18px;
	}

	.only-contact-icon svg {
		width: 18px;
		height: 18px;
	}

	/* Input Fields */
	.only-contact-input-wrap input,
	.only-contact-input-wrap textarea {
		height: 44px;
		padding: 8px 12px 8px 42px;
		font-family: 'Roboto Flex', sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 12px;
		line-height: 14px;
		color: #222222;
	}

	.only-contact-input-wrap textarea {
		height: 120px;
		padding-top: 30px;
	}

	/* Labels - Default State */
	.only-contact-label {
		font-family: 'Roboto Flex', sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 10px;
		line-height: 12px;
		color: #888888;
		left: 42px;
	}

	/* Labels - Floating State */
	.only-contact-input-wrap input:focus + .only-contact-label,
	.only-contact-input-wrap input:not(:placeholder-shown) + .only-contact-label,
	.only-contact-input-wrap textarea:focus + .only-contact-label,
	.only-contact-input-wrap textarea:not(:placeholder-shown) + .only-contact-label {
		font-size: 8px;
		line-height: 9px;
		color: #888888;
		left: 12px;
		top: 0;
		transform: translateY(-50%);
		background: #FFFFFF;
		padding: 0 4px;
	}

	/* Phone Field Adjustments */
	.only-contact-input-wrap--phone input[type="tel"] {
		padding-left: 90px !important;
	}

	.only-contact-input-wrap--phone .only-contact-label {
		left: 90px;
	}

	.only-contact-input-wrap--phone input:focus + .only-contact-label,
	.only-contact-input-wrap--phone input:not(:placeholder-shown) + .only-contact-label {
		left: 12px;
	}

	.only-contact-input-wrap--phone .contact-country-container {
		left: 12px;
	}

	/* Textarea Label */
	.only-contact-input-wrap--textarea .only-contact-label {
		top: 13px;
		left: 42px;
	}

	/* Submit Button */
	.only-contact-submit {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 12px 40px;
		gap: 12px;
		height: 43px;
		background: #FF5100;
		border-radius: 8px;
	}

	.only-contact-submit__text {
		font-family: 'Roboto Flex', sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 16px;
		line-height: 19px;
		text-transform: uppercase;
		color: #FFFFFF;
	}

	/* File Upload - Mobile */
	.only-contact-file-upload {
		margin-top: 0;
	}

	.only-contact-file-label {
		padding: 12px;
		gap: 10px;
	}

	.only-contact-file-icon {
		width: 32px;
		height: 32px;
	}

	.only-contact-file-icon svg {
		width: 16px;
		height: 16px;
	}

	.only-contact-file-text strong {
		font-size: 12px;
	}

	.only-contact-file-hint {
		font-size: 10px;
	}

	/* ==========================================================================
	   Contact Info Cards - Mobile
	   ========================================================================== */

	.only-contact-info {
		padding: 0 0 0;
	}

	.only-contact-info__grid {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.only-contact-card {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		padding: 16px 24px;
		width: 100%;
		height: 122px;
		background: #FFFFFF;
		border: 1px solid #DDDDDD;
		box-sizing: border-box;
	}

	.only-contact-card:first-child {
		border-right: 1px solid #DDDDDD;
	}

	.only-contact-card:last-child {
		border-left: 1px solid #DDDDDD;
		border-top: none;
	}

	.only-contact-card:nth-child(2) {
		border-top: none;
	}

	/* Card Content */
	.only-contact-card__content {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding: 0;
		gap: 8px;
		order: 0;
	}

	.only-contact-card__label {
		font-family: 'Roboto Flex', sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 12px;
		line-height: 14px;
		color: #666666;
		margin: 0;
	}

	.only-contact-card__values {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.only-contact-card__values a,
	.only-contact-card__values span {
		font-family: 'Roboto Flex', sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 16px;
		line-height: 22px;
		color: #000000;
	}

	/* Card Icon */
	.only-contact-card__icon {
		order: 1;
		flex-shrink: 0;
	}

	.only-contact-card__icon svg {
		width: 50px;
		height: 50px;
		color: #BBBBBB;
	}

	/* ==========================================================================
	   Map Section - Mobile
	   ========================================================================== */

	.only-contact-map {
		padding: 0 0 0;
	}

	.only-contact-map__wrapper {
		border-radius: 0;
		border: none;
	}

	.only-contact-map__frame {
		height: 500px;
		border: 1px solid #DDDDDD;
	}

	/* Floating Card on Map - Mobile */
	.only-contact-map__card {
		position: absolute;
		left: 20px;
		right: 20px;
		bottom: 20px;
		width: auto;
		max-width: 280px;
		background: #FFFFFF;
		border: 1px solid #E5E5E5;
		box-shadow: 0px 24px 30px rgba(0, 0, 0, 0.1);
		border-radius: 8px;
		padding: 20px;
	}

	.only-contact-map__card-title {
		font-family: 'Roboto Flex', sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 16px;
		line-height: 19px;
		color: #000000;
		margin: 0 0 12px;
	}

	.only-contact-map__card-address {
		font-family: 'Roboto Flex', sans-serif;
		font-style: normal;
		font-weight: 500;
		font-size: 14px;
		line-height: 16px;
		color: #444444;
		margin: 0 0 24px;
	}

	.only-contact-map__card-btn {
		display: inline-flex;
		flex-direction: row;
		align-items: center;
		padding: 12px 20px;
		gap: 8px;
		background: #FF5100;
		border-radius: 4px;
		font-family: 'Roboto Flex', sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 12px;
		line-height: 14px;
		color: #FFFFFF;
	}

	.only-contact-map__card-btn svg {
		width: 16px;
		height: 16px;
	}
}
