.breadcrumbs-custom {
	position: relative;
	overflow: hidden;
	padding: 40px 0;
	text-align: center;
	background-color: transparent;
	z-index: 1;
}

/* Breadcrumb içeriği (başlık + path) overlay'in üstünde olsun */
.breadcrumbs-custom .container {
	position: relative;
	z-index: 2;
}

/* Sayfa başlığı (HAKKIMIZDA gibi) */
.breadcrumbs-custom-title {
	color: #ffffff;
	font-size: 38px;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0 0 8px;
	text-transform: uppercase;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
	line-height: 1.1;
	font-family: "Teko", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@media (min-width: 768px) { .breadcrumbs-custom-title { font-size: 56px; } }
@media (min-width: 1200px) { .breadcrumbs-custom-title { font-size: 72px; } }

/* Arka plan fotoğrafı (inline style ile background-image set ediliyor) */
.box-position {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100% !important;
	height: 100% !important;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

/* Karanlık overlay — fotoğraf üzerine, metin okunabilirliği için */
.bg-overlay-60::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(13, 10, 10, 0.6);
	z-index: 1;
	pointer-events: none;
}

.breadcrumbs-custom-path {
	margin-left: -15px;
	margin-right: -15px;
	font-size: 18px;
	line-height: 1.33;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-family: "Teko", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.breadcrumbs-custom-path > * {
	padding-left: 15px;
	padding-right: 15px;
}

.breadcrumbs-custom-path a {
	display: inline;
	vertical-align: middle;
}

.breadcrumbs-custom-path a, .breadcrumbs-custom-path a:active, .breadcrumbs-custom-path a:focus {
	color: #d2d945;
}

.breadcrumbs-custom-path li {
	position: relative;
	display: inline-block;
	vertical-align: middle;
}

.breadcrumbs-custom-path li::after {
	content: "/";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: -8px;
	color: rgba(255, 255, 255, 0.53);
	transform: translate3d(0, -50%, 0);
}

.breadcrumbs-custom-path li:last-child:after {
	display: none;
}

.breadcrumbs-custom-path a:hover {
	color: #ffffff;
}

.breadcrumbs-custom-path li.active {
	color: rgba(255, 255, 255, 0.53);
}

* + .breadcrumbs-custom-path {
	margin-top: 14px;
}

@media (min-width: 576px) {
	* + .breadcrumbs-custom-path {
		margin-top: 18px;
	}
}

@media (min-width: 1200px) {
	.breadcrumbs-custom {
		padding: 150px 0;
	}
}

@media (min-width: 1600px) {
	.breadcrumbs-custom-inset {
		max-width: 1920px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 75px;
		padding-right: 75px;
	}
}

/* ====================================================================
   1) GENEL CONTACT SECTION
   ==================================================================== */

.contact-section {
    background: #ffffff;
    padding: 70px 0 90px;
}

@media (min-width: 992px) {
    .contact-section {
        padding: 100px 0 110px;
    }
}


/* ====================================================================
   2) SOL KOLON — İletişim Bilgileri
   ==================================================================== */

.contact-intro__eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #d2d945;
    margin-bottom: 12px;
    position: relative;
    padding-left: 36px;
}

/* Eyebrow'un soluna kısa bir çizgi (marka aksanı) */
.contact-intro__eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 26px;
    height: 2px;
    background: #d2d945;
    transform: translateY(-50%);
}

.contact-intro__title {
    font-size: 30px;
    font-weight: 800;
    color: #153750;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .contact-intro__title { font-size: 38px; }
}

.contact-intro__text {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.55);
    margin: 0 0 32px;
    max-width: 460px;
}

/* ---- İletişim kartları listesi ---- */
.contact-cards {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: #f7f8fa;
    border: 1.5px solid transparent;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease,
                border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Soldan kayan vurgu çubuğu (default ince, hover'da geniş) */
.contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #d2d945;
    transition: width 0.3s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(21, 55, 80, 0.12);
    border-color: rgba(210, 217, 69, 0.4);
    text-decoration: none;
    background: #ffffff;
}

.contact-card:hover::before,
.contact-card:focus-visible::before {
    width: 6px;
}

/* İkon kutusu */
.contact-card__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #153750 0%, #0d2a3e 100%);
    color: #d2d945;
    border-radius: 12px;
    font-size: 24px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card__icon {
    transform: scale(1.08) rotate(-5deg);
}

/* WhatsApp özel renk */
.contact-card--whatsapp .contact-card__icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
}

/* Mail özel renk */
.contact-card--mail .contact-card__icon {
    background: linear-gradient(135deg, #00799e 0%, #00c3ff 100%);
    color: #ffffff;
}

/* Adres özel renk */
.contact-card--address .contact-card__icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
}

/* İçerik */
.contact-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.contact-card__label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(0, 0, 0, 0.4);
}

.contact-card__value {
    font-size: 15px;
    font-weight: 600;
    color: #153750;
    text-decoration: none;
    line-height: 1.45;
    word-break: break-word;
    transition: color 0.25s ease;
}

a.contact-card__value:hover {
    color: #d2d945;
}

.contact-card__value--address {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(21, 55, 80, 0.78);
    line-height: 1.6;
}

/* ---- Çalışma Saatleri Banner ---- */
.contact-hours {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #153750 0%, #0d2a3e 100%);
    border-radius: 14px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Sağ üst dekoratif daire (marka aksanı) */
.contact-hours::after {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(210, 217, 69, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hours__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 217, 69, 0.15);
    color: #d2d945;
    border-radius: 10px;
    font-size: 22px;
    line-height: 1;
}

.contact-hours__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-hours__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.contact-hours__value {
    font-size: 16px;
    font-weight: 700;
    color: #d2d945;
    letter-spacing: 0.02em;
}


/* ====================================================================
   3) SAĞ KOLON — Form
   ==================================================================== */

.contact-form-wrap {
    background: #ffffff;
    border: 1.5px solid rgba(21, 55, 80, 0.08);
    border-radius: 18px;
    padding: 38px 38px;
    box-shadow: 0 14px 56px rgba(21, 55, 80, 0.07);
    position: relative;
}

/* Sol üst köşede marka aksanı şeridi */
.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: -1.5px;
    left: 28px;
    width: 60px;
    height: 4px;
    background: #d2d945;
    border-radius: 0 0 4px 4px;
}

@media (max-width: 767px) {
    .contact-form-wrap {
        padding: 28px 22px;
        border-radius: 14px;
    }
}

.contact-form-wrap__eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #d2d945;
    margin-bottom: 10px;
}

.contact-form-wrap__title {
    font-size: 26px;
    font-weight: 800;
    color: #153750;
    line-height: 1.2;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.contact-form-wrap__text {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.65;
    margin: 0 0 28px;
}

/* Form grubu */
.contact-form__group {
    margin-bottom: 18px;
}

.contact-form__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #153750;
    margin-bottom: 8px;
}

.contact-form__label .required {
    color: #e74c3c;
    margin-left: 3px;
}

/* Input & Textarea */
.contact-form__input,
.contact-form__textarea {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #153750;
    background: #f7f8fa;
    border: 1.5px solid transparent;
    border-radius: 10px;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: rgba(0, 0, 0, 0.32);
    font-weight: 400;
}

.contact-form__input:hover,
.contact-form__textarea:hover {
    background: #f0f2f5;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    background: #ffffff;
    border-color: #d2d945;
    box-shadow: 0 0 0 4px rgba(210, 217, 69, 0.14);
    outline: none;
}

.contact-form__input.is-invalid,
.contact-form__textarea.is-invalid {
    border-color: #e74c3c;
    background: #fff9f9;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.08);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.65;
}

/* Hata mesajı */
.contact-form__error {
    font-size: 12px;
    color: #e74c3c;
    margin: 6px 0 0;
    font-weight: 500;
    min-height: 16px;
    line-height: 1.4;
}

/* Submit butonu - ana site button-jerry uyumlu */
.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    margin-top: 8px;
    cursor: pointer;
    border: none;
}

.contact-form__submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}

/* Loading spinner (inline buton içi) */
.contact-form__submit-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: cf-spin 0.7s linear infinite;
    flex-shrink: 0;
}

.contact-form__submit.is-loading .contact-form__submit-spinner {
    display: inline-block;
}

@keyframes cf-spin {
    to { transform: rotate(360deg); }
}

/* Honeypot — gizle */
.contact-form__honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}


/* ====================================================================
   4) ALERT KUTUSU
   ==================================================================== */

.contact-alert {
    display: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.55;
    animation: cf-fade-in 0.35s ease;
}

@keyframes cf-fade-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.contact-alert--success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1.5px solid #22c55e;
    color: #15803d;
    display: flex;
}

.contact-alert--error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1.5px solid #e74c3c;
    color: #c0392b;
    display: flex;
}

.contact-alert .mdi {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 1px;
    line-height: 1.4;
}


/* ====================================================================
   5) GOOGLE HARİTALAR
   ==================================================================== */

.contact-map-section {
    width: 100%;
    line-height: 0;
    font-size: 0;
    display: block;
    position: relative;
    background: #f7f8fa;
}

/* Üst kenarda hafif marka aksanı çizgisi */
.contact-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #d2d945 30%, #d2d945 70%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.contact-map-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact-map-iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
}

@media (min-width: 992px) {
    .contact-map-iframe {
        height: 560px;
    }
}


/* ============ Mobile fix: navbar fixed olduğu için breadcrumb 'a tampon ============ */
@media (max-width: 991px) {
    .breadcrumbs-custom {
        padding-top: 110px;
    }
}
