/* Landing Page Specific Styles */

/* Enable text selection globally */
* {
	-webkit-user-select: text !important;
	-moz-user-select: text !important;
	-ms-user-select: text !important;
	user-select: text !important;
}

/* Disable selection only for interactive elements */
button, .carousel-arrow, .carousel-indicator-dot {
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
}

/* Hero Section */
.hero-section {
	background: linear-gradient(90deg, #063163 0%, #00BFA5 100%);
}

.hero-layout {
	display: flex;
	align-items: flex-start;
	gap: 48px;
}

.hero-text {
	flex: 1;
	min-width: 0;
}

.hero-cta {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

	.hero-cta > * {
		flex-shrink: 0;
	}

.hero-title {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 70px;
	line-height: 85px;
	color: #FFFFFF;
	margin-bottom: 45px;
}

	.hero-title .highlight {
		color: #00FFDE;
	}

.hero-description {
	font-family: 'Nunito', sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.3;
	color: #FFFFFF;
	max-width: 677px;
	margin-bottom: 45px;
}


.hero-phone-mockup {
	max-width: 508px;
	flex-shrink: 0;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

	.hero-phone-mockup img {
		width: 100%;
		height: auto;
	}

/* Features Section */
.features-section {
	position: relative;
	padding: 160px 20px 160px;
	background: #F5F5F5;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	transform: translateY(-50px);
}

.features-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60%;
	border-radius: 50px;
	background: linear-gradient(135deg, #063163 0%, #00BFA5 100%);
}

.features-container {
	max-width: 1595px;
	margin: 0 auto;
	position: relative;
}

.features-background {
	padding: 80px 60px 40px;
	position: relative;
}

.features-title {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 55px;
	line-height: 85px;
	color: #FFFFFF;
	text-align: center;
}

	.features-title .highlight {
		color: #00FFDE;
	}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 57px;
	max-width: 1520px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}


.feature-card {
	background: #FFFFFF;
	border-radius: 50px;
	padding: 50px 25px 50px;
	box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.25);
	text-align: center;
	/*min-height: 611px;*/
	display: flex;
	flex-direction: column;
	/*justify-content: space-between;*/
}

.feature-icon {
	height: 250px;
	display: flex;
	/*align-items: center;*/
	justify-content: center;
	margin-bottom: 46px;
}

	.feature-icon img {
		max-height: 100%;
		max-width: 220px;
	}

.feature-content h3 {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 1;
	color: #063163;
	margin-bottom: 25px;
}

.feature-content p {
	font-family: 'Nunito', sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.3;
	color: #063163;
}

/* Screens Section */
.screens-section {
	padding: 80px 20px;
	background: #FFFFFF;
	position: relative;
	overflow: hidden;
}

.screens-container {
	max-width: 1651px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 100px;
	position: relative;
	touch-action: pan-y; /* Allow vertical scrolling but capture horizontal swipes */
}

/* Background Logo */
.screens-bg-logo {
	position: absolute;
	width: 800px;
	height: 800px;
	opacity: 0.1;
	pointer-events: none;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(10deg) scale(1.5);
}

	.screens-bg-logo img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

.screen-phone {
	flex: 0 0 auto;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
}

	.screen-phone img {
		max-height: 680px;
	}

/* Phone Tilts */
.screen-phone-left {
	transform: rotate(-5deg);
}

	.screen-phone-left:hover {
		transform: rotate(0deg) scale(1.05);
	}

.screen-phone-center {
	transform: scale(1.1);
}

	.screen-phone-center:hover {
		transform: scale(1.15);
	}

.screen-phone-right {
	transform: rotate(5deg);
}

	.screen-phone-right:hover {
		transform: rotate(0deg) scale(1.05);
	}

/* Text Section */
.text-section {
	padding: 80px 20px;
	max-width: 1597px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #063163;
}

	.text-section h2 {
		font-family: 'Nunito', sans-serif;
		font-weight: 700;
		font-size: 55px;
		line-height: 85px;
		margin-bottom: 45px;
	}

	.text-section p {
		font-family: 'Nunito', sans-serif;
		font-weight: 500;
		font-size: 20px;
		line-height: 1.3;
		max-width: 782px;
	}

/* Responsive Design - Tablet and Below (1200px) */
@media (max-width: 1200px) {
	/* Hero Section */
	.hero-phone-mockup {
		max-width: 400px;
	}

	.hero-title {
		font-size: 60px;
		line-height: 75px;
	}

	/* Features Section */
	.features-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 40px;
	}

	.feature-card {
		min-height: auto;
		padding: 60px 30px 50px;
	}

	.features-container::before {
		content: "";
		position: absolute;
		top: 0;
		width: 80%;
		height: 100%;
		border-radius: 50px;
		background: linear-gradient(135deg, #063163 0%, #00BFA5 100%);
		left: 50%;
		transform: translateX(-50%);
	}

	.features-title {
		font-size: 42px;
		line-height: 55px;
		margin-bottom: 10px;
	}

	.features-container {
		padding: 30px 20px 0px;
	}

	.features-background {
		padding: 0px 50px 0px;
	}

	/* Text Section */
	.text-section h2 {
		font-size: 48px;
		line-height: 60px;
	}
}

/* Responsive Design - Mobile (768px) */
@media (max-width: 768px) {
	/* Hero Section */
	.hero-layout {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.hero-cta {
		justify-content: center;
	}

	.hero-layout {
		gap: 45px;
	}

	.hero-phone-mockup {
		max-width: 350px;
		margin: 0 auto;
	}

	.hero-title {
		font-size: 45px;
		line-height: 50px;
	}

	.hero-description {
		font-size: 16px;
	}

	/* Features Section */
	.features-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.features-section {
		padding: 50px 11px 80px;
	}

	.features-title {
		font-size: 33px;
		line-height: 44px;
	}

	.feature-card {
		border-radius: 50px;
		padding: 61px 24px 36px;
		min-height: 355px;
	}

	.feature-icon {
		height: 150px;
		margin-bottom: 30px;
	}

		.feature-icon img {
			max-height: 141px;
			aspect-ratio: 1;
		}

	.feature-content h3 {
		font-size: 26px;
		margin-bottom: 17px;
	}

	.feature-content p {
		font-size: 16px;
	}

	/* Screens Section - Carousel */
	.screens-container {
		overflow: visible;
		position: relative;
		flex-direction: column;
		gap: 0;
		min-height: 80vh;
		display: flex;
		align-items: center;
		justify-content: center;
		padding-bottom: 60px;
	}

	.screens-bg-logo {
		width: 500px;
		height: 500px;
	}

	.screen-phone {
		position: absolute !important;
		top: 50%;
		left: 50%;
		transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
		pointer-events: none;
		width: 80vw;
		max-width: 450px;
	}

		.screen-phone img {
			width: 100% !important;
			height: auto !important;
			max-height: none !important;
		}

	/* Carousel Slide Positions */
	.screen-phone.active-slide {
		transform: translate(-50%, -50%) scale(1) rotate(0deg) !important;
		opacity: 1;
		pointer-events: none;
		z-index: 10;
	}

	.screen-phone.left-slide {
		transform: translate(-150%, -50%) rotate(-15deg) scale(0.7) !important;
		opacity: 0.3;
		z-index: 5;
		transform-origin: center;
	}

	.screen-phone.right-slide {
		transform: translate(50%, -50%) rotate(15deg) scale(0.7) !important;
		opacity: 0.3;
		z-index: 5;
		transform-origin: center;
	}

	/* Reset Desktop Phone Styles */
	.screen-phone-left,
	.screen-phone-center,
	.screen-phone-right {
		position: absolute !important;
		transform: rotate(0deg);
	}

		.screen-phone-left:hover,
		.screen-phone-center:hover,
		.screen-phone-right:hover,
		.screen-phone:hover {
			transform: none !important;
		}

	/* Carousel Controls */
	.carousel-arrow {
		display: flex !important;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 44px;
		height: 44px;
		background: rgba(255, 255, 255, 0.7);
		backdrop-filter: blur(10px);
		border: none;
		border-radius: 50%;
		cursor: pointer;
		z-index: 15;
		transition: all 0.3s ease;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
		color: #00BFA5;
		padding: 0;
	}

		.carousel-arrow:active {
			transform: translateY(-50%) scale(0.95);
			background: rgba(0, 191, 165, 0.9);
			color: white;
		}

		.carousel-arrow svg {
			width: 24px;
			height: 24px;
		}

	.carousel-arrow-left {
		left: 10px;
	}

	.carousel-arrow-right {
		right: 10px;
	}

	.carousel-indicator {
		display: flex !important;
		justify-content: center;
		align-items: center;
		gap: 8px;
		position: absolute;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
		background: rgba(255, 255, 255, 0.7);
		backdrop-filter: blur(10px);
		border-radius: 20px;
		padding: 8px 16px;
		z-index: 20;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	}

	.carousel-indicator-dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: rgba(6, 49, 99, 0.3);
		transition: all 0.3s ease;
	}

		.carousel-indicator-dot.active {
			background: #00BFA5;
			width: 24px;
			border-radius: 4px;
		}

	/* Text Section */
	.text-section h2 {
		font-size: 36px;
		line-height: 44px;
	}

	.text-section p {
		font-size: 16px;
	}
}

/* Hide carousel controls on desktop */
.carousel-arrow,
.carousel-indicator,
.carousel-indicators {
	display: none;
}
