/* Theme main stylesheet */

/* Base */
body {
	font-family: 'Raleway', Arial, sans-serif;
	margin: 0;
	color: #1e1e2d;
	/* background: #dbe3ed; */
	padding: 0;
	margin: 0;
	outline: 0;
}

a:-webkit-any-link {
	color: inherit;
	font-weight: 600;
}

/* Scroll Fade-in Animation */
.sec-container {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sec-container.fade-in-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Fixed Site Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: transparent;
}

.header-container {
	padding: 16.2px 14.4px; /* outer spacing */
	max-width: 1215px;
	margin: 0 auto;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 0.9px solid rgba(255, 255, 255, 0.3);
	border-radius: 14.4px;
	padding: 13.5px 22.5px;
	box-shadow: 
		0 4px 16px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
	position: relative;
}

/* .header-inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% { left: -100%; }
	100% { left: 100%; }
} */

.brand-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	vertical-align: middle;
}

.brand-text {
	color: #2a2751;
	font-weight: 700;
	font-size: 19.8px;
}

.header-container .header-logo {
	width: 100px;
	height: auto;
}


/* Primary menu */
.menu-primary {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	/* gap: 24px; */
}

.menu-primary > li {
	position: relative;
}

.menu-primary a {
	text-decoration: none;
	color: #2a2751;
	font-weight: 700;
	/* font-size: 12.6px; */
	font-size: 14px;
	padding: 7.2px 16px;
	border-radius: 7.2px;
	position: relative;
	z-index: 1;
}

/* .menu-primary > li.menu-item-has-children > a {
	padding-right: 14.4px;
} */

.menu-primary > li.menu-item-has-children  {
	cursor: pointer;
}
.menu-primary > li.menu-item-has-children .sub-menu a:hover {
	text-decoration: underline;
}
.menu-primary > li.menu-item-has-children > a:after {
	content: '▾';
	font-size: 9px;
	margin-left: 5.4px;
}

/* Dropdown */
.menu-primary .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 7.2px; /* small offset under parent */
	display: none;
	/* background: rgba(255, 255, 255, 0.15); */
	background-color: #ffffff;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 7.2px 0;
	list-style: none;
	border-radius: 10.8px;
	border: 0.9px solid rgba(255, 255, 255, 0.3);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Invisible hover bridge to avoid gap flicker */
.menu-primary .sub-menu::before {
	content: '';
	position: absolute;
	top: -7.2px;
	left: 0;
	right: 0;
	height: 7.2px;
}

.menu-primary li:hover > .sub-menu,
.menu-primary li:focus-within > .sub-menu {
	display: block;
}

.menu-primary .sub-menu li {
	white-space: nowrap;
}

.menu-primary .sub-menu a {
	display: block;
	padding: 7.2px 12.6px;
	color: #2a2751;
	border-radius: 5.4px;
	margin: 1.8px 5.4px;
}

/* Right actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 14.4px;
}

.menu-lang {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

.menu-lang a {
	text-decoration: none;
	color: #2a2751;
	font-weight: 700;
	font-size: 12.6px;
	padding: 5.4px 4.5px;
	border-radius: 5.4px;
	position: relative;
	z-index: 1;
}

.menu-lang .menu-lang-list li.pll-parent-menu-item,
.menu-lang .menu-lang-list li.current-lang {
	display: none;
}

.app-buttons {
	display: flex;
	gap: 10.8px;
}

.app-btn {
	display: inline-flex;
	align-items: center;
	/* gap: 10px;	 */
}

.app-btn .app-btn-inner-left {
	display: flex;
	align-items: center;
	justify-content: center;
	border-top-left-radius: 9px;
	border-bottom-left-radius: 9px;
	border: 0.9px solid #2a2751;
	background: #2a2751;
	color: #fff;
	padding: 4.5px 9px;
	height: 27px;
	border-right: 0.9px solid #ffffff
}

.app-btn .app-btn-inner-right {
	display: flex;
	align-items: center;
	justify-content: center;
	border-top-right-radius: 9px;
	border-bottom-right-radius: 9px;
	border: 0.9px solid #2a2751;
	background: #2a2751;
	color: #fff;
	padding: 4.5px 9px;
	height: 27px;
	cursor: pointer;
}

.app-btn .app-label {
	font-size: 12px;
	font-weight: 700;
}

.app-btn a {
	text-decoration: none;
}

.app-btn .qr-icon {
	width: 21.6px;
	height: 21.6px;
	/* background: #ffffff; */
	background-image: url('../img/qr-code_icon_white.png');
	background-size: contain;
	border-radius: 5.4px;
	display: inline-block;
}


.app-btn .app-btn-inner-left:hover {
	background: #fff;
	color: #2a2751;
	border: 0.9px solid #2a2751;
}

.app-btn .app-btn-inner-right:hover {
	background: #fff;
	color: #2a2751;
	border: 0.9px solid #2a2751;
	border-left: 0.9px solid transparent;
}
.app-btn .app-btn-inner-right:hover .qr-icon {
	background-image: url('../img/qr-code_icon_blue.png');
}
/* .app-btn.app-ios {
	background: transparent;
	color: #2a2751;
}

.app-btn.app-ios .qr-icon {
	background: #2a2751;
} */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 7.2px;
	z-index: 1001;
	position: relative;
	margin-left: auto;
}

.mobile-menu-icon {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 21.6px;
	height: 16.2px;
	position: relative;
}

.mobile-menu-icon span {
	display: block;
	height: 2.7px;
	width: 100%;
	background-color: #2a2751;
	border-radius: 2.7px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
	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;
}

.mobile-menu-overlay.active {
	display: block;
	opacity: 1;
}

.mobile-menu-content {
	position: fixed;
	top: 0;
	right: -100%;
	width: 85%;
	max-width: 360px;
	height: 100%;
	background-color: #fff;
	box-shadow: -1.8px 0 9px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	overflow-y: auto;
	z-index: 1001;
}

.mobile-menu-overlay.active .mobile-menu-content {
	right: 0;
}

.mobile-menu-close {
	position: absolute;
	top: 18px;
	right: 18px;
	background: none;
	border: none;
	font-size: 28.8px;
	color: #2a2751;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	width: 28.8px;
	height: 28.8px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1002;
}

.mobile-menu-close:hover {
	color: #000;
}

.mobile-menu-nav {
	padding: 54px 27px 27px;
}

.mobile-main-menu {
	/* margin-bottom: 30px; */
}

.mobile-main-menu .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
}

.mobile-main-menu .menu li {
	margin: 0;
	padding: 0;
	border-bottom: 0.9px solid #e0e0e0;
	display: block;
}

.mobile-main-menu .menu li:last-child {
	border-bottom: none;
}

.mobile-main-menu .menu a {
	display: block;
	padding: 13.5px 0;
	color: #2a2751;
	text-decoration: none;
	font-weight: 600;
	font-size: 14.4px;
	transition: color 0.2s ease;
	width: 100%;
}

.mobile-main-menu .menu a:hover {
	color: #000;
}

.mobile-main-menu .menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 18px;
	display: block;
	position: static;
	background: transparent;
	border: none;
	box-shadow: none;
}

.mobile-main-menu .menu .sub-menu li {
	white-space: normal;
	border-bottom: none;
	padding: 0;
}

.mobile-main-menu .menu .sub-menu a {
	padding: 9px 0 9px 18px;
	font-size: 12.6px;
	font-weight: 500;
}

.mobile-main-menu .menu .menu-item-has-children > a::after {
	display: none;
}

.mobile-lang-menu {
	margin-bottom: 27px;
	padding-top: 18px;
	border-top: 0.9px solid #e0e0e0;
}

.mobile-lang-menu .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	gap: 13.5px;
	flex-wrap: wrap;
}

.mobile-lang-menu .menu li {
	margin: 0;
	padding: 0;
	display: inline-block;
}

.mobile-lang-menu .menu li.pll-parent-menu-item {
	display: none;
}

.mobile-lang-menu .menu a {
	display: inline-block;
	padding: 7.2px 10.8px;
	color: #2a2751;
	text-decoration: none;
	font-weight: 700;
	font-size: 12.6px;
	border-radius: 5.4px;
	transition: all 0.2s ease;
}

.mobile-lang-menu .menu .current-lang a,
.mobile-lang-menu .menu .current-menu-item a {
	font-weight: 900;
}

.mobile-lang-menu .menu .sub-menu {
	display: none;
}

.mobile-app-buttons {
	display: flex;
	flex-direction: row;
	gap: 10.8px;
	padding-top: 18px;
	border-top: 0.9px solid #e0e0e0;
}

.mobile-app-buttons .app-btn {
	width: auto;
	flex: 1;
}

.mobile-app-buttons .app-btn .app-btn-inner-left {
	height: 36px;
	border-top-left-radius: 9px;
	border-bottom-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-right-radius: 9px;
	border-right: 0.9px solid #2a2751;
	width: 100%;
}

.mobile-app-buttons .app-btn .app-btn-inner-right {
	display: none;
}

/* Mobile Menu Responsive Styles - Hide desktop menu, show mobile menu at 1100px and below */
@media (max-width: 1100px) {
	.mobile-menu-toggle {
		display: block;
	}
	
	.header-actions {
		display: none;
	}
}

/* Offset for fixed header */
/* main { margin-top: 96px; } */

/* Footer */
footer {
	padding: 18px;
	text-align: center;
	background: transparent;
}

.hero {
	position: relative;
	height: 100vh;
	background: #dbe3ed;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.8s ease-out;
}

body.butter-bar .hero {
	height: calc(100vh - 100px);
}

.hero.fade-in-visible {
	opacity: 1;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(42, 39, 81, 0.7) 20%, rgba(214, 213, 221, 0) 100%);
	z-index: 1;
}

.hero.sample-dark {
	background-image: url('../img/sample-hero-1.jpg');
}
.hero.sample-light {
	background-image: url('../img/sample-hero-2.jpg');
}

.hero-inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: #dbe3ed; */
	/* background-color: rgba(0, 0, 0, 0.5); */
}

/* Hero layout */
.hero-inner {
	display: grid;
	grid-template-rows: 1fr auto;
	grid-template-columns: 1fr;
	z-index: 2;
	color: #ffffff;
	overflow: hidden;
}

.hero-main-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateY(20px);
	/* width: 50%; */
	width: 80%;
	padding: 0 14.4px;
	opacity: 0;
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-main-content.fade-in-visible {
	opacity: 1;
	transform: translate(-50%, -50%) translateY(0);
	text-align: left;
	max-width: 810px;
}

.home-hero .hero-main-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateY(20px);
	width: 100%;
	padding: 0 14.4px;
	text-align: left;
	opacity: 0;
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.home-hero .hero-main-content.fade-in-visible {
	opacity: 1;
	transform: translate(-50%, -50%) translateY(0);
	max-width: 990px;
}

.hero-title {
	font-size: 36px;
	line-height: 1.1;
	/* color: #2a2751; */
	color: #ffffff;
	margin: 0 0 36px 0;
	font-family: 'Raleway', Arial, Helvetica, sans-serif;
	font-weight: 800;
	max-width: 810px;

}

.hero-subtitle {
	font-size: 25.2px;
	line-height: 1.4;
	/* color: #2a2751; */
	color: #ffffff;
	margin: 0 auto 25.2px;
	font-family: 'Raleway', Arial, Helvetica, sans-serif;
	font-weight: 500;
	/* max-width: 550px; */
	max-width: 80%;
	font-style: italic;
}

.home-hero .hero-title {
	max-width: 495px;
}

.home-hero .hero-subtitle {
	max-width: 495px;
	margin: 0 0 25.2px 0;
}

@media (max-width: 1150px) {
	.hero-title {
		padding: 0 14.4px;
	}
	.hero-subtitle {
		padding: 0 14.4px;
	}
}


.hero-inner .btn {
	display: inline-block;
	border-radius: 25.2px;
	padding: 10.8px 23.4px;
	font-weight: 700;
	text-decoration: none;
	color: #2a2751;
	background-color: #ffffff;
	border: 1.8px solid #ffffff;
}

.hero-inner .btn:hover {
	/* color: #2a2751; */
	color: #ffffff;
	background: transparent;
}

.hero-graphic {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 180px;
	width: 468px;
	height: 144px;
	opacity: 0.2;
	background: radial-gradient(circle at 0 0, #2a2751 0, #2a2751 0) no-repeat,
		linear-gradient(#2a2751,#2a2751) no-repeat;
	background-size: 54px 54px, 468px 126px;
	background-position: -27px -27px, 0 18px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 120px 1fr;
	gap: 72px;
	align-items: end;
	max-width: 990px;
	margin: 0 auto 72px auto;
	width: 95%;
	padding: 0 14.4px;
}

.hero-card {
	position: relative;
	/* color: #2a2751; */
	color: #ffffff;
}

a.hero-card {
	text-decoration: none;
}

.hero-card-title {
	font-size: 14.4px;
	letter-spacing: 0.9px;
	font-weight: 800;
	margin: 0 0 18px 0;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
}

.hero-card-text {
	margin: 0;
	max-width: 414px;
	opacity: 0.8;
	font-family: 'Poppins', sans-serif;
	font-size: 12.6px;
	font-weight: 400;
}

.hero-card-arrow {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	margin-left: 9px;
	font-size: 19.8px;
	transition: transform 0.3s ease;
}

.hero-card:hover .hero-card-arrow,
a.hero-card:hover .hero-card-arrow {
	transform: translateX(5px);
}

.hero-card-center { 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	/* padding-bottom: 80px; */
}

.scroll-indicator {
	width: 21.6px;
	height: 36px;
	border: 1.8px solid #ffffff;
	border-radius: 18px;
	background: transparent;
	position: relative;
}

.scroll-indicator:after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 3.6px;
	height: 7.2px;
	border-radius: 1.8px;
	background: #ffffff;
	top: 5.4px;
	animation: scrollDot 1.4s infinite ease-in-out;
}

@keyframes scrollDot {
	0% { opacity: 0; transform: translate(-50%, 0); }
	30% { opacity: 1; }
	100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* Mobile scroll indicator - use image */
@media (max-width: 767px) {
	.scroll-indicator {
		width: 54px;
		height: 54px;
		border: none;
		border-radius: 0;
		background: transparent;
		background-image: url('../img/mobile-swipe-up.png');
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		animation: dragUp 2.5s infinite ease-in-out;
	}
	
	.scroll-indicator:after {
		display: none;
	}
	
	@keyframes dragUp {
		0% {
			opacity: 0.7;
			transform: translateY(12px);
		}
		50% {
			opacity: 1;
			transform: translateY(-10px);
		}
		100% {
			opacity: 0.7;
			transform: translateY(12px);
		}
	}
}

.hero-scroll-indicator {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 72px;
	grid-row: 2;
}

.butter-bar-container {
	position: relative;
	width: 100%;
	background: #2a2751;
	color: #ffffff;
	display: none;
}

.butter-bar-container .butter-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 36px;
	max-width: 1200px;
	margin: 0 auto;
	gap: 24px;
}

.butter-bar-container .butter-bar-content {
	flex: 1;
	text-align: center;
}

.butter-bar-container .butter-bar-content:only-child {
	flex: 1 1 100%;
	text-align: center;
	max-width: 100%;
}

.butter-bar-container .butter-bar-text {
	margin: 0;
	font-size: 21.6px;
	font-weight: 600;
	line-height: 1.5;
	color: #ffffff;
}

.butter-bar-container .butter-bar-button {
	flex-shrink: 0;
}

.butter-bar-container .butter-bar-btn {
	display: inline-block;
	padding: 10px 24px;
	background: #ffffff;
	color: #2a2751;
	border: none;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	transition: all 0.3s ease;
	max-width: 240px;
	white-space: normal;
	word-wrap: break-word;
	text-align: center;
}

.butter-bar-container .butter-bar-btn:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-1px);
}

