/* Support Page Section */
.support-section {
	padding: 80px 0;
	background-color: #ffffff;
}

.support-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

/* Support Header Section */
.support-header-section {
	text-align: center;
	padding: 100px 0 80px 0;
}

.support-title {
	font-size: 48px;
	font-weight: 700;
	color: var(--sec-color);
	margin: 0 0 24px 0;
	line-height: 1.2;
}

.support-description {
	font-size: 18px;
	font-weight: 400;
	color: #374151;
	line-height: 1.8;
	margin: 0;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

/* Contact Information Section */
.support-contact-section {
	padding: 60px 0;
}

.support-contact-grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.support-contact-box {
	width: 550px;
	background-color: #E8F4FD;
	border-radius: 12px;
	padding: 32px;
}

.support-contact-title {
	font-size: 20px;
	font-weight: 600;
	color: #1F2937;
	margin: 0 0 12px 0;
}

.support-contact-region {
	font-size: 16px;
	font-weight: 400;
	color: var(--main-color);
	margin: 0 0 20px 0;
}

.support-contact-hours {
	margin-bottom: 24px;
}

.support-hours-label {
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	margin: 0 0 8px 0;
}

.support-hours-text {
	font-size: 14px;
	font-weight: 400;
	color: #6B7280;
	margin: 0 0 4px 0;
	line-height: 1.6;
}

.support-contact-details {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.support-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: #374151;
}

.support-contact-icon {
	flex-shrink: 0;
	color: var(--sec-color);
}

/* Billing & Accounting Section */
.support-billing-section {
	padding: 60px 0;
}

.support-billing-title {
	font-size: 36px;
	font-weight: 700;
	color: #1F2937;
	margin: 0 0 32px 0;
	line-height: 1.2;
}

.support-billing-box {
	max-width: 600px;
}

/* Form Section */
.support-form-section {
	padding: 80px 0 200px 0;
}

.support-form-title {
	font-size: 36px;
	font-weight: 700;
	color: #1F2937;
	margin: 0 0 40px 0;
	line-height: 1.2;
	text-align: center;
}

.support-form-wrapper {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 40px;
	max-width: 900px;
	margin: 0 auto;
}

.support-form {
	width: 100%;
}

.support-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.support-form-row:last-of-type {
	margin-bottom: 0;
}

.support-form-group {
	display: flex;
	flex-direction: column;
}

.support-form-group-email {
	grid-column: 1;
}

.support-form-group-message {
	grid-column: 2;
}

.support-form-group-phone {
	grid-column: 1 / -1;
}

.support-form-input,
.support-form-textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #D1D5DB;
	border-radius: 6px;
	font-size: 15px;
	color: #1F2937;
	background-color: #ffffff;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
	font-family: inherit;
}

.support-form-input:focus,
.support-form-textarea:focus {
	outline: none;
	border-color: var(--sec-color);
}

.support-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.support-phone-input-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
}

.support-phone-country-selector-wrapper {
	position: relative;
	flex-shrink: 0;
}

.support-phone-country-selector {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #D1D5DB;
	border-radius: 6px;
	padding: 12px 12px;
	background-color: #ffffff;
	cursor: pointer;
	transition: border-color 0.2s ease;
	min-width: 100px;
}

.support-phone-country-selector:hover {
	border-color: var(--sec-color);
}

.support-country-flag {
	flex-shrink: 0;
}

.support-country-code-display {
	font-size: 14px;
	color: #1F2937;
	font-weight: 500;
}

.support-country-chevron {
	flex-shrink: 0;
	color: #6B7280;
	transition: transform 0.2s ease;
}

.support-phone-country-selector.active .support-country-chevron {
	transform: rotate(180deg);
}

.support-country-dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background-color: #ffffff;
	border: 1px solid #D1D5DB;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	display: none;
	max-height: 300px;
	overflow-y: auto;
}

.support-country-dropdown.active {
	display: block;
}

.support-country-search-wrapper {
	padding: 12px;
	border-bottom: 1px solid #E5E7EB;
}

.support-country-search {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #D1D5DB;
	border-radius: 4px;
	font-size: 14px;
	color: #1F2937;
}

.support-country-search:focus {
	outline: none;
	border-color: var(--sec-color);
}

.support-country-list {
	max-height: 240px;
	overflow-y: auto;
}

.support-country-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	border-bottom: 1px solid #F3F4F6;
}

.support-country-item:hover {
	background-color: #F9FAFB;
}

.support-country-item:last-child {
	border-bottom: none;
}

.support-country-item-flag {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.support-country-item-flag .support-country-flag {
	width: 24px;
	height: 18px;
}

.support-country-item-text {
	font-size: 14px;
	color: #1F2937;
	flex: 1;
}

.support-form-input-phone {
	flex: 1;
}

.support-form-recaptcha {
	margin-top: 24px;
	margin-bottom: 24px;
}

.support-recaptcha-text {
	font-size: 12px;
	color: #6B7280;
	line-height: 1.6;
	margin: 0;
}

.support-recaptcha-link {
	color: var(--sec-color);
	text-decoration: none;
	transition: color 0.2s ease;
}

.support-recaptcha-link:hover {
	color: var(--main-color);
	text-decoration: underline;
}

.support-form-submit-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.support-form-submit-btn {
	padding: 14px 48px;
	background-color: var(--sec-color);
	color: #ffffff;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease;
	min-width: 200px;
}

.support-form-submit-btn:hover {
	background-color: var(--main-color);
}

.support-form-submit-btn:active {
	transform: translateY(1px);
}

