/* =================================================================
   Balaban Sapan — Ana Tasarım Stili
   ================================================================= */

:root {
	--bs-navy: #16233f;
	--bs-navy-2: #1e304f;
	--bs-navy-light: #24365c;
	--bs-orange: #f5a623;
	--bs-orange-2: #ffc03d;
	--bs-orange-dark: #e08e00;
	--bs-gray-bg: #eef0f2;
	--bs-gray-line: #e1e5ea;
	--bs-text: #29344a;
	--bs-text-muted: #5b6b85;
	--bs-white: #ffffff;
	--bs-radius: 10px;
	--bs-container: 1320px;
	--bs-font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
	--bs-font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* ---------- Reset / Temel ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: var(--bs-font-body);
	color: var(--bs-text);
	background: var(--bs-white);
	margin: 0;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--bs-font-heading);
	color: var(--bs-navy);
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 0.6em;
}

a {
	color: var(--bs-navy);
	text-decoration: none;
}

a:hover {
	color: var(--bs-orange);
}

ul {
	margin: 0;
	padding: 0;
}

.bs-container {
	max-width: var(--bs-container);
	margin: 0 auto;
	padding: 0 24px;
}

.bs-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--bs-orange-2), var(--bs-orange));
	color: var(--bs-navy);
	font-family: var(--bs-font-heading);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.03em;
	padding: 16px 30px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(245, 166, 35, 0.35);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	text-transform: uppercase;
}

.bs-button:hover,
.bs-button:focus {
	color: var(--bs-navy);
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(245, 166, 35, 0.45);
}

.bs-button .dashicons,
.bs-button svg {
	width: 16px;
	height: 16px;
}

/* ---------- Üst şerit (telefon / e-posta) ---------- */
.bs-topbar {
	background: var(--bs-gray-bg);
	border-bottom: 1px solid var(--bs-gray-line);
}

.bs-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 24px;
	flex-wrap: wrap;
	padding-top: 14px;
	padding-bottom: 14px;
}

.bs-logo {
	display: flex;
	flex-direction: column;
	font-family: var(--bs-font-heading);
	font-weight: 800;
	font-size: 28px;
	line-height: 1.05;
	letter-spacing: 0.01em;
	color: var(--bs-navy);
}

.bs-logo span {
	color: var(--bs-orange);
}

.bs-logo img {
	max-height: 60px;
	width: auto;
	display: block;
}

.bs-contact {
	display: flex;
	align-items: center;
	gap: 22px;
	font-size: 15px;
	color: var(--bs-text);
	flex-wrap: wrap;
}

.bs-contact a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--bs-text);
	white-space: nowrap;
}

.bs-contact a:hover {
	color: var(--bs-orange-dark);
}

.bs-contact svg {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	color: var(--bs-orange);
}

.bs-contact__divider {
	width: 1px;
	height: 20px;
	background: var(--bs-gray-line);
}

/* ---------- Navigasyon ---------- */
.bs-nav-wrap {
	background: linear-gradient(180deg, #ffffff, #f4f5f7);
	border-bottom: 1px solid var(--bs-gray-line);
	position: relative;
}

.bs-nav-wrap::after {
	content: "";
	display: block;
	height: 6px;
	background: linear-gradient(90deg, var(--bs-orange-dark), var(--bs-orange-2));
}

.bs-nav-inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

/* Primary menu */
.bs-primary-menu,
.bs-primary-menu ul {
	list-style: none;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}

.bs-primary-menu {
	flex-wrap: wrap;
}

.bs-primary-menu > li {
	position: relative;
}

.bs-primary-menu > li > a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 20px 18px;
	font-family: var(--bs-font-heading);
	font-weight: 600;
	font-size: 15px;
	color: var(--bs-navy);
}

.bs-primary-menu > li > a:hover,
.bs-primary-menu > li.current-menu-item > a {
	color: var(--bs-orange-dark);
}

.bs-primary-menu li.menu-item-has-children > a::after {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	margin-top: -4px;
	opacity: 0.7;
}

.bs-primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: var(--bs-white);
	border-top: 3px solid var(--bs-orange);
	box-shadow: 0 18px 40px rgba(22, 35, 63, 0.16);
	border-radius: 0 0 8px 8px;
	flex-direction: column;
	display: block;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
	z-index: 60;
	padding: 8px 0;
}

.bs-primary-menu .sub-menu .sub-menu {
	top: -8px;
	left: 100%;
}

.bs-primary-menu li:hover > .sub-menu,
.bs-primary-menu li.bs-touch-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.bs-primary-menu .sub-menu li {
	width: 100%;
}

.bs-primary-menu .sub-menu a {
	display: block;
	padding: 11px 22px;
	font-size: 14.5px;
	font-weight: 500;
	color: var(--bs-text);
	white-space: nowrap;
}