body.butter-bar .butter-bar-container {
	display: block;
}


@media (max-width: 767px) {
	.butter-bar-container .butter-bar-inner {
		flex-direction: column;
		padding: 18px 20px;
		gap: 16px;
	}

	.butter-bar-container .butter-bar-content {
		width: 100%;
		text-align: center;
	}

	.butter-bar-container .butter-bar-text {
		font-size: 14px;
	}

	.butter-bar-container .butter-bar-button {
		width: 100%;
		text-align: center;
	}

	.butter-bar-container .butter-bar-btn {
		/* width: 100%; */
		padding: 12px 24px;
	}

	/* .home-hero {
		height: initial;
	} */

	body.butter-bar .hero {
		height: initial;
	}

	.home-hero .hero-inner {
		position: relative;
		z-index: 1;
		padding-top: 108px;
	}

	.home-hero .hero-main-content,
	.home-hero .hero-main-content.fade-in-visible {
		position: relative;
		z-index: 1;
		top: auto;
		left: auto;
		transform: none;
		width: 100%;
		max-width: 100%;
		/* padding: 0 14.4px; */
		padding: 0px;
		opacity: 1;
	}

	.home-hero .hero-title,
	.home-hero .hero-subtitle {
		padding: 0 14.4px;
		margin-bottom: 0px;
	}

	.home-hero .hero-grid {
		grid-template-columns: 1fr;
		gap: 10px;
		margin: 0 auto 36px auto;
	}

	.home-hero .hero-card-center {
		justify-content: flex-start;
	}

	.home-hero .hero-card-left {
		grid-row: 1;
		margin-bottom: 18px;
	}

	.home-hero .hero-card-right {
		grid-row: 2;
	}

	.home-hero .hero-card-center {
		grid-row: 3;
	}

	.home-hero .scroll-indicator {
		display: none;
	}

	.home-hero .hero-grid {
		padding: 0 14.4px;
	}

	.hero-title {
		font-size: 28.8px !important;
	}

	.hero-subtitle {
		font-size: 18px !important;
		line-height: 25.2px !important;
		margin-bottom: 90px !important;
	}

	.home-hero .btn {
		padding: 7.2px 14.4px;
	}

	.hero-card {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: flex-start;
	}

	.hero-card-title {
		display: inline-block;
		margin-bottom: 4.5px;
		margin-right: 9px;
		flex: 0 1 auto;
		order: 1;
	}

	.hero-card-arrow {
		position: static;
		display: inline-block;
		margin-left: 0;
		font-size: 19.8px;
		line-height: .9;
		transform: none;
		flex: 0 0 auto;
		order: 2;
		align-self: flex-start;
	}

	.hero-card-text {
		flex: 1 1 100%;
		width: 100%;
		order: 3;
	}
}

@media (max-width: 600px) {
	.hero-card {
		width: 280px;
	}
}

@media (max-width: 550px) {
	.header-inner {
		padding: 4.5px 18px;
	}

	.header-container .header-logo {
		width: 72px;
	}
}

@media (max-width: 500px) {
	.hero-card {
		width: 60%;
	}
}

@media (max-height: 650px) {
	.hero {
		height: initial;
	}
}

.sec-container {
	position: relative;
	padding: 54px 14.4px 36px;
}

.sec-container#home-features .sec-title {
	/* margin-bottom: 60px; */
}
.sec-container#home-features .sec-subtitle {
	margin-bottom: 18px;
}

.sec-container .sec-title {
	position: relative;
	text-align: center;
}
.sec-container .sec-title h1 {
	font-size: 30.6px;
	line-height: 37.8px;
	text-align: center;
	max-width: 891px;
	width: 100%;
	margin: 0 auto;
	text-transform: uppercase;
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 700;
}

.sec-container .sec-subtitle {
	position: relative;
	text-align: center;
}
.sec-container .sec-subtitle h2 {
	font-size: 21.6px;
	line-height: 29.7px;
	text-align: center;
	max-width: 702px;
	width: 100%;
	margin: 0 auto;
	/* text-transform: uppercase; */
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 500;
	margin-top: 9px;
}

.sec-container .p.sec-text {
	font-size: 14.4px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
}


@media (max-width: 767px) {
	.sec-container {
		padding: 36px 14.4px;
	}

	.sec-container .sec-title h1 {
		font-size: 23.4px;
		line-height: 28.8px;
	}
	.sec-container .sec-subtitle h2 {
		font-size: 16.2px;
		line-height: 23.4px;
	}

	.sec-container#home-features .sec-subtitle {
		margin-bottom: 18px;
	}

}

/* Locations Container */

#home-locations {
	padding: 0px 14.4px 54px;
}

.locations-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	max-width: 864px;
	margin: 27px auto 0;
	padding: 0 14.4px;
}

.locations-container .location-card {
	position: relative;
	overflow: hidden;
	/* cursor: pointer;     */
	transition: transform 0.3s ease;
	border-radius: 10px;
}

.locations-container .location-card:hover {
	transform: translateY(-5px);
}

.locations-container .location-image {
	position: relative;
	width: 100%;
	height: 495px;
	border-radius: 9px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

	background-color: #F1F8FE;
}

.locations-container .location-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(42, 39, 81, 0.7) 20%, rgba(214, 213, 221, 0) 50%);
	z-index: 1;
}

/* .location-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
} */

/* .location-card:hover .location-image img {
	transform: scale(1.05);
} */

.locations-container .location-title {
	position: absolute;
	top: 27px;
	left: 36px;
	right: 18px;
	z-index: 3;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 31.5px;
	font-weight: 500;
	color: #ffffff;
	margin: 0;
	font-style: italic;
	margin-top: 0px;
}

.locations-container .location-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #2a2751 0%, #3a3a5a 100%);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.4s ease;
	display: flex;
	/* align-items: center; */
	justify-content: center;
	padding: 36px;
	padding-top: 81px;
	z-index: 3;
}

.locations-container .location-card:hover .location-overlay {
	opacity: 1;
}

.locations-container .overlay-content {
	color: white;
	text-align: left;
	/* max-width: 350px; */
	width: 100%;
}

.locations-container .overlay-content h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 12.6px;
	font-weight: 700;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	color: white;
	margin: 0 0 4.5px 0;
}

.locations-container .overlay-content p {
	font-family: 'Poppins', sans-serif;
	font-size: 12.6px;
	font-weight: 400;
	line-height: 1.5;
	color: white;
	margin: 0 0 27px 0;
	opacity: 0.9;
}

.locations-container .overlay-content ul {
	padding-inline-start: 20px;
	margin-block-start: 0px;
}
.locations-container .overlay-content li {
	margin-bottom: 4.5px;
	font-size: 12.6px;
}

.locations-container .overlay-bottom-cta {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 18px;
	/* background: rgba(0, 0, 0, 0.5); */
	/* border-radius: 10px ; */
}

.locations-container .social-icons {
	display: flex;
	gap: 9px;
	margin: 36px 0 27px 0;
	justify-content: center;
}

.locations-container .social-icon {
	width: 22.5px;
	height: 22.5px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.social-icon img { width: 100%; height: 100%; object-fit: cover; }

.locations-container .social-icon:hover {
	/* background: rgba(255, 255, 255, 0.3); */
	transform: translateY(-2px);
}


.locations-container .learn-more-btn {
	display: block;
	/* width: 100%; */
	padding: 9px 18px;
	background: transparent;
	border: 1.8px solid white;
	border-radius: 45px;
	color: white;
	font-family: 'Poppins', sans-serif;
	font-size: 14.4px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.locations-container .learn-more-btn:hover {
	background: white;
	color: #2a2751;
}

/* Responsive Design */
@media (max-width: 800px) {
	.locations-container {
		grid-template-columns: 1fr;
		gap: 27px;
		margin: 36px auto 0;
		padding: 0 4.5px;
	}
	
	.locations-container .location-card {
		display: flex;
		flex-direction: column;
		overflow: visible;
		height: auto;
		min-height: 0;
		max-height: none;
	}
	
	.locations-container .location-card:hover {
		transform: none;
	}
	
	.locations-container .location-image {
		position: relative;

		overflow: hidden;
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
		background-attachment: scroll;
		display: flex;
		flex-direction: column;
		height: auto;
		min-height: 0;
		border-radius: 9px 9px 0 0;
	}
	
	.locations-container .location-image::before {
		content: '';
		display: block;
		padding-bottom: 56.25%; /* 16:9 aspect ratio */
		width: 100%;
		order: 1;
		position: relative;
		z-index: 0;
	}
	
	.locations-container .location-image::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 0;
		padding-bottom: 56.25%; /* Match the 16:9 aspect ratio */
		background: linear-gradient(135deg, rgba(42, 39, 81, 0.7) 20%, rgba(214, 213, 221, 0) 50%);
		z-index: 2;
		pointer-events: none;
	}
	
	.locations-container .location-card::before {
		display: none;
	}
	
	.locations-container .location-title {
		position: absolute;
		top: 18px;
		left: 18px;
		right: 18px;
		z-index: 3;
		/* font-size: 28px; */
		font-size: 9vw;
		margin: 0;
		pointer-events: none;
	}
	
	.locations-container .location-overlay {
		position: relative;
		opacity: 1;
		background: linear-gradient(135deg, #2a2751 0%, #3a3a5a 100%);
		padding: 27px 18px;
		border-radius: 0 0 9px 9px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		padding-top: 27px;
		z-index: 2;
		height: auto;
		min-height: 0;
		max-height: none;
		order: 2;
		margin-top: 0;
		overflow: visible;
	}
	
	.locations-container .overlay-content {
		color: white;
		text-align: left;
		max-width: 100%;
		order: 1;
		height: auto;
		min-height: 0;
		max-height: none;
		overflow: visible;
	}

	.locations-container .overlay-content ul {
		font-size: 12.6px;
	}
	
	.locations-container .overlay-content h4 {
		color: white;
	}
	
	.locations-container .overlay-content p {
		color: white;
	}
	
	.locations-container .overlay-bottom-cta {
		position: static;
		padding: 0;
		margin-top: 18px;
		order: 2;
		height: auto;
		min-height: 0;
		max-height: none;
		overflow: visible;
	}
	
	.locations-container .social-icons {
		/* justify-content: flex-start; */
		margin: 9px 0 27px;
	}
	
	.locations-container .learn-more-btn {
		border-color: white;
		color: white;
		text-align: center;
	}
	
	.locations-container .learn-more-btn:hover {
		background: white;
		color: #2a2751;
	}
}


@media (max-width: 767px) {
	#home-locations {
		padding: 0px 14.4px 18px;
	}
}

/* App Gallery Section */
#home-app-gallery {
	padding: 36px 14.4px;
	/* background: #f8f9fa; */
	min-height: 450px;
}

.app-gallery-layout {
	display: flex;
	gap: 36px;
	max-width: 1080px;
	margin: 0 auto;
	align-items: center;
	/* min-height: 400px; */
}


.app-gallery-image {
	width: 100%;
	max-width: 469px; /* 405px; */
	height: auto;
	display: block;
	margin: 0 auto;
}
.app-gallery-image img {
	width: 90%;
	height: auto;
	display: block;
	margin: 0 auto;
}



/* App Screenshots Section (70% width) */
.app-screenshots-section {
	/* flex: 0 0 70%; */
	width: 70%;
	position: relative;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	background-color: #8E8CA1;
	padding: 36px 0px;
	border-radius: 9px;
}

.app-screenshots-slider {
	position: relative;
	min-height: 360px;
	flex: 1;
	margin-bottom: 0px !important;
}

/* Fallback styling before Slick.js initializes */
.app-screenshots-slider:not(.slick-initialized) {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	padding: 18px 0;
}

.app-screenshots-slider:not(.slick-initialized) .app-screenshot-slide {
	flex: 0 0 auto;
}

.app-screenshots-slider .slick-slide {
	padding: 0 0px;
	outline: none;
}

.app-screenshots-slider .slick-slide .phone-mockup {
	margin: 0 auto;
}

.phone-mockup {
	width: 225px;
	height: 450px;
	/* background: #e8f2ff; */
	border-radius: 9px;
	/* padding: 20px; */
	/* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	flex-shrink: 0;
}

.phone-mockup img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 13.5px;
}

/* Slick Dots for App Gallery - Matching features slider */
#home-app-gallery .app-screenshots-slider .slick-dots {
	bottom: -28.8px;
}

#home-app-gallery .app-screenshots-slider .slick-dots li button:before {
	font-size: 10.8px;
	color: #d1d5db;
	opacity: 1;
}

#home-app-gallery .app-screenshots-slider .slick-dots li.slick-active button:before {
	color: #2a2751;
}

#home-app-gallery .app-screenshots-slider .slick-dots li {
	margin: 0px;
}

/* App Info Section (30% width) */
.app-info-section {
	flex: 0 0 30%;
	padding: 0px 18px;
	position: sticky;
	top: 90px;
	/* min-height: 500px; */
	/* display: flex; */
	flex-direction: column;
	justify-content: space-between;
	/* background: white; */
	/* border-radius: 12px; */
	/* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.app-info-inner {
	flex: 0 0 auto;
}

.app-info-title {
	font-size: 30.6px;
	line-height: 37.8px;
	text-align: left;
	max-width: 891px;
	width: 100%;
	margin: 0;
	text-transform: uppercase;
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 700;
}

.app-info-description {
	font-family: 'Raleway', Arial, sans-serif;
	font-size: 21.6px;
	line-height: 29.7px;
	font-weight: 500;
	color: #29244C;
	/* line-height: 1.6; */
	margin: 0 0 36px 0;
	opacity: 0.8;
}

