/* ===========================
   @import — en üste gelmeli
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
	scroll-behavior: smooth;
}

body {
	font-size: 16px;
	height: 100%;
	font-family: 'Montserrat', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: 700;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: 0;
}

/* ===========================
   Grid (Bootstrap-free)
   =========================== */
.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

[class*="col-"] {
	padding-left: 15px;
	padding-right: 15px;
}

.col-md-6  { flex: 0 0 50%;  max-width: 50%;  }
.col-xs-12 { flex: 0 0 100%; max-width: 100%; }
.col-xs-6  { flex: 0 0 50%;  max-width: 50%;  }

/* ===========================
   Coming Soon Wrapper
   =========================== */
.comming-soon {
	background: url(../images/bg.jpg) no-repeat center center;
	background-size: cover;
	width: 100%;
	position: relative;
	min-height: 100vh;
}

.comming-soon::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
}

/* ===========================
   Left Info Panel
   =========================== */
.comming-soon-info {
	width: 50%;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	align-items: center;
}

.comming-soon-inner {
	width: 100%;
	padding: 40px 30px;
	text-align: center;
}

.comming-soon-inner .logo {
	margin: 30px auto 50px;
	max-width: 320px;
}

.comming-soon-inner .logo img {
	margin: 0 auto;
	max-width: 100%;
}

/* ===========================
   Countdown
   =========================== */
.countdown-timer-wrapper {
	text-align: center;
	padding-bottom: 35px;
}

.timer .timer-wrapper {
	display: inline-block;
	width: 100px;
	margin: 0;
	text-align: center;
	vertical-align: top;
}

.timer .timer-wrapper .time {
	font-size: 46px;
	color: #fff;
	font-weight: 700;
	line-height: 1em;
}

.timer .timer-wrapper .text {
	color: #fff;
	font-size: 15px;
	font-weight: 300;
}

/* ===========================
   Site Info Text
   =========================== */
.site-info h1 {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: #fff;
	font-size: 36px;
	font-weight: 300;
	line-height: 1.5em;
}

.site-info h1 span {
	display: block;
	font-weight: 700;
}

.site-info p {
	margin-top: 30px;
	line-height: 1.8em;
	color: #fff;
	font-weight: 300;
}

.site-info .domain-link {
	display: inline-block;
	margin-top: 30px;
	color: #fff;
	font-weight: 500;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	padding-bottom: 2px;
	transition: border-color 0.3s;
}

.site-info .domain-link:hover {
	border-color: #fff;
}

/* ===========================
   Contact Form Panel
   =========================== */
.contact-form {
	width: 50%;
	background: linear-gradient(53deg, #e02856, #e53b4d, #eb4d44);
	position: absolute;
	top: 0;
	left: 50%;
	bottom: 0;
	z-index: 2;
	padding: 40px;
	display: flex;
	align-items: center;
}

.contact-box {
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
}

.title {
	text-transform: uppercase;
	font-size: 34px;
	color: #fff;
	padding-bottom: 20px;
	background: url(../images/title-bg.png) no-repeat bottom center;
	margin-bottom: 40px;
}

.contact-box p {
	color: #fff;
	font-weight: 300;
}

.contact-box form {
	margin-top: 50px;
}

/* ===========================
   Form Controls
   =========================== */
.form-control {
	display: block;
	width: 100%;
	border: none;
	box-shadow: none;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.10);
	color: #fff;
	padding: 14px;
	margin-bottom: 20px;
	resize: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	transition: background 0.3s;
}

.form-control:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.18);
}

.form-control::placeholder                { color: rgba(255,255,255,0.75); }
.form-control::-webkit-input-placeholder  { color: rgba(255,255,255,0.75); }
.form-control:-moz-placeholder            { color: rgba(255,255,255,0.75); }
.form-control::-moz-placeholder           { color: rgba(255,255,255,0.75); }
.form-control:-ms-input-placeholder       { color: rgba(255,255,255,0.75); }

/* reCAPTCHA alignment */
.recaptcha-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.btn-submit {
	background: #fff;
	text-transform: uppercase;
	color: #e53a4e;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	letter-spacing: 0.05em;
	border: none;
	padding: 14px 36px 12px;
	cursor: pointer;
	transition: background 0.35s, color 0.35s;
	width: 100%;
}

.btn-submit:hover {
	background: #212121;
	color: #fff;
}

/* Form mesaj alanı */
.form-message {
	margin-top: 16px;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	min-height: 20px;
}

/* ===========================
   Utility
   =========================== */
.vertical-center {
	display: flex;
	align-items: center;
}

.vertical-center img {
	margin: auto;
}

/* ===========================
   Responsive — Tablet (≤1024px)
   =========================== */
@media only screen and (max-width: 1024px) {
	.comming-soon {
		display: flex;
		flex-direction: column;
		min-height: 100vh;
	}

	.comming-soon-info {
		position: relative;
		width: 100%;
		height: auto;
		padding: 80px 30px;
	}

	.contact-form {
		position: relative;
		width: 100%;
		left: 0;
		height: auto;
		padding: 80px 30px;
	}

	.site-info h1 {
		font-size: 30px;
	}
}

/* ===========================
   Responsive — Mobile (≤768px)
   =========================== */
@media only screen and (max-width: 768px) {
	.col-md-6,
	.col-xs-6 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.timer .timer-wrapper {
		width: 80px;
	}
}

/* ===========================
   Responsive — Small Mobile (≤480px)
   =========================== */
@media only screen and (max-width: 480px) {
	.comming-soon-info {
		padding: 50px 20px;
	}

	.contact-form {
		padding: 50px 20px;
	}

	.comming-soon-inner {
		padding: 0 10px;
	}

	.timer .timer-wrapper {
		width: 68px;
	}

	.timer .timer-wrapper .time {
		font-size: 26px;
	}

	.timer .timer-wrapper .text {
		font-size: 11px;
	}

	.site-info h1 {
		font-size: 20px;
		letter-spacing: 0.08em;
	}

	.title {
		font-size: 22px;
	}

	.site-info p {
		font-size: 14px;
	}

	.contact-box p {
		font-size: 14px;
	}

	.site-info p br {
		display: none;
	}
}