/* ==========================================================================
   Hessa Clinic — Contact & Location Page Stylesheet
   Inherits from 01-variables.css & Hessa Design System
   ========================================================================== */

/* 1. Quick Contact Cards */
.hessa-contact-card {
	background: #ffffff;
	border-radius: 20px;
	border: 1px solid rgba(25, 51, 41, 0.08);
	box-shadow: 0 4px 20px -4px rgba(25, 51, 41, 0.05);
	padding: 28px 24px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
}

.hessa-contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px -10px rgba(25, 51, 41, 0.12);
	border-color: rgba(100, 140, 125, 0.4);
}

.hessa-contact-card.featured-card {
	background: linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
	border: 1.5px solid rgba(100, 140, 125, 0.35);
	box-shadow: 0 8px 26px -4px rgba(25, 51, 41, 0.08);
}

.hessa-contact-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.hessa-contact-icon-box {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #edf4f0;
	color: #193329;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: all 0.3s ease;
}

.hessa-contact-icon-box i,
.hessa-contact-icon-box svg {
	color: #193329;
	transition: color 0.3s ease, transform 0.3s ease;
}

.hessa-contact-card:hover .hessa-contact-icon-box {
	background: #2f4d42;
}

.hessa-contact-card:hover .hessa-contact-icon-box i,
.hessa-contact-card:hover .hessa-contact-icon-box svg {
	color: #febf60 !important;
	transform: scale(1.1);
}

.hessa-contact-badge {
	font-family: var(--font-sans, "Poppins", sans-serif) !important;
	font-size: 8.5px !important;
	font-weight: 800 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	line-height: 1 !important;
	padding: 4px 7px !important;
	border-radius: 6px !important;
	background: rgba(100, 140, 125, 0.12) !important;
	color: #244136 !important;
	border: 1px solid rgba(100, 140, 125, 0.25) !important;
	display: inline-flex !important;
	align-items: center !important;
	white-space: nowrap !important;
}

.hessa-contact-card.featured-card .hessa-contact-badge {
	background: rgba(254, 191, 96, 0.22) !important;
	color: #8c5500 !important;
	border: 1px solid rgba(254, 191, 96, 0.45) !important;
}

.hessa-contact-title {
	font-family: var(--font-sans, "Poppins", sans-serif) !important;
	font-size: 18px;
	font-weight: 700;
	color: #142a22;
	margin-bottom: 8px;
	line-height: 1.3;
}

.hessa-contact-text {
	font-family: var(--font-sans, "Poppins", sans-serif);
	font-size: 13.5px;
	line-height: 1.6;
	color: #4b5563;
	margin-bottom: 16px;
	flex-grow: 1;
}

.hessa-contact-highlight {
	font-family: var(--font-sans, "Poppins", sans-serif);
	font-size: 15px;
	font-weight: 700;
	color: #142a22;
	margin-bottom: 18px;
	display: block;
}

.hessa-contact-highlight a {
	color: #142a22;
	text-decoration: none;
	transition: color 0.2s;
}

.hessa-contact-highlight a:hover {
	color: #648c7d;
}

.hessa-btn-card-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.25s ease;
	font-family: var(--font-sans, "Poppins", sans-serif);
}

.hessa-btn-card-outline {
	background: #ffffff;
	border: 1.5px solid #d1d5db;
	color: #193329;
}

.hessa-btn-card-outline:hover {
	background: #193329;
	color: #ffffff;
	border-color: #193329;
	transform: translateY(-2px);
}