.bs-primary-menu .sub-menu a:hover {
	background: var(--bs-gray-bg);
	color: var(--bs-orange-dark);
}

/* Mobil menü açma butonu */
.bs-menu-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	background: var(--bs-navy);
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 10px 16px;
	font-family: var(--bs-font-heading);
	font-weight: 600;
	cursor: pointer;
	margin: 12px 0;
}

.bs-menu-toggle svg {
	width: 18px;
	height: 18px;
}

/* ---------- Hero ---------- */
.bs-hero {
	position: relative;
	background: var(--bs-navy);
	overflow: hidden;
	min-height: 560px;
	display: flex;
	align-items: stretch;
}

.bs-hero__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.bs-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--bs-navy) 0%, rgba(22, 35, 63, 0.92) 32%, rgba(22, 35, 63, 0.35) 62%, rgba(22, 35, 63, 0.05) 100%);
}

.bs-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 72px 0;
}

.bs-hero__content {
	max-width: 620px;
	color: #fff;
}

.bs-hero__content h1,
.bs-hero__content .bs-hero__title {
	color: #fff;
	font-size: clamp(30px, 4vw, 44px);
	margin-bottom: 0.5em;
}

.bs-hero__list {
	list-style: none;
	margin: 26px 0 34px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bs-hero__list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 19px;
	font-weight: 600;
}

.bs-hero__list li::before {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--bs-orange);
	flex-shrink: 0;
	box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.25);
}

/* ---------- Kategoriler / Sektörler bölümü ---------- */
.bs-sectors {
	background: var(--bs-gray-bg);
	padding: 72px 0 80px;
	text-align: center;
}

.bs-sectors__heading {
	font-size: clamp(24px, 3vw, 32px);
	margin-bottom: 0.5em;
}

.bs-sectors__desc {
	max-width: 820px;
	margin: 0 auto 48px;
	color: var(--bs-text-muted);
	font-size: 16.5px;
}

.bs-sectors__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 22px;
}

.bs-sector-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}

.bs-sector-item__icon {
	width: 84px;
	height: 84px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bs-navy);
	transition: transform 0.2s ease;
}

.bs-sector-item__icon svg {
	width: 100%;
	height: 100%;
}

.bs-sector-item:hover .bs-sector-item__icon {
	transform: translateY(-4px);
	color: var(--bs-orange-dark);
}

.bs-sector-item__label {
	font-family: var(--bs-font-heading);
	font-weight: 700;
	font-size: 16px;
	color: var(--bs-navy);
}

/* ---------- Genel içerik bölümleri (sayfa şablonu) ---------- */
.bs-page-header {
	background: var(--bs-navy);
	background-image: linear-gradient(120deg, var(--bs-navy), var(--bs-navy-light));
	color: #fff;
	padding: 56px 0;
}

.bs-page-header h1 {
	color: #fff;
	margin: 0;
}

.bs-content-area {
	padding: 64px 0;
}

.bs-content-area.bs-has-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 48px;
}

.bs-entry img {
	border-radius: var(--bs-radius);
}

.bs-entry-meta {
	color: var(--bs-text-muted);
	font-size: 14px;
	margin-bottom: 1em;
}

.bs-widget {
	background: var(--bs-gray-bg);
	border-radius: var(--bs-radius);
	padding: 26px;
	margin-bottom: 28px;
}

.bs-widget h2,
.bs-widget .widget-title {
	font-size: 17px;
	margin-bottom: 0.9em;
	border-bottom: 2px solid var(--bs-orange);
	padding-bottom: 10px;
}

.bs-pagination {
	display: flex;
	gap: 10px;
	margin-top: 40px;
}

.bs-pagination a,
.bs-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border-radius: 6px;
	background: var(--bs-gray-bg);
	color: var(--bs-navy);
	font-weight: 600;
}

.bs-pagination .current {
	background: var(--bs-orange);
	color: var(--bs-navy);
}

/* ---------- Footer ---------- */
.bs-footer {
	background: var(--bs-navy);
	color: rgba(255, 255, 255, 0.82);
}

.bs-footer__top {
	padding: 60px 0 40px;
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
	gap: 36px;
}

.bs-footer__col h2,
.bs-footer__col .widget-title {
	color: #fff;
	font-size: 17px;
	margin-bottom: 1.1em;
	position: relative;
	padding-bottom: 10px;
}

.bs-footer__col h2::after,
.bs-footer__col .widget-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 36px;
	height: 3px;
	background: var(--bs-orange);
}

.bs-footer__col p {
	color: rgba(255, 255, 255, 0.68);
	font-size: 14.5px;
}