.app-download-buttons {
	display: flex;
	/* flex-direction: column; */
	gap: 13.5px;
	flex: 0 0 auto;
	margin-top: auto;
	
	padding-bottom: 27px;
}

.app-download-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4.5px 27px;
	background: #29244C;
	border-radius: 45px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1.8px solid #29244C;
}

.app-download-btn:hover {
	background: transparent;
	transform: translateY(-2px);
	box-shadow: 0 4.5px 13.5px rgba(41, 36, 76, 0.3);
}

.download-btn-text {
	font-family: 'Poppins', sans-serif;
	font-size: 11.7px;
	font-weight: 600;
	color: white;
	text-align: center;
}

.app-download-btn:hover .download-btn-text {
	color: #29244C;
}

/* Responsive Design for App Gallery */
@media (max-width: 1024px) {
	.app-gallery-layout {
		flex-direction: column;
		gap: 36px;
	}
	
	.app-screenshots-section {
		flex: 1;
		order: 2;
	}
	
	.app-info-section {
		flex: 1;
		order: 1;
		position: static;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.app-info-inner {
		text-align: center;
	}
	
	.app-info-title {
		font-size: 30.6px;
		line-height: 37.8px;
		text-align: center;
	}
	
	.app-info-description {
		text-align: center;
	}
	
	.app-download-buttons {
		justify-content: center;
	}
}

@media (max-width: 767px) {
	#home-app-gallery {
		padding: 18px 14.4px 0px;
	}

	.app-gallery-layout {
		flex-direction: column;
		gap: 18px;
	}
	
	.app-screenshots-section {
		width: 100%;
		min-height: 0;
	}
	
	.app-gallery-image {
		width: 100%;
		max-width: 100%;
	}
	
	.phone-mockup {
		width: 126px;
		height: 252px;
		padding: 13.5px;
	}
	
	.app-info-title {
		font-size: 23.4px;
		line-height: 28.8px;
	}
	
	.app-info-description {
		font-size: 16.2px;
		line-height: 23.4px;
		margin-bottom: 18px;
	}
	
	/* .app-download-btn {
		padding: 10.8px 18px;
	} */
	
	.download-btn-text {
		font-size: 12.6px;
	}
}

/* Features Slider */
.features-slider-container {
	/* background: #f8f9fa; */
	padding: 72px 14.4px;
}

.features-slider {
	position: relative;
	max-width: 1296px;
	margin: 0 auto;
}

.features-slider-wrapper {
	padding: 18px 0;
}

/* Slick slider overrides */
.features-slider-wrapper .slick-slide {
	/* padding: 20 15px; */
}

.features-slider-wrapper .slick-dots {
	bottom: -27px;
}

.features-slider-wrapper .slick-dots li button:before {
	font-size: 10.8px;
	color: #d1d5db;
	opacity: 1;
}

.features-slider-wrapper .slick-dots li.slick-active button:before {
	color: #2a2751;
}

.features-slider-wrapper .slick-dots li {
	/* margin: 0 4px; */
	margin: 0px;
}

.feature-card {
	/* background: linear-gradient(135deg, #2a2751 20%, #D6D5DD 100%); */
	background-color: #716d88;
	border-radius: 10.8px;
	overflow: hidden;
	box-shadow: 0 3.6px 18px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	padding: 31.5px 22.5px;
	margin: 0 10.8px;
}

.feature-card-content {
	color: white;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.feature-card-image {
	width: 70%;
	/* height: 250px; */
	overflow: hidden;
	position: relative;
	margin-top: auto;
	margin-left: auto;

	background-color: #f3f3f3;
	border-radius: 10.8px;

	margin-top: 9px;

	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.feature-card-image svg {
	width: 100%;
}

.feature-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: none;
}

.feature-card-title {
	font-size: 18px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	margin: 0 0 9px 0;
	line-height: 1.3;
	display: flex;
	align-items: flex-start;
	overflow: hidden;
}

.feature-card-description {
	font-size: 12.6px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	line-height: 23.4px;
	margin: 0;
	opacity: 0.9;
	display: flex;
	align-items: flex-start;
	overflow: hidden;
}

/* Slick slider arrows (optional) */
.features-slider-wrapper .slick-prev,
.features-slider-wrapper .slick-next {
	z-index: 10;
}

.features-slider-wrapper .slick-prev:before,
.features-slider-wrapper .slick-next:before {
	color: #2a2751;
	font-size: 18px;
}

/* Responsive Design */
@media (max-width: 767px) {

	#about-milestones {
		padding: 18px 14.4px 0px;
	}

	.features-slider-wrapper {
		padding: 14.4px 0;
	}
	
	.feature-card {
		margin: 0 7.2px;
		padding: 22.5px 18px;
	}
	
	/* .feature-card-image {
		height: 90px;
	} */
	
	.feature-card-title {
		font-size: 14.4px;
	}
	
	.feature-card-description {
		font-size: 11.7px;
		line-height: 18px;
	}
}

@media (max-width: 480px) {
	.features-slider-container {
		padding: 54px 14.4px;
	}
	
	.feature-card {
		margin: 0 3.6px;
		padding: 18px 14.4px;
	}
	
	.feature-card-image {
		height: 216px;
	}

	.features-slider-wrapper .slick-dots {
		bottom: -27px;
	}
}

/* Restaurants Section */
#home-restaurants {
	padding: 54px 14.4px 54px;
	/* background: #f8f9fa; */
}

.restaurants-layout {
	display: flex;
	/* gap: 60px; */
	max-width: 1080px;
	margin: 0 auto;
	margin-top: 36px;
	align-items: stretch;
	height: 558px;
}

/* Info Section (33% width) */
.restaurants-info-section {
	flex: 0 0 33%;
	/* padding-right: 20px; */
	background-color: #F1F9FF;
	display: flex;
	align-items: stretch;
}

.restaurants-info-inner {
	padding: 63px 72px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

.restaurants-info-title {
	font-family: 'Raleway', Arial, sans-serif;
	font-size: 32.4px;
	font-weight: 500;
	color: #2a2751;
	margin: 0 0 27px 0;
	line-height: 37.8px;
}

.restaurants-info-description {
	font-family: 'Poppins', sans-serif;
	font-size: 12.6px;
	line-height: 1.6;
	font-weight: 400;
	color: #2a2751;
	margin: 0 0 36px 0;
	opacity: 0.8;
}

.restaurants-cta-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4.5px 27px;
	background: #29244C;
	border-radius: 45px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1.8px solid #29244C;
	width: fit-content;
}

.restaurants-cta-btn:hover {
	background: transparent;
	transform: translateY(-2px);
	box-shadow: 0 4.5px 13.5px rgba(41, 36, 76, 0.3);
}

.restaurants-cta-btn .download-btn-text {
	font-family: 'Poppins', sans-serif;
	font-size: 11.7px;
	font-weight: 600;
	color: white;
	text-align: center;
}

.restaurants-cta-btn:hover .download-btn-text {
	color: #29244C;
}

/* Gallery Section (67% width) */
.restaurants-gallery-section {
	flex: 0 0 100%;
	display: flex;
	align-items: stretch;
}

.restaurants-gallery-section .masonry-gallery {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 1.8px;
	height: 100%;
	width: 100%;
}

/* Masonry Items - Based on uploaded image layout */
.restaurants-gallery-section .masonry-item {
	overflow: hidden;
}

.restaurants-gallery-section .masonry-item-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Specific positioning for each masonry item based on the uploaded image */
.restaurants-gallery-section .masonry-item-1 {
	grid-area: 1 / 1 / 2 / 3;
}

.restaurants-gallery-section .masonry-item-2 {
	grid-area: 1 / 3 / 2 / 4;
}

.restaurants-gallery-section .masonry-item-3 {
	grid-area: 1 / 4 / 2 / 6;
}

.restaurants-gallery-section .masonry-item-4 {
	grid-area: 2 / 1 / 4 / 2;
}

.restaurants-gallery-section .masonry-item-5 {
	grid-area: 2 / 2 / 3 / 3;
}

.restaurants-gallery-section .masonry-item-6 {
	grid-area: 3 / 2 / 4 / 3;
}

.restaurants-gallery-section .masonry-item-7 {
	grid-area: 2 / 3 / 4 / 4;
}

.restaurants-gallery-section .masonry-item-8 {
	grid-area: 2 / 4 / 3 / 5;
}

.restaurants-gallery-section .masonry-item-9 {
	grid-area: 2 / 5 / 3 / 6;
}

.restaurants-gallery-section .masonry-item-10 {
	grid-area: 3 / 4/ 4 / 5;
}

.restaurants-gallery-section .masonry-item-11 {
	grid-area: 3 / 5 / 4 / 6;
}

/* Responsive Design for Restaurants Section */
@media (max-width: 1024px) {
	.restaurants-layout {
		flex-direction: column;
		gap: 36px;
	}
	
	.restaurants-info-section {
		flex: 1;
		text-align: center;
		padding-right: 0;
	}
	
	.restaurants-info-inner {
		position: static;
	}
	
	.restaurants-info-title {
		font-size: 32.4px;
	}
	
	.restaurants-gallery-section {
		flex: 1;
	}
	
	.masonry-gallery {
		grid-template-rows: repeat(4, 120px);
		height: 434.7px;
		gap: 0.9px;
	}
}

@media (max-width: 767px) {
	#home-restaurants {
		padding: 36px 14.4px 18px;
	}
	
	.restaurants-info-title {
		font-size: 25.2px;
	}
	
	.restaurants-info-description {
		font-size: 12.6px;
	}
	
	/* Convert masonry gallery to slider on mobile */

	.restaurants-layout {
		height: initial;
		margin-bottom: 18px;
	}

	.restaurants-gallery-section .masonry-gallery {
		display: block;
		grid-template-columns: none;
		grid-template-rows: none;
		height: auto;
		gap: 0;
	}
	
	.restaurants-gallery-section .masonry-item {
		width: 100%;
		aspect-ratio: 1 / 1;
		position: relative;
	}
	
	.restaurants-gallery-section .masonry-item-image {
		width: 100%;
		height: 100%;
		aspect-ratio: 1 / 1;
	}
	
	/* Remove all grid positioning on mobile */
	.restaurants-gallery-section .masonry-item-1,
	.restaurants-gallery-section .masonry-item-2,
	.restaurants-gallery-section .masonry-item-3,
	.restaurants-gallery-section .masonry-item-4,
	.restaurants-gallery-section .masonry-item-5,
	.restaurants-gallery-section .masonry-item-6,
	.restaurants-gallery-section .masonry-item-7,
	.restaurants-gallery-section .masonry-item-8,
	.restaurants-gallery-section .masonry-item-9,
	.restaurants-gallery-section .masonry-item-10,
	.restaurants-gallery-section .masonry-item-11 {
		grid-column: auto;
		grid-row: auto;
		grid-area: auto;
	}
	
	/* Slick slider dots styling for restaurants gallery */
	.restaurants-gallery-slider .slick-dots {
		bottom: -36px;
		text-align: center;
	}
	
	.restaurants-gallery-slider .slick-dots li button:before {
		font-size: 10.8px;
		color: #d1d5db;
		opacity: 1;
	}
	
	.restaurants-gallery-slider .slick-dots li.slick-active button:before {
		color: #2a2751;
	}
	
	.restaurants-gallery-slider .slick-dots li {
		margin: 0px 3.6px;
	}
}

@media (max-width: 480px) {
	.masonry-gallery {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(6, 150px);
		height: 814.5px;
		gap: 0.9px;
	}
	
	/* Stack all items vertically on very small screens */
	.restaurants-gallery-section .masonry-item-1,
	.restaurants-gallery-section .masonry-item-2,
	.restaurants-gallery-section .masonry-item-3,
	.restaurants-gallery-section .masonry-item-4,
	.restaurants-gallery-section .masonry-item-5,
	.restaurants-gallery-section .masonry-item-6,
	.restaurants-gallery-section .masonry-item-7 {
		grid-column: 1 / 2;
	}
	
	.restaurants-gallery-section .masonry-item-1 { grid-row: 1 / 2; }
	.restaurants-gallery-section .masonry-item-2 { grid-row: 2 / 3; }
	.restaurants-gallery-section .masonry-item-3 { grid-row: 3 / 4; }
	.restaurants-gallery-section .masonry-item-4 { grid-row: 4 / 5; }
	.restaurants-gallery-section .masonry-item-5 { grid-row: 5 / 6; }
	.restaurants-gallery-section .masonry-item-6 { grid-row: 6 / 7; }
	.restaurants-gallery-section .masonry-item-7 { grid-row: 7 / 8; }
}

/* Testimonials Section */
#home-testimonials {
	padding: 0px 14.4px 90px;
	/* background: #F1F8FE; */
}

.testimonials-container {
	max-width: 1260px;
	margin: 54px auto 0;
	padding: 0 14.4px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

/* Fixed image container */
.testimonial-image-fixed {
	flex: 0 0 40%;
	height: 450px;
	/* border-radius: 12px; */
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 7.2px 28.8px rgba(0, 0, 0, 0.1);
	position: relative;
}

.testimonial-image-current {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.8s ease-in-out;
}

/* Content wrapper for text slider */
.testimonials-content-wrapper {
	max-width: 720px;
	width: 100%;
	padding: 0 18px;
	display: flex;
	flex-direction: column;
}

.testimonials-slider {
	position: relative;
	min-height: 180px;
	overflow: hidden;
	transition: height 0.5s ease-in-out;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	touch-action: pan-y;
}

.testimonial-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	display: flex;
	align-items: center;
	padding: 18px 0;
}

.testimonial-slide.active {
	opacity: 1;
}

.testimonial-text {
	width: 100%;
	text-align: center;
}

.testimonial-category {
	font-family: 'Poppins', sans-serif;
	font-size: 12.6px;
	font-weight: 700;
	color: #7F7F7F;
	margin-bottom: 18px;
	text-transform: uppercase;
	letter-spacing: 0.9px;

	text-align: left;
}

.testimonial-quote {
	font-family: 'Raleway', Arial, sans-serif;
	font-size: 23.4px;
	font-weight: 500;
	font-style: italic;
	line-height: 1.4;
	color: #2a2751;
	margin: 0;
	position: relative;
}

