/* =========================================================================
   Türkiye Fuar Catering — İç Sayfa Tasarım Sistemi (inner.css)
   brand.css'ten SONRA yüklenir. Premium, marka-uyumlu iç sayfa bileşenleri.
   Palet: bordo #5C060B · altın #C19A6B · mürekkep #1a1512 · krem #F7F3EE
   ========================================================================= */

:root {
	--tfc-bordo: #5C060B;
	--tfc-bordo-deep: #3d0407;
	--tfc-gold: #C19A6B;
	--tfc-ink: #1a1512;
	--tfc-cream: #F7F3EE;
	--tfc-cream-2: #efe7dc;
	--tfc-line: rgba(92, 6, 11, .12);
	--tfc-muted: #6f665e;
}

/* ---- Buton hover düzeltmesi (GLOBAL) ----
   Caterix .btn-default'ta ::after "sweep" dolgusu hover'da metnin ÜSTÜnü örtüp
   yazıyı gizliyordu. Sweep'i kapatıp basit + okunur bir hover uyguluyoruz.
   (Ok ::before olduğu için etkilenmez, görünür kalır.) */
.btn-default::after { display: none !important; }
.btn-default { transition: background .35s ease, color .35s ease; }
.btn-default:hover,
.btn-default.btn-highlighted:hover {
	background: var(--tfc-gold) !important;
	color: #1a1512 !important;
	-webkit-text-fill-color: #1a1512 !important;
}

/* ---- Ortak iç sayfa gövdesi ---- */
.tfc-inner { background: var(--tfc-cream); padding: 110px 0 120px; }
.tfc-inner .container { max-width: 1200px; }
.tfc-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: 'Source Sans 3', sans-serif; font-size: 13px; font-weight: 700;
	letter-spacing: .18em; text-transform: uppercase; color: var(--tfc-bordo);
	margin-bottom: 16px;
}
.tfc-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--tfc-gold); }
.tfc-h2 {
	font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
	font-size: clamp(28px, 3.4vw, 44px); line-height: 1.08; color: var(--tfc-ink);
	letter-spacing: -.01em; margin: 0 0 18px;
}
.tfc-lead { font-size: 17px; line-height: 1.7; color: var(--tfc-muted); max-width: 620px; }