.bs-footer__logo {
	font-family: var(--bs-font-heading);
	font-weight: 800;
	font-size: 24px;
	color: #fff;
	margin-bottom: 14px;
	display: inline-block;
}

.bs-footer__logo span {
	color: var(--bs-orange);
}

.bs-footer__col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bs-footer__col ul a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 14.5px;
}

.bs-footer__col ul a:hover {
	color: var(--bs-orange);
}

.bs-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.bs-footer__contact svg {
	width: 17px;
	height: 17px;
	color: var(--bs-orange);
	flex-shrink: 0;
	margin-top: 3px;
}

.bs-footer__social {
	display: flex;
	flex-direction: row !important;
	gap: 10px;
	margin-top: 16px;
}

.bs-footer__social a {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	color: #fff;
}

.bs-footer__social a:hover {
	background: var(--bs-orange);
	color: var(--bs-navy);
}

.bs-footer__social svg {
	width: 16px;
	height: 16px;
}

.bs-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bs-footer__bottom-inner {
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.55);
}

.bs-footer__bottom-inner p {
	margin: 0;
}

.bs-footer__bottom a {
	color: rgba(255, 255, 255, 0.75);
}

/* ---------- 404 ---------- */
.bs-404 {
	text-align: center;
	padding: 100px 0;
}

.bs-404__code {
	font-family: var(--bs-font-heading);
	font-size: 96px;
	font-weight: 800;
	color: var(--bs-orange);
	margin: 0;
}

/* ---------- Yazı listeleri / arşiv kartları ---------- */
.bs-entry {
	margin-bottom: 44px;
	padding-bottom: 44px;
	border-bottom: 1px solid var(--bs-gray-line);
}

.bs-entry:last-child {
	border-bottom: none;
}

.bs-entry__thumb {
	display: block;
	margin-bottom: 18px;
	border-radius: var(--bs-radius);
	overflow: hidden;
}

.bs-entry__thumb img {
	display: block;
	width: 100%;
	transition: transform 0.25s ease;
}

.bs-entry__thumb:hover img {
	transform: scale(1.03);
}

.entry-title {
	font-size: 24px;
	margin-bottom: 0.4em;
}

.entry-title a {
	color: var(--bs-navy);
}

/* ---------- Arama formu ---------- */
.search-form {
	display: flex;
	gap: 10px;
}

.search-form .search-field {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid var(--bs-gray-line);
	border-radius: 6px;
	font-family: var(--bs-font-body);
	font-size: 15px;
}

.search-form .search-submit {
	background: var(--bs-orange);
	color: var(--bs-navy);
	border: none;
	border-radius: 6px;
	padding: 0 20px;
	font-family: var(--bs-font-heading);
	font-weight: 700;
	cursor: pointer;
}

/* ---------- Yorumlar ---------- */
.bs-comments {
	margin-top: 56px;
}

.bs-comments .comment-list {
	list-style: none;
	margin: 0 0 30px;
}

.bs-comments .comment-body {
	background: var(--bs-gray-bg);
	border-radius: var(--bs-radius);
	padding: 20px 24px;
	margin-bottom: 18px;
}

.bs-comments textarea,
.bs-comments input[type="text"],
.bs-comments input[type="email"],
.bs-comments input[type="url"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--bs-gray-line);
	border-radius: 6px;
	font-family: var(--bs-font-body);
}

/* ---------- Duyarlı (responsive) ---------- */
@media (max-width: 1080px) {
	.bs-sectors__grid {
		grid-template-columns: repeat(3, 1fr);
		row-gap: 40px;
	}

	.bs-footer__top {
		grid-template-columns: 1fr 1fr;
	}

	.bs-content-area.bs-has-sidebar {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 860px) {
	.bs-nav-inner {
		justify-content: space-between;
	}

	.bs-menu-toggle {
		display: inline-flex;
	}

	.bs-primary-menu {
		display: none;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		padding-bottom: 16px;
	}

	.bs-primary-menu.is-open {
		display: flex;
	}

	.bs-primary-menu > li > a {
		padding: 14px 6px;
		border-bottom: 1px solid var(--bs-gray-line);
	}

	.bs-primary-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border-radius: 0;
		display: none;
		padding-left: 16px;
	}

	.bs-primary-menu li.bs-touch-open > .sub-menu {
		display: block;
	}

	.bs-hero__inner {
		padding: 48px 0;
	}

	.bs-hero {
		min-height: 0;
	}
}

@media (max-width: 640px) {
	.bs-sectors__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bs-topbar__inner {
		justify-content: center;
		text-align: center;
	}

	.bs-contact {
		justify-content: center;
	}

	.bs-footer__top {
		grid-template-columns: 1fr;
	}
}