.testimonial-quote::before {
	content: '"';
	font-size: 43.2px;
	position: absolute;
	left: -18px;
	top: -9px;
	color: #2a2751;
	opacity: 0.3;
}

.testimonial-quote::after {
	content: '"';
	font-size: 43.2px;
	position: absolute;
	right: -18px;
	bottom: -18px;
	color: #2a2751;
	opacity: 0.3;
}

/* Testimonials Dots Navigation */
.testimonials-dots {
	display: flex;
	justify-content: center;
	gap: 9px;
	margin-top: 36px;
}

.testimonial-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #D1D5DB;
	cursor: pointer;
	transition: all 0.3s ease;
}

.testimonial-dot.active {
	background: #2a2751;
	/* transform: scale(1.2); */
}

.testimonial-dot:hover {
	background: #2a2751;
	opacity: 0.7;
}

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
	.testimonials-container {
		flex-direction: column;
		text-align: center;
		gap: 36px;
	}
	
	.testimonial-image-fixed {
		flex: 0 0 auto;
		width: 225px;
		height: 180px;
		margin: 0 auto;
	}
	
	.testimonials-content-wrapper {
		padding-left: 0;
	}
	
	.testimonial-quote {
		font-size: 21.6px;
	}
}

@media (max-width: 767px) {
	#home-testimonials {
		padding: 18px 14.4px 54px;
	}
	
	.testimonials-container {
		margin: 18px auto 0;
		padding: 0 7.2px;
		gap: 27px;
	}
	
	.testimonial-image-fixed {
		width: 180px;
		height: 144px;
	}
	
	.testimonial-quote {
		font-size: 18px;
	}
	
	.testimonial-category {
		font-size: 10.8px;
		margin-bottom: 13.5px;
	}
	
	.testimonials-dots {
		margin-top: 27px;
		gap: 7.2px;
	}
	
	.testimonial-dot {
		width: 9px;
		height: 9px;
	}
}

/* FAQ Section */
#home-faqs {
	padding: 45px 14.4px 54px;
	background: #F1F8FE;
}

.faqs-container {
	max-width: 900px;
	margin: 27px auto 0;
	padding: 0 14.4px;
}

.faq-card {
	/* background: #ffffff; */
	/* border: 1px solid #29244C; */
	/* border-radius: 8px; */
	/* margin-bottom: 15px; */
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease;
	
	/* border-bottom: 1px solid #29244C; */
}

.faq-card:hover {
	/* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 21.6px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.faq-question::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1.8px;
	background: linear-gradient(to right, #fff, #29244C);

}

.faq-question:hover {
	/* background: #F9FAFB; */
}

.faq-number {
	font-family: 'Poppins', sans-serif;
	font-size: 12.6px;
	font-weight: 700;
	color: #2a2751;
	margin-right: 14.4px;
	min-width: 21.6px;
}

.faq-question h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 14.4px;
	font-weight: 400;
	color: #2a2751;
	margin: 0;
	flex: 1;
	line-height: 1.4;
	text-transform: uppercase;
}

.faq-toggle {
	font-family: 'Poppins', sans-serif;
	font-size: 19.8px;
	font-weight: 300;
	color: #2a2751;
	width: 21.6px;
	height: 21.6px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 21.6px;
}

.faq-answer p {
	font-family: 'Poppins', sans-serif;
	font-size: 12.6px;
	line-height: 1.6;
	color: #2a2751;
	margin: 0 0 18px 0;
	opacity: 0.8;
}

/* Active/Expanded state */
.faq-card.active .faq-answer {
	/* max-height: 200px; */
	max-height: initial;
	max-width: 50%;
	padding: 18px 21.6px 18px 21.6px;
}

/* When open, move the separator below the answer */
.faq-card.active .faq-question::after {
	display: none;
}

.faq-card.active::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1.8px;
	background: linear-gradient(to right, #fff, #29244C);
}

.faq-card.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-card.active .faq-question {
	/* background: #F9FAFB; */
}

/* Responsive Design for FAQ */
@media (max-width: 767px) {
	#home-faqs,
	.sec-container#partners-faqs {
		padding: 27px 14.4px;
	}
	
	.faqs-container {
		margin: 18px auto 0;
		padding: 0 7.2px;
	}
	
	.faq-question {
		padding: 14.4px 0px;
	}
	
	.faq-question h3 {
		font-size: 12.6px;
	}
	
	.faq-number {
		font-size: 10.8px;
		margin-right: 10.8px;
	}
	
	.faq-toggle {
		font-size: 16.2px;
	}
	
	.faq-answer {
		padding: 0 18px;
	}
	
	.faq-card.active .faq-answer {
		/* padding: 0 20px 16px 20px; */
		max-width: 100%;
		padding: 0 0 14.4px;
	}
	
	.faq-answer p {
		font-size: 11.7px;
	}
}

/* ========================================
   FOOTER STYLES
======================================== */

.site-footer {
	background: transparent;
	color: #ffffff;
	padding: 54px 18px 36px;
	/* margin-top: 80px; */
	display: flex;
	justify-content: center;
}

.site-footer .footer-container {
	background: #2a2751;
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
	padding: 54px 45px;
	border-radius: 18px;
	box-shadow: 0 7.2px 28.8px rgba(0, 0, 0, 0.1);
}

.site-footer .footer-content {
	display: grid;
	grid-template-columns: 1.8fr 1.4fr 1.8fr;
	gap: 36px;
	align-items: start;
	/* margin-bottom: 40px; */
}

.site-footer .footer-column {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.site-footer .footer-left-column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 27px;
	grid-column: 1;
}

.site-footer .footer-left-column .footer-links {
	margin-bottom: 18px;
}

.site-footer .footer-right-column {
	grid-column: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
}

.site-footer .footer-right-column .footer-app-cta {
	position: relative;
	text-align: center;
}

.site-footer .footer-center {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%;
	min-height: 180px;
	grid-column: 2;
	justify-self: center;
	align-self: center;
}

.site-footer .footer-title {
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	font-weight: 100;
	color: #ffffff;
	margin: 0 0 18px 0;
	/* text-transform: uppercase; */
	letter-spacing: 0.5px;
}

.site-footer .footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer .footer-links li {
	margin-bottom: 6.3px;
}

.site-footer .footer-links a {
	color: #ffffff;
	text-decoration: none;
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	transition: color 0.3s ease;
	opacity: 1;
	font-weight: 500;
	letter-spacing: 0.9px;
}

.site-footer .footer-links a:hover {
	color: #f8f9fa;
	opacity: 1;
}

.site-footer .footer-logo {
	text-align: center;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.site-footer .footer-logo img {
	max-width: 225px;
	width: 100%;
	height: auto;
}

.site-footer .logo-text {
	font-family: 'Poppins', sans-serif;
	font-size: 28.8px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 7.2px 0;
	letter-spacing: -0.5px;
}

.site-footer .tagline {
	font-family: 'Raleway', sans-serif;
	font-size: 10.8px;
	font-weight: 500;
	color: #ffffff;
	margin: 0;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	opacity: 0.8;
}

.site-footer .download-buttons {
	display: flex;
	flex-direction: column;
	gap: 13.5px;
	align-items: flex-start;
}

.site-footer .download-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4.5px 27px;
	background: white;
	border-radius: 45px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1.8px solid white;
	width: auto;
	min-width: 76.5px;
}

.site-footer .download-btn:hover {
	background: #29244C;
	transform: translateY(-2px);
	box-shadow: 0 4.5px 13.5px rgba(41, 36, 76, 0.3);
}

.site-footer .download-btn .btn-text {
	font-family: 'Poppins', sans-serif;
	font-size: 11.7px;
	font-weight: 600;
	color: #29244C;
	text-align: center;
}

.site-footer .download-btn:hover .btn-text {
	color: white;
}

.site-footer .footer-bottom {
	/* border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 18px; */
	text-align: left;
}

.site-footer .copyright {
	font-family: 'Raleway', sans-serif;
	font-size: 9px;
	color: #ffffff;
	margin: 0;
	/* opacity: 0.7; */
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
	.site-footer .footer-content {
		grid-template-columns: 1fr;
		gap: 27px;
		text-align: center;
	}
	
	.site-footer .footer-column {
		text-align: center;
	}
	
	.site-footer .footer-left-column {
		grid-column: 1;
		grid-template-columns: 1fr;
		gap: 18px;
		justify-items: center;
		text-align: center;
	}
	
	.site-footer .footer-left-column .footer-links {
		text-align: center;
	}
	
	.site-footer .footer-center {
		grid-column: 1;
		order: -1;
		margin-bottom: 27px;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	.site-footer .footer-right-column {
		grid-column: 1;
		order: 3;
		align-items: center;
		text-align: center;
		margin-top: 18px;
		justify-content: center;
	}
	
	.site-footer .footer-right-column .footer-app-cta {
		text-align: center;
	}
	
	.site-footer .download-buttons {
		align-items: center;
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.site-footer {
		padding: 36px 14.4px 18px;
		margin-top: 18px;
	}
	
	.site-footer .footer-container {
		padding: 27px 18px 22.5px;
		border-radius: 14.4px;
	}
	
	.site-footer .footer-content {
		grid-template-columns: 1fr;
		gap: 0px;
		text-align: center;
	}
	
	.site-footer .footer-left-column {
		grid-column: 1;
		grid-template-columns: 1fr;
		gap: 18px;
	}
	
	.site-footer .footer-center {
		grid-column: 1;
		order: -1;
		margin-bottom: 27px;
		min-height: initial;
	}
	
	.site-footer .footer-right-column {
		grid-column: 1;
		order: 3;
		align-items: center;
		text-align: center;
	}
	
	.site-footer .logo-text {
		font-size: 25.2px;
	}
	
	.site-footer .tagline {
		font-size: 9.9px;
		letter-spacing: 1.4px;
	}
	
	.site-footer .download-buttons {
		align-items: center;
		margin-bottom: 36px;
	}
	
	.site-footer .download-btn {
		width: auto;
		padding: 4.5px 18px;
	}
	
	.site-footer .footer-bottom {
		text-align: center;
	}

	.site-footer .footer-logo img {
		max-width: 162px;
	}
}

@media (max-width: 480px) {
	.site-footer {
		padding: 27px 10.8px 18px;
	}
	
	.site-footer .footer-container {
		padding: 22.5px 14.4px 18px;
		border-radius: 10.8px;
	}
	
	.site-footer .footer-title {
		font-size: 12.6px;
	}
	
	.site-footer .footer-links a {
		font-size: 11.7px;
	}
	
	.site-footer .logo-text {
		font-size: 21.6px;
	}
	
	.site-footer .download-btn {
		width: auto;
		padding: 4.5px 13.5px;
		font-size: 11.7px;
	}
}


/* ===================================
   ABOUT US PAGE STYLES
   =================================== */

/* About Hero Section */
.about-hero {
	position: relative;
	min-height: 54vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
}

.about-hero .hero-main-content {
	text-align: center;
	z-index: 2;
	/* position: relative; */
	color: #ffffff;
	transform: translate(-50%, -50%);
	text-align: left;
}
.about-hero .hero-main-content .hero-title {
	font-size: 16.2px;
	color: #ffffff;
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 600;
	margin-bottom: 18px;
}
.about-hero .hero-main-content .hero-subtitle {
	font-size: 28.8px;
	line-height: 37.8px;
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 500;
	font-style: italic;
	color: #ffffff;
}

/* Great From The Start Section */
#about-intro {
	background: #fff;
}

#about-intro .sec-subtitle {
	text-align: center;
	/* margin-top: 60px; */
}

#about-intro .about-text-content {
	max-width: 810px;
	margin: 36px auto 0;
	font-size: 14.4px;
	line-height: 1.8;
	color: #1e1e2d;
	font-family: 'Poppins', sans-serif;
	text-align: center;
}

#about-intro .about-text-content p {
	margin-bottom: 18px;
}

/* Story Section - Text and Image Layout */
#about-story {
	background: #F1F9FF;
	padding: 18px 14.4px 0px;
}

.about-story-layout {
	display: grid;
	grid-template-columns: 1.7fr .9fr;
	gap: 36px;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
	margin-bottom: 135px;
}

.about-story-text {
	padding-right: 18px;
	padding-bottom: 45px;
}

.about-story-title {
	font-size: 28.8px;
	line-height: 36px;
	color: #2a2751;
	margin-bottom: 21.6px;
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 600;
	width: 50%;
}

.about-story-content {
	font-size: 14.4px;
	line-height: 1.8;
	color: #1e1e2d;
	font-family: 'Poppins', sans-serif;
}

.about-story-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 27px;
}

.about-story-column {
	font-size: 12.6px;
	line-height: 21.6px;
	color: #1e1e2d;
	font-family: 'Poppins', sans-serif;
}

.about-story-column p {
	margin-bottom: 18px;
}

.about-story-image {
	position: relative;
	border-radius: 9px;
	overflow: hidden;
	width: 100%;
	margin-left: auto;
	margin-bottom: -90px;
}

.about-story-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Co-Founders Section */
#about-founders {
	background: #fff;
	padding-bottom: 0px;
	padding: 54px 14.4px 0px;
}

.founders-container {
	max-width: 1080px;
	margin: 36px auto 0;
}

.founder-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 54px;
	margin-bottom: 18px;
	/* align-items: center; */
	align-items: top;
}

/* Alternate image position */
.founder-card-left {
	grid-template-areas: "image content";
}

.founder-card-right {
	grid-template-areas: "content image";
}

.founder-card-left .founder-card-image {
	grid-area: image;
}

.founder-card-right .founder-card-image {
	grid-area: image;
}

.founder-card-left .founder-card-content {
	grid-area: content;
}

.founder-card-right .founder-card-content {
	grid-area: content;
}

.founder-card-image {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1 / 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.founder-dots {
	position: absolute;
	bottom: 27px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 7.2px;
}

.founder-dots .dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #9ca3af;
	transition: background 0.3s ease;
}

.founder-dots .dot.active {
	background: #2a2751;
}

.founder-card-content {
	padding: 18px 0;
}

.founder-label {
	font-size: 10.8px;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 4.5px;
	font-family: 'Raleway', Arial, sans-serif;
}

.founder-quote {
	font-size: 23.4px;
	line-height: 30.6px;
	color: #2a2751;
	font-style: italic;
	font-weight: 500;
	font-family: 'Raleway', Arial, sans-serif;
	margin: 0 0 27px 0;
}