/* ---- Breadcrumb (temiz, bordo ayraçlı) ---- */
.page-header .breadcrumb { display: flex; flex-wrap: wrap; gap: 0; align-items: center; margin: 0; padding: 0; list-style: none; }
.page-header .breadcrumb-item { display: inline-flex; align-items: center; font-size: 15px; color: rgba(255,255,255,.85); }
.page-header .breadcrumb-item + .breadcrumb-item::before {
	content: '/'; padding: 0 12px; color: var(--tfc-gold); opacity: .9; font-weight: 400;
}
.page-header .breadcrumb-item a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .25s; }
.page-header .breadcrumb-item a:hover { color: var(--tfc-gold); }
.page-header .breadcrumb-item.active { color: #fff; font-weight: 600; }

/* =========================================================================
   İLETİŞİM — bilgi kartları + form
   ========================================================================= */
.tfc-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.tfc-contact-card {
	position: relative; background: #fff; border: 1px solid var(--tfc-line);
	border-radius: 16px; padding: 26px 24px; overflow: hidden;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.tfc-contact-card::after {
	content: ''; position: absolute; left: 24px; right: 24px; bottom: 0; height: 2px;
	background: var(--tfc-gold); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.tfc-contact-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(92,6,11,.10); border-color: transparent; }
.tfc-contact-card:hover::after { transform: scaleX(1); }
.tfc-contact-card .ic {
	width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
	background: rgba(92,6,11,.06); color: var(--tfc-bordo); font-size: 20px;
	border: 1px solid rgba(193,154,107,.4); margin-bottom: 16px; transition: all .3s ease;
}
.tfc-contact-card:hover .ic { background: var(--tfc-bordo); color: #fff; border-color: var(--tfc-bordo); }
.tfc-contact-card .lbl {
	display: block; font-family: 'Source Sans 3', sans-serif; font-size: 12px; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase; color: var(--tfc-muted); margin-bottom: 6px;
}
.tfc-contact-card .val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 600; color: var(--tfc-ink); line-height: 1.4; margin: 0; word-break: break-word; overflow-wrap: anywhere; }
.tfc-contact-card .val a { color: inherit; text-decoration: none; transition: color .2s; }
.tfc-contact-card .val a:hover { color: var(--tfc-bordo); }
.tfc-contact-card.wide { grid-column: 1 / -1; }

.tfc-social { display: flex; gap: 12px; margin-top: 26px; }
.tfc-social a {
	width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
	background: #fff; border: 1px solid var(--tfc-line); color: var(--tfc-bordo); font-size: 16px;
	transition: all .3s ease;
}
.tfc-social a:hover { background: var(--tfc-bordo); color: #fff; transform: translateY(-3px); border-color: var(--tfc-bordo); }

/* ---- Form kartı (CF7) ---- */
.tfc-form-card {
	background: #fff; border-radius: 20px; padding: 40px 38px;
	box-shadow: 0 30px 70px rgba(26,21,18,.08); border: 1px solid var(--tfc-line);
}
.tfc-form-card .wpcf7 label { display: block; font-family: 'Source Sans 3', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--tfc-ink); margin-bottom: 8px; }
.tfc-form-card .form-group { margin-bottom: 20px; }
.tfc-form-card .form-control,
.tfc-form-card .wpcf7 input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.tfc-form-card .wpcf7 textarea,
.tfc-form-card .wpcf7 select {
	width: 100%; background: var(--tfc-cream); border: 1.5px solid transparent; border-radius: 12px;
	padding: 14px 16px; font-size: 15px; color: var(--tfc-ink); font-family: 'Source Sans 3', sans-serif;
	transition: border-color .25s, background .25s, box-shadow .25s;
}
.tfc-form-card .form-control:focus,
.tfc-form-card .wpcf7 input:focus, .tfc-form-card .wpcf7 textarea:focus, .tfc-form-card .wpcf7 select:focus {
	outline: none; background: #fff; border-color: var(--tfc-bordo); box-shadow: 0 0 0 4px rgba(92,6,11,.08);
}
.tfc-form-card .wpcf7 textarea { min-height: 130px; resize: vertical; }
.tfc-form-card input.wpcf7-submit,
.tfc-form-card input[type="submit"],
.tfc-form-card .wpcf7-submit,
.tfc-form-card .btn-default {
	background: var(--tfc-bordo) !important; color: #fff !important; -webkit-text-fill-color: #fff !important;
	border: 0 !important; border-radius: 40px !important; padding: 15px 42px !important;
	font-family: 'Bricolage Grotesque', sans-serif !important; font-weight: 600 !important; font-size: 16px !important;
	line-height: 1.2 !important; letter-spacing: .01em; cursor: pointer; opacity: 1 !important;
	box-shadow: none; transition: background .3s, transform .2s, box-shadow .3s; -webkit-appearance: none; appearance: none;
}
.tfc-form-card input.wpcf7-submit:hover,
.tfc-form-card input.wpcf7-submit:focus,
.tfc-form-card input.wpcf7-submit:active,
.tfc-form-card .btn-default:hover {
	background: var(--tfc-bordo-deep) !important; color: #fff !important; -webkit-text-fill-color: #fff !important;
	transform: translateY(-2px); box-shadow: 0 14px 30px rgba(92,6,11,.28);
}
.tfc-form-card .wpcf7-spinner { margin: 14px auto 0; display: block; }
.tfc-form-card .wpcf7-response-output { border-radius: 10px !important; margin: 18px 0 0 !important; padding: 12px 16px !important; font-size: 14px; }

/* ---- Konum kartı ---- */
.tfc-loc {
	display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
	margin-top: 30px; padding: 26px 32px; border-radius: 20px;
	background: linear-gradient(150deg, var(--tfc-bordo), var(--tfc-bordo-deep)); color: #fff;
	box-shadow: 0 24px 54px rgba(92,6,11,.22);
}
.tfc-loc-pin { width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; font-size: 24px; color: var(--tfc-gold); flex-shrink: 0; }
.tfc-loc-body { flex: 1; min-width: 220px; }
.tfc-loc-body .lbl { display: block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--tfc-gold); margin-bottom: 5px; }
.tfc-loc-body p { margin: 0; font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 600; line-height: 1.4; color: #fff; }
.tfc-loc-btn { display: inline-flex; align-items: center; gap: 9px; background: #fff; color: var(--tfc-bordo); padding: 13px 26px; border-radius: 40px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; text-decoration: none; white-space: nowrap; transition: transform .2s, box-shadow .3s; }
.tfc-loc-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.25); }

/* =========================================================================
   TEKLİF AL — form + güven paneli
   ========================================================================= */
.tfc-quote-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 40px; align-items: start; margin-top: 34px; }
.tfc-trust {
	background: linear-gradient(160deg, var(--tfc-bordo), var(--tfc-bordo-deep)); color: #fff;
	border-radius: 20px; padding: 36px 32px; position: sticky; top: 100px;
	box-shadow: 0 30px 60px rgba(92,6,11,.24);
}
.tfc-trust h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; margin: 0 0 22px; color: #fff; }
.tfc-trust ul { list-style: none; margin: 0 0 26px; padding: 0; }
.tfc-trust li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 15px; }
.tfc-trust li:last-child { border-bottom: 0; }
.tfc-trust li i { color: var(--tfc-gold); margin-top: 3px; }
.tfc-trust .call {
	display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--tfc-bordo);
	padding: 13px 26px; border-radius: 40px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
	text-decoration: none; transition: transform .2s, box-shadow .3s;
}
.tfc-trust .call:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.25); }

