/* ======================================================================
   Rodi Otomasyon — Custom Styles
   Blog, Teklif Formu, WhatsApp CTA & Premium Homepage Bileşenleri
====================================================================== */

/* ======================================================================
   HOMEPAGE — PREMIUM REDESIGN
====================================================================== */

/* ----------------------------------------------------------------------
   Stats Bar (Premium Floating Box)
---------------------------------------------------------------------- */
.hp-stats-wrapper {
	position: relative;
	z-index: 20;
	margin-top: -60px; /* Floating over the slider */
}
.hp-stats-box {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 24px 30px;
	flex-wrap: wrap;
	gap: 20px;
}
.hp-stat-item {
	display: flex;
	align-items: center;
	gap: 16px;
	color: #1a1a2e;
}
.hp-stat-icon {
	width: 50px;
	height: 50px;
	background: rgba(252,82,0,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hp-stat-icon i {
	font-size: 24px;
	color: #fc5200;
}
.hp-stat-data {
	display: flex;
	flex-direction: column;
	text-align: left;
}
.hp-stat-num {
	font-size: 32px;
	font-weight: 800;
	color: #1a1a2e;
	line-height: 1;
	margin-bottom: 2px;
	font-family: 'Open Sans', sans-serif;
}
.hp-stat-label {
	font-size: 13px;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}
.hp-stat-divider {
	width: 1px;
	height: 50px;
	background: rgba(0,0,0,0.08);
}

/* ----------------------------------------------------------------------
   Section Headers
---------------------------------------------------------------------- */
.hp-section-head {
	text-align: center;
	margin-bottom: 52px;
}
.hp-section-badge {
	display: inline-block;
	background: rgba(252,82,0,0.1);
	color: #fc5200;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 5px 16px;
	border-radius: 20px;
	border: 1px solid rgba(252,82,0,0.25);
	margin-bottom: 14px;
}
.hp-section-title {
	font-size: 36px;
	font-weight: 800;
	color: #1a1a2e;
	margin: 0 0 14px;
	line-height: 1.2;
	font-family: 'Open Sans', sans-serif;
}
.hp-section-sub {
	font-size: 16px;
	color: #666;
	max-width: 620px;
	margin: 0 auto;
	line-height: 1.7;
}
.hp-titleline {
	width: 50px;
	height: 3px;
	background: #fc5200;
	margin: 16px 0 24px;
	border-radius: 2px;
}

/* ----------------------------------------------------------------------
   Services Section
---------------------------------------------------------------------- */
.hp-services-section {
	padding: 80px 0 90px;
	background: #f8f9fb;
}
.hp-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
}
.hp-service-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.07);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}
.hp-service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}
.hp-service-img {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/9;
}
.hp-service-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
	display: block;
}
.hp-service-card:hover .hp-service-img img {
	transform: scale(1.08);
}
.hp-service-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(252,82,0,0.85) 0%, rgba(26,26,46,0.9) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.35s ease;
}
.hp-service-card:hover .hp-service-overlay {
	opacity: 1;
}
.hp-service-detail-btn {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border: 2px solid rgba(255,255,255,0.7);
	padding: 10px 24px;
	border-radius: 30px;
	letter-spacing: 0.5px;
	transition: all 0.2s;
}
.hp-service-detail-btn:hover {
	background: #fff;
	color: #fc5200;
	text-decoration: none;
}
.hp-service-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.hp-service-title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 10px;
	color: #1a1a2e;
}
.hp-service-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}
.hp-service-title a:hover { color: #fc5200; text-decoration: none; }
.hp-service-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	flex: 1;
	margin-bottom: 20px;
}
.hp-service-actions {
	display: flex;
	gap: 10px;
}
.hp-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #fc5200;
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	padding: 9px 20px;
	border-radius: 6px;
	text-decoration: none !important;
	transition: all 0.25s;
	border: none;
}
.hp-btn-primary:hover {
	background: #e04800;
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(252,82,0,0.35);
	color: #fff !important;
}
.hp-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: transparent;
	color: #fc5200 !important;
	font-size: 13px;
	font-weight: 700;
	padding: 9px 20px;
	border-radius: 6px;
	text-decoration: none !important;
	border: 2px solid #fc5200;
	transition: all 0.25s;
}
.hp-btn-secondary:hover {
	background: #fc5200;
	color: #fff !important;
}
.hp-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fc5200 !important;
	font-size: 14px;
	font-weight: 700;
	padding: 12px 32px;
	border-radius: 8px;
	border: 2px solid #fc5200;
	text-decoration: none !important;
	transition: all 0.25s;
}
.hp-btn-outline:hover {
	background: #fc5200;
	color: #fff !important;
}