.founder-bio-label {
	font-size: 12.6px;
	font-weight: 700;
	color: #2a2751;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 0 18px 0;
	font-family: 'Raleway', Arial, sans-serif;
}

.founder-bio-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 27px;
	margin-bottom: 27px;
}

.founder-bio-columns.founder-bio-single-column {
	grid-template-columns: 1fr;
}

.founder-bio-column {
	font-size: 12.6px;
	line-height: 1.6;
	color: #1e1e2d;
	font-family: 'Poppins', sans-serif;
}

.founder-bio-column p {
	margin: 0 0 14.4px 0;
}

.founder-social {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 13.5px;
}

.founder-social .social-icon {
	width: 22.5px;
	height: 22.5px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: visible;
}

.founder-social .social-icon img {
	width: 18px;
	height: 18px;
	display: block;
	flex-shrink: 0;
	filter: brightness(0);
}

.founder-social .social-icon:hover {
	transform: translateY(-2px);
}

/* Responsive Design for Story Section */
@media (max-width: 767px) {
	.about-story-layout {
		grid-template-columns: 1fr;
		gap: 36px;
		margin-bottom: 18px;
	}
	
	.about-story-text {
		padding-right: 0;
		padding-bottom: 0;
	}
	
	.about-story-title {
		font-size: 25.2px;
		width: 100%;
	}
	
	.about-story-columns {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.about-story-image {
		width: 80%;
		margin: 0 auto;
		margin-bottom: 40px;
	}

	
	/* Founders responsive */
	.founder-card {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.founder-card-content {
		padding: 0px 0;
	}
	
	.founder-card-left,
	.founder-card-right {
		grid-template-areas: "image" "content";
	}

	.founder-label {
		font-size: 11.7px;
	}
	
	.founder-quote {
		font-size: 21.6px;
	}
	
	.founder-bio-columns {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

@media (max-width: 550px) {
	.founder-quote {
		font-size: 18px;
		line-height: 25.2px;
	}
}

@media (max-width: 480px) {
	.about-story-title {
		font-size: 21.6px;
	}
	
	/* Founders mobile */
	.founder-quote {
		font-size: 18px;
	}
}

/* Press Section */
#about-press {
	background: #fff;
	padding: 18px 14.4px 54px;
}

.press-masonry {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 200px;
	gap: 14.4px;
	max-width: 1080px;
	margin: 54px auto 36px;
}

.press-card {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 10.8px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(42, 39, 81, 0.7) 20%, rgba(214, 213, 221, 0) 100%);
	z-index: 1;
}

.press-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10.8px 25.2px rgba(0, 0, 0, 0.2);
}

.press-card.mt {
	margin: 45px 0 -45px;
}

/* Different card sizes for masonry effect */
.press-card-large {
	grid-column: span 1;
	grid-row: span 3;
}

.press-card-tall {
	grid-column: span 1;
	grid-row: span 2;
}

.press-card-medium {
	grid-column: span 1;
	grid-row: span 2;
}

.press-card-label {
	position: absolute;
	top: 18px;
	left: 18px;
	font-size: 9.9px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
	font-family: 'Raleway', Arial, sans-serif;
}

.press-card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #2a2751;
	padding: 13.5px;
	transition: opacity 0.3s ease;
	margin: 0px 3% 3%;
	border-radius: 9px;
}

.press-card-content {
	position: relative;
	z-index: 2;
}

.press-card-title {
	font-size: 12.6px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	margin: 0 0 7.2px 0;
	font-family: 'Raleway', Arial, sans-serif;
	letter-spacing: 0.5px;
}

.press-card-excerpt {
	font-size: 11.7px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	font-family: 'Poppins', sans-serif;
}

.press-card-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
}

/* Responsive Design for Press Section */
@media (max-width: 1024px) {
	.press-masonry {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: 180px;
	}
	
	/* Reset margins for 3-column layout and apply to correct pattern */
	.press-card.mt {
		margin: 0;
	}
	
	/* Apply margin to cards in the middle column (indices 1, 4, 7, 10...) for 3-column layout */
	.press-masonry .press-card:nth-child(3n+2) {
		margin: 45px 0 -45px;
	}
}

@media (max-width: 767px) {
	.press-masonry {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 200px;
		gap: 10.8px;
	}
	
	.press-card-large,
	.press-card-tall,
	.press-card-medium {
		grid-row: span 2;
	}

	.press-masonry .press-card:nth-child(3n+2) {
		margin: 0;
	}
}

@media (max-width: 550px) {


	#about-press {
		padding: 0px 14.4px 36px;
	}

	/* Convert press masonry to slider on mobile */
	.press-masonry {
		display: block !important;
		margin: 36px auto;
	}
	
	.press-masonry .press-card {
		margin: 0 !important;
		height: 405px;
	}
	
	.press-masonry .press-card.mt {
		margin: 0 !important;
	}
	
	.press-masonry.slick-slider {
		margin-bottom: 45px;
	}
	
	.press-masonry .slick-slide {
		padding: 0 7.2px;
	}
	
	.press-masonry .slick-dots {
		bottom: -31.5px;
	}
	
	.press-masonry .slick-dots li {
		margin: 0 4.5px;
	}
	
	.press-masonry .slick-dots li button:before {
		font-size: 9px;
		color: #2a2450;
		opacity: 0.3;
	}
	
	.press-masonry .slick-dots li.slick-active button:before {
		opacity: 1;
	}
	
	.press-card-overlay {
		padding: 18px;
	}
	
	.press-card-title {
		font-size: 12.6px;
	}
	
	.press-card-excerpt {
		font-size: 10.8px;
	}
}

@media (max-width: 480px) {
	.press-masonry .press-card {
		height: 405px;
	}
}

/* Milestones Section */
#about-milestones {
	/* background: #F1F9FF;
	padding: 45px 14.4px 0px; */
	padding-top: 18px;
}

#about-milestones .sec-subtitle {
	margin-bottom: 18px;
}

/* #about-milestones .sec-title h1 {
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 500;
	font-size: 27px;
	text-transform: initial;
} */

.milestones-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 21.6px;
}


/* Work at Volup Section */
#about-work-at-volup {
	background: #F1F8FE;
	padding: 36px 14.4px 36px;
}

.work-at-volup-content {
	background: #F1F8FE;
	color: #2a2751;
	max-width: 1080px;
	margin: 0px auto;
	border-radius: 9px;
	padding: 54px 72px 0;
	/* display: flex; */
	align-items: center;
	gap: 36px;
}

.work-at-volup-text {
	/* flex: 0 0 70%; */
	font-family: 'Poppins', sans-serif;
	font-size: 14.4px;
	line-height: 1.5;
	color: #1e1e2d;
	text-align: center;
	max-width: 810px;
	margin: 0 auto;
	margin-bottom: 36px;
}

.work-at-volup-text p {
	margin: 0 0 14.4px 0;
}

.work-at-volup-text p:last-child {
	margin-bottom: 0;
}

.work-at-volup-cta {
	/* flex: 0 0 30%; */
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
}

.work-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4.5px 27px;
	background: #29244C;
	border-radius: 45px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1.8px solid #29244C;
	width: auto;
}

.work-cta-btn:hover {
	background: transparent;
	transform: translateY(-2px);
	box-shadow: 0 4.5px 13.5px rgba(41, 36, 76, 0.3);
}

.work-cta-btn .btn-text {
	font-family: 'Poppins', sans-serif;
	font-size: 11.7px;
	font-weight: 600;
	color: white;
	text-align: center;
}

.work-cta-btn:hover .btn-text {
	color: #29244C;
}

/* Responsive Design for Work at Volup */
@media (max-width: 767px) {
	.work-at-volup-content {
		flex-direction: column;
		padding: 36px 27px 18px;
		gap: 27px;
	}
	
	.work-at-volup-text {
		flex: 1;
	}
	
	.work-at-volup-cta {
		flex: 1;
		width: 100%;
		display: grid;
	}
}


/* Partners Hero Section */
.partners-hero {
	position: relative;
	min-height: 54vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
}	
.partners-hero .hero-main-content {
	text-align: center;
	z-index: 2;
	/* position: relative; */
	color: #ffffff;
	transform: translate(-50%, -50%);
	text-align: left;
}
.partners-hero .hero-main-content .hero-title {
	font-size: 90px;
	color: #ffffff;
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 800;
	margin-bottom: 18px;
	text-align: center;
	text-transform: uppercase;
}
.partners-hero .hero-main-content .hero-subtitle {
	font-size: 28.8px;
	line-height: 37.8px;
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 500;
	font-style: italic;
	color: #ffffff;
	text-align: center;
}

/* Locations Hero Section */
.locations-hero {
	position: relative;
	min-height: 54vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
}	
.locations-hero .hero-main-content {
	text-align: center;
	z-index: 2;
	/* position: relative; */
	color: #ffffff;
	transform: translate(-50%, -50%);
	text-align: left;
}
.locations-hero .hero-main-content .hero-title {
	font-size: 72px;
	color: #ffffff;
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 800;
	margin-bottom: 18px;
	text-align: center;
	text-transform: uppercase;
}
.locations-hero .hero-main-content .hero-subtitle {
	font-size: 28.8px;
	line-height: 37.8px;
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 500;
	font-style: italic;
	color: #ffffff;
	text-align: center;
}

/* Locations List Section */
#locations-list {
	background: #fff;
	padding: 0 14.4px;
	/* min-height: 80vh; */
}

.locations-list-container {
	max-width: 100%;
	padding: 0;
	max-width: 1296px;
	margin: 0 auto;
}

.locations-three-columns {
	display: grid;
	grid-template-columns: 300px .7fr 1fr;
	/* min-height: 80vh; */
	height: auto;
	align-items: stretch;
}

/* Column 1: Locations Sidebar */
.locations-column-list {
	background: #2a2751;
	position: relative;

	border-radius: 9px;
}

.locations-sidebar {
	padding: 36px 18px 36px 18px;
	height: 100%;
	position: relative;
}

/* Hide mobile elements on desktop */
.locations-mobile-dropdown,
.locations-mobile-content {
	display: none;
}

.locations-sidebar-title {
	font-size: 21.6px;
	font-weight: 800;
	font-family: 'Raleway', Arial, sans-serif;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0 0 18px 0;
	letter-spacing: 1.8px;
	padding-left: 4.5px;
}

.locations-menu {
	list-style: none;
	padding: 0 27px 0 0;
	margin: 0;
	max-height: 495px;
	overflow-y: auto;
	overflow-x: hidden;
}

.locations-menu::-webkit-scrollbar {
	width: 15.3px;
	border: 1.8px solid #DAE7A1;
	border-radius: 9px;
}

.locations-menu::-webkit-scrollbar-track {
	/* background: rgba(255, 255, 255, 0.1); */
	background-color: transparent;
	border-radius: 2.7px;
}

.locations-menu::-webkit-scrollbar-thumb {
	/* background: rgba(255, 255, 255, 0.3); */
	background-color: #DAE7A1;
	border-radius: 9px;
}

.locations-menu::-webkit-scrollbar-thumb:hover {
	/* background: rgba(255, 255, 255, 0.5); */
}

.locations-menu-item {
	padding: 1.8px 4.5px;
	margin: 4.5px 0;
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-size: 12.6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 13.5px;
	position: relative;
	text-align: left;
	text-transform: uppercase;
}

.locations-menu-item:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.locations-menu-item.active {
	background-color: #DAE7A1;
	color: #2a2751;
	font-weight: 600;
	padding: 1.8px 18px;
	text-align: center;
}

.locations-menu-item.active::before {
	content: '';
	position: absolute;
	right: -36px;
	top: 0;
	bottom: 0;
	width: 3.6px;
	background: #DAE7A1;
	border-radius: 1.8px 0 0 1.8px;
}

/* Column 2: Location Content */
.locations-column-content {
	padding: 36px 27px 36px 54px;
	display: flex;
	/* align-items: center; */
	background: #fff;
	background-color: #29244C;

	border-right: 4.5px solid #ffffff;
	margin-left: 9px;
	border-radius: 9px 0 0 9px;
	/* height: 100%; */
	overflow-y: auto;
}

.locations-content {
	/* max-width: 600px; */
	width: 100%;
	color: #ffffff;
}

.locations-content-title {
	font-size: 25.2px;
	font-weight: 800;
	font-family: 'Raleway', Arial, sans-serif;
	/* color: #2a2751; */
	/* color: #ffffff; */
	margin: 0;
	line-height: 1.2;
	text-transform: uppercase;

	text-align: right;
	transition: opacity 0.2s linear;
	opacity: 1;

	/* padding-right: 30px; */
}

.locations-content-title.fade-out {
	opacity: 0;
}

.locations-content-title.fade-in {
	opacity: 0;
}

.locations-content-genre {
	font-size: 16.2px;
	font-weight: 500;
	font-family: 'Raleway', Arial, sans-serif;
	font-style: italic;
	color: #dae7a1;
	/* background: #2a2751; */
	display: inline-block;
	/* padding: 6px 16px; */
	border-radius: 899.1px;
	margin: 0px;
	transition: opacity 0.2s linear;
	opacity: 1;

	width: 100%;
	text-align: right;
}

.locations-content-genre.fade-out {
	opacity: 0;
}

.locations-content-genre.fade-in {
	opacity: 0;
}

.locations-content-genre.is-hidden {
	display: none;
}

.locations-content-description {
	font-size: 13.5px;
	line-height: 1.6;
	font-family: 'Poppins', sans-serif;
	/* color: #2a2751; */
	margin-top: 45px;
	transition: opacity 0.2s linear;
	opacity: 1;
	max-height: 441px;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 27px;
}

.locations-content-description::-webkit-scrollbar {
	width: 15.3px;
	border: 1.8px solid #DAE7A1;
	border-radius: 9px;
}

.locations-content-description::-webkit-scrollbar-track {
	/* background: rgba(255, 255, 255, 0.1); */
	background-color: transparent;
	border-radius: 2.7px;
}

.locations-content-description::-webkit-scrollbar-thumb {
	/* background: rgba(255, 255, 255, 0.3); */
	background-color: #DAE7A1;
	border-radius: 9px;
}

.locations-content-description::-webkit-scrollbar-thumb:hover {
	/* background: rgba(255, 255, 255, 0.5); */
}

.locations-content-description.fade-out {
	opacity: 0;
}

.locations-content-description.fade-in {
	opacity: 0;
}

.locations-content-description p {
	margin: 0 0 18px 0;
}

.locations-content-description p:last-child {
	margin-bottom: 0;
}

/* Column 3: Location Image */
.locations-column-image {
	position: relative;
	overflow: hidden;
	background: #f5f5f5;

	border-radius: 0 9px 9px 0;
}

