/* Reset ve genel stiller */
:root {
	--primary-color: #e31837;
	--text-color: #333;
	--bg-color: #fff;
	--gray-color: #f5f5f5;
	--banner-bg-hard: hsl(0, 100%, 23%);
	--banner-bg-soft: hsl(18, 40%, 47%);
	--banner-bg-gradient: linear-gradient(135deg, var(--banner-bg-hard), var(--banner-bg-soft), var(--banner-bg-hard));
	--text-color2: #787878;
	--header-top-bg: #ebebeb;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
}

body {
	line-height: 1.6;
	color: var(--text-color);
	font-family: "Poppins", sans-serif;
}

main {
	overflow: hidden;
}
a {
	text-decoration: none;
	color: inherit;
}
ul {
	list-style: none;
	padding: 0;
}

/* Success Section */
.success-section {
	min-height: calc(100vh - 200px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 2rem 2rem;
	position: relative;
	background: linear-gradient(to bottom, #1d1d1d 0%, #1d1d1d 50%, #fff 50%, #fff 100%);
}

.success-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
	padding: 3rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success-icon {
	margin-bottom: 2rem;
}

.success-content h1 {
	font-size: 2rem;
	color: #333;
	margin-bottom: 1rem;
}

.success-content p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 2rem;
}

.new-referral-btn {
	display: inline-block;
	background: var(--primary-color);
	color: white;
	text-decoration: none;
	padding: 1rem 2rem;
	border-radius: 6px;
	font-weight: 500;
	transition: background-color 0.3s;
}

.new-referral-btn:hover {
	background-color: #c41530;
}

/* Hero Section */
.hero {
	position: relative;
	width: 100%;
	height: 449px;
	overflow: hidden;
	background: var(--banner-bg-gradient);
}

.hero .banner-desktop,
.hero .banner-mobil {
	width: 100%;
	height: 449px;
	object-fit: cover;
	object-position: center;
}

.hero .banner-mobil {
	display: none;
}

.hero-banner {
	width: 100%;
	height: 449px;
	object-fit: cover;
	object-position: center;
}

.referral-form {
	background: white;
	padding: 1.5rem;
	border-radius: 16px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	width: 400px;
	position: absolute;
	left: 100%;
	transform: translateX(calc(-100% - 7rem));
	top: -340px;
	z-index: 10;
}

.referral-form h3 {
	font-size: 1.5rem;
}

.form-section {
	margin-bottom: 2rem;
}

.form-section h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #333;
}

.form-section input,
.form-section select {
	width: 100%;
	padding: 1rem;
	margin-bottom: 1rem;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	font-size: 1rem;
	color: #333;
	background: white;
}

.form-section input::placeholder {
	color: #666;
}

.location-selects {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.submit_button  {
	width: 100%;
	padding: 1.25rem;
	background: var(--primary-color);
	color: white;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 500;
	font-size: 1.1rem;
	text-transform: uppercase;
	transition: background-color 0.2s;
}

.submit_button:hover {
	background-color: #c41530;
}

a.explanation {
	text-decoration: none;
	color: gray;
}

span.explanations {
	text-align: center;
	display: block;
	width: 100%;
	padding: 20px;
}

/* Advantages Section */
.advantages {
	padding: 4rem 2rem;
	/*padding-top: calc(261.5px + 2rem); !* form'un yarı yüksekliği + padding *!*/
	background: white;
	position: relative;
}

.advantages h2 {
	font-size: 2rem;
	font-weight: 700;
	text-align: left;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding-bottom: 3rem;
}

.advantage-items {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding-right: 490px;
}

.advantage-item {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
}

.advantage-item img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.advantage-item-content {
	flex: 1;
}

.advantage-item h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.advantage-item p {
	color: #666;
	font-size: 1.1rem;
	line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
	padding: 4rem 2rem;
	background: var(--gray-color);
}

.testimonials h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	text-align: center;
}

.testimonial-slider {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 2rem auto 0;
}

.testimonial {
	background: white;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	text-align: left;
}

.testimonial p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #333;
	margin-bottom: 1.5rem;
}

.author {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: auto;
}

.author img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
}

.author span {
	font-weight: 500;
	color: #333;
}

/* FAQ Section */
.faq {
	padding: 4rem 2rem;
	background: white;
}

.faq h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	text-align: center;
}

