/*
	Abu Dhabi Mall - Gift Card
	main.css
	Created on - 14 Nov 2025
	Last modified - 15 SEPT 2026
*/
@font-face {
	font-family: "Gotham";
	src: url("../fonts/Gotham-Book.woff2") format("woff2");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Gotham";
	src: url("../fonts/Gotham-Bold.woff2") format("woff2");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Gotham";
	src: url("../fonts/Gotham-Medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
:root {
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-bold: 700;
	--ff-brand: "Gotham", system-ui, -apple-system, sans-serif;
	--primary-color: #00b0af;
	--secondary-color: #000000;
	--tertiary-color: #444444;
	--complementary-color: #706f73;
	--title-size: 60px;
	--content-size: 20px;
	--gap-150: 150px;
	--wrapper-inline-padding: 100px;
	--wrapper-max-size: 1400px;
	--wrapper-half: calc(var(--wrapper-max-size) / 2);
	--header-height: 120px;
	--scroll-margin: var(--header-height);
	--logo-max-size: 140px;
	--nav-f-size: 14px;
	--btn-f-size: 14px;
	--footer-padding: 80px;
}
@media (max-width: 1600px) {
	:root {
		--header-height: 100px;
		--title-size: 50px;
		--logo-max-size: 110px;
		--nav-f-size: 13px;
		--btn-f-size: 13px;
		--content-size: 18px;
	}
}
@media (max-width: 700px) {
	:root {
		--header-height: 85px;
		--title-size: 26px;
		--logo-max-size: 85px;
		--wrapper-inline-padding: 20px;
		--btn-f-size: 12px;
		--content-size: 15px;
		--gap-150: 80px;
	}
}
*,
*::after,
*::before {
	box-sizing: border-box;
	margin: 0;
}
html,
body {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: var(--ff-brand);
	font-weight: var(--fw-regular);
	line-height: 1.5;
	font-optical-sizing: auto;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.container {
	position: relative;
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--wrapper-inline-padding);
	max-width: calc( var(--wrapper-max-size) + calc(var(--wrapper-inline-padding) * 2) );
}
@media (prefers-reduced-motion: no-preference) {

	.animate,
	.animate-loop {
		opacity: 0;
		transition: all 1s;
		will-change: transform;
	}



	.fade-in {
		opacity: 0;
		transition: opacity ease-in 200ms;
	}



	.animate-up {
		transform: translateY(100px);
	}



	.animate-down {
		transform: translateY(-100px);
	}



	.animate-up-lg {
		transform: translateY(150px);
	}



	.animate-delay-100 {
		transition-delay: 100ms;
	}



	.animate-delay-150 {
		transition-delay: 150ms;
	}



	.animate-delay-200 {
		transition-delay: 200ms;
	}



	.animate-delay-250 {
		transition-delay: 250ms;
	}



	.animate-delay-300 {
		transition-delay: 300ms;
	}



	@media (max-width: 860px) {

		.animate-up {
			transform: translateY(40px);
		}



		.animate-up-lg {
			transform: translateY(80px);
		}



		.animate-delay-100 {
			transition-delay: 30ms;
		}



		.animate-delay-150 {
			transition-delay: 50ms;
		}



		.animate-delay-200 {
			transition-delay: 80ms;
		}



		.animate-delay-250 {
			transition-delay: 100ms;
		}



		.animate-delay-300 {
			transition-delay: 120ms;
		}
	}



	.animated,
	.animate-looped {
		opacity: 1;
		transform: translate(0);
	}



	.fade-in.animated {
		opacity: 1;
	}
}



a {
	text-decoration: none;
}



ul,
ol,
li {
	list-style: none;
	padding: 0;
}



input,
button,
textarea,
select {
	font: inherit;
}



img {
	border: none;
	outline: 0;
	display: block;
}



img.fluid {
	width: 100%;
	height: auto;
}



.img--cover,
.vid--cover {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}



/* ----------------- Header ----------------- */



header {
	width: 100%;
	background: white;
	padding: 15px 0;
	min-height: var(--header-height);
	position: fixed;
	top: 0;
	z-index: 100;
}



header.sticky {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}



.header .logo {
	max-width: var(--logo-max-size);
}



header aside,
.main-nav {
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 10px;
}



.main-nav ul {
	display: flex;
}



.main-nav a {
	display: flex;
	align-items: center;
	color: var(--tertiary-color);
	font-weight: var(--fw-medium);
	font-size: var(--nav-f-size);
	text-transform: uppercase;
	padding: 16px 24px;
	border-radius: 40px;
	transition: color 0.2s, background 0.3s;
}



.main-nav a:hover {
	color: var(--primary-color);
}



.main-nav a.active {
	background: var(--primary-color);
	color: #fff;
}



.main-nav a.lang-btn {
	gap: 5px;
	font-weight: bold;
}



.main-nav a.lang-btn:hover {
	color: var(--primary-color);
	background-color: rgba(0, 0, 0, 0.1);
}



.menu-toggle {
	display: none;
	background: transparent;
	border: 0;
	width: 46px;
	height: 46px;
	cursor: pointer;
	align-items: start;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}



@media (max-width: 1025px) {

	header aside {
		gap: clamp(10px, 2vw, 20px);
	}



	.main-nav {
		position: fixed;
		background-color: white;
		top: calc(var(--header-height) + 10px);
		padding: 20px;
		border-radius: 20px;
		opacity: 0;
		pointer-events: none;
		transform: translateY(25px) scale(0.95);
		box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1);
		transition: opacity 0.2s, transform 0.2s;
		transform-origin: top;
	}



	.menu-open .main-nav {
		opacity: 1;
		transform: translateY(0) scale(1);
		pointer-events: all;
	}



	.main-nav,
	.main-nav ul {
		flex-direction: column;
		align-items: stretch;
	}



	.menu-toggle {
		display: flex;
	}



	.menu-toggle span {
		display: block;
		width: 28px;
		height: 2px;
		border-radius: 4px;
		background-color: var(--complementary-color);
		transition: opacity 0.2s, transform 0.2s ease-in-out;
		transform-origin: center;
	}



	.menu-toggle span:nth-child(2) {
		width: 20px;
	}



	.menu-open .menu-toggle span:nth-child(1) {
		transform: rotate(45deg) translate(6px, 5px);
	}



	.menu-open .menu-toggle span:nth-child(2) {
		opacity: 0;
	}



	.menu-open .menu-toggle span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -3px);
	}
}