.locations-image-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.locations-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.2s linear;
	opacity: 1;
}

.locations-image.fade-out {
	opacity: 0;
}

.locations-image.fade-in {
	opacity: 0;
}

/* Mobile inline detail - hidden by default on desktop */
.locations-inline-detail {
	display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.locations-three-columns {
		grid-template-columns: 250px .7fr 1fr;
	}
	
	.locations-column-content {
		padding: 54px 36px;
	}
	
	.locations-content-title {
		font-size: 36px;
	}
}

/* Mobile dropdown view - single column with dropdown */
@media (max-width: 990px) {
	.locations-three-columns {
		display: block;
		grid-template-columns: none;
	}
	
	/* Hide desktop columns */
	.locations-column-content,
	.locations-column-image {
		display: none;
	}
	
	/* Show only the list column */
	.locations-column-list {
		width: 100%;
		border-radius: 0;
		height: auto;
	}
	
	.locations-sidebar {
		padding: 27px 18px;
		height: auto;
	}
	
	.locations-sidebar-title {
		font-size: 18px;
		margin-bottom: 18px;
		padding-left: 0;
		text-align: center;
	}
	
	/* Hide desktop list on mobile */
	.locations-menu {
		display: none;
	}
	
	#locations-list {
		padding: 0;
	}
	
	/* Show mobile dropdown */
	.locations-mobile-dropdown {
		display: block;
		/* margin-bottom: 30px; */
	}
	
	.locations-select {
		width: 100%;
		padding: 9px 40.5px 9px 18px;
		font-family: 'Poppins', sans-serif;
		font-size: 12.6px;
		font-weight: 600;
		color: #2a2751;
		background-color: #DAE7A1;
		border: 1.8px solid #DAE7A1;
		border-radius: 13.5px;
		cursor: pointer;
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		text-transform: uppercase;
		transition: all 0.3s ease;
	}
	
	.locations-select:hover {
		background-color: #ffffff;
		border-color: #DAE7A1;
	}
	
	.locations-select:focus {
		outline: none;
		background-color: #ffffff;
		border-color: #2a2751;
	}
	
	/* Custom dropdown arrow */
	.locations-mobile-dropdown {
		position: relative;
	}
	
	.locations-mobile-dropdown::after {
		content: '▾';
		position: absolute;
		right: 18px;
		top: 50%;
		transform: translateY(-50%);
		pointer-events: none;
		font-size: 14.4px;
		color: #2a2751;
		z-index: 1;
	}
	
	/* Mobile content area */
	.locations-mobile-content {
		display: block;
		padding-top: 18px;
		padding: 0 18px 27px;
	}
	
	.locations-mobile-image {
		width: 100%;
		aspect-ratio: 16 / 9;
		overflow: hidden;
		border-radius: 7.2px;
		margin-bottom: 18px;
	}
	
	.locations-mobile-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
	
	.locations-mobile-text {
		color: #ffffff;
	}
	
	.locations-mobile-title {
		font-family: 'Raleway', Arial, sans-serif;
		font-size: 21.6px;
		font-weight: 800;
		color: #ffffff;
		margin: 0;
		text-transform: uppercase;
		line-height: 1.2;
	}
	
	.locations-mobile-genre {
		font-family: 'Raleway', Arial, sans-serif;
		font-size: 14.4px;
		font-weight: 500;
		font-style: italic;
		color: #DAE7A1;
		margin: 0 0 13.5px 0;
	}
	
	.locations-mobile-description {
		font-family: 'Poppins', sans-serif;
		font-size: 12.6px;
		line-height: 1.6;
		color: rgba(255, 255, 255, 0.9);
	}
	
	.locations-mobile-description p {
		margin: 0 0 9px 0;
	}
	
	.locations-mobile-description p:last-child {
		margin-bottom: 0;
	}
	
}

@media (max-width: 767px) {
	.locations-content-title {
		font-size: 28.8px;
	}
	
	.locations-column-content {
		padding: 27px 18px;
	}
	
	.locations-sidebar {
		padding: 27px 14.4px 18px;
	}
	
	.locations-column-image {
		height: 270px;
	}
	
	.locations-sidebar-title {
		font-size: 16.2px;
	}
	
	.locations-menu-item {
		font-size: 11.7px;
		padding: 10.8px 0;
	}
	
	.locations-mobile-title {
		font-size: 18px;
	}
	
	.locations-inline-genre {
		font-size: 12.6px;
	}
	
	.locations-inline-description {
		font-size: 11.7px;
	}
}

@media (max-width: 575px) {
	.locations-mobile-image {
		width: 100%;
		aspect-ratio: 4/3;
	}
}

/* Delivery Section */
#locations-delivery {
	padding: 72px 14.4px 36px;
	background: #fff;
}

.delivery-layout {
	display: grid;
	grid-template-columns: .50fr 1fr;
	gap: 36px;
	max-width: 1080px;
	margin: 36px auto 0;
	align-items: start;
}

.delivery-content {
	display: flex;
	flex-direction: column;
}

.delivery-section {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.delivery-heading {
	font-family: 'Raleway', Arial, sans-serif;
	font-size: 21.6px;
	font-weight: 600;
	color: #2a2751;
	margin: 0;
	text-transform: none;
}

.delivery-text {
	font-family: 'Poppins', sans-serif;
	font-size: 14.4px;
	line-height: 1.6;
	color: #1e1e2d;
	font-weight: 300;
}

.delivery-text h1 {
	font-size: 28.8px;
	font-weight: 500;
	color: #2a2751;
	margin: 0 0 14.4px 0;
	text-transform: none;
}

.delivery-text p {
	margin: 0 0 14.4px 0;
}

.delivery-text p:last-child {
	margin-bottom: 0;
}

.delivery-text b, .delivery-text strong {
	font-weight: 600 !important;
}

.delivery-schedule {
	display: flex;
	flex-direction: column;
	gap: 7.2px;
}

.schedule-item {
	font-family: 'Poppins', sans-serif;
	font-size: 14.4px;
	line-height: 1.6;
	color: #1e1e2d;
}

.delivery-app-text {
	font-family: 'Poppins', sans-serif;
	font-size: 14.4px;
	line-height: 1.6;
	color: #1e1e2d;
	margin: 0 0 18px 0;
}

.delivery-app-buttons {
	display: flex;
	gap: 13.5px;
	flex-wrap: wrap;
	margin-top: 18px;
}

.delivery-map {
	position: relative;
	width: 100%;
}

.delivery-map-image {
	width: 100%;
	height: auto;
	display: block;
}

/* Responsive Design for Delivery Section */
@media (max-width: 968px) {
	.delivery-layout {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	
	.delivery-map {
		order: -1;
	}
	
	.delivery-app-buttons {
		/* flex-direction: column; */
		justify-content: center;
	}
	
	.delivery-app-buttons .app-download-btn {
		/* width: 100%; */
		justify-content: center;
	}
}

@media (max-width: 767px) {
	#locations-delivery {
		padding: 36px 14.4px 18px;
	}

	.delivery-layout {
		margin: 27px auto 0;
	}

	.delivery-layout {
		font-size: 25.2px;
		gap: 27px;
	}

	.delivery-text h1 {
		font-size: 25.2px;
	}

	#locations-follow-us {
		padding: 18px 14.4px 0px;
	}

	.follow-us-social {
		margin: 0 auto;
	}

	.follow-us-icons {
		gap: 9px;
	}

	.follow-us-icon {
		width: 36px;
		height: 36px;
	}
	
	.follow-us-icon img,
	.follow-us-icon svg {
		width: 18px;
		height: 18px;
	}
}

/* Follow Us Section */
#locations-follow-us {
	padding: 36px 14.4px 0px;
	background: #fff;
}

.follow-us-social {
	max-width: 720px;
	margin: 9px auto 0;
	text-align: center;
}

.follow-us-icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 9px;
	flex-wrap: wrap;
}

.follow-us-icon {
	/* width: 50px;
	height: 45px; */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	/* background: #2a2751; */
	position: relative;
}

.follow-us-icon img {
	width: 27px;
	height: 27px;
	object-fit: contain;
	filter: brightness(0) invert(0);
}

.follow-us-icon svg {
	width: 21.6px;
	height: 21.6px;
	color: #ffffff;
}

.follow-us-icon:hover {
	background: #29244C;
	transform: translateY(-3px);
	box-shadow: 0 4.5px 13.5px rgba(42, 39, 81, 0.3);
}

.follow-us-icon:hover img {
	filter: brightness(0) invert(1);
}

.follow-us-icon:hover svg {
	color: #2a2751;
}

/* Responsive Design for Follow Us Section */
@media (max-width: 767px) {
	.follow-us-icons {
		gap: 0px;
	}
	
	.follow-us-icon {
		width: 40.5px;
		height: 40.5px;
	}
	
	.follow-us-icon img,
	.follow-us-icon svg {
		width: 19.8px;
		height: 19.8px;
	}
}

/* Instagram Gallery Section */
#locations-instagram-gallery {
	padding: 90px 14.4px;
	background: #fff;
}

.instagram-gallery-container {
	/* max-width: 1200px; */
	max-width: 1179px;
	margin: 0 auto;

	padding-top: 36px;
}

.instagram-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 36px;
}

.instagram-gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 9px;
	/* aspect-ratio: 1; */
	background: #f5f5f5;
}

.instagram-gallery-link {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}

.instagram-gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.instagram-gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(42, 39, 81, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	color: #ffffff;
}

.instagram-gallery-link:hover .instagram-gallery-overlay {
	opacity: 1;
}

.instagram-gallery-link:hover .instagram-gallery-image {
	transform: scale(1.05);
}

.instagram-gallery-image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	color: #ccc;
}

.instagram-placeholder {
	background: #f5f5f5;
}

.instagram-gallery-cta {
	text-align: center;
	margin-top: 0px;
}

.instagram-gallery-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4.5px 27px;
	background: #ffffff;
	border: 1.8px solid #2a2751;
	border-radius: 45px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 1.8px 9px rgba(0, 0, 0, 0.1);
}

.instagram-gallery-btn-text {
	font-family: 'Poppins', sans-serif;
	font-size: 14.4px;
	font-weight: 600;
	color: #2a2751;
	text-align: center;
	transition: color 0.3s ease;
}

.instagram-gallery-btn:hover {
	background: #2a2751;
	border-color: #2a2751;
	transform: translateY(-2px);
	box-shadow: 0 4.5px 13.5px rgba(42, 39, 81, 0.3);
}

.instagram-gallery-btn:hover .instagram-gallery-btn-text {
	color: #ffffff;
}

#sb_instagram #sbi_images .sbi_item {
	border-radius: 9px;
}

/* Responsive Design for Instagram Gallery */
@media (max-width: 767px) {
	.instagram-gallery-container {
		padding-top: 9px;
	}
	.instagram-gallery-grid {
		grid-template-columns: 1fr;
		gap: 13.5px;
	}
	
	.instagram-gallery-item {
		aspect-ratio: 1;
	}
	
	.instagram-gallery-btn {
		padding: 10.8px 27px;
		font-size: 12.6px;
	}
}

@media (max-width: 550px) {
	/* #locations-follow-us .sec-title {
		max-width: 180px;
		margin: 0 auto;
	} */
}

/* Partners Intro Section */
#partners-intro {
	background: #fff;
	padding: 72px 14.4px 36px;
}

.partners-intro-container {
	position: relative;
	max-width: 900px;
	margin: 36px auto 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
	overflow: hidden;
	min-height: 450px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.partners-intro-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(270deg, rgba(42, 39, 81, 0.6) 20%, rgba(214, 213, 221, 0) 85%);
	z-index: 1;
}

.partners-intro-content {
	position: relative;
	z-index: 2;
	height: 100%;
	min-height: 342px;
	display: flex;
	/* align-items: flex-end; */
	align-items: center;
	justify-content: flex-end;
	padding: 54px 72px;
}



.partners-intro-right-column {
	flex: 0 0 55%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.partners-intro-text {
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-size: 19.8px;
	line-height: 27px;
	margin-bottom: 27px;
	text-align: left;
}

.partners-intro-text ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.partners-intro-text li {
	margin-bottom: 14.4px;
	position: relative;
	padding-left: 18px;
}

.partners-intro-text li:before {
	content: '•';
	position: absolute;
	left: 0;
	color: #ffffff;
	font-weight: bold;
}

.partners-intro-cta {
	color: #ffffff;
	text-align: left;
}

.partners-intro-cta .cta-title {
	font-family: 'Poppins', sans-serif;
	font-size: 12.6px;
	font-weight: 500;
	margin: 0 0 9px 0;
	color: #ffffff;

	text-align: left;
}

.partners-city-buttons {
	display: flex;
	gap: 18px;
	justify-content: flex-start;
}

.partners-city-buttons .city-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4.5px 27px;
	border-radius: 45px;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
	font-size: 11.7px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 1.8px solid transparent;
	width: auto;

	background: #2a2751;
	color: #ffffff;
	border-color: #2a2751;
}

.partners-city-buttons .city-btn:hover {
	background: #ffffff;
	color: #2a2751;
	border-color: #2a2751;
	transform: translateY(-2px);
	box-shadow: 0 4.5px 13.5px rgba(41, 36, 76, 0.3);
}


/* Responsive Design for Partners Intro */
@media (max-width: 1024px) {
	.partners-intro-content {
		/* flex-direction: column; */
		text-align: center;
		padding: 36px 27px;
	}
	
	.partners-intro-text {
		flex: 1;
		margin-right: 0;
		margin-bottom: 36px;
	}
	
	.partners-intro-cta {
		flex: 1;
	}
}

@media (max-width: 767px) {


	#partners-intro {
		padding: 36px 14.4px;
	}

	.partners-intro-container {
		min-height: 360px;
	}

	.partners-intro-container::before {
		content: "";
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
		background: linear-gradient(272deg, rgba(42, 39, 81, 0.7) 100%, rgba(214, 213, 221, 0) 90%);
	}
	
	.partners-intro-content {
		padding: 27px 18px;
		flex-direction: column;
	}
	
	.partners-intro-text {
		text-align: center;
		font-size: 16.2px;
		line-height: 21.6px;
	}

	.partners-intro-right-column {
		align-items: inherit;
	}

	.partners-city-buttons {
		flex-direction: column;
		gap: 13.5px;
	}
	
	
	.city-btn {
		width: 100%;
		max-width: 180px;
		margin: 0 auto;
	}
}

.sec-container#partners-why-join {
	padding: 0px 0px 54px;
}