.faq-items {
	max-width: 1200px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1rem;
	background: #f8f8f8;
	border-radius: 12px;
	overflow: hidden;
}

.faq-question {
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	position: relative;
}

.faq-question h3 {
	font-size: 1.25rem;
	font-weight: 500;
	color: #333;
	padding-right: 2rem;
}

.faq-question::after {
	content: "+";
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	color: #333;
	transition: transform 0.3s ease;
}

.faq-question.active::after {
	content: "-";
}

.faq-answer {
	padding: 0 2rem 1.5rem;
	display: none;
	color: #666;
	line-height: 1.6;
	font-size: 1rem;
}

.social-links a,
.social-links a:visited {
	color: gray;
	text-decoration: none;
	line-height: 2;
}

.social-links a img {
	margin-bottom: -2px;
	height: 16px;
}

/* https://dev.mealbox.com.tr/landing-page-html/style.css */

.social-links {
	gap: 1rem;
	margin-top: 1rem;
	list-style: none;
}

.form {
	position: relative;
	width: 100vw;
}
@media (max-width: 1400px) {
	.hero,
	.hero .banner-desktop {
		height: 380px;
	}
}

@media (max-width: 1180px) {
	.hero .banner-desktop {
		display: none;
	}

	.hero .banner-mobil {
		display: block;
		height: auto;
		max-width: 630px;
		max-height: 758px;
		margin: 0 auto;
	}
	.hero {
		height: 630px;
	}
	.referral-form {
		top: -300px;
		transform: translateX(calc(-100% - 1rem));
	}

	.header_topSection_phone_number {
		display: none;
	}
	.header_nav {
		font-size: 0.875rem;
	}
	.header_nav_logoContainer {
		display: none;
	}
	.header_nav {
		justify-content: center;
	}
}

@media (max-width: 1024px) {
	/* .nav-menu {
		display: none;
		max-width: 250px;
		position: absolute;
		right: 0;
		padding: 2vw;
	} */

	/* .nav-menu ul {
		display: list-item;
	} */

	/* .menu-toggle {
		display: block;
	} */

	.hero {
		background: var(--banner-bg-gradient);
		height: calc(100vw * 0.94);
		/* margin-top: 80px; */
		max-height: 630px;
	}

	.referral-form {
		width: calc(100vw - 4vw);
		position: absolute;
		left: 50%;
		transform: translate(-50%);
		display: block;
		top: 0px;
	}

	.referral-form h3 {
		font-size: 1.25rem;
	}

	.advantages {
		padding-top: 920px;
	}

	.advantages h2 {
		text-align: center;
	}

	.advantage-items {
		grid-template-columns: 1fr;
		padding-right: 0;
	}

	.advantage-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.testimonial-slider {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.header {
		display: none;
	}
	.header-mobile {
		display: block;
	}
}

@media (max-width: 660px) {
	.hero .banner-mobil {
		object-position: center -10px;
	}
}

@media (max-width: 610px) {
	/* .contact .contact_title {
		display: none;
	} */

	.logo {
		margin: 0 auto;
	}

	/* Success Section */
	.success-content h1 {
		font-size: 8vw;
	}

	.success-content {
		padding: 1rem 1rem 5vw;
	}

	.success-icon {
		margin-bottom: 0;
	}

	.new-referral-btn {
		padding: 2vw 2vw;
		font-size: 4vw;
	}

	.success-content p {
		margin-bottom: 2vw;
	}
}

@media (max-width: 540px) {
	.referral-form {
		width: calc(100vw - 30px);
		left: 50%;
		transform: translateX(-50%);
		top: 0px;
	}
}

@media (max-width: 430px) {
	.referral-form {
		width: calc(100vw - 27px);
		left: 50%;
		transform: translateX(-50%);
		top: 0px;
	}
}

@media (max-width: 390px) {
	.referral-form {
		left: 50%;
		transform: translateX(-50%);
		top: 0px;
	}
}

@media (max-width: 375px) {
	.referral-form {
		left: 50%;
		transform: translateX(-50%);
		top: 0px;
		width: 97.5vw;
	}
}

@media (max-width: 360px) {
	.referral-form {
		left: 50%;
		transform: translateX(-50%);
		top: 1vw;
		width: 97vw;
	}
}

.intl-tel-input {
	width: 100%;
	margin-bottom: 1rem;
}