/* ----------------- Button ----------------- */



.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-block: clamp(13px, 2vw, 16px);
	padding-inline: clamp(20px, 2vw, 24px);
	font-size: var(--btn-f-size);
	font-weight: var(--fw-medium);
	text-align: center;
	cursor: pointer;
	border-radius: 40px;
	text-transform: uppercase;
	transition: color 0.2s, background-color 0.2s;
}



.btn.btn-lg {
	padding-block: clamp(15px, 2vw, 18px);
	padding-inline: clamp(22px, 2vw, 28px);
}



.btn:has(svg) {
	gap: 10px;
}



.btn.primary {
	color: white;
	background-color: var(--primary-color);
}



.btn.black {
	color: white;
	background: var(--secondary-color);
}



.btn.btn-border-white {
	color: white;
	border: 1px solid white;
}



@media (hover: hover) {

	.btn.primary:hover {
		background-color: var(--secondary-color);
	}



	.btn.black:hover,
	.btn.btn-border-white:hover {
		background-color: var(--primary-color);
	}



	.btn.btn-border-white:hover {
		border-color: var(--primary-color);
	}
}



/* ----------------- banner ----------------- */



.banner {
	position: relative;
	overflow: hidden;
	color: white;
}



.banner.video--banner {
	display: grid;
	height: 100svh;
}



.video--banner video,
.video--banner .video--caption {
	grid-area: 1/1;
}



.image-banner {
	padding-block-start: var(--header-height);
}



.banner-splide-item {
	position: relative;
	width: 100%;
}



.banner__content {
	display: grid;
	justify-items: start;
	gap: clamp(10px, 2vw, 25px);
}



.video--banner .banner__content {
	max-width: 900px;
}



.banner__caption {
	position: absolute;
	inset: 0;
	display: grid;
	z-index: 3;
	align-content: end;
	padding-block-end: clamp(50px, 5vw, 100px);
	background: linear-gradient( 180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.2) 100% );
}



.banner__caption .banner__title {
	font-size: var(--title-size);
	font-weight: var(--fw-regular);
	line-height: 1.1;
	text-wrap: balance;
	text-transform: uppercase;
	max-width: 20ch;
}



