@font-face {
	font-family: 'Avenir-Heavy';
	src: url('../assets/fonts/avenir/Avenir-Heavy.otf') format('opentype');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Avenir-Medium';
	src: url('../assets/fonts/avenir/Avenir-Medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Avenir-Regular';
	src: url('../assets/fonts/avenir/Avenir-Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}


* {
	font-family: 'Avenir-Regular', sans-serif;
}

h1,
h2,
h3,
.hero__heading,
.services__title,
.why-choose__title,
.map-info__title,
.social-connect-alt__title,
.footer__heading {
	font-family: 'Avenir-Heavy', sans-serif;
}

button,
.cta-button,
.services__cta,
.hero__tagline,
.why-choose__label,
.map-info__label,
.social-connect-alt__eyebrow,
.service-card__title,
.why-choose__card-title,
.location-card__content h3,
.social-tile__platform {
	font-family: 'Avenir-Medium', sans-serif;
}

p,
.service-card__text,
.why-choose__description,
.why-choose__card-text,
.map-info__description,
.location-card__content p,
.footer__description,
.footer__list a {
	font-family: 'Avenir-Regular', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--color-light: #FFFFFF;
	--color-primary: #024CAA;
	--color-dark: #081157;
	--text-color: #081157;
	--background-color: #FFFFFF;
	--transition: all 0.3s ease-in-out;
	--border-radius: 20px;
	--border-radius-lg: 24px;
	--border-radius-sm: 12px;
	--text-align: right;
	--direction: rtl;
}

body {
	direction: rtl;
	text-align: right;
}

.hero {
	min-height: 100vh;
	display: flex;
	padding: clamp(1rem, 5vw, 4rem);
	gap: clamp(1rem, 3vw, 4rem);
	background-color: var(--background-color);
	position: relative;
	border-bottom: 1px solid rgba(8, 17, 87, 0.1);
}

.hero__primary {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: clamp(1.5rem, 3vw, 3rem);
	padding-top: clamp(1rem, 3vw, 3rem);
}

.header {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 1.5rem;
	border-radius: var(--border-radius);
	background-color: var(--color-primary);
}

.header__controls {
	display: flex;
	gap: 1rem;
	margin-right: auto;
	margin-left: 0;
}

.header__button {
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.header__button:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.header__button-icon {
	width: 20px;
	height: 20px;
	color: #FFFFFF;
}

.header__logo {
	max-width: 150px;
	align-self: flex-start;
}

.hero__content {
	text-align: center;
	margin-block: auto;
}

.hero__tagline {
	font-size: clamp(1rem, 1.5vw, 1.4rem);
	color: var(--text-color);
	opacity: 0.8;
	margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.hero__heading {
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.2;
	color: var(--text-color);
	margin-bottom: clamp(1rem, 2vw, 2rem);
	font-weight: 700;
}

.cta-section {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background-color: #25D366;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: var(--border-radius-sm);
	font-size: 1.1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	width: fit-content;
	min-width: unset;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.cta-button:hover {
	background-color: #128C7E;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.cta-button:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.cta-button__icon {
	order: 1;
	margin-right: 0;
	transition: transform 0.3s ease;
}

.cta-button:hover .cta-button__icon {
	transform: scale(1.2);
}

.cta-button__text {
	padding-right: 0;
	position: relative;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
}

.cta-button:hover::before {
	transform: translateX(100%);
}

.profile {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.profile__image {
	width: 50px;
	height: 50px;
	border-radius: var(--border-radius-sm);
	object-fit: cover;
}

.profile__description {
	font-size: 0.8rem;
	color: #666;
	max-width: 150px;
}

.hero__secondary {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero__image {
	width: 100%;
	height: clamp(300px, 85vh, 800px);
	border-radius: var(--border-radius-lg);
	object-fit: cover;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
}

@media (max-width: 1200px) {
	.hero {
		gap: 2rem;
	}

	.hero__secondary {
		flex: 0.8;
	}
}

@media (max-width: 1024px) {
	.hero {
		flex-direction: column;
		padding: clamp(1rem, 3vw, 2rem);
	}

	.hero__primary {
		text-align: center;
		align-items: center;
	}

	.cta-section {
		justify-content: center;
	}

	.hero__image {
		height: clamp(250px, 50vh, 400px);
	}
}

@media (max-width: 768px) {
	.header {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		padding: 1rem 1.5rem;
		background-color: var(--color-primary);
		width: calc(100% - 2rem);
		margin: 0 auto;
	}

	.header__controls {
		margin: 0;
		width: auto;
		justify-content: flex-end;
	}

	.header__logo {
		margin: 0;
		filter: brightness(0) invert(1);
	}

	.cta-section {
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
	}

	.profile {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}

	.profile__description {
		margin-top: 0.5rem;
	}

	.cta-button {
		width: fit-content;
		order: -1;
	}
}

@media (max-width: 480px) {
	.header {
		padding: 0.75rem 1rem;
	}

	.header__logo {
		max-width: 120px;
	}
}

.services {
	padding: clamp(3rem, 8vw, 8rem) clamp(1rem, 5vw, 4rem);
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: clamp(2rem, 5vw, 6rem);
	background-color: #fff;
}

.services__primary {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding-top: 2rem;
}

.services__header {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.services__title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	justify-content: center;
	text-align: center;
	line-height: 1.2;
	max-width: 15ch;
	margin-left: auto;
	margin-right: auto;
}

.services__arrow {
	width: clamp(24px, 3vw, 32px);
	height: auto;
	color: var(--text-color);
	transform: scaleX(-1);
	flex-shrink: 0;
}

.services__cta {
	margin: 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background-color: var(--color-primary);
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: var(--border-radius-sm);
	font-size: 1.1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	width: fit-content;
	text-decoration: none;
}

.services__cta:hover {
	background-color: var(--color-dark);
	box-shadow: 0 4px 12px rgba(2, 76, 170, 0.15);
}

.services__cta:hover svg {
	transform: none;
}

.services__description {
	font-size: 1.1rem;
	color: #666;
	max-width: 400px;
	line-height: 1.6;
	text-align: center;
	margin: 0 auto;
}

.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1rem, 3vw, 2rem);
}

.service-card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.service-card__title {
	font-size: 1.2rem;
	color: var(--text-color);
	font-weight: 600;
}

.service-card__image {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	border-radius: var(--border-radius-lg);
	transition: transform 0.3s ease;
}

.service-card__image:hover {
	transform: scale(1.02);
}

.service-card__text {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.5;
}

@media (max-width: 1024px) {
	.services {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.services__primary {
		text-align: center;
		align-items: center;
	}

	.services__description {
		max-width: 600px;
	}
}

@media (max-width: 768px) {
	.services__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.services__grid {
		grid-template-columns: 1fr;
	}
}

.services__grid-container {
	position: relative;
	overflow: hidden;
	padding: 0 3rem;
}

.services__grid {
	display: flex;
	gap: clamp(1rem, 3vw, 2rem);
	transition: transform 0.5s ease;
}

.service-card {
	flex: 0 0 calc(33.333% - clamp(0.67rem, 2vw, 1.33rem));
	min-width: 250px;
}

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
}

.slider-arrow--prev {
	left: 0;
	right: auto;
}

.slider-arrow--next {
	right: 0;
	left: auto;
}

.slider-arrow svg {
	width: 24px;
	height: 24px;
}

@media (max-width: 1024px) {
	.service-card {
		flex: 0 0 calc(50% - clamp(0.5rem, 1.5vw, 1rem));
	}
}

@media (max-width: 480px) {
	.service-card {
		flex: 0 0 100%;
	}
}

.why-choose {
	padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 4rem);
	background-color: var(--color-light);
	border-bottom: 1px solid rgba(8, 17, 87, 0.1);
}

.why-choose__content {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: clamp(2rem, 5vw, 6rem);
	max-width: 1400px;
	margin: 0 auto;
}

.why-choose__header {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	position: static;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}

.why-choose__title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	justify-content: center;
	text-align: center;
	line-height: 1.2;
	max-width: 15ch;
	margin-left: auto;
	margin-right: auto;
}

.why-choose__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 1rem;
}

.why-choose__card {
	background-color: white;
	padding: 2rem;
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
	border: 1px solid rgba(8, 17, 87, 0.1);
	margin-bottom: 1rem;
}

.why-choose__card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-choose__number {
	font-size: 1.25rem;
	font-weight: 600;
	color: #ddd;
	transition: color 0.3s ease;
}

.why-choose__card:hover .why-choose__number {
	color: var(--color-primary);
}

.why-choose__card-title {
	font-size: 1.1rem;
	color: var(--text-color);
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.why-choose__card-text {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.6;
}

@media (max-width: 1024px) {
	.why-choose__content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.why-choose__header {
		position: static;
		text-align: center;
		align-items: center;
	}
}

@media (max-width: 768px) {
	.why-choose__cards {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.why-choose__content {
		gap: 1.5rem;
	}

	.why-choose__header {
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.services__description {
		margin-bottom: 0;
	}
}

.map-section {
	padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 4rem);
	background-color: white;
}

.map-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: clamp(2rem, 5vw, 6rem);
}

.map-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.map-info__header {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.map-info__title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: clamp(0.5rem, 1vw, 1rem);
	text-align: center;
	line-height: 1.2;
	max-width: 15ch;
	margin-left: auto;
	margin-right: auto;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	margin: 1rem 0;
}

.contact-info__group {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 2rem;
}

.contact-info__group:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.contact-info__group h3 {
	font-family: 'Avenir-Heavy', sans-serif;
	font-size: 1.2rem;
	color: var(--text-color);
	margin-bottom: 1rem;
}

.contact-info__group p {
	color: #666;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 0.5rem;
}

.map-container {
	position: relative;
	background: white;
	border-radius: var(--border-radius-lg);
	overflow: visible;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	height: 100%;
	min-height: 600px;
	border: 10px solid white;
	margin-top: 60px;
}

.map-overlay {
	position: absolute;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: auto;
	z-index: 2;
	pointer-events: none;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
	margin-bottom: 30px;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	position: relative;
	z-index: 0;
}

@media (max-width: 1024px) {
	.map-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.map-info {
		text-align: center;
		align-items: center;
	}

	.map-info__header {
		text-align: center;
		align-items: center;
	}

	.map-info__title {
		justify-content: center;
	}

	.services__description {
		text-align: center;
		max-width: 600px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.contact-info__group {
		padding-bottom: 1.5rem;
	}
}

.social-connect {
	padding: 4rem 0;
	background: linear-gradient(to bottom, var(--color-light) 0%, #fff 100%);
}

.social-connect__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.social-connect__header {
	text-align: center;
	margin-bottom: 3rem;
}

.social-connect__title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	color: var(--text-color);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	text-align: center;
	line-height: 1.2;
	max-width: 15ch;
	margin-left: auto;
	margin-right: auto;
}

.social-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
}

.social-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem 2rem;
	border-radius: var(--border-radius);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 2px solid var(--color-primary);
}

.social-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	background-color: rgba(2, 76, 170, 0.1);
}

.social-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.social-card:hover::before {
	opacity: 1;
}

.social-card__icon {
	font-size: 1.75rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.social-card__content {
	text-align: right;
}

.social-card__content h3 {
	font-family: 'Avenir-Medium', sans-serif;
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
	direction: ltr;
	text-align: right;
}

.social-card__content p {
	font-size: 0.9rem;
	opacity: 0.9;
	margin: 0;
}

.social-card__arrow {
	font-size: 1.25rem;
	transition: transform 0.3s ease;
}

.social-card:hover .social-card__arrow {
	transform: translateX(-5px);
}

.instagram {
	background: transparent;
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.instagram:hover {
	background-color: rgba(2, 76, 170, 0.1);
	color: var(--color-primary);
}

.facebook {
	background: transparent;
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.facebook:hover {
	background-color: rgba(2, 76, 170, 0.1);
	color: var(--color-primary);
}

.x-twitter {
	background: transparent;
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.x-twitter:hover {
	background-color: rgba(2, 76, 170, 0.1);
	color: var(--color-primary);
}

.whatsapp {
	background: transparent;
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.whatsapp:hover {
	background-color: rgba(2, 76, 170, 0.1);
	color: var(--color-primary);
}

@media (max-width: 992px) {
	.social-grid {
		gap: 1.5rem;
	}

	.social-card {
		padding: 1.25rem 1.5rem;
	}
}

@media (max-width: 768px) {
	.social-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
	}
}

@media (max-width: 480px) {
	.social-card {
		padding: 1rem 1.25rem;
	}

	.social-card__icon {
		font-size: 1.5rem;
		width: 35px;
		height: 35px;
	}

	.social-card__content h3 {
		font-size: 1.1rem;
	}

	.social-card__content p {
		font-size: 0.85rem;
	}
}

.video-container {
	position: relative;
	width: 100%;
	height: clamp(300px, 85vh, 800px);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	background-color: #000;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.video-container:hover .video-controls {
	opacity: 1;
}

.video-control {
	background: transparent;
	border: none;
	color: white;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.3s ease;
}

.video-control:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.progress-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.progress-bar {
	width: 100%;
	height: 4px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	cursor: pointer;
	position: relative;
}

.progress-filled {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #fff;
	border-radius: 10px;
	width: 0%;
	transition: width 0.1s linear;
}

.time-display {
	display: flex;
	justify-content: space-between;
	color: white;
	font-size: 0.8rem;
	opacity: 0.8;
}

.hidden {
	display: none;
}

@media (max-width: 1024px) {
	.video-container {
		height: clamp(250px, 50vh, 400px);
	}
}

.decorated-heading {
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
}

.decorated-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--secondary-color), transparent);
	border-radius: 2px;
}

.circle-decoration {
	position: relative;
	display: inline-block;
	z-index: 1;
}

.circle-decoration::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120%;
	height: 120%;
	background: rgba(9, 132, 227, 0.1);
	border-radius: 50%;
	z-index: -1;
	transition: all 0.3s ease;
}

.circle-decoration:hover::before {
	transform: translate(-50%, -50%) scale(1.1);
	background: rgba(9, 132, 227, 0.15);
}

.dotted-underline {
	position: relative;
	display: inline-block;
}

.dotted-underline::after {
	content: '';
	position: absolute;
	bottom: -8px;
	right: 0;
	width: 100%;
	height: 2px;
	background-image: linear-gradient(90deg, var(--color-primary) 50%, transparent 50%);
	background-size: 8px 1px;
	background-repeat: repeat-x;
	opacity: 0.7;
}

.dotted-underline:hover::after {
	opacity: 1;
}

.why-choose__card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.why-choose__icon {
	font-size: 2rem;
	color: var(--color-primary);
	margin-bottom: 1rem;
}

.why-choose__number {
	font-size: 1.5rem;
	font-weight: 600;
	color: #ddd;
	transition: color 0.3s ease;
}

.why-choose__card {
	padding: 2.5rem;
}

.footer {
	background-color: var(--color-primary);
	padding: 2rem 0;
	font-size: 0.85rem;
}

.footer__container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.footer__content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	padding: 1rem 0;
}

.footer__section {
	min-width: 200px;
}

.footer__heading {
	color: #FFFFFF;
	font-family: 'Avenir-Medium', sans-serif;
	font-size: 0.85rem;
	margin-bottom: 1.2rem;
	opacity: 0.9;
}

.footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer__list li {
	margin-bottom: 0.8rem;
}

.footer__list a {
	color: #FFFFFF;
	text-decoration: none;
	transition: color 0.2s ease;
	opacity: 0.8;
}

.footer__list a:hover {
	color: #FFFFFF;
	opacity: 1;
}

.footer__divider {
	height: 1px;
	background-color: rgba(255, 255, 255, 0.1);
	margin: 2rem 0;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	color: #6e6e73;
	font-size: 0.8rem;
}

.footer__legal {
	display: flex;
	gap: 2rem;
}

.footer__legal a {
	color: #FFFFFF;
	text-decoration: none;
	opacity: 0.8;
}

.footer__legal a:hover {
	color: #FFFFFF;
	opacity: 1;
}

.footer__copyright {
	color: #FFFFFF;
	opacity: 0.8;
}

.footer__locale a {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #FFFFFF;
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.footer__locale a:hover {
	opacity: 1;
}

@media (max-width: 992px) {
	.footer__content {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 4rem;
	}
}

@media (max-width: 768px) {
	.footer {
		padding: 1.5rem 0;
	}

	.footer__bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.footer__legal {
		flex-direction: column;
		gap: 0.8rem;
		align-items: center;
	}
}

@media (max-width: 576px) {
	.footer__content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer__section {
		text-align: center;
	}

	.footer__brand {
		padding: 1rem 0;
		text-align: center;
		margin: 0 auto;
	}

	.footer__logo {
		margin: 0 auto 1rem;
	}

	.footer__description {
		text-align: center;
	}

	.footer__divider {
		margin: 1rem 0;
	}

	.footer__heading {
		margin-bottom: 0.8rem;
	}

	.footer__list li {
		margin-bottom: 0.6rem;
	}
}

.footer__brand {
	padding: 2rem 0;
	text-align: right;
	max-width: 600px;
}

.footer__logo {
	width: 150px;
	height: auto;
	margin-bottom: 1rem;
	filter: brightness(0) invert(1);
}

.footer__description {
	color: #FFFFFF;
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
	opacity: 0.8;
}

@media (max-width: 768px) {
	.footer__brand {
		text-align: center;
		margin: 0 auto;
	}

	.footer__logo {
		margin: 0 auto 1rem;
	}

	.footer__description {
		text-align: center;
	}
}

.footer__developer {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	margin-top: 0.5rem;
	font-size: 0.75rem;
	color: #FFFFFF;
	letter-spacing: 0.01em;
	opacity: 0.7;
}

.footer__developer a {
	color: #FFFFFF;
	text-decoration: none;
	transition: color 0.2s ease;
	opacity: 0.9;
}

.footer__developer a:hover {
	color: #FFFFFF;
	opacity: 1;
}

.why-choose {
	background-color: var(--color-light);
}

.social-connect {
	background: linear-gradient(to bottom, var(--color-light) 0%, #fff 100%);
}

.footer {
	background-color: var(--color-primary);
}

.services,
.map-section {
	border-bottom: 1px solid rgba(8, 17, 87, 0.1);
}

.why-choose__card {
	box-shadow: 0 4px 12px rgba(8, 17, 87, 0.05);
}

.footer__flag {
	display: block;
	margin: 0.5rem auto 0;
	width: 16px;
	height: auto;
	border-radius: 6px;
}

.services__title,
.why-choose__title,
.map-info__title,
.social-connect__title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: clamp(0.5rem, 1vw, 1rem);
	justify-content: center;
	text-align: center;
	line-height: 1.2;
	max-width: 15ch;
	margin-left: auto;
	margin-right: auto;
}

.social-connect__title {
	font-size: clamp(2rem, 4vw, 3.5rem) !important;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
}

.modal__content {
	background-color: white;
	border-radius: var(--border-radius);
	width: 90%;
	max-width: 600px;
	position: relative;
	transform: translateY(-20px);
	transition: transform 0.3s ease;
}

.modal.show .modal__content {
	transform: translateY(0);
}

.modal__header {
	padding: 1.5rem;
	border-bottom: 1px solid rgba(8, 17, 87, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.modal__header h3 {
	margin: 0;
	color: var(--text-color);
	font-size: 1.25rem;
}

.modal__close {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #666;
	padding: 0.5rem;
	transition: color 0.3s ease;
}

.modal__close:hover {
	color: var(--text-color);
}

.modal__body {
	padding: 1.5rem;
}

.modal__address {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	color: var(--text-color);
}

.modal__map {
	width: 100%;
	height: 300px;
	border-radius: var(--border-radius-sm);
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.modal__map iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.modal__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background-color: var(--color-primary);
	color: white;
	text-decoration: none;
	padding: 1rem;
	border-radius: var(--border-radius-sm);
	transition: background-color 0.3s ease;
}

.modal__button:hover {
	background-color: var(--color-dark);
}

.splash-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-light);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.splash-screen.hidden {
	opacity: 0;
	visibility: hidden;
}

.splash-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.splash-logo {
	width: 200px;
	height: auto;
	animation: pulse 2s infinite;
}

.loading-bar {
	width: 200px;
	height: 4px;
	background-color: rgba(2, 76, 170, 0.1);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}

.loading-progress {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0%;
	background-color: var(--color-primary);
	border-radius: 2px;
	animation: loading 2s ease-out forwards;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes loading {
	0% {
		width: 0%;
	}

	100% {
		width: 100%;
	}
}

.services__grid-container {
	position: relative;
	overflow: hidden;
	padding: 0 3rem;
	direction: rtl;
}

.services__grid {
	display: flex;
	gap: 2rem;
	transition: transform 0.5s ease;
}

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background-color: var(--color-primary);
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.slider-arrow:hover {
	background-color: var(--color-dark);
	transform: translateY(-50%) scale(1.1);
}

.slider-arrow:disabled {
	background-color: #ccc;
	cursor: not-allowed;
	opacity: 0.5;
}

.slider-arrow--prev {
	left: 0;
	right: auto;
}

.slider-arrow--next {
	right: 0;
	left: auto;
}

.slider-arrow svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.slider-arrow--prev svg {
	transform: rotate(180deg);
}

.slider-arrow--next svg {
	transform: rotate(180deg);
}

.service-card {
	flex: 0 0 calc(33.333% - 1.33rem);
	min-width: 280px;
	direction: rtl;
}