.iletisim {
	position: relative;
	display: block;
	padding: 100px 0px;
}

.form-wrapper {
	position: relative;
	display: block;
	padding: 0px;
	margin: 0px;
	width: 100%;
}

.form-wrapper i {
	position: absolute;
	z-index: 2;
	left: 2px;
	top: 20px;
	width: 40px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border-left: 1px solid #DBDBDB;
	color: #222222;
	transform: scale(-1, 1);
}

.form h5 {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #02182a !important;
    margin-bottom: 30px !important;
    position: relative;
    display: inline-block;
}

.form h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 45px;
    height: 4px;
    background: #0f69b5;
    border-radius: 2px;
}

.iletisim input,
.iletisim textarea {
	width: 100%;
	line-height: 30px;
	padding: 15px 20px 15px 50px;
	display: block;
	margin-bottom: 25px;
	border: 1px solid #e2e8f0;
	border-radius: 5px;
	font-weight: 500;
	position: relative;
	font-size: 0.9rem;
    transition: all 0.3s ease;
}

.iletisim input:hover,
.iletisim textarea:hover {
    border-color: #cbd5e1;
}

.iletisim input:focus,
.iletisim textarea:focus {
    border-color: #0f69b5;
    box-shadow: 0 0 0 4px rgba(15, 105, 181, 0.1);
    outline: none;
    background: #fff;
}

.iletisim .islem {
	width: 120px !important;
	line-height: 60px !important;
	border: 0px !important;
	margin: 0px !important;
	display: inline-block !important;
	margin-right: 25px !important;
	text-align: center !important;
	background: #f1f2f3 !important;
	border-radius: 5px !important;
	font-weight: 900 !important;
	letter-spacing: -2px !important;
}

.iletisim .sonuc {
	width: calc(100% - 150px) !important;
	display: inline-block !important;
	margin: 0px !important;
	box-shadow: 0px 0px 0px 0px !important;
	padding: 15px 20px !important;
}

.iletisim .buton {
	background: #222222;
	padding: 0px;
	margin: 0px;
	line-height: 62px;
	border: 0px;
	color: #FFF;
	font-weight: 900;
	letter-spacing: 1px;
}

.harita {
    width: 100%;
    height: 100%;
    min-height: 550px;
    margin: 0;
    filter: grayscale(1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: visible;
}

.harita:hover {
    filter: grayscale(0);
}

/* Modern Marker Stilleri */
.custom-marker-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0) !important; /* Harita griyken marker renkli kalsın */
}

.modern-marker {
    width: 60px;
    height: 60px;
    background: #0f69b5;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(15, 105, 181, 0.4);
    border: 3px solid #fff;
    position: relative;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transform: rotate(45deg);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.sube {
    padding: 0;
    margin-bottom: 40px;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
}

.sube:hover {
    transform: none;
    box-shadow: none;
}

.sube h2 {
    font-size: 24px !important;
    font-weight: 900 !important;
    color: #02182a !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.5px;
    display: block;
}

.sube p {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 18px !important;
    padding: 0 !important;
    font-size: 16px !important;
    color: #4a5568 !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
    transition: all 0.3s ease;
}

.sube p i {
    width: 32px !important;
    height: 32px !important;
    background: transparent !important;
    color: #0f69b5 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease;
    border-right: 1px solid #eee;
    padding-right: 15px !important;
    margin-right: 5px;
}

.sube p:hover {
    color: #0f69b5 !important;
    transform: translateX(5px);
}

.sube p:hover i {
    color: #02182a !important;
}

.iletisim .iletisimformu h3 {
	font-size: 36px;
	line-height: 1;
	margin-bottom: 10px;
	font-weight: 900;
	color: #343434;
}

.iletisim .iletisimformu p {
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 20px;
	display: block;
}

/* Premium Toast Notification Stilleri */
@keyframes toastSlideIn {
	from {
		opacity: 0;
		transform: translateX(400px) scale(0.9);
	}

	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes toastSlideOut {
	from {
		opacity: 1;
		transform: translateX(0) scale(1);
	}

	to {
		opacity: 0;
		transform: translateX(400px) scale(0.9);
	}
}

@keyframes progressBar {
	from {
		width: 100%;
	}

	to {
		width: 0%;
	}
}

.premium-toast {
	position: fixed;
	top: 24px;
	right: 24px;
	color: white;
	padding: 18px 24px;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 15px;
	font-weight: 500;
	z-index: 99999;
	min-width: 320px;
	max-width: 420px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	animation: toastSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: transform 0.2s ease;
	overflow: hidden;
}

.premium-toast:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.premium-toast.hiding {
	animation: toastSlideOut 0.3s ease-in forwards;
}

.toast-icon {
	font-size: 24px;
	font-weight: bold;
	background: rgba(255, 255, 255, 0.25);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.toast-content {
	flex: 1;
	line-height: 1.4;
}

.toast-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	background: rgba(255, 255, 255, 0.4);
	animation: progressBar 4s linear;
}
.iletisim .row {
	display: flex;
    align-items: stretch;
}

.iletisim .col-md-6 {
    /* Bootstrap varsayılan boşluklarını geri getirdik */
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.corporate-intro {
    margin-bottom: 60px;
    padding-left: 30px;
    border-left: 5px solid #0f69b5;
    position: relative;
}

.intro-tag {
    display: block;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f69b5;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.corporate-intro h3 {
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #02182a !important;
    margin-bottom: 20px !important;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.corporate-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 95%;
    font-weight: 400;
}