.banner__caption .banner__text {
	font-size: var(--content-size);
	text-wrap: balance;
}



.banner__caption .btn__wrapper {
	margin-block-start: clamp(5px, 1vw, 10px);
}



@media (max-width: 700px) {

	.banner__caption .btn__wrapper {
		display: none;
	}

	.banner__caption {
		background: linear-gradient( 180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.5) 100% );
	}
}



/* ------------------ Sections ------------------ */



.title-wrap {
	display: grid;
	gap: clamp(16px, 4vw, 25px);
	justify-items: start;
}



.section-tag {
	display: block;
	font-weight: var(--fw-medium);
	font-size: clamp(15px, 3vw, 20px);
	color: var(--complementary-color);
	text-transform: uppercase;
	letter-spacing: -0.5px;
}



.section-title {
	font-size: var(--title-size);
	font-weight: var(--fw-regular);
	text-transform: uppercase;
	line-height: 1.2;
	text-wrap: balance;
	letter-spacing: -1px;
}



.content p {
	font-size: clamp(15px, 4vw, 18px);
	line-height: 1.6;
}



.title-content p {
	font-size: clamp(14px, 4vw, 18px);
	color: var(--complementary-color);
	text-wrap: balance;
}



.about-card,
.faq,
.t-and-c {
	background: linear-gradient(180deg, #eaffff 0%, #ffffff 100%);
}



/*@media (min-width: 1400px) {



	.title-content {

		padding-block-start: clamp(10px, 4vw, 20px);

	}

}*/



@media (max-width: 700px) {

	h1,
	h2,
	h3 {
		font-weight: var(--fw-medium) !important;
	}
}



/* ------------------ gift card ------------------ */



.about-card {
	padding-block-start: var(--gap-150);
	scroll-margin-block-start: var(--scroll-margin);
}



.about-card figure {
	display: grid;
	gap: clamp(50px, 4vw, 100px);
	grid-template-columns: 1fr 1fr;
	align-items: center;
}



.about-card figcaption {
	display: grid;
	gap: clamp(20px, 2vw, 30px);
}



.about-card .section-tag {
	color: var(--secondary-color);
}



.about-card .section-title {
	color: var(--primary-color);
}



@media (max-width: 900px) {

	.about-card figure {
		grid-template-columns: auto;
	}



	.about-card figure img {
		max-width: 500px;
	}
}



/* ------------------ Process  ------------------ */



.card-process {
	padding-block: var(--gap-150);
	scroll-margin-block-start: var(--scroll-margin);
}



.process-list {
	--col-count: 4;
	--col-gap: 30px;
	display: grid;
	grid-template-columns: repeat(var(--col-count), minmax(0, 1fr));
	gap: var(--col-gap);
	padding-block-start: clamp(40px, 3vw, 60px);
}



.process-list figure {
	display: grid;
	gap: 40px;
	align-content: start;
	padding: clamp(25px, 4vw, 40px);
	border-radius: clamp(10px, 4vw, 20px);
	border: 1px solid rgba(112, 111, 115, 0.5);
}



.process-list figure:nth-child(2) {
	transition-delay: 100ms;
}



.process-list figure:nth-child(3) {
	transition-delay: 150ms;
}



.process-list figure:nth-child(4) {
	transition-delay: 200ms;
}



.process-list figure figcaption {
	display: grid;
	gap: clamp(10px, 2vw, 20px);
}



.process-list figure figcaption h3 {
	font-size: clamp(20px, 4vw, 24px);
	font-weight: var(--fw-medium);
	color: var(--secondary-color);
	letter-spacing: -1px;
}



.process-list figure figcaption p {
	font-size: clamp(15px, 3vw, 18px);
	color: var(--tertiary-color);
}



@media (max-width: 1400px) {

	.process-list {
		--col-count: 2;
	}
}



@media (max-width: 700px) {

	.process-list {
		--col-count: 1;
		--col-gap: 15px;
	}



	.process-list figure {
		grid-template-columns: auto 1fr;
		gap: 25px;
	}



	.process-list figure img {
		max-width: 60px;
		height: 60px;
	}
}



/* ------------------ Faq  ------------------ */



.faq,
.t-and-c {
	padding-block: var(--gap-150);
	scroll-margin-block-start: var(--scroll-margin);
}



.faq .section-title {
	max-width: 700px;
	text-wrap: balance;
}

.accordion-container {
	width: 100%;
	padding-block-start: 30px;
}



.accordion {
	overflow: hidden;
}



.accordion .accordion-link {
	position: relative;
	width: 100%;
	border: 0;
	padding: 0;
	background-color: transparent;
	appearance: none;
	text-align: start;
	color: var(--primary-color);
	font-size: clamp(16px, 4vw, 22px);
	font-weight: var(--fw-medium);
	letter-spacing: -1px;
	padding-block: clamp(20px, 4vw, 30px);
	transition: color 0.2s;
	cursor: pointer;
	padding-inline-end: 50px;
	text-wrap: balance;
}



.accordion .accordion-link:not(.open) {
	color: var(--tertiary-color);
	border-bottom: 1px solid rgba(112, 111, 115, 0.5);
}



.accordion .accordion-link::after,
.accordion .accordion-link::before {
	width: 25px;
	height: 2px;
	content: "";
	background-color: var(--tertiary-color);
	position: absolute;
	right: 0;
	top: calc(50% - 2px);
	transition: transform 0.2s;
}



.accordion .accordion-link::before {
	transform: rotate(90deg);
}



.accordion .accordion-link.open::after {
	transform: rotate(-45deg);
}



.accordion .accordion-link.open::before {
	transform: rotate(45deg);
}



.accordion .content {
	transition: 0.4s;
	height: 0;
	overflow: hidden;
	display: grid;
	align-content: start;
	gap: 20px;
	border-bottom: 1px solid transparent;
}



.accordion .content.active {
	border-bottom-color: var(--primary-color);
}



.accordion .content ul {
	display: grid;
	gap: 10px;
	padding-inline-start: 20px;
	padding-block-end: 3rem;
}



.accordion .content ul li {
	list-style: initial;
	font-size: clamp(15px, 4vw, 18px);
	text-wrap: balance;
}



.accordion .content p a,
.accordion .content ul li a {
	color: #002d2d;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 3px;
}



.accordion .content p,
.accordion .content ul li {
	text-wrap: balance;
}

.accordion .content p {
	max-width: 90ch;
}


@media (max-width: 700px) {

	.accordion .accordion-link,
	.process-list figure figcaption h3 {
		letter-spacing: 0;
	}



	.accordion .accordion-link::after,
	.accordion .accordion-link::before {
		width: 15px;
	}
}



/* ------------------ Footer  ------------------ */



footer {
	background: #000000 url("../images/footer-bg.svg") no-repeat right;
	/*background-size: contain;*/

	color: #fff;
	position: relative;
	padding-block: var(--footer-padding);
}



.footer-mall-info {
	display: none !important;
}



footer .title-wrap .section-title {
	color: var(--primary-color);
}



footer .title-wrap .title-content p {
	color: white;
	padding-block-end: clamp(10px, 4vw, 20px);
}



/*.footer-end {

	margin-block-start: clamp(80px, 4vw, 130px);

}*/



.footer-end .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}