/* ----------------------------------------------------------------------
   About Section
---------------------------------------------------------------------- */
.hp-about-section {
	padding: 90px 0;
	background: linear-gradient(135deg, #1a1a2e 0%, #2d3640 100%);
	position: relative;
	overflow: hidden;
}
.hp-about-section::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(252,82,0,0.12) 0%, transparent 70%);
	border-radius: 50%;
}
.hp-badge-light {
	background: rgba(255,255,255,0.08) !important;
	color: #fc5200 !important;
	border-color: rgba(252,82,0,0.3) !important;
}
.hp-about-title {
	font-size: 34px;
	font-weight: 800;
	color: #fff;
	margin: 14px 0 0;
	line-height: 1.25;
	font-family: 'Open Sans', sans-serif;
}
.hp-about-text {
	color: #aab4be;
	font-size: 15px;
	line-height: 1.8;
	margin: 20px 0 32px;
}
.hp-about-text p { color: #aab4be; margin-bottom: 12px; }
.hp-about-actions {
	display: flex;
	gap: 14px;
	align-items: center;
	flex-wrap: wrap;
}
.hp-btn-call {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
	border-bottom: 2px solid rgba(255,255,255,0.3);
	padding-bottom: 2px;
	transition: border-color 0.2s;
}
.hp-btn-call:hover { border-color: #fc5200; color: #fc5200 !important; }
.hp-btn-call i { color: #fc5200; }

/* Why Us Grid */
.hp-why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	padding-left: 20px;
}
.hp-why-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 10px;
	padding: 20px;
	transition: background 0.25s, border-color 0.25s;
}
.hp-why-item:hover {
	background: rgba(252,82,0,0.08);
	border-color: rgba(252,82,0,0.25);
}
.hp-why-icon {
	width: 44px;
	height: 44px;
	background: rgba(252,82,0,0.15);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.hp-why-icon i {
	font-size: 20px;
	color: #fc5200;
}
.hp-why-text h4 {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 6px;
}
.hp-why-text p {
	font-size: 13px;
	color: #8a9bb0;
	margin: 0;
	line-height: 1.5;
}

/* ----------------------------------------------------------------------
   CTA Band
---------------------------------------------------------------------- */
.hp-cta-band {
	background: linear-gradient(90deg, #fc5200 0%, #e04800 60%, #c83d00 100%);
	padding: 56px 0;
}
.hp-cta-band-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}
.hp-cta-band-text h3 {
	font-size: 26px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 6px;
}
.hp-cta-band-text p {
	font-size: 15px;
	color: rgba(255,255,255,0.8);
	margin: 0;
}
.hp-cta-band-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.hp-cta-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #fc5200 !important;
	font-size: 15px;
	font-weight: 700;
	padding: 14px 32px;
	border-radius: 8px;
	text-decoration: none !important;
	transition: all 0.25s;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hp-cta-btn-primary:hover {
	background: #1a1a2e;
	color: #fff !important;
	transform: translateY(-2px);
}
.hp-cta-btn-wa {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #25d366;
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	padding: 14px 32px;
	border-radius: 8px;
	text-decoration: none !important;
	transition: all 0.25s;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hp-cta-btn-wa:hover {
	background: #128c7e;
	transform: translateY(-2px);
	color: #fff !important;
}
.hp-cta-btn-wa i { font-size: 20px; }

/* ----------------------------------------------------------------------
   Premium Footer
---------------------------------------------------------------------- */
.hp-premium-footer-wrap {
	background-color: #111116;
	color: #aab4be;
	font-family: 'Open Sans', sans-serif;
	position: relative;
	z-index: 10;
}
.hp-footer-top {
	background: rgba(255,255,255,0.03);
	border-bottom: 1px solid rgba(255,255,255,0.05);
	padding: 40px 0;
}
.hp-footer-info-item {
	display: flex;
	align-items: center;
	gap: 18px;
}
.hp-fi-center { justify-content: center; }
.hp-fi-right { justify-content: flex-end; }
.hp-fi-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(252,82,0,0.1);
	border: 1px solid rgba(252,82,0,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}
.hp-fi-icon i {
	font-size: 24px;
	color: #fc5200;
}
.hp-fi-text h5 {
	font-size: 14px;
	color: #fff;
	margin: 0 0 4px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
.hp-fi-text p {
	font-size: 15px;
	color: #aab4be;
	margin: 0;
}
.hp-fi-text a {
	color: #aab4be;
	text-decoration: none;
	transition: color 0.2s;
}
.hp-fi-text a:hover { color: #fc5200; }

.hp-main-footer {
	padding: 70px 0 50px;
}
.hp-footer-widget {
	margin-bottom: 30px;
}
.hp-footer-logo {
	display: block;
	margin-bottom: 24px;
}
.hp-footer-desc {
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 24px;
}
.hp-footer-social {
	display: flex;
	gap: 12px;
}
.hp-footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
	transition: all 0.3s;
}
.hp-footer-social a:hover {
	background: #fc5200;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(252,82,0,0.3);
}

.hp-widget-title {
	font-size: 18px;
	color: #fff;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 12px;
}
.hp-widget-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background: #fc5200;
	border-radius: 2px;
}

.hp-footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}
.hp-footer-menu li {
	margin-bottom: 12px;
}
.hp-footer-menu li a {
	color: #aab4be;
	text-decoration: none;
	font-size: 14px;
	display: flex;
	align-items: center;
	transition: all 0.25s;
}
.hp-footer-menu li a::before {
	content: '\f105';
	font-family: 'FontAwesome';
	margin-right: 10px;
	color: rgba(255,255,255,0.2);
	transition: all 0.25s;
}
.hp-footer-menu li a:hover {
	color: #fc5200;
	transform: translateX(5px);
}
.hp-footer-menu li a:hover::before {
	color: #fc5200;
}

.hp-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.hp-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.6;
}
.hp-contact-list li i {
	color: #fc5200;
	font-size: 18px;
	margin-top: 3px;
}
.hp-contact-list li a {
	color: #aab4be;
	text-decoration: none;
	transition: color 0.2s;
}
.hp-contact-list li a:hover { color: #fc5200; }

.hp-copyright-bar {
	background: #0a0a0d;
	padding: 24px 0;
	border-top: 1px solid rgba(255,255,255,0.03);
}
.hp-copyright-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}
.hp-copy-text {
	font-size: 13px;
	color: #888;
}
.hp-copy-links {
	display: flex;
	align-items: center;
	gap: 20px;
}
.hp-copy-links a {
	font-size: 13px;
	color: #888;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s;
}
.hp-copy-links a:hover { color: #fc5200; }
.back-to-top i { margin-left: 5px; }

@media (max-width: 991px) {
	.hp-footer-top { text-align: center; }
	.hp-fi-center, .hp-fi-right { justify-content: center; margin-top: 20px; }
	.hp-footer-widget { margin-bottom: 40px; }
}
@media (max-width: 767px) {
	.hp-footer-info-item { flex-direction: column; text-align: center; gap: 10px; }
	.hp-copyright-inner { flex-direction: column; justify-content: center; }
}

/* ----------------------------------------------------------------------
   About Page Premium
---------------------------------------------------------------------- */
.hp-about-hero {
	background: url('../images/bg-3.jpg') center/cover no-repeat;
	position: relative;
	padding: 100px 0 80px;
	color: #fff;
	text-align: center;
}
.hp-about-hero-overlay {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background: linear-gradient(135deg, rgba(26,26,46,0.95), rgba(17,17,22,0.85));
}
.hp-about-hero h1 {
	font-size: 42px;
	font-weight: 800;
	margin: 0 0 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.hp-breadcrumb {
	list-style: none;
	padding: 0; margin: 0;
	display: inline-flex;
	gap: 12px;
	font-size: 14px;
	color: #aab4be;
}
.hp-breadcrumb li a { color: #fc5200; text-decoration: none; }
.hp-breadcrumb li.active { color: #fff; }
.hp-breadcrumb li:not(:last-child)::after {
	content: '/';
	margin-left: 12px;
	color: rgba(255,255,255,0.3);
}

.hp-about-main-section {
	padding: 90px 0;
	background: #fff;
}
.hp-about-image-wrapper {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.hp-about-image-wrapper img { width: 100%; display: block; }
.hp-about-experience-badge {
	position: absolute;
	bottom: -20px;
	right: 30px;
	background: #fc5200;
	color: #fff;
	padding: 25px 30px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 15px 30px rgba(252,82,0,0.3);
}
.hp-about-experience-badge .badge-num {
	display: block;
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 5px;
}
.hp-about-experience-badge .badge-text {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.4;
}

.hp-about-text-content {
	padding-left: 30px;
}
.hp-about-the-content {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 30px;
}
.hp-about-the-content p { margin-bottom: 15px; }
.hp-about-checklist ul {
	list-style: none;
	padding: 0; margin: 0;
}
.hp-about-checklist li {
	font-size: 16px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.hp-about-checklist li i {
	color: #fc5200;
	font-size: 20px;
}

.hp-about-features-section {
	background: #f8f9fb;
	padding: 80px 0 120px; /* Stats bar margin-top hesaba katılarak alt padding fazla */
}
.hp-feature-card {
	background: #fff;
	padding: 40px 30px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: transform 0.3s, box-shadow 0.3s;
	height: 100%;
}
.hp-feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(252,82,0,0.1);
}
.feature-icon {
	width: 80px; height: 80px;
	background: rgba(252,82,0,0.1);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 20px;
}
.feature-icon i {
	font-size: 36px;
	color: #fc5200;
}
.hp-feature-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 15px;
}
.hp-feature-card p {
	font-size: 15px;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

@media (max-width: 991px) {
	.hp-about-text-content { padding-left: 0; margin-top: 50px; }
	.hp-about-experience-badge { bottom: 20px; right: 20px; padding: 15px 20px; }
	.hp-about-experience-badge .badge-num { font-size: 36px; }
	.hp-feature-card { margin-bottom: 30px; }
}

/* ----------------------------------------------------------------------
   Blog Section (Homepage)
---------------------------------------------------------------------- */
.hp-blog-section {
	padding: 80px 0 90px;
	background: #fff;
}
.hp-blog-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.07);
	transition: transform 0.3s, box-shadow 0.3s;
	margin-bottom: 28px;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.hp-blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}
.hp-blog-img {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/9;
}
.hp-blog-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
	display: block;
}
.hp-blog-card:hover .hp-blog-img img { transform: scale(1.06); }
.hp-blog-cat {
	position: absolute;
	top: 14px;
	left: 14px;
	background: #fc5200;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 4px 12px;
	border-radius: 20px;
}
.hp-blog-body {
	padding: 22px 24px 26px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.hp-blog-meta {
	font-size: 12px;
	color: #999;
	margin-bottom: 10px;
}
.hp-blog-meta i { color: #fc5200; margin-right: 4px; }
.hp-blog-title {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 10px;
	line-height: 1.4;
	color: #1a1a2e;
}
.hp-blog-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.hp-blog-title a:hover { color: #fc5200; text-decoration: none; }
.hp-blog-excerpt {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	flex: 1;
	margin-bottom: 16px;
}
.hp-blog-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fc5200;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: gap 0.2s;
}
.hp-blog-link:hover { gap: 10px; color: #e04800; text-decoration: none; }
.hp-blog-more { text-align: center; margin-top: 40px; }

/* ----------------------------------------------------------------------
   Responsive
---------------------------------------------------------------------- */
@media (max-width: 1199px) {
	.hp-services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
	.hp-stats-box { padding: 20px; }
	.hp-stat-item { gap: 10px; }
	.hp-stat-num { font-size: 26px; }
	.hp-stat-divider { height: 36px; }
	.hp-services-grid { grid-template-columns: repeat(2, 1fr); }
	.hp-why-grid { padding-left: 0; margin-top: 40px; }
	.hp-about-title { font-size: 26px; }
	.hp-cta-band-inner { flex-direction: column; text-align: center; }
	.hp-cta-band-actions { justify-content: center; }
	.hp-section-title { font-size: 28px; }
}
@media (max-width: 767px) {
	.hp-stats-wrapper { margin-top: -20px; padding: 0 15px; }
	.hp-stats-box { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
	.hp-stat-item { width: 100%; justify-content: flex-start; }
	.hp-stat-divider { display: none; }
	.hp-services-grid { grid-template-columns: 1fr; }
	.hp-why-grid { grid-template-columns: 1fr; }
	.hp-services-section, .hp-about-section, .hp-blog-section { padding: 60px 0; }
	.hp-cta-band { padding: 40px 0; }
	.hp-cta-band-text h3 { font-size: 20px; }
	.hp-cta-btn-primary, .hp-cta-btn-wa { width: 100%; justify-content: center; }
	.hp-about-actions { flex-direction: column; align-items: flex-start; }
}

/* ----------------------------------------------------------------------
	1. Blog Kartları
---------------------------------------------------------------------- */
.blog-card {
	background: #ffffff;
	border: 1px solid #e8e8e8;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 30px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.blog-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	transform: translateY(-3px);
}
.blog-card .blog-card-img {
	position: relative;
	overflow: hidden;
}
.blog-card .blog-card-img img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
	transform: scale(1.05);
}
.blog-card .blog-card-img .blog-card-tag {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: #fc5200;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 2px;
	letter-spacing: 0.5px;
}
.blog-card .blog-card-body {
	padding: 20px 24px 24px;
}
.blog-card .blog-card-meta {
	font-size: 12px;
	color: #999999;
	margin-bottom: 10px;
}
.blog-card .blog-card-meta i {
	margin-right: 4px;
	color: #fc5200;
}
.blog-card .blog-card-meta span {
	margin-right: 14px;
}
.blog-card .blog-card-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 10px;
}
.blog-card .blog-card-title a {
	color: #36414d;
	text-decoration: none;
	transition: color 0.2s;
}
.blog-card .blog-card-title a:hover {
	color: #fc5200;
	text-decoration: none;
}
.blog-card .blog-card-excerpt {
	color: #666666;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 16px;
}
.blog-card .blog-card-link {
	display: inline-block;
	color: #fc5200;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: all 0.2s;
}
.blog-card .blog-card-link:hover {
	color: #d94400;
	text-decoration: none;
}
.blog-card .blog-card-link i {
	margin-left: 4px;
	transition: margin-left 0.2s;
}
.blog-card .blog-card-link:hover i {
	margin-left: 8px;
}

/* Blog Detail */
.blog-detail-content {
	font-size: 15px;
	line-height: 1.8;
	color: #475766;
}
.blog-detail-content h2 {
	font-size: 22px;
	margin-top: 30px;
	margin-bottom: 14px;
	color: #36414d;
}
.blog-detail-content h3 {
	font-size: 18px;
	margin-top: 24px;
	margin-bottom: 10px;
	color: #36414d;
}
.blog-detail-content ul {
	padding-left: 20px;
	margin-bottom: 20px;
}
.blog-detail-content ul li {
	margin-bottom: 8px;
	position: relative;
	padding-left: 8px;
}
.blog-detail-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 13px;
	color: #999999;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid #eeeeee;
}
.blog-detail-meta i {
	color: #fc5200;
	margin-right: 4px;
}

/* Blog Sidebar Widget */
.blog-sidebar-widget {
	background: #f9f9f9;
	border: 1px solid #eeeeee;
	border-radius: 4px;
	padding: 20px;
	margin-bottom: 24px;
}
.blog-sidebar-widget h4 {
	font-size: 16px;
	margin-bottom: 12px;
	padding-bottom: 10px;
	border-bottom: 2px solid #fc5200;
}
.blog-sidebar-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.blog-sidebar-widget ul li {
	padding: 8px 0;
	border-bottom: 1px solid #eeeeee;
}
.blog-sidebar-widget ul li:last-child {
	border-bottom: none;
}
.blog-sidebar-widget ul li a {
	color: #475766;
	font-size: 13px;
	text-decoration: none;
	transition: color 0.2s;
}
.blog-sidebar-widget ul li a:hover {
	color: #fc5200;
	text-decoration: none;
}
.blog-sidebar-widget ul li i {
	color: #fc5200;
	margin-right: 8px;
	font-size: 12px;
}

/* ----------------------------------------------------------------------
	2. Teklif Formu
---------------------------------------------------------------------- */
.teklif-section {
	padding: 40px 0 60px;
}
.teklif-form-wrapper {
	background: #ffffff;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	padding: 32px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.teklif-form-wrapper h3 {
	margin-bottom: 6px;
}
.teklif-form-wrapper .form-subtitle {
	color: #888888;
	font-size: 14px;
	margin-bottom: 24px;
}
.teklif-form-wrapper .form-group {
	margin-bottom: 18px;
}
.teklif-form-wrapper label {
	font-weight: 600;
	font-size: 13px;
	color: #36414d;
	margin-bottom: 6px;
	display: block;
}
.teklif-form-wrapper label .required {
	color: #fc5200;
	margin-left: 2px;
}
.teklif-form-wrapper .form-control {
	height: 42px;
	font-size: 14px;
	border: 1px solid #d0d0d0;
	border-radius: 4px;
	padding: 8px 14px;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.teklif-form-wrapper .form-control:focus {
	border-color: #fc5200;
	box-shadow: 0 0 0 3px rgba(252, 82, 0, 0.1);
}
.teklif-form-wrapper textarea.form-control {
	height: auto;
	min-height: 100px;
	resize: vertical;
}
.teklif-form-wrapper select.form-control {
	appearance: auto;
	cursor: pointer;
}

/* Teklif Info Cards */
.teklif-info-card {
	background: linear-gradient(135deg, #2d3640 0%, #3d4a56 100%);
	color: #ffffff;
	border-radius: 6px;
	padding: 28px;
	margin-bottom: 20px;
}
.teklif-info-card h4 {
	color: #ffffff;
	font-size: 17px;
	margin-bottom: 16px;
}
.teklif-info-card .info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 14px;
}
.teklif-info-card .info-item i {
	color: #fc5200;
	font-size: 16px;
	margin-right: 12px;
	margin-top: 3px;
	min-width: 18px;
}
.teklif-info-card .info-item span {
	font-size: 14px;
	line-height: 1.5;
	color: #cccccc;
}
.teklif-info-card .info-item a {
	color: #ffffff;
	text-decoration: none;
}
.teklif-info-card .info-item a:hover {
	color: #fc5200;
	text-decoration: none;
}

.teklif-avantaj-card {
	background: #f8f9fa;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	padding: 24px;
	margin-bottom: 20px;
}
.teklif-avantaj-card h4 {
	font-size: 16px;
	margin-bottom: 14px;
	color: #36414d;
}
.teklif-avantaj-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.teklif-avantaj-card ul li {
	padding: 6px 0;
	font-size: 13px;
	color: #555555;
}
.teklif-avantaj-card ul li i {
	color: #28a745;
	margin-right: 8px;
}

/* Teklif Success */
.teklif-success {
	text-align: center;
	padding: 40px 20px;
}
.teklif-success i.fa-check-circle {
	font-size: 64px;
	color: #28a745;
	margin-bottom: 20px;
}
.teklif-success h3 {
	color: #28a745;
}
.teklif-success p {
	color: #666666;
	font-size: 15px;
	margin-bottom: 8px;
}

/* ----------------------------------------------------------------------
	3. WhatsApp CTA Butonları
---------------------------------------------------------------------- */
.product-cta-bar {
	background: #f8f9fa;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	padding: 24px;
	margin: 30px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}
.product-cta-bar .cta-text {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #36414d;
}
.product-cta-bar .cta-text span {
	display: block;
	font-size: 13px;
	font-weight: 400;
	color: #888888;
	margin-top: 2px;
}
.product-cta-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.btn-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 700;
	padding: 12px 24px;
	border-radius: 50px;
	text-decoration: none !important;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
	border: none;
}
.btn-whatsapp:hover {
	background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
	color: #ffffff !important;
	text-decoration: none !important;
}
.btn-whatsapp i {
	font-size: 18px;
}

.btn-teklif {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #fc5200 0%, #e04800 100%);
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 700;
	padding: 12px 24px;
	border-radius: 50px;
	text-decoration: none !important;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(252, 82, 0, 0.3);
	border: none;
}
.btn-teklif:hover {
	background: linear-gradient(135deg, #e04800 0%, #c03d00 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(252, 82, 0, 0.4);
	color: #ffffff !important;
	text-decoration: none !important;
}
.btn-teklif i {
	font-size: 16px;
}

/* Pulse Animation for WhatsApp */
@keyframes pulse-green {
	0% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); }
	50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
	100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); }
}
.btn-whatsapp {
	animation: pulse-green 2s infinite;
}
.btn-whatsapp:hover {
	animation: none;
}

/* ----------------------------------------------------------------------
	4. Responsive
---------------------------------------------------------------------- */
@media (max-width: 991px) {
	.product-cta-bar {
		flex-direction: column;
		text-align: center;
	}
	.product-cta-buttons {
		justify-content: center;
	}
	.teklif-form-wrapper {
		padding: 20px;
	}
}
@media (max-width: 767px) {
	.blog-card .blog-card-img img {
		height: 180px;
	}
	.blog-card .blog-card-body {
		padding: 16px;
	}
	.blog-detail-meta {
		flex-direction: column;
		gap: 8px;
	}
	.btn-whatsapp, .btn-teklif {
		padding: 10px 20px;
		font-size: 13px;
		width: 100%;
		justify-content: center;
	}
	.product-cta-buttons {
		width: 100%;
	}
}
