/***** RESET *****/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

html,
body {
	height: 100%;
	width: 100%;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

/* STICKY FOOTER SETUP */
body {
	line-height: 1;
	font-family: 'Roboto', Tahoma, Arial, sans-serif;
	background-color: #f9f9f9;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

ol,
ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* HEADER / MENU */
.menu {
	width: 100%;
	min-height: 80px;
	background: #231F20;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Brand Styles */
.logo1 {
	flex-shrink: 0;
}

.brand-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 0;
}

.brand-link img {
	height: 50px;
	width: auto;
}

.brand-text {
	color: #FECA0A;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.logo2 {
	display: none;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 10px;
}

.menu-toggle div {
	width: 25px;
	height: 3px;
	background-color: #FECA0A;
	margin: 4px 0;
	transition: 0.4s;
}

.menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.menu ul li {
	list-style: none;
}

.menu ul li a {
	display: block;
	padding: 30px 25px;
	text-decoration: none;
	color: #FECA0A;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 16px;
	white-space: nowrap;
	transition: all 0.3s ease;
	position: relative;
}

.menu ul li a:hover {
	color: #fff;
}

.menu ul li a::after {
	content: '';
	position: absolute;
	bottom: 20px;
	left: 50%;
	width: 0;
	height: 2px;
	background: #fff;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.menu ul li a:hover::after {
	width: 70%;
}

/* CONTENT - SERVICES PAGE */
.services-wrapper {
	width: 90%;
	max-width: 1200px;
	margin: 140px auto 40px;
	flex: 1;
	/* Pushes Footer Down */
}

.page-title {
	text-align: center;
	margin-bottom: 50px;
}

.page-title h1 {
	color: #231F20;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
	border-bottom: 4px solid #FECA0A;
	display: inline-block;
	padding-bottom: 10px;
}

.page-title p {
	color: #666;
	font-size: 18px;
	margin-top: 10px;
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #eee;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
	transform: scale(1.1);
}

.card-content {
	padding: 25px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.card-content h3 {
	color: #FECA0A;
	/* Yellow accent */
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.card-content p {
	color: #444;
	font-size: 15px;
	line-height: 1.6;
}


/* BOTTOM / FOOTER */
.bottom {
	width: 100%;
	background: #231F20;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: white;
	margin-top: auto;
	/* Sticky Footer Key */
	flex-shrink: 0;
}

.botlogo {
	margin-bottom: 20px;
}

.yazı1 {
	text-align: center;
	color: #FECA0A;
	font: bold 20px tahoma;
	margin-bottom: 20px;
}

.sosyal {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	gap: 15px;
}

.lisans {
	text-align: center;
	color: grey;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 12px;
	line-height: 1.6;
	padding: 0 15px;
}

.whatsapp-float {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 101;
}

/* MEDIA QUERIES */
@media screen and (max-width: 960px) {
	.menu {
		background: #FECA0A;
		padding: 0;
		min-height: 60px;
		align-items: flex-start;
		align-content: flex-start;
	}

	.logo1 {
		display: none;
	}

	.logo2 {
		display: block;
		position: absolute;
		top: 30px;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 102;
	}

	.logo2 a {
		display: inline-block;
	}

	.menu-toggle {
		display: flex;
		position: absolute;
		top: 30px;
		right: 15px;
		transform: translateY(-50%);
		z-index: 102;
		margin: 0;
	}

	.menu-toggle div {
		background-color: #231F20;
	}

	/* MODERN MOBILE MENU START */
	.menu ul {
		width: 100%;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		/* Gradient Horizontal: Left (Black) to Right (Yellow) */
		background: linear-gradient(90deg, #231F20 0%, #FECA0A 100%);
		max-height: 0;
		overflow: hidden;
		margin-top: 60px;
		transition: max-height 1.0s ease-in-out;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	}

	.menu ul.active {
		max-height: 500px;
	}

	.menu ul li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.menu ul li a {
		display: block;
		padding: 15px 25px;
		/* Sleeker padding */
		font-size: 15px;
		/* Smaller font for professional look */
		letter-spacing: 1px;
		/* Modern spacing */
		text-transform: uppercase;
		/* Professional uppercase */
		color: #fff;
		/* White text on Black background */
		font-weight: 500;
		text-align: left;
		transition: all 0.3s ease;
		border-left: 3px solid transparent;
	}

	.menu ul li a:hover {
		background: rgba(255, 255, 255, 0.05);
		padding-left: 35px;
		/* Slide effect */
		border-left: 3px solid #FECA0A;
		/* Gold marker */
		color: #FECA0A;
	}

	.menu ul li a::after {
		display: none;
	}

	/* MODERN MOBILE MENU END */

	.services-wrapper {
		margin-top: 100px;
	}
}

@media screen and (max-width: 480px) {
	.whatsapp-float {
		bottom: 10px;
		left: 10px;
	}

	.whatsapp-float img {
		width: 40px;
		height: 40px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}
}