.social-links {
	display: flex;
	gap: 10px;
	justify-content: start;
}



.social-links a {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--tertiary-color);
	transition: background-color 0.2s;
}



.social-links a:hover {
	background-color: var(--primary-color);
}



.footer-logo img {
	filter: invert(1) brightness(100);
	max-width: 140px;
}



.footer-end p.legal {
	font-size: 14px;
	color: var(--complementary-color);
	margin-block-start: 10px;
	width: 100%;
	text-wrap: balance;
}



@media (max-width: 900px) {

	footer {
		background-size: cover;
	}
}



@media (max-width: 700px) {

	footer {
		background-position: left;
		padding-block: 50px 100px;
	}



	.footer-logo {
		display: none;
	}



	.footer-end .container {
		justify-content: center;
		text-align: center;
	}
}



/* ------------------ Balance Modal  ------------------ */



.modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 999;
	background: rgba(0, 0, 0, 0.7);
}



.balance-open .modal {
	display: block;
}



.modal-wrapper {
	display: grid;
	place-items: center;
	height: 100%;
	padding: 20px;
}



.modal-content {
	position: relative;
	width: 100%;
	max-width: 500px;
	background: linear-gradient(180deg, #eaffff 0%, #ffffff 100%);
	padding: clamp(25px, 4vw, 40px);
	border-radius: clamp(10px, 4vw, 20px);
}



.modal-close {
	position: absolute;
	right: 20px;
	top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: var(--secondary-color);
	background-color: #def3f3;
}



.modal-close:hover {
	background-color: var(--secondary-color);
	color: var(--primary-color);
}



.modal-body .title-wrap {
	gap: 15px;
	padding-block-end: 30px;
}



.modal-body .title-wrap .section-title {
	max-width: 80%;
	font-size: clamp(20px, 4vw, 25px);
	font-weight: var(--fw-medium);
	text-wrap: balance;
}



.modal-body .title-wrap p {
	font-size: 14px;
	text-wrap: balance;
}



.modal-body form {
	display: grid;
	gap: 10px;
}



.modal-body form input,
.modal-body form button {
	width: 100%;
	appearance: none;
	height: 54px;
	border: 0;
}



.modal-body form input {
	font-size: 16px;
	background-color: transparent;
	color: black;
	border: 1px solid var(--complementary-color);
	border-radius: 40px;
	padding: 10px 30px;
	text-align: center;
	font-weight: var(--fw-medium);
}



.secure-notice {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-block-start: 20px;
	gap: 10px;
	font-size: 12px;
	color: var(--complementary-color);
}



.card-balance {
	background-color: hsla(180, 100%, 35%, 0.2);
	padding: 25px;
	border-radius: 16px;
	text-transform: uppercase;
	color: var(--primary-color);
	margin-block-start: 15px;
}



.card-balance h6 {
	font-size: 16px;
}



.card-balance .balance-amount {
	font-size: 30px;
	margin-block-start: 10px;
	display: block;
	font-weight: var(--fw-bold);
}



.spinner {
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: white;
	animation: 0.4s spin infinite linear;
	pointer-events: none;
}



.error-msg {
	background-color: hsla(0, 100%, 50%, 0.1);
	padding: 5px 10px;
	border-radius: 20px;
	text-align: center;
	font-size: 13px;
	font-weight: var(--fw-medium);
	color: red;
}



@keyframes spin {

	100% {
		transform: rotate(360deg);
	}
}



@media (max-width: 700px) {

	.modal-body form input,
	.modal-body form button {
		height: 50px;
	}



	.card-balance {
		padding: 20px;
	}



	.card-balance h6 {
		font-size: 14px;
	}



	.card-balance .balance-amount {
		font-size: 22px;
		margin-block-start: 5px;
	}
}



/* 404 Page*/



.main-h-svh {
	min-height: calc(100svh - 250px);
}



.error-page {
	padding-block: 100px;
	display: grid;
	place-items: center;
	align-content: center;
	text-align: center;
	gap: 2rem;
	padding-inline: 2rem;
}



.error-page h1 {
	font-size: clamp(3.75rem, 2.788rem + 3.846vw, 6.25rem);
	font-weight: var(--fw-bold) !important;
	color: var(--primary-color);
	text-box-trim: trim-both;
	text-box-edge: cap alphabetic;
}



.error-page p {
	font-size: clamp(1rem, 0.904rem + 0.385vw, 1.25rem);
	color: var(--tertiary-color);
}

.t-and-c .title-content p {
	color: #000;
	padding-inline-start: 1rem;
	font-size: clamp(14px, 2vw, 16px);
	padding-block-end: clamp(1rem, 3vw, 1.5rem);
}

.t-and-c .title-content ul {
	padding-inline-start: 3rem;
	margin-block-end: 2rem;
	display: grid;
	gap: 10px;
}

.t-and-c .title-content h4 {
	display: block;
	font-weight: var(--fw-medium);
	font-size: clamp(18px, 4vw, 24px);
	color: var(--secondary-color);
	letter-spacing: -0.5px;
	padding-block-start: clamp(20px, 4vw, 30px);
	padding-block-end: clamp(20px, 4vw, 30px);
}

.t-and-c .title-content ul li {
	list-style: initial;
	font-size: clamp(14px, 3vw, 16px);
	text-wrap: balance;
}


@media (max-width: 1280px) {	
	.main-nav a {
		padding: 12px 15px;
	}

}