.partners-why-join-content {
	background-color: #E8F4FD;
	padding: 45px 36px 72px;
	/* max-width: 1440px; */
	margin: 0 auto;
	margin-top: 36px;
}

.partners-why-join-content .sec-title 	{
	margin-bottom: 72px;
}

/* .partners-why-join-content .sec-title h1 {
	font-weight: 500;
} */


.partners-why-join-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 72px 162px;
	max-width: 882px;
	margin: 0 auto;
}

.partners-why-join-card {
	background-color: #6D6E8A;
	border-radius: 10.8px;
	padding: 0px 27px 36px;
	padding-left: 54px;
	position: relative;
	box-shadow: 0 3.6px 13.5px rgba(0, 0, 0, 0.15);
	/* min-height: 250px; */
	display: flex;
	flex-direction: column;
}

.card-logo {
	position: absolute;
	top: -36px;
	left: -36px;
}

.partners-why-join-card:hover .card-logo {
	animation: tiltAnimation 1s ease-in-out forwards;
}

@keyframes tiltAnimation {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(-5deg);
	}
	75% {
		transform: rotate(5deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

.card-logo img {
	width: 81px;
	height: 81px;
	display: block;
	object-fit: contain;
}

.card-content {
	margin-top: 27px;
	color: #FFFFFF;
}

.card-title {
	font-size: 21.6px;
	font-weight: bold;
	margin-bottom: 13.5px;
	color: #FFFFFF;
	line-height: 1.3;
}

.card-text {
	font-size: 14.4px;
	line-height: 1.6;
	color: #E8E8EE;
	margin: 0;
}

@media (max-width: 990px) {
	.partners-why-join-grid {
		gap: 72px 108px;
	}
}

/* Responsive design */
@media (max-width: 767px) {
	.partners-why-join-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	
	.partners-why-join-card {
		padding: 22.5px 18px 36px;
		/* min-height: 220px; */
		margin-bottom: 36px;
	}
	
	.partners-why-join-content {
		padding: 36px 45px;
	}
	
	.card-title {
		font-size: 18px;
	}
	
	.card-text {
		font-size: 13.5px;
	}
}

@media (max-width: 550px) {
	.partners-why-join-content {
		padding: 36px 18px 18px 45px;
		margin-top: 0px;
	}

	.partners-why-join-content .sec-title {
		margin-bottom: 54px;
	}

	.card-content {
		margin-top: 18px;
	}
	
}

/* ========================================
   Partners Become Section
   ======================================== */
#partners-become {
	padding: 18px 0;
	background-color: #FFFFFF;
}

/* #partners-become .sec-title h1 {
	text-align: center;
	font-size: 37.8px;
	font-weight: bold;
	color: #1E1E3F;
	margin-bottom: 36px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
} */

.partners-become-timeline {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 18px;
}

.timeline-step {
	position: relative;
	text-align: center;
	padding: 9px 18px 27px 18px;
}

.timeline-connector {
	position: relative;
	margin: 0 auto;
	width: 0.9px;
	height: 36px;
	background-color: #29244C;
	z-index: 0;
}


.step-content {
	position: relative;
	z-index: 1;
}

.step-label {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 12.6px;
	color: #1E1E3F;
	margin-bottom: 0px;
	text-transform: uppercase;
	letter-spacing: 0.9px;
}

.step-title {
	font-size: 26px;
	font-weight: bold;
	color: #1E1E3F;
	margin-bottom: 18px;
	text-transform: uppercase;

	margin: 0 auto;
}

.step-description {
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 600;
	font-size: 19.8px;
	line-height: 1.3;
	color: #4A4A68;
	margin-bottom: 0px;
	max-width: 585px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 9px;
}

.step-buttons {
	display: flex;
	gap: 13.5px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 22.5px;
}

.sec-buttons {
	display: flex;
	gap: 13.5px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 22.5px;
}

.step-btn {
	padding: 4.5px 27px;
	border-radius: 45px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: 1.8px solid #29244C;
}

.step-btn span {
	font-family: 'Poppins', sans-serif;
	font-size: 11.7px;
	font-weight: 600;
	text-align: center;
}

.step-btn-primary {
	background: #29244C;
}

.step-btn-primary span {
	color: white;
}

.step-btn-primary:hover {
	background: transparent;
	transform: translateY(-2px);
	box-shadow: 0 4.5px 13.5px rgba(41, 36, 76, 0.3);
}

.step-btn-primary:hover span {
	color: #29244C;
}

.step-btn-secondary {
	background: transparent;
}

.step-btn-secondary span {
	color: #29244C;
}

.step-btn-secondary:hover {
	background: #29244C;
	transform: translateY(-2px);
	box-shadow: 0 4.5px 13.5px rgba(41, 36, 76, 0.3);
}

.step-btn-secondary:hover span {
	color: white;
}

/* Responsive design */
@media (max-width: 767px) {
	#partners-become {
		padding: 54px 0;
	}

	#partners-become .sec-title h1 {
		font-size: 28.8px;
		margin-bottom: 36px;
	}

	.timeline-step {
		padding: 27px 13.5px;
	}

	.step-title {
		font-size: 21.6px;
	}

	.step-description {
		font-size: 14.4px;
	}

	.step-buttons {
		flex-direction: column;
		gap: 9px;
	}

	.step-btn {
		/* width: 100%;
		max-width: 270px; */
		text-align: center;
	}
}

@media (max-width: 550px) {
	#partners-become {
		padding: 0px 13.5px;
	}

	#partners-become .sec-title h1 {
		font-size: 25.2px;
		margin-bottom: 18px;
	}

	.timeline-step {
		padding: 18px 13.5px;
	}
}


/* ========================================
   Partners App Showcase Section
   ======================================== */
#partners-app-showcase {
	padding: 36px 0;
	background-color: #FFFFFF;
}

.partners-app-showcase-content {
	max-width: 1080px;
	margin: 0 auto;
	padding: 36px 36px;
	/* background: linear-gradient(135deg, #6D6E8A 0%, #7B7C96 100%); */
	background-color: #8E8CA1;
	border-radius: 18px;
	box-shadow: 0 9px 36px rgba(0, 0, 0, 0.15);
}

.showcase-header {
	text-align: center;
	margin-bottom: 18px;
}

.showcase-title {

	font-size: 30.6px;
	line-height: 37.8px;
	text-align: center;
	max-width: 891px;
	width: 100%;
	margin: 0 auto;
	text-transform: uppercase;
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: 700;

	/* font-size: 37.8px; */
	/* font-weight: bold; */
	color: #FFFFFF;
	margin-top: 0px;
	margin-bottom:9px;
	text-transform: uppercase;
	/* letter-spacing: 0.9px; */
}

.showcase-subtitle {
	font-size: 18px;
	line-height: 1.5;
	color: #FFFFFF;
	max-width: 810px;
	margin: 0 auto;
	opacity: 0.95;
}

.app-showcase-image {
	width: 100%;
	max-width: 990px;
	height: auto;
	display: block;
	margin: 0 auto;
}
.app-showcase-image img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.app-screenshots-wrapper {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
}

.app-screenshots-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 27px;
	align-items: center;
	justify-items: center;
}

.screenshot-item {
	width: 100%;
	max-width: 252px;
	transition: transform 0.3s ease;
}

.screenshot-item:hover {
	transform: translateY(-10px);
}

.screenshot-item img {
	width: 100%;
	height: auto;
	border-radius: 18px;
	box-shadow: 0 7.2px 27px rgba(0, 0, 0, 0.3);
	display: block;
}

/* Slider Navigation - Hidden on desktop */
.screenshots-slider-nav {
	display: none;
}

.screenshots-slider-dots {
	display: none;
}

@media (max-width: 1300px) {
	.partners-app-showcase-content {
		margin: 0px 13.5px;
	}
}

/* Responsive design for Tablets */
@media (max-width: 1024px) {
	.partners-app-showcase-content {
		padding: 45px 27px;
	}

	.showcase-title {
		font-size: 30.6px;
		line-height: 37.8px;
	}

	.showcase-subtitle {
		font-size: 16.2px;
	}

	.app-screenshots-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 22.5px;
	}
}

/* Responsive design for Mobile - Slider */
@media (max-width: 767px) {
	#partners-app-showcase {
		padding: 36px 0;
	}

	.partners-app-showcase-content {
		padding: 36px 18px;
		border-radius: 13.5px;
	}

	.showcase-header {
		margin-bottom: 36px;
	}

	.showcase-title {
		font-size: 23.4px;
		line-height: 28.8px;
		margin-bottom: 13.5px;
	}

	.showcase-subtitle {
		font-size: 14.4px;
		padding: 0 9px;
	}

	.app-screenshots-wrapper {
		position: relative;
		overflow: hidden;
	}

	.app-screenshots-grid {
		display: flex;
		grid-template-columns: none;
		gap: 18px;
		overflow-x: auto;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none; /* Firefox */
		-ms-overflow-style: none; /* IE and Edge */
		padding: 0 9px;
	}

	.app-screenshots-grid::-webkit-scrollbar {
		display: none; /* Chrome, Safari, Opera */
	}

	.screenshot-item {
		flex: 0 0 80%;
		max-width: 252px;
		scroll-snap-align: center;
	}

	.screenshot-item:hover {
		transform: none;
	}

	/* Show slider navigation on mobile */
	.screenshots-slider-nav {
		display: flex;
		justify-content: space-between;
		margin-top: 27px;
		gap: 18px;
	}

	.slider-nav-btn {
		background: rgba(255, 255, 255, 0.2);
		border: 1.8px solid rgba(255, 255, 255, 0.3);
		color: #FFFFFF;
		width: 45px;
		height: 45px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		transition: all 0.3s ease;
		backdrop-filter: blur(10px);
	}

	.slider-nav-btn:hover {
		background: rgba(255, 255, 255, 0.3);
		border-color: rgba(255, 255, 255, 0.5);
		transform: scale(1.05);
	}

	.slider-nav-btn svg {
		width: 21.6px;
		height: 21.6px;
	}

	/* Slider dots */
	.screenshots-slider-dots {
		display: flex;
		justify-content: center;
		gap: 9px;
		margin-top: 18px;
	}

	.slider-dot {
		width: 9px;
		height: 9px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.4);
		cursor: pointer;
		transition: all 0.3s ease;
		border: none;
		padding: 0;
	}

	.slider-dot.active {
		background: #FFFFFF;
		width: 27px;
		border-radius: 4.5px;
	}
}

@media (max-width: 550px) {
	.partners-app-showcase-content {
		margin: 0;
		border-radius: 0;
	}
}

/* ========================================
   Partners Testimonials Section
   ======================================== */
#partners-testimonials {
	padding: 45px 0;
	background-color: #F1F9FF;
	overflow: hidden;
	margin-bottom: 54px;
}

#partners-testimonials .sec-title h1 {
	text-align: center;
	/* font-size: 37.8px;
	font-weight: bold; */
	color: #1E1E3F;
	margin-bottom: 54px;
	text-transform: uppercase;
	/* letter-spacing: 0.9px; */
}

.partners-testimonials-wrapper {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 36px;
	display: flex;
	gap: 72px;
	align-items: flex-start;
	touch-action: pan-y;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	user-select: none;
}

/* Fixed Image Container */
.partners-testimonials-image-container {
	position: relative;
	width: 360px;
	height: 405px;
	flex: 0 0 400px;
}

.partners-testimonial-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	pointer-events: none;
}

.partners-testimonial-image.active {
	opacity: 1;
	pointer-events: auto;
}

.partners-testimonial-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 13.5px;
	box-shadow: 0 9px 36px rgba(0, 0, 0, 0.15);
}

/* Content Slider Container */
.partners-testimonials-content-container {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 36px;
}

.partners-testimonials-slider {
	position: relative;
	min-height: 270px;
	touch-action: pan-y;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	user-select: none;
	cursor: grab;
}

.partners-testimonial-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transform: translateX(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	pointer-events: none;
}

.partners-testimonial-slide.active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
	position: relative;
}

.partners-testimonial-quote {
	font-family: 'Raleway', serif;
	font-size: 21.6px;
	line-height: 1.5;
	color: #4A4A68;
	font-style: italic;
	margin: 0 0 27px 0;
	font-weight: 400;
}

/* Author Info - Below quote on right side */
.partners-testimonial-author-info {
	margin-top: 0;
}

.partners-testimonial-author-info .partners-author-name {
	font-size: 16.2px;
	font-weight: bold;
	color: #1E1E3F;
	margin-bottom: 4.5px;
}

.partners-testimonial-author-info .partners-author-award {
	font-size: 12.6px;
	color: #6D6E8A;
	font-weight: 500;
	margin: 0;
}

/* Navigation Dots */
.partners-testimonials-dots {
	display: flex;
	gap: 10.8px;
	justify-content: center;
	margin-top: 36px;
}

.testimonial-dot {
	width: 10.8px;
	height: 10.8px;
	border-radius: 50%;
	background-color: #C4C4C4;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.testimonial-dot:hover {
	background-color: #6D6E8A;
}

.testimonial-dot.active {
	background-color: #1E1E3F;
}

/* Responsive design */
@media (max-width: 1024px) {
	.partners-testimonials-wrapper {
		gap: 45px;
	}

	.partners-testimonials-image-container {
		width: 315px;
		flex: 0 0 350px;
		height: 450px;
	}

	.partners-testimonial-quote {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	#partners-testimonials {
		padding: 54px 0;
	}

	#partners-testimonials .sec-title h1 {
		font-size: 25.2px;
		margin-bottom: 36px;
	}

	.partners-testimonials-wrapper {
		flex-direction: column;
		gap: 36px;
		padding: 0 18px;
	}

	.partners-testimonials-image-container {
		width: 100%;
		max-width: 315px;
		flex: 0 0 auto;
		height: 360px;
		margin: 0 auto;
	}

	.partners-testimonials-content-container {
		flex: 0 0 auto;
	}

	.partners-testimonials-slider {
		min-height: 225px;
	}

	.partners-testimonial-quote {
		font-size: 18px;
	}

	.partners-testimonial-author-info .partners-author-name {
		font-size: 14.4px;
	}

	.partners-testimonial-author-info .partners-author-award {
		font-size: 11.7px;
	}

	.partners-testimonials-dots {
		justify-content: center;
	}
}

@media (max-width: 550px) {
	#partners-testimonials {
		padding: 36px 0;
	}

	.partners-testimonial-quote {
		font-size: 15.3px;
	}
}

 .sec-container#partners-faqs {
	padding: 45px 14.4px 54px;
	background: #F1F8FE;
	margin: 0;
 }


 .contacts-hero .hero-main-content {
	max-width: 594px;
 }

/* Contact Customer Support Section */
#contact-us-customer-support {
	padding: 72px 0;
}

#contact-us-customer-support .sec-title h1 {
	/* font-size: 43.2px;
	text-transform: uppercase;
	letter-spacing: 0.9px;
	color: #26234b; */
	margin-bottom: 54px;
	/* text-align: center; */
}

.contact-support-grid {
	display: flex;
	gap: 54px;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
}

.contact-support-card {
	text-align: left;
	max-width: 288px;
	flex: 1 1 260px;
}

.contact-support-city {
	font-family: 'Raleway', Arial, sans-serif;
	font-size: 16.2px;
	font-weight: 800;
	letter-spacing: 0.9px;
	color: #29244C;
	margin-bottom: 21.6px;
	text-transform: uppercase;
}

.contact-support-phone {
	display: inline-block;
	padding: 16.2px 32.4px;
	border-radius: 18px;
	background-color: #6D6E8A;
	color: #FFFFFF !important;
	font-family: 'Poppins', sans-serif;
	font-size: 21.6px;
	font-weight: 700;
	text-decoration: none;
	margin-bottom: 21.6px;
	box-shadow: 0 16.2px 27px rgba(109, 110, 138, 0.25);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-support-phone:hover {
	transform: translateY(-4px);
	box-shadow: 0 21.6px 36px rgba(109, 110, 138, 0.3);
}

.contact-support-schedule {
	font-family: 'Poppins', sans-serif;
	font-size: 12.6px;
	line-height: 22.5px;
	color: #3E3A64;
}

.contact-support-schedule .schedule-label {
	display: block;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 0px;
	color: #29244C;
}

.contact-support-schedule p {
	margin: 0;
}


#contact-us-form .sec-subtitle h2 {
	font-size: 21.6px;
	line-height: 28.8px;
	font-weight: 500;
}

#contact-us-form {
	background-color: #f1f9ff;
	padding: 72px 0;
}

#contact-us-form .sec-inner {
	max-width: 763.2px;
	margin: 0 auto;
}

#contact-us-form .sec-title h1,
#contact-us-form .sec-subtitle h2 {
	color: #29244C;
	text-align: center;
}

#contact-us-form .sec-title {
	margin-bottom: 14.4px;
	text-align: center;
}

#contact-us-form .sec-subtitle {
	margin-bottom: 28.8px;
	text-align: center;
}

.sec-subtitle h6 {
	font-size: 14.4px;
	margin: 0;
}

.contact-form-feedback {
	margin-bottom: 21.6px;
	padding: 14.4px 18px;
	border-radius: 14.4px;
	font-family: 'Poppins', sans-serif;
	font-size: 14.4px;
	text-align: center;
}

.contact-form-success {
	background-color: rgba(87, 189, 126, 0.18);
	color: #217a4e;
	border: 0.9px solid rgba(87, 189, 126, 0.35);
}

.contact-form-errors {
	display: none !important;
	background-color: rgba(255, 153, 102, 0.18);
	color: #8f3b1c;
	border: 0.9px solid rgba(255, 153, 102, 0.35);
}

.form-error {
	margin-top: 7.2px;
	font-size: 11.7px;
	color: #b63a2b;
	font-family: 'Poppins', sans-serif;
}

.form-error-mail {
	margin-top: 10.8px;
	text-align: center;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 23.4px;
}

.contact-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28.8px;
}

.contact-form-left,
.contact-form-right {
	display: flex;
	flex-direction: column;
	gap: 19.8px;
}

.contact-form label {
	display: block;
	/* font-family: 'Raleway', Arial, sans-serif; */
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-size: 12.6px;
	text-transform: none;
	letter-spacing: 0;
	color: #2a2450;
	margin-bottom: 9px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	box-sizing: border-box;
	border: none;
	border-radius: 21.6px;
	padding: 12.6px 16.2px;
	font-family: 'Poppins', sans-serif;
	font-size: 14.4px;
	color: #202345;
	background-color: #d4dde7;
	box-shadow: inset 0 0 0 1.8px transparent;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	box-shadow: inset 0 0 0 1.8px #29244C;
	transform: translateY(-1px);
}

.form-group-phone .phone-inputs {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 9px;
}


.form-group-message textarea {
	min-height: 158.4px;
	resize: vertical;
	border-radius: 21.6px;
}

.select-wrapper {
	position: relative;
}

.select-wrapper:after {
	content: '';
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 9px;
	height: 5.4px;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2329224C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
}

.contact-form select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 43.2px;
}

.form-meta-row {
	/* display: flex; */
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14.4px;
}

.contact-form-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14.4px;
	margin-top: 14.4px;
	text-align: center;
}

.contact-form-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 14.4px;
	font-family: 'Poppins', sans-serif;
	font-size: 12.6px;
	color: #2f2c4e;
	cursor: pointer;
}

.contact-form-checkbox input[type="checkbox"] {
	margin: 0;
	flex-shrink: 0;
	width: auto;
	height: auto;
}

.checkbox-custom {
	width: 19.8px;
	height: 19.8px;
	border-radius: 5.4px;
	border: 1.8px solid #2a2450;
	position: relative;
	flex-shrink: 0;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-form-checkbox input:checked + .checkbox-custom {
	background-color: #29244C;
	border-color: #29244C;
}

.contact-form-checkbox input:checked + .checkbox-custom::after {
	content: '';
	position: absolute;
	left: 5.4px;
	top: 1.8px;
	width: 5.4px;
	height: 10.8px;
	border: solid #fff;
	border-width: 0 1.8px 1.8px 0;
	transform: rotate(45deg);
}

.checkbox-label a {
	color: #29244C;
	text-decoration: underline;
}

.contact-form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 40.5px;
	border-radius: 23.4px;
	border: 1.8px solid #29244C;
	background-color: #ffffff;
	color: #29244C;
	font-family: 'Poppins', sans-serif;
	font-size: 12.6px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-form-submit:hover {
	background-color: #29244C;
	color: #FFFFFF;
	transform: translateY(-1px);
}

.contact-form-submit span {
	display: inline-block;
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
	box-shadow: inset 0 0 0 1.8px #b63a2b;
}

.contact-form-checkbox.has-error .checkbox-label {
	color: #b63a2b;
}

.contact-form-submit.is-loading {
	position: relative;
	opacity: 0.75;
}

.contact-form-submit.is-loading::after {
	content: '';
	position: absolute;
	right: 16.2px;
	width: 14.4px;
	height: 14.4px;
	border-radius: 50%;
	border: 1.8px solid rgba(41, 34, 76, 0.3);
	border-top-color: #29244C;
	animation: contactSpinner 0.8s linear infinite;
}

.contact-form-submit.is-loading span {
	opacity: 0.85;
}

@keyframes contactSpinner {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 1200px) {
	/* #contact-us-customer-support .sec-title h1 {
		font-size: 32.4px;
	} */
}

@media (max-width: 1024px) {
	#contact-us-form {
		padding: 18px 0;
	}

	#contact-us-form .contact-form-inner {
		padding: 43.2px 36px 50.4px;
	}

	.contact-form-grid {
		grid-template-columns: 1fr;
		gap: 28.8px;
	}

	.form-group-phone .phone-inputs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.form-meta-row {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	#contact-us-form {
		padding: 18px 0 18px;
	}

	#contact-us-form .contact-form-inner {
		padding: 36px 21.6px 43.2px;
	}

	.form-group-phone .phone-inputs {
		grid-template-columns: 1fr;
	}

	.contact-form-checkbox {
		align-items: flex-start;
	}
}

@media (max-width: 767px) {

	.contact-support-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.contact-support-grid-item {
		width: 100%;
	}

	.contact-support-card {
		text-align: center;
		margin: 0 auto;
	}

	.contact-support-city {
		margin-bottom: 13.5px;
	}

	#contact-us-customer-support {
		padding: 36px 13.5px 36px;
	}

	#contact-us-customer-support .sec-title h1 {
		/* font-size: 25.2px; */
		margin-bottom: 27px;
	}

	.contact-support-phone {
		padding: 14.4px 21.6px;
		font-size: 18px;
	}

	#contact-us-form .sec-subtitle h2 {
		font-size: 18px;
		line-height: 23.4px;
	}
}

/* Contact Join Section */
#contact-us-join {
	padding: 54px 13.5px 0;
}

#contact-us-join .sec-title {
	margin-bottom: 27px;
	text-align: center;
}

.contact-join-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 36px;
	max-width: 684px;
	margin: 0 auto;
}

.contact-join-card {
	display: flex;
	flex-direction: column;
	background: linear-gradient(135deg, #2a2751 20%, #D6D5DD 100%);
	border-radius: 10.8px;
	overflow: hidden;
	box-shadow: 0 3.6px 18px rgba(0, 0, 0, 0.1);
	padding: 31.5px 22.5px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-join-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 7.2px 27px rgba(0, 0, 0, 0.15);
}

.contact-join-card .feature-card-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10.8px;
	margin-bottom: 18px;
	overflow: visible;
}

.contact-join-card .feature-card-title span:first-child {
	flex: 1;
	overflow: hidden;
}

.contact-join-card .feature-card-arrow {
	display: inline-block;
	font-size: 21.6px;
	color: #ffffff;
	font-weight: 400;
	line-height: 1;
	flex-shrink: 0;
	margin-left: auto;
}

@media (max-width: 1024px) {
	.contact-join-cards {
		gap: 27px;
	}
}

@media (max-width: 767px) {
	#contact-us-join {
		padding: 36px 13.5px 0px;
	}

	.contact-join-cards {
		grid-template-columns: 1fr;
		gap: 27px;
	}

	.contact-join-card {
		padding: 27px 18px;
	}

	.contact-join-card .feature-card-title {
		font-size: 16.2px;
	}

	.contact-join-card .feature-card-arrow {
		font-size: 18px;
	}
}

/* QR Code Popup Styles */
.qr-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.qr-popup-content {
	background: #ffffff;
	border-radius: 10.8px;
	padding: 27px;
	position: relative;
	max-width: 360px;
	width: 90%;
	box-shadow: 0 3.6px 18px rgba(0, 0, 0, 0.3);
}

.qr-popup-close {
	position: absolute;
	top: 13.5px;
	right: 13.5px;
	background: transparent;
	border: none;
	font-size: 28.8px;
	line-height: 1;
	color: #2a2751;
	cursor: pointer;
	padding: 0;
	width: 28.8px;
	height: 28.8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s ease;
}

.qr-popup-close:hover {
	color: #675b8c;
}

.qr-popup-header {
	margin-bottom: 18px;
	text-align: center;
}

.qr-popup-title {
	font-size: 18px;
	font-weight: 700;
	color: #2a2751;
	margin: 0;
	font-family: 'Poppins', sans-serif;
}

.qr-popup-body {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 18px 0;
}

#qr-code-container {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ffffff;
	padding: 13.5px;
	border-radius: 7.2px;
}

#qr-code-container canvas {
	max-width: 100%;
	height: auto;
}

/* Terms & Privacy Page Styles */
.terms-privacy-container {
	background: #F1F9FF;
	width: 100%;
	padding: 54px 14.4px;
	margin: 126px 0 0;
}

.terms-privacy-inner {
	max-width: 1170px;
	margin: 0 auto;
	width: 100%;
}

.terms-privacy-header {
	text-align: center;
	margin-bottom: 54px;
}

.terms-privacy-title {
	font-size: 43.2px;
	font-weight: 800;
	font-family: 'Raleway', Arial, sans-serif;
	color: #2a2751;
	text-transform: uppercase;
	margin: 0 0 18px 0;
	letter-spacing: 1.8px;
}

.terms-privacy-description {
	font-size: 21.6px;
	font-weight: 400;
	font-family: 'Raleway', Arial, sans-serif;
	font-style: italic;
	color: #2a2751;
	margin: 0;
	opacity: 0.9;
}

.terms-privacy-content {
	color: #2a2751;
	font-family: 'Poppins', sans-serif;
	font-size: 12.6px;
	line-height: 1.8;
}

.terms-privacy-content p {
	margin: 0 0 18px 0;
	break-inside: avoid;
}

.terms-privacy-content p:last-child {
	margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 767px) {
	.terms-privacy-container {
		padding: 54px 14.4px;
	}
	
	.terms-privacy-title {
		font-size: 32.4px;
	}
	
	.terms-privacy-description {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.terms-privacy-container {
		padding: 36px 14.4px;
	}
	
	.terms-privacy-title {
		font-size: 25.2px;
		margin-bottom: 13.5px;
	}
	
	.terms-privacy-description {
		font-size: 16.2px;
	}
	
	.terms-privacy-header {
		margin-bottom: 36px;
	}
}

/* 404 Error Page Styles */
.error-404-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 36px 0;
}

.error-404-image {
	max-width: 378px;
}

.error-404-image img {
	max-width: 100%;
	height: auto;
	display: block;
}

.raleway-semibold-italic {
	font-family: 'Raleway', Arial, sans-serif;
	font-style: italic;
	font-weight: 600;
}

.error-404-message {
	font-family: 'Raleway', Arial, sans-serif;
	font-style: italic;
	font-weight: 600;
	font-size: 23.4px;
	/* font-weight: 400; */
	color: #2a2751;
	margin: 0 0 36px 0;
	line-height: 1.6;
	max-width: 540px;
}

.error-404-button {
	margin-top: 0px;
}

.error-404-button .btn {
	display: inline-block;
	border-radius: 25.2px;
	padding: 6.3px 30.6px;
	font-weight: 700;
	text-decoration: none;
	font-family: 'Raleway', Arial, sans-serif;
	font-size: 14.4px;
	transition: all 0.3s ease;
}

.error-404-button .btn-primary {
	background: #2a2751;
	color: #ffffff;
	border: 1.8px solid #2a2751;
}

.error-404-button .btn-primary:hover {
	background: #ffffff;
	color: #2a2751;
	border: 1.8px solid #2a2751;
}

/* Responsive Design for 404 */
@media (max-width: 767px) {
	.error-404-image {
		margin-bottom: 27px;
	}
	
	.error-404-message {
		font-size: 14.4px;
		margin-bottom: 27px;
		padding: 0 18px;
	}
}

@media (max-width: 480px) {
	.error-404-content {
		padding: 18px 0;
	}
	
	.error-404-image {
		margin-bottom: 18px;
	}
	
	.error-404-message {
		font-size: 12.6px;
		margin-bottom: 22.5px;
	}
}