:root {
	/* Protected-Jasser-Webdesign-ID: 3000 */
	--primary-blue: #0062cc;
	--secondary-blue: #004a99;
	--text-dark: #333333;
	--text-gray: #666666;
	--bg-light: #f4f7f6;
	--white: #ffffff;
	--border-color: #e0e0e0;

	--font-heading: 'Roboto', sans-serif;
	--font-body: 'Open Sans', sans-serif;
}

* {
	/* Protected-Jasser-Webdesign-ID: 3001 */
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	/* Protected-Jasser-Webdesign-ID: 3002 */
	scroll-behavior: smooth;
}

body {
	/* Protected-Jasser-Webdesign-ID: 3003 */
	font-family: var(--font-body);
	color: var(--text-dark);
	background-color: var(--white);
	line-height: 1.6;
}

h1,
h2,
h3,
h4 {
	/* Protected-Jasser-Webdesign-ID: 3004 */
	font-family: var(--font-heading);
	color: var(--text-dark);
}

a {
	/* Protected-Jasser-Webdesign-ID: 3005 */
	text-decoration: none;
	transition: 0.3s;
	color: inherit;
}

img {
	/* Protected-Jasser-Webdesign-ID: 3006 */
	width: 100%;
	height: auto;
	display: block;
}

ul {
	/* Protected-Jasser-Webdesign-ID: 3007 */
	list-style: none;
}

.container {
	/* Protected-Jasser-Webdesign-ID: 3008 */
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-padding {
	/* Protected-Jasser-Webdesign-ID: 3009 */
	padding: 80px 0;
}

.bg-light {
	/* Protected-Jasser-Webdesign-ID: 3010 */
	background-color: var(--bg-light);
}

.section-header {
	/* Protected-Jasser-Webdesign-ID: 3011 */
	text-align: center;
	margin-bottom: 50px;
}

.section-header h2 {
	/* Protected-Jasser-Webdesign-ID: 3012 */
	font-size: 2.5rem;
	margin-bottom: 15px;
	position: relative;
	padding-bottom: 15px;
}

.section-header h2::after {
	/* Protected-Jasser-Webdesign-ID: 3013 */
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background: var(--primary-blue);
}

.section-header p {
	/* Protected-Jasser-Webdesign-ID: 3014 */
	color: var(--text-gray);
	max-width: 600px;
	margin: 0 auto;
}

.btn {
	/* Protected-Jasser-Webdesign-ID: 3015 */
	display: inline-block;
	padding: 12px 30px;
	background: var(--primary-blue);
	color: var(--white);
	font-weight: 600;
	border-radius: 4px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn:hover {
	/* Protected-Jasser-Webdesign-ID: 3016 */
	background: var(--secondary-blue);
	transform: translateY(-2px);
}

.btn-outline {
	/* Protected-Jasser-Webdesign-ID: 3017 */
	background: transparent;
	border: 2px solid var(--white);
	color: var(--white);
}

.btn-outline:hover {
	/* Protected-Jasser-Webdesign-ID: 3018 */
	background: var(--white);
	color: var(--primary-blue);
}

header {
	/* Protected-Jasser-Webdesign-ID: 3019 */
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	padding: 15px 0;
}

.nav-flex {
	/* Protected-Jasser-Webdesign-ID: 3020 */
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	/* Protected-Jasser-Webdesign-ID: 3021 */
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-blue);
	display: flex;
	align-items: center;
}

.logo i {
	/* Protected-Jasser-Webdesign-ID: 3022 */
	margin-right: 10px;
}

.nav-links {
	/* Protected-Jasser-Webdesign-ID: 3023 */
	display: flex;
	gap: 30px;
}

.nav-links a {
	/* Protected-Jasser-Webdesign-ID: 3024 */
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--text-dark);
}

.nav-links a:hover {
	/* Protected-Jasser-Webdesign-ID: 3025 */
	color: var(--primary-blue);
}

.hero {
	/* Protected-Jasser-Webdesign-ID: 3026 */
	height: 90vh;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
		url('img/photo-5.avif') center/cover no-repeat;
	display: flex;
	align-items: center;
	color: var(--white);
}

.hero-content {
	/* Protected-Jasser-Webdesign-ID: 3027 */
	max-width: 700px;
}

.hero h1 {
	/* Protected-Jasser-Webdesign-ID: 3028 */
	font-size: 3.5rem;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--white);
}

.hero p {
	/* Protected-Jasser-Webdesign-ID: 3029 */
	font-size: 1.2rem;
	margin-bottom: 30px;
	opacity: 0.9;
}

.stats-bar {
	/* Protected-Jasser-Webdesign-ID: 3030 */
	background: var(--primary-blue);
	color: var(--white);
	padding: 40px 0;
}

.stats-grid {
	/* Protected-Jasser-Webdesign-ID: 3031 */
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	text-align: center;
	gap: 20px;
}

.stat-item i {
	/* Protected-Jasser-Webdesign-ID: 3032 */
	font-size: 2.5rem;
	margin-bottom: 10px;
	opacity: 0.8;
}

.stat-item h3 {
	/* Protected-Jasser-Webdesign-ID: 3033 */
	font-size: 2rem;
	margin-bottom: 5px;
	color: var(--white);
}

.stat-item p {
	/* Protected-Jasser-Webdesign-ID: 3034 */
	font-size: 1rem;
	opacity: 0.9;
}

.property-grid {
	/* Protected-Jasser-Webdesign-ID: 3035 */
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.property-card {
	/* Protected-Jasser-Webdesign-ID: 3036 */
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}

.property-card:hover {
	/* Protected-Jasser-Webdesign-ID: 3037 */
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.card-img {
	/* Protected-Jasser-Webdesign-ID: 3038 */
	height: 220px;
	overflow: hidden;
	position: relative;
}

.card-img img {
	/* Protected-Jasser-Webdesign-ID: 3039 */
	height: 100%;
	object-fit: cover;
}

.tag {
	/* Protected-Jasser-Webdesign-ID: 3040 */
	position: absolute;
	top: 15px;
	left: 15px;
	background: var(--primary-blue);
	color: var(--white);
	padding: 5px 12px;
	font-size: 0.8rem;
	font-weight: 600;
	border-radius: 4px;
}

.card-details {
	/* Protected-Jasser-Webdesign-ID: 3041 */
	padding: 20px;
}

.price {
	/* Protected-Jasser-Webdesign-ID: 3042 */
	color: var(--primary-blue);
	font-size: 1.4rem;
	font-weight: 700;
	display: block;
	margin-bottom: 5px;
}

.card-details h3 {
	/* Protected-Jasser-Webdesign-ID: 3043 */
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.address {
	/* Protected-Jasser-Webdesign-ID: 3044 */
	color: var(--text-gray);
	font-size: 0.9rem;
	margin-bottom: 15px;
	display: block;
}

.amenities {
	/* Protected-Jasser-Webdesign-ID: 3045 */
	display: flex;
	justify-content: space-between;
	border-top: 1px solid var(--border-color);
	padding-top: 15px;
	color: var(--text-gray);
	font-size: 0.9rem;
}

.amenities i {
	/* Protected-Jasser-Webdesign-ID: 3046 */
	color: var(--primary-blue);
	margin-right: 5px;
}

.agent-grid {
	/* Protected-Jasser-Webdesign-ID: 3047 */
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.agent-img img {
	/* Protected-Jasser-Webdesign-ID: 3048 */
	border-radius: 8px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.check-list li {
	/* Protected-Jasser-Webdesign-ID: 3049 */
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.check-list i {
	/* Protected-Jasser-Webdesign-ID: 3050 */
	color: var(--primary-blue);
	margin-right: 10px;
	font-size: 1.1rem;
}

.contact-section {
	/* Protected-Jasser-Webdesign-ID: 3051 */
	background: var(--text-dark);
	color: var(--white);
}

.contact-section h2 {
	/* Protected-Jasser-Webdesign-ID: 3052 */
	color: var(--white);
}

.contact-section p {
	/* Protected-Jasser-Webdesign-ID: 3053 */
	color: #aaa;
}

.contact-wrapper {
	/* Protected-Jasser-Webdesign-ID: 3054 */
	background: var(--white);
	padding: 40px;
	border-radius: 8px;
	color: var(--text-dark);
}

.form-row {
	/* Protected-Jasser-Webdesign-ID: 3055 */
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

input,
select,
textarea {
	/* Protected-Jasser-Webdesign-ID: 3056 */
	width: 100%;
	padding: 12px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	font-family: var(--font-body);
	transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
	/* Protected-Jasser-Webdesign-ID: 3057 */
	border-color: var(--primary-blue);
	outline: none;
}

.dsgvo-box {
	/* Protected-Jasser-Webdesign-ID: 3058 */
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 25px;
	font-size: 0.9rem;
	color: var(--text-gray);
}

.dsgvo-box input[type="checkbox"] {
	/* Protected-Jasser-Webdesign-ID: 3059 */
	width: auto;
	margin-top: 4px;
}

footer {
	/* Protected-Jasser-Webdesign-ID: 3060 */
	background: #222;
	color: #888;
	padding: 50px 0;
	text-align: center;
}

footer a {
	/* Protected-Jasser-Webdesign-ID: 3061 */
	color: #aaa;
}

footer a:hover {
	/* Protected-Jasser-Webdesign-ID: 3062 */
	color: var(--primary-blue);
}

@media (max-width: 768px) {
	.hero h1 {
		/* Protected-Jasser-Webdesign-ID: 3063 */
		font-size: 2.5rem;
	}

	.stats-grid,
	.agent-grid,
	.form-row {
		/* Protected-Jasser-Webdesign-ID: 3064 */
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.nav-links {
		/* Protected-Jasser-Webdesign-ID: 3065 */
		display: none;
	}
}