.hessa-btn-card-primary {
	background: linear-gradient(135deg, #febf60 0%, #f5a834 100%);
	color: #193329;
	border: none;
	box-shadow: 0 4px 14px rgba(254, 191, 96, 0.35);
}

.hessa-btn-card-primary:hover {
	background: linear-gradient(135deg, #f5a834 0%, #e09420 100%);
	color: #142a22;
	box-shadow: 0 6px 20px rgba(254, 191, 96, 0.5);
	transform: translateY(-2px);
}

.hessa-info-box {
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid rgba(25, 51, 41, 0.08);
	box-shadow: 0 4px 16px -4px rgba(25, 51, 41, 0.04);
	padding: 24px;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hessa-info-box:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 28px -6px rgba(25, 51, 41, 0.09);
}

/* 2. Consultation Request Form */
.hessa-form-card {
	background: #ffffff;
	border-radius: 20px;
	border: 1px solid rgba(25, 51, 41, 0.09);
	box-shadow: 0 10px 30px -6px rgba(20, 42, 34, 0.06);
	padding: 30px 26px;
}

.hessa-field-label {
	display: block;
	font-family: var(--font-sans, "Poppins", sans-serif) !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.06em !important;
	color: #374151 !important;
	margin-bottom: 4px !important;
}

.hessa-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.hessa-input-icon {
	position: absolute;
	left: 14px;
	color: #648c7d;
	font-size: 15px;
	pointer-events: none;
	z-index: 2;
}

.hessa-input-control {
	width: 100%;
	background: #f8faf9;
	border: 1.5px solid #e2e8f0;
	border-radius: 10px;
	padding: 9px 14px 9px 40px;
	font-size: 13.5px;
	color: #193329;
	font-family: var(--font-sans, "Poppins", sans-serif);
	transition: all 0.2s ease;
	outline: none;
}

.hessa-input-control:focus {
	background: #ffffff;
	border-color: #648c7d;
	box-shadow: 0 0 0 3.5px rgba(100, 140, 125, 0.16);
}

.hessa-textarea-control {
	width: 100%;
	background: #f8faf9;
	border: 1.5px solid #e2e8f0;
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 13.5px;
	color: #193329;
	font-family: var(--font-sans, "Poppins", sans-serif);
	transition: all 0.2s ease;
	outline: none;
	resize: vertical;
}

.hessa-textarea-control:focus {
	background: #ffffff;
	border-color: #648c7d;
	box-shadow: 0 0 0 3.5px rgba(100, 140, 125, 0.16);
}

.hessa-frosted-badge {
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 16px;
	padding: 12px 16px;
	box-shadow: 0 10px 25px -5px rgba(20, 42, 34, 0.15);
}

.hessa-feature-mini-card {
	background: #f8faf9;
	border: 1px solid rgba(25, 51, 41, 0.07);
	border-radius: 14px;
	padding: 16px 18px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	transition: all 0.25s ease;
}

.hessa-feature-mini-card:hover {
	background: #ffffff;
	box-shadow: 0 8px 22px -4px rgba(25, 51, 41, 0.08);
	border-color: rgba(100, 140, 125, 0.3);
	transform: translateY(-2px);
}

.hessa-feature-mini-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(100, 140, 125, 0.14);
	color: #2f4d42;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}

/* 3. Luxury FAQ Accordion */
.hessa-faq-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.hessa-faq-item {
	background: #ffffff;
	border: 1.5px solid rgba(25, 51, 41, 0.08);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 2px 10px -2px rgba(25, 51, 41, 0.03);
}

.hessa-faq-item:hover {
	border-color: rgba(100, 140, 125, 0.35);
	box-shadow: 0 8px 24px -6px rgba(25, 51, 41, 0.07);
}

.hessa-faq-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	background: #ffffff !important;
	border: none !important;
	outline: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-sans, "Poppins", sans-serif) !important;
	font-size: 16px;
	font-weight: 700;
	color: #142a22 !important;
	box-shadow: none !important;
	border-radius: 16px !important;
}

.hessa-faq-btn::after {
	display: none !important;
}

.hessa-faq-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #edf4f0;
	color: #193329;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.hessa-faq-btn:not(.collapsed) .hessa-faq-icon {
	background: #193329;
	color: #febf60 !important;
	transform: rotate(180deg);
}

.hessa-faq-body {
	padding: 0 24px 22px 24px;
	font-family: var(--font-sans, "Poppins", sans-serif) !important;
	font-size: 14.5px;
	line-height: 1.75;
	color: #4b5563 !important;
}

.hessa-faq-body p {
	color: #4b5563 !important;
	margin-bottom: 0;
}

.hessa-faq-body a {
	color: #2f4d42 !important;
	font-weight: 600;
}

.hessa-faq-body a:hover {
	color: #648c7d !important;
}