/* =========================================================================
   GALERİ intro
   ========================================================================= */
.tfc-gallery-head { text-align: center; max-width: 680px; margin: 0 auto 42px; }
.tfc-gallery-head .tfc-lead { margin: 0 auto; }
.tfc-gallery-cta { text-align: center; margin-top: 54px; }

/* =========================================================================
   HİZMETLER — arşiv kartları + tekil detay
   ========================================================================= */
.tfc-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
.tfc-service-card {
	background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid var(--tfc-line);
	transition: transform .35s ease, box-shadow .35s ease; display: flex; flex-direction: column;
}
.tfc-service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(26,21,18,.12); }
.tfc-service-card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.tfc-service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tfc-service-card:hover .thumb img { transform: scale(1.06); }
.tfc-service-card .body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.tfc-service-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 21px; margin: 0 0 10px; color: var(--tfc-ink); }
.tfc-service-card h3 a { color: inherit; text-decoration: none; transition: color .22s; }
.tfc-service-card:hover h3 a, .tfc-service-card h3 a:hover { color: var(--tfc-bordo); }
.tfc-side-nav a i { color: var(--tfc-gold); font-size: 12px; }
.tfc-service-card p { font-size: 15px; color: var(--tfc-muted); line-height: 1.6; margin: 0 0 20px; flex: 1; }
.tfc-service-card .more { display: inline-flex; align-items: center; gap: 9px; color: var(--tfc-bordo); font-weight: 700; font-family: 'Source Sans 3', sans-serif; text-decoration: none; font-size: 14px; letter-spacing: .02em; }
.tfc-service-card .more i { transition: transform .3s; }
.tfc-service-card:hover .more i { transform: translateX(5px); }

