body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
main {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
}
.site-footer {
	flex-shrink: 0;
}
/* ---- ANTALYA HERO ---- */
.hero-antalya {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	flex-wrap: wrap;
}
.hero-antalya .hero-content {
	flex: 1 1 340px;
	min-width: 320px;
	z-index: 1;
}
.hero-antalya .hero-image {
	flex: 1 1 320px;
	min-width: 260px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-antalya .hero-image img {
	max-width: 370px;
	width: 100%;
	border-radius: 18px;
	box-shadow: 0 8px 32px rgba(16,24,40,0.13);
	object-fit: cover;
	aspect-ratio: 4/3;
}
.hero-antalya .hero-buttons {
	margin-top: 32px;
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}
.hero-antalya .btn-primary,
.hero-antalya .btn-secondary {
	font-size: 1rem;
	padding: 14px 28px;
}
.hero-antalya .btn-primary i,
.hero-antalya .btn-secondary i {
	font-size: 1.1em;
}
.hero-trust-list {
	margin-top: 36px;
	display: flex;
	flex-wrap: wrap;
	gap: 18px 32px;
	padding: 0;
	list-style: none;
}
.hero-trust-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1rem;
	color: #334155;
	background: #f1f5f9;
	border-radius: 16px;
	padding: 7px 18px;
	font-weight: 500;
}
.hero-trust-list i {
	color: #1d4ed8;
	font-size: 1.1em;
}
.hero-desc {
	font-size: 1.08rem;
	color: #475569;
	margin-top: 10px;
	margin-bottom: 0;
}
@media (max-width: 900px) {
	.hero-antalya {
		flex-direction: column;
		gap: 32px;
		align-items: stretch;
	}
	.hero-antalya .hero-image {
		justify-content: flex-start;
	}
}
@media (max-width: 600px) {
	.hero-antalya .hero-content {
		min-width: 0;
	}
	.hero-antalya .hero-image img {
		max-width: 100%;
		border-radius: 12px;
	}
	.hero-trust-list {
		flex-direction: column;
		gap: 10px;
		margin-top: 24px;
	}
	.hero-antalya .hero-buttons {
		flex-direction: column;
		gap: 10px;
		margin-top: 22px;
	}
}
/* ==============================
   LAYOUT
   ============================== */

.container {
	width: min(92%, 1100px);
	margin-inline: auto;
}

main {
	min-height: 60vh;
}

section {
	padding: 56px 0;
}

/* ---- HEADER ---- */

 .site-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: linear-gradient(90deg, #e0e7ff 0%, #f0fdf4 100%);
	border-bottom: 1px solid #e2e8f0;
	box-shadow: 0 2px 16px rgba(15,23,42,.07);
	backdrop-filter: blur(8px);
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 0;
}

.logo img {
	height: 44px;
	width: auto;
	object-fit: contain;
}

.main-nav ul {
	display: flex;
	gap: 4px;
	align-items: center;
}

.main-nav a {
	padding: 7px 14px;
	border-radius: 8px;
	font-size: .9rem;
	font-weight: 500;
	color: #334155;
	transition: background .18s, color .18s;
	letter-spacing: .01em;
}

.main-nav a:hover {
	background: #f1f5f9;
	color: #1d4ed8;
}

.main-nav a.active {
	background: #eff6ff;
	color: #1d4ed8;
	font-weight: 600;
}

/* ---- HERO ---- */

.hero {
	   padding: 120px 0 64px 0;
	background:
		linear-gradient(135deg, #eff6ff 0%, #ffffff 55%, #f0fdf4 100%);
	border-bottom: 1px solid #e2e8f0;
	position: relative;
	overflow: hidden;
}

/* dekoratif arka plan dairesi */
.hero::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -120px;
	width: 560px;
	height: 560px;
	background: radial-gradient(circle, rgba(29,78,216,.07) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -80px;
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, rgba(16,185,129,.06) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.hero-content {
	max-width: 700px;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: clamp(2.1rem, 4.5vw, 3rem);
	margin-bottom: 20px;
	letter-spacing: -.025em;
	line-height: 1.2;
}

.hero p {
	font-size: 1.1rem;
	color: #64748b;
	margin-bottom: 0;
	max-width: 560px;
}

.hero-logo-bg,
.page-bg-logo,
.page-hero {
	display: none;
}

/* ---- SECTION HEADINGS ---- */

.section-header {
	margin-bottom: 48px;
}

.section-header .section-tag {
	display: inline-block;
	padding: 4px 12px;
	background: #eff6ff;
	color: #1d4ed8;
	border-radius: 20px;
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 10px;
}

.services h2,
.gallery-preview h2,
.gallery-page h1,
.services-page h1,
.contact-section h1,
.map-section h2 {
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	margin-bottom: 44px;
	padding-bottom: 16px;
	position: relative;
}

.services h2::after,
.gallery-preview h2::after,
.gallery-page h1::after,
.services-page h1::after,
.contact-section h1::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 48px;
	height: 3px;
	background: linear-gradient(90deg, #1d4ed8, #60a5fa);
	border-radius: 2px;
}

/* ---- SECTIONS ALTERNATING ---- */

.services {
	background: #ffffff;
}

.gallery-preview {
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
}

.services-page,
.gallery-page,
.contact-section,
.map-section {
	background: #ffffff;
}

.map-section {
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
}

/* ---- GRIDS ---- */

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 24px;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 48px;
	align-items: start;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 36px;
}

/* ---- CTA ---- */

.cta {
	background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
	padding: 72px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 300px;
	height: 300px;
	background: rgba(255,255,255,.05);
	border-radius: 50%;
}

.cta::after {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -40px;
	width: 240px;
	height: 240px;
	background: rgba(255,255,255,.04);
	border-radius: 50%;
}

.cta .container {
	position: relative;
	z-index: 1;
}

.cta h2 {
	color: #ffffff;
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	margin-bottom: 12px;
}

.cta p {
	color: #bfdbfe;
	margin-bottom: 32px;
	font-size: 1.05rem;
}

/* ---- FOOTER ---- */

 .site-footer {
	background: linear-gradient(120deg, #0f172a 0%, #2563eb 60%, #059669 100%);
	padding: 64px 0 0;
	margin-top: 0;
	position: relative;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #1d4ed8, #60a5fa, #34d399);
}

.footer-about h3,
.footer-links h4,
.footer-contact h4 {
	color: #f1f5f9;
	margin-bottom: 18px;
	font-size: .85rem;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.footer-about p {
	color: #94a3b8;
	font-size: .9rem;
	line-height: 1.75;
	max-width: 280px;
}

.footer-contact p {
	color: #94a3b8;
	font-size: .9rem;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.footer-contact i {
	color: #60a5fa;
	width: 16px;
	text-align: center;
}

.footer-links ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links a {
	color: #94a3b8;
	font-size: .9rem;
	transition: color .18s;
	display: flex;
	align-items: center;
	gap: 6px;
}

.footer-links a::before {
	content: '›';
	color: #3b82f6;
	font-size: 1rem;
	line-height: 1;
}

.footer-links a:hover {
	color: #60a5fa;
}

.footer-bottom {
	border-top: 1px solid #1e293b;
	padding: 20px 0;
	margin-top: 48px;
	text-align: center;
}

.footer-bottom p {
	color: #475569;
	font-size: .85rem;
}