/* ==========================================================================
   Services Page Stylesheet (Specific Styles)
   ========================================================================== */

/* --- Hero Section --- */
.cosmetology-hero-section {
	position: relative;
	height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: var(--color-black);
}

.cosmetology-hero-section .about-hero-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.cosmetology-hero-section .about-hero-grid {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cosmetology-hero-section .about-hero-content {
	max-width: 768px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.cosmetology-hero-section .about-hero-title {
	font-family: var(--font-heading);
	font-size: 64px;
	font-weight: 700;
	line-height: 0.9;
	letter-spacing: -1.92px;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
}

.cosmetology-hero-section .about-hero-title span {
	color: var(--color-red);
}

.cosmetology-hero-section .about-hero-subtitle {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-white);
	margin: 0;
}

/* --- Social Sidebar --- */
.cosmetology-hero-section .hero-socials {
	position: absolute;
	right: 80px;
	top: calc(50% - 100px);
	display: flex;
	flex-direction: column;
	gap: 7px;
	z-index: 10;
}

.cosmetology-hero-section .hero-social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background-color: var(--color-red);
	transition: var(--transition);
	text-decoration: none;
}

.cosmetology-hero-section .hero-social-btn:hover {
	background-color: #a00000;
}

.cosmetology-hero-section .hero-social-btn i {
	font-size: 24px;
	color: var(--color-white);
}

.cosmetology-hero-section .hero-social-btn img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

/* Align socials with container right border at wider screens */
@media (min-width: 1440px) {
	.cosmetology-hero-section .hero-socials {
		right: calc(50% - 640px);
	}
}

/* Mobile responsive */
@media (max-width: 768px) {
	.cosmetology-hero-section {
		height: auto;
		min-height: auto;
		padding-top: 240px;
		padding-bottom: 240px;
	}

	.cosmetology-hero-section .about-hero-content {
		padding: 0 16px;
	}

	.cosmetology-hero-section .about-hero-title {
		font-size: 48px;
		letter-spacing: -1.44px;
	}

	.cosmetology-hero-section .about-hero-subtitle {
		font-size: 16px;
	}

	.cosmetology-hero-section .hero-socials {
		display: none;
	}
}

/* --- Zones Section --- */
.zones-section {
	position: relative;
	padding: 80px 0;
	background-color: var(--color-black);
	overflow: hidden;
}

.zones-section::before {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 615px;
	height: 588px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(400px);
	top: 50%;
	left: -300px;
	transform: translateY(-50%);
	opacity: 0.6;
}

.zones-section .gohard-container {
	position: relative;
	z-index: 2;
}

.zones-header {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	text-align: center;
	margin-bottom: 56px;
}

.zones-section-title {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
}

.zones-section-subtitle {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
	margin: 0;
}

.zones-tabs-wrapper {
	width: 100%;
	border: 1px solid var(--color-red);
	padding: 8px;
	box-sizing: border-box;
	margin-bottom: 57px;
}

.zones-tabs {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 8px;
}

.zones-tab {
	background: transparent;
	border: none;
	padding: 12px 16px;
	cursor: pointer;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	box-sizing: border-box;
}

.zones-tab span {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	color: #7D7D7D;
	white-space: nowrap;
	transition: var(--transition);
}

.zones-tab.active {
	background-color: var(--color-red);
	box-shadow: 0px 1px 1px rgba(145, 158, 171, 0.16);
}

.zones-tab.active span {
	color: var(--color-white);
}

.zones-tab:hover:not(.active) span {
	color: var(--color-white);
}

.zones-content-wrapper {
	position: relative;
	width: 100%;
}

.zone-content-item {
	display: none;
	width: 100%;
}

.zone-content-item.active {
	display: block;
	animation: zonesFadeIn 0.4s ease-in-out;
}

@keyframes zonesFadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.zone-grid {
	display: grid;
	grid-template-columns: 625px 1fr;
	gap: 20px;
	align-items: stretch;
}

.zone-carousel-container {
	position: relative;
	width: 625px;
	height: 400px;
	overflow: hidden;
}

.zone-carousel {
	width: 100%;
	height: 100%;
}

.zone-carousel-cell {
	width: 100%;
	height: 100%;
	margin-right: 10px;
}

.zone-carousel-cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Custom Navigation Arrows */
.zone-carousel-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	pointer-events: none;
	z-index: 10;
}

.zone-carousel-prev,
.zone-carousel-next {
	width: 40px;
	height: 40px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: auto;
	transition: var(--transition);
	color: var(--color-white);
	background-color: var(--color-red);
}

.zone-carousel-prev:hover:not(.disabled),
.zone-carousel-next:hover:not(.disabled) {
	background-color: #a00000;
}

.zone-carousel-prev.disabled,
.zone-carousel-next.disabled {
	background-color: #7D7D7D;
	cursor: not-allowed;
	pointer-events: none;
}

.zone-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	box-sizing: border-box;
}

.zone-info-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.zone-title {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-red);
	margin: 0;
}

.zone-description {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-white);
}

.zone-description p {
	margin: 0;
}

.zone-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	min-width: 182px;
	max-width: 210px;
	height: 52px;
	background-color: var(--color-red);
	color: var(--color-white);
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	text-decoration: none;
	transition: var(--transition);
	cursor: pointer;
	border: none;
	border-radius: 0;
	box-sizing: border-box;
	margin-top: 32px;
}

.zone-btn:hover {
	background-color: #a00000;
}

/* ===== ZONES GRID & MULTI-COLUMNS LAYOUT STYLES ===== */
.zone-single-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.zone-buttons-wrapper {
	display: flex;
	gap: 32px;
	align-items: center;
	margin-top: 32px;
	flex-wrap: wrap;
}

.zone-buttons-wrapper .zone-btn {
	margin-top: 0 !important;
}

.zone-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	height: 52px;
	border: 1px solid var(--color-white);
	color: var(--color-white);
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	box-sizing: border-box;
	gap: 8px;
	background: transparent;
	cursor: pointer;
	text-decoration: none;
	transition: var(--transition);
}

.zone-btn-outline:hover {
	background-color: var(--color-white);
	color: var(--color-black) !important;
}

.zone-btn-outline:hover i {
	color: var(--color-black) !important;
}

.zone-btn-outline i {
	font-size: 18px;
	color: var(--color-white);
	transition: var(--transition);
}

.zone-multi-cols-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	width: 100%;
	align-items: stretch;
	margin-top: 40px;
}

.zone-grid-col {
	display: flex;
	flex-direction: column;
	background: rgba(125, 125, 125, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0;
	box-sizing: border-box;
	transition: var(--transition);
}

.zone-grid-col:hover {
	border-color: rgba(255, 255, 255, 0.2);
}

.zone-col-media-wrapper {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
}

.zone-col-media-wrapper .zone-single-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zone-col-carousel {
	width: 100%;
	height: 100%;
}

.zone-col-carousel-cell {
	width: 100%;
	height: 100%;
}

.zone-col-carousel-cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.zone-col-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
	padding: 24px;
	box-sizing: border-box;
}

.zone-col-title {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-red);
	margin: 0 0 16px 0;
}

.zone-col-desc {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-white);
	margin-bottom: 24px;
}

.zone-col-desc p {
	margin: 0;
}

.zone-col-buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: auto;
}

.zone-col-buttons .zone-btn {
	width: 100%;
	max-width: unset;
	margin-top: 0 !important;
}

.zone-col-buttons .zone-btn-outline {
	width: 100%;
	max-width: unset;
	margin-top: 0 !important;
}

/* Flickity built-in arrow overrides for column carousel */
.zone-col-carousel .flickity-prev-next-button {
	width: 32px;
	height: 32px;
	background: var(--color-red);
	border-radius: 0;
	color: var(--color-white);
	opacity: 0.8;
	transition: var(--transition);
}

.zone-col-carousel .flickity-prev-next-button:hover {
	background: #a00000;
	opacity: 1;
}

.zone-col-carousel .flickity-prev-next-button.previous {
	left: 10px;
}

.zone-col-carousel .flickity-prev-next-button.next {
	right: 10px;
}

.zone-col-carousel .flickity-button-icon {
	fill: currentColor;
}

/* Responsive styles */
@media (max-width: 1280px) {
	.zones-tabs-wrapper {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		margin-bottom: 32px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.zones-tabs-wrapper::-webkit-scrollbar {
		display: none;
	}

	.zones-tabs {
		display: flex;
		justify-content: flex-start;
		width: max-content;
		gap: 4px;
	}

	.zones-tab {
		padding: 10px 14px;
		height: 36px;
	}

	.zones-tab span {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.zones-section-title {
		font-size: 32px;
	}

	.zones-section-subtitle {
		font-size: 16px;
	}

	.zone-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.zone-carousel-container {
		width: 100%;
		height: 320px;
	}

	.zone-title {
		font-size: 20px;
		line-height: 1.5;
	}

	.zone-description {
		font-size: 16px;
		line-height: 1.4;
	}

	.zone-btn {
		width: 100%;
		max-width: unset;
		height: 52px;
		margin-top: 24px;
	}

	.zone-carousel-nav {
		padding: 0 10px;
	}

	.zone-multi-cols-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.zone-grid-col {
		border: none;
		background: transparent;
		padding: 0;
	}

	.zone-col-media-wrapper {
		height: 240px;
	}

	.zone-col-info {
		padding: 20px 0 0 0;
	}

	.zone-buttons-wrapper {
		flex-direction: column;
		gap: 16px;
		align-items: stretch;
		width: 100%;
	}

	.zone-buttons-wrapper .zone-btn,
	.zone-buttons-wrapper .zone-btn-outline {
		width: 100% !important;
		max-width: unset !important;
		text-align: center;
	}
}