.tfc-single { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; margin-top: 40px; }
.tfc-single .feat { border-radius: 20px; overflow: hidden; margin-bottom: 30px; box-shadow: 0 24px 54px rgba(26,21,18,.10); }
.tfc-single .feat img { width: 100%; display: block; }
.tfc-single .entry { font-size: 16px; line-height: 1.8; color: #443c34; }
.tfc-single .entry h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 27px; color: var(--tfc-ink); margin: 34px 0 14px; }
.tfc-single .entry h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 21px; color: var(--tfc-bordo); margin: 26px 0 12px; }
.tfc-single .entry ul { padding-left: 0; list-style: none; margin: 0 0 20px; }
.tfc-single .entry ul li { position: relative; padding: 7px 0 7px 30px; }
.tfc-single .entry ul li::before { content: '\f00c'; font-family: 'Font Awesome 7 Free'; font-weight: 900; position: absolute; left: 0; top: 8px; color: var(--tfc-gold); font-size: 13px; }
.tfc-side { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 22px; }
.tfc-side-nav { background: #fff; border: 1px solid var(--tfc-line); border-radius: 18px; padding: 12px; }
.tfc-side-nav a { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-radius: 12px; color: var(--tfc-ink); text-decoration: none; font-weight: 600; font-size: 15px; transition: all .25s; }
.tfc-side-nav a:hover, .tfc-side-nav a.on { background: var(--tfc-cream); color: var(--tfc-bordo); }
.tfc-side-nav a.on { box-shadow: inset 3px 0 0 var(--tfc-bordo); }
.tfc-side-cta { background: linear-gradient(160deg, var(--tfc-bordo), var(--tfc-bordo-deep)); color: #fff; border-radius: 18px; padding: 30px 26px; text-align: center; }
.tfc-side-cta h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; margin: 14px 0 8px; color: #fff; }
.tfc-side-cta p { font-size: 14px; opacity: .85; margin: 0 0 20px; }
.tfc-side-cta .tfc-cta-btn {
	display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
	background: #fff; color: var(--tfc-bordo); border-radius: 40px; padding: 14px 22px; margin-top: 6px;
	font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 16px; text-decoration: none;
	transition: background .3s, transform .2s, box-shadow .3s;
}
.tfc-side-cta .tfc-cta-btn i { background: var(--tfc-bordo); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; flex-shrink: 0; transition: transform .3s, background .3s; }
.tfc-side-cta .tfc-cta-btn:hover { background: var(--tfc-gold); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,.22); }
.tfc-side-cta .tfc-cta-btn:hover i { transform: translateX(3px); }
.tfc-side-cta .tfc-cta-tel { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 16px; color: #fff; text-decoration: none; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 17px; transition: color .25s; }
.tfc-side-cta .tfc-cta-tel:hover { color: var(--tfc-gold); }
.tfc-side-cta .tfc-cta-tel i { color: var(--tfc-gold); }

/* =========================================================================
   Genel sayfa (page.php) + 404
   ========================================================================= */
.tfc-prose { max-width: 820px; margin: 0 auto; font-size: 17px; line-height: 1.85; color: #443c34; }
.tfc-prose h2 { font-family: 'Bricolage Grotesque', sans-serif; color: var(--tfc-ink); font-size: 28px; margin: 38px 0 14px; }
.tfc-prose h3 { font-family: 'Bricolage Grotesque', sans-serif; color: var(--tfc-bordo); font-size: 21px; margin: 26px 0 12px; }
.tfc-prose ul { list-style: none; padding: 0; }
.tfc-prose ul li { position: relative; padding: 7px 0 7px 30px; }
.tfc-prose ul li::before { content: '\f00c'; font-family: 'Font Awesome 7 Free'; font-weight: 900; position: absolute; left: 0; top: 8px; color: var(--tfc-gold); font-size: 13px; }

/* ===== 404 — kompakt tek-ekran (100vh, koyu) ===== */
.tfc-404-screen {
	position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
	overflow: hidden; text-align: center; padding: 120px 22px 64px; box-sizing: border-box;
	background: #160406;
}
.tfc-404-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .20; }
.tfc-404-wash {
	position: absolute; inset: 0;
	background:
		radial-gradient(115% 80% at 50% 6%, rgba(92,6,11,.45), transparent 58%),
		linear-gradient(180deg, rgba(22,4,6,.80), rgba(22,4,6,.95));
}
.tfc-404-inner { position: relative; z-index: 2; max-width: 620px; }
.tfc-404-eyebrow {
	display: inline-flex; align-items: center; gap: 12px; color: var(--tfc-gold);
	font-family: 'Source Sans 3', sans-serif; font-weight: 600; letter-spacing: .2em;
	text-transform: uppercase; font-size: 13px; margin-bottom: 12px;
}
.tfc-404-eyebrow::before, .tfc-404-eyebrow::after { content: ''; width: 24px; height: 1px; background: rgba(193,154,107,.55); }
.tfc-404-num {
	font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
	font-size: clamp(86px, 15vw, 156px); line-height: .86; letter-spacing: -.04em; margin: 0 0 8px;
	background: linear-gradient(180deg, #ebd6b7 0%, #c19a6b 52%, #8f6f49 100%);
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.tfc-404-title {
	font-family: 'Bricolage Grotesque', sans-serif; color: #fff; font-weight: 700;
	font-size: clamp(24px, 3.4vw, 36px); line-height: 1.15; margin: 0 0 14px;
}
.tfc-404-text {
	color: rgba(255,255,255,.72); font-family: 'Source Sans 3', sans-serif;
	font-size: 16.5px; line-height: 1.6; max-width: 500px; margin: 0 auto 30px;
}
.tfc-404-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.tfc-404-primary {
	display: inline-flex; align-items: center; gap: 9px; padding: 15px 32px; border-radius: 40px;
	background: var(--tfc-gold); color: var(--tfc-ink) !important; -webkit-text-fill-color: var(--tfc-ink);
	font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: 15px; text-decoration: none;
	border: 1px solid var(--tfc-gold); transition: transform .25s, box-shadow .25s, background .25s;
}
.tfc-404-primary:hover { background: #d4ac7c; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(193,154,107,.30); color: var(--tfc-ink) !important; }
.tfc-404-ghost {
	display: inline-flex; align-items: center; gap: 8px; padding: 15px 30px; border-radius: 40px;
	border: 1px solid rgba(255,255,255,.28); color: #fff; font-family: 'Source Sans 3', sans-serif;
	font-weight: 600; font-size: 15px; text-decoration: none; transition: border-color .25s, background .25s, color .25s;
}
.tfc-404-ghost:hover { border-color: var(--tfc-gold); background: rgba(193,154,107,.14); color: var(--tfc-gold); }
@media (max-width: 600px) {
	.tfc-404-screen { min-height: 100svh; padding: 100px 18px 48px; }
	.tfc-404-text { font-size: 15.5px; }
	.tfc-404-actions { flex-direction: column; align-items: stretch; }
}

/* =========================================================================
   DİL DEĞİŞTİRİCİ — şık dropdown
   ========================================================================= */
.header-lang { position: relative; margin-right: 22px; }
.tfc-lang-switch { position: relative; display: inline-flex; list-style: none; margin: 0; padding: 0; }
.tfc-lang-switch li { list-style: none; margin: 0; }
.tfc-lang-switch a { display: inline-flex; align-items: center; gap: 9px; color: #fff; text-decoration: none; font-family: 'Source Sans 3', sans-serif; font-size: 14px; font-weight: 600; white-space: nowrap; }
.tfc-lang-switch img { width: 20px; height: auto; border-radius: 3px; }
/* Aktif dil = tetikleyici */
.tfc-lang-switch .current-lang > a { padding: 9px 20px; border: 1px solid rgba(255,255,255,.22); border-radius: 40px; transition: border-color .25s, background .25s; }
.tfc-lang-switch .current-lang > a::after { content: '\f107'; font-family: 'Font Awesome 7 Free'; font-weight: 900; font-size: 12px; color: var(--tfc-gold); margin-left: 3px; transition: transform .3s; }
.header-lang:hover .tfc-lang-switch .current-lang > a { border-color: var(--tfc-gold); background: rgba(255,255,255,.06); }
.header-lang:hover .tfc-lang-switch .current-lang > a::after { transform: rotate(180deg); }
/* Diğer diller = açılır panel */
.tfc-lang-switch li:not(.current-lang) {
	position: absolute; top: calc(100% + 12px); right: 0; min-width: 100%;
	background: #1c1518; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 6px;
	opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .28s ease; z-index: 200;
	box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.header-lang:hover .tfc-lang-switch li:not(.current-lang) { opacity: 1; visibility: visible; transform: translateY(0); }
.tfc-lang-switch li:not(.current-lang) a { padding: 10px 16px; border-radius: 8px; width: 100%; transition: background .2s, color .2s; }
.tfc-lang-switch li:not(.current-lang) a:hover { background: rgba(193,154,107,.16); color: var(--tfc-gold); }

/* =========================================================================
   FOOTER — Çalışma Saatleri sütunu düzeltmesi
   Caterix'in space-between düzeni "Telefon: [boşluk] numara" gibi dağıtıyordu.
   Etiket üstte (küçük altın), değer altta — tutarlı ve derli toplu.
   ========================================================================= */
.main-footer .footer-working-hour ul { margin: 0; padding: 0; list-style: none; }
.main-footer .footer-working-hour li {
	display: block !important;
	justify-content: flex-start !important;
	margin-bottom: 16px;
	padding: 0;
	border: 0;
}
.main-footer .footer-working-hour li:last-child { margin-bottom: 0; }
.main-footer .footer-working-hour li span {
	display: block;
	color: var(--tfc-gold);
	font-family: 'Source Sans 3', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: 3px;
}
.main-footer .footer-working-hour li,
.main-footer .footer-working-hour li a {
	color: rgba(255, 255, 255, .82);
	font-size: 15px;
	line-height: 1.5;
	text-decoration: none;
	transition: color .25s;
}
.main-footer .footer-working-hour li a:hover { color: var(--tfc-gold); }

/* =========================================================================
   HİZMETLER dropdown genişliği — uzun isim ("Fuar Anahtar Teslim Paketi")
   iki satıra kayıyordu; dropdown'ı genişletip öğeleri tek satıra alıyoruz.
   ========================================================================= */
.main-menu ul li.submenu ul,
.main-menu ul li.submenu:first-child ul {
	width: auto !important;
	min-width: 265px !important;
}
.main-menu ul li.submenu ul li a { white-space: nowrap !important; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 991px) {
	.tfc-quote-grid, .tfc-single { grid-template-columns: 1fr; }
	.tfc-service-grid { grid-template-columns: repeat(2, 1fr); }
	.tfc-trust, .tfc-side { position: static; }
	.header-lang { margin-right: 12px; }
}
@media (max-width: 640px) {
	.tfc-contact-grid, .tfc-service-grid { grid-template-columns: 1fr; }
	.tfc-inner { padding: 70px 0 80px; }
	.tfc-form-card { padding: 28px 22px; }
}

/* =========================================================================
   MOBİL MENÜ — tam ekran çekmece
   SlickNav'ın yarı saydam açılır paneli yerine; logo + kapatma butonu ve
   açılır/kapanır alt menüler. Livadi ile aynı yapı, Caterix paletinde.
   ========================================================================= */

/* kendi burger butonumuz (slicknav devre dışı) */
.tfc-burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	margin-left: auto;
}
.tfc-burger span {
	display: block;
	width: 24px;
	height: 2px;
	margin: 0 auto;
	border-radius: 2px;
	background: var(--white-color);
}

.tfc-mobile {
	position: fixed;
	inset: 0;
	z-index: 1100;
	display: flex;
	flex-direction: column;
	background: var(--dark-color);
	padding: 0 22px 32px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform .4s ease-in-out;
	visibility: hidden;
}
.tfc-mobile.is-open { transform: none; visibility: visible; }

/* logo + kapatma; kaydırırken üstte sabit kalır */
.tfc-mobile__head {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 82px;
	margin-bottom: 12px;
	background: var(--dark-color);
	border-bottom: 1px solid var(--dark-divider-color);
}
.tfc-mobile__brand img { height: 42px; width: auto; max-width: none; }
.tfc-mobile__close {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-right: -10px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 50%;
	color: var(--white-color);
	cursor: pointer;
	transition: background .25s, color .25s;
}
.tfc-mobile__close:hover { background: rgba(193,154,107,.18); color: var(--tfc-gold); }
.tfc-mobile__close svg { width: 24px; height: 24px; }

.tfc-mobile__menu { list-style: none; margin: 0; padding: 0; }
.tfc-mobile__menu > li { border-bottom: 1px solid var(--dark-divider-color); }
.tfc-mobile__menu a {
	display: block;
	padding: 15px 0;
	font-family: var(--accent-font);
	font-size: 22px;
	line-height: 1.3;
	color: var(--white-color);
	text-decoration: none;
	transition: color .25s;
}
.tfc-mobile__menu a:hover { color: var(--tfc-gold); }

/* alt menüsü olan madde: başlık + açma butonu aynı satırda */
.tfc-mobile__menu > li.menu-item-has-children { display: flex; flex-wrap: wrap; align-items: center; }
.tfc-mobile__menu > li.menu-item-has-children > a { flex: 1 1 auto; }
.tfc-mobile__toggle {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-right: -10px;
	padding: 0;
	background: transparent;
	border: 0;
	color: rgba(255,255,255,.6);
	cursor: pointer;
}
.tfc-mobile__toggle svg { width: 20px; height: 20px; transition: transform .3s; }
.tfc-mobile__menu > li.is-open > .tfc-mobile__toggle { color: var(--tfc-gold); }
.tfc-mobile__menu > li.is-open > .tfc-mobile__toggle svg { transform: rotate(180deg); }

/* varsayılan kapalı; JS açıkken yüksekliği inline yazar */
.tfc-mobile__menu .sub-menu {
	flex: 1 0 100%;
	list-style: none;
	margin: 0;
	padding: 0 0 0 14px;
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease-in-out;
}
.tfc-mobile__menu > li.is-open > .sub-menu { padding-bottom: 10px; }
.tfc-mobile__menu .sub-menu a {
	font-family: 'Source Sans 3', sans-serif;
	font-size: 16px;
	font-weight: 600;
	padding: 9px 0;
	color: rgba(255,255,255,.82);
}
.tfc-mobile__menu .sub-menu a::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 10px;
	background: var(--tfc-gold);
	transform: rotate(45deg);
	vertical-align: middle;
}

.tfc-mobile__lang {
	display: flex;
	gap: 20px;
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
}
.tfc-mobile__lang li { list-style: none; }
.tfc-mobile__lang a {
	font-family: 'Source Sans 3', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--tfc-gold);
	text-decoration: none;
}
.tfc-mobile__lang .current-lang a { color: var(--white-color); }

.tfc-mobile__cta { margin-top: 24px; align-self: flex-start; }

/* çekmece yalnızca mobilde; masaüstünde tamamen devre dışı */
@media only screen and (min-width: 992px) {
	.tfc-mobile { display: none; }
}

/* =========================================================================
   GALERİ BÖLÜMÜ — "Galeriyi Gör" butonu en sağda
   custom.css'te .section-content-btn .section-btn { text-align:left } var;
   galeri bölümünde buton satırın sağ ucuna hizalansın (yalnız masaüstü,
   sütunlar col-xl-6 ile yan yanayken).
   ========================================================================= */
@media only screen and (min-width: 1200px) {
	.our-gallery .section-content-btn .section-btn { text-align: right; }
}
