/* Home page custom animations and styles */
:root {
	--rogs-primary: #004080;
	--rogs-accent: #0056b3;
	--rogs-muted: #999999;
	--rogs-bg: #f5f7fa;
}

/* Modern Main Categories Section */
.main-categories-section {
	padding: 120px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
	position: relative;
	overflow: hidden;
}

.main-categories-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="0.5" fill="%23004080" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	pointer-events: none;
	z-index: 0;
}

.main-categories-section .container {
	position: relative;
	z-index: 1;
}

/* Modern 2-Column Grid Layout */
.modern-categories-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 60px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 992px) {
	.modern-categories-grid {
		gap: 30px;
		margin-top: 40px;
	}
}

@media (max-width: 768px) {
	.modern-categories-grid {
		grid-template-columns: 1fr;
		gap: 25px;
		margin-top: 35px;
	}
	
	.main-categories-section {
		padding: 80px 0;
	}
}

@media (max-width: 480px) {
	.modern-categories-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 30px;
	}
	
	.main-categories-section {
		padding: 60px 0;
	}
	
	.category-image-wrapper {
		height: 180px;
	}
	
	.category-card-content {
		padding: 20px 18px;
	}
	
	.category-card-title {
		font-size: 18px;
	}
	
	.category-card-description {
		font-size: 14px;
	}
	
	.categories-section-footer {
		margin-top: 60px;
	}
	
	.btn-category-explore {
		padding: 14px 28px;
		font-size: 14px;
	}
}

/* Modern Category Card Styles */
.modern-category-card {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 20px 40px rgba(0, 64, 128, 0.08);
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(0, 64, 128, 0.06);
	backdrop-filter: blur(20px);
}

.modern-category-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 30px 60px rgba(0, 64, 128, 0.15);
	border-color: rgba(0, 64, 128, 0.12);
}

.category-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
	height: 100%;
}

.category-card-inner {
	height: 100%;
	display: flex;
	flex-direction: column;
}

/* Category Image Wrapper */
.category-image-wrapper {
	position: relative;
	height: 220px;
	overflow: hidden;
	background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.category-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modern-category-card:hover .category-card-image {
	transform: scale(1.08);
}

/* Category Overlay */
.category-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 64, 128, 0.85), rgba(0, 86, 179, 0.9));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	backdrop-filter: blur(8px);
}

.modern-category-card:hover .category-card-overlay {
	opacity: 1;
}

.category-card-overlay-content {
	text-align: center;
	color: white;
	transform: translateY(20px);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modern-category-card:hover .category-card-overlay-content {
	transform: translateY(0);
}

.category-icon {
	width: 54px;
	height: 54px;
	background: rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
}

.modern-category-card:hover .category-icon {
	background: rgba(255, 255, 255, 0.35);
	transform: scale(1.1);
}

.category-icon i {
	font-size: 20px;
	transition: transform 0.3s ease;
}

.modern-category-card:hover .category-icon i {
	transform: translateX(3px);
}

.category-action-text {
	display: block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

@keyframes bounceHorizontal {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(5px); }
}

/* Category Content */
/* Category Card Content */
.category-card-content {
	padding: 28px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.category-card-title {
	font-size: 22px;
	font-weight: 700;
	color: #1a202c;
	margin-bottom: 12px;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.modern-category-card:hover .category-card-title {
	color: var(--rogs-primary);
}

.category-card-description {
	font-size: 15px;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 16px;
	flex: 1;
}

.category-card-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
}

.category-product-count {
	display: inline-flex;
	align-items: center;
	background: rgba(0, 64, 128, 0.08);
	color: var(--rogs-primary);
	padding: 8px 16px;
	border-radius: 25px;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.modern-category-card:hover .category-product-count {
	background: var(--rogs-primary);
	color: white;
	transform: translateY(-2px);
}

/* Categories Section Footer */
.categories-section-footer {
	text-align: center;
	margin-top: 80px;
}

.btn-category-explore {
	background: linear-gradient(135deg, var(--rogs-primary), var(--rogs-accent));
	border: none;
	padding: 16px 40px;
	font-weight: 700;
	border-radius: 50px;
	box-shadow: 0 12px 35px rgba(0, 64, 128, 0.25);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-category-explore::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.6s ease;
}

.btn-category-explore:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 20px 45px rgba(0, 64, 128, 0.4);
}

.btn-category-explore:hover::before {
	left: 100%;
}

/* Section Badge */
.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--rogs-primary), var(--rogs-accent));
	color: white;
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 16px;
	box-shadow: 0 4px 15px rgba(0, 64, 128, 0.2);
}

/* Animation Delays for Cards */
.main-category-card:nth-child(1) { animation-delay: 0.1s; }
.main-category-card:nth-child(2) { animation-delay: 0.2s; }
.main-category-card:nth-child(3) { animation-delay: 0.3s; }
.main-category-card:nth-child(4) { animation-delay: 0.4s; }
.main-category-card:nth-child(5) { animation-delay: 0.5s; }
.main-category-card:nth-child(6) { animation-delay: 0.6s; }
.main-category-card:nth-child(7) { animation-delay: 0.7s; }
.main-category-card:nth-child(8) { animation-delay: 0.8s; }

/* Responsive Adjustments */
@media (max-width: 992px) {
	.main-categories-section {
		padding: 60px 0;
	}
	
	.category-image-container {
		height: 180px;
	}
	
	.category-content {
		padding: 20px 16px;
	}
	
	.category-title {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.main-categories-section {
		padding: 50px 0;
	}
	
	.category-image-container {
		height: 160px;
	}
	
	.main-category-card {
		border-radius: 16px;
	}
}

.modern-slider .carousel-item {
	background-size: cover;
	background-position: center;
	position: relative;
}
.modern-slider .slider-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0.15));
	pointer-events: none;
	z-index: 1;
}
.slider-badge { 
	display: inline-flex; align-items: center; gap: 8px; 
	background: rgba(255,255,255,0.15); color: #fff;
	padding: 8px 14px; border-radius: 999px; 
	backdrop-filter: blur(6px);
}
.slider-title { color: #fff; font-weight: 800; letter-spacing: .3px; }
.slider-subtitle, .slider-description { color: #eef2ff; }

.quick-categories-section {
	padding: 64px 0; background: var(--rogs-bg);
}
.categories-section { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.categories-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
@media (max-width: 1200px){ .categories-grid { grid-template-columns: repeat(6,1fr);} }
@media (max-width: 768px){ .categories-grid { grid-template-columns: repeat(2,1fr);} }
.category-quick-card { background:#fff; border-radius:16px; padding:16px; box-shadow: 0 8px 24px rgba(0,0,0,.06); display:flex; gap:12px; align-items:center; transition: transform .25s ease, box-shadow .25s ease; }
.category-quick-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.08); }
.category-quick-icon i { color: var(--rogs-primary); font-size: 22px; }
.category-quick-title a { color:#111827; text-decoration:none; }
.category-quick-arrow { margin-left:auto; color:#9ca3af; }

.highlighted-products-section { padding: 64px 0; }
.featured-products-section { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; background:#fff; }
.highlighted-products-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 1200px){ .highlighted-products-grid { grid-template-columns: repeat(3,1fr);} }
@media (max-width: 992px){ .highlighted-products-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 576px){ .highlighted-products-grid { grid-template-columns: repeat(1,1fr);} }
.highlighted-product-card { background:#fff; border-radius:16px; overflow:hidden; box-shadow: 0 8px 24px rgba(0,0,0,.06); transition: transform .25s ease, box-shadow .25s ease; }
.highlighted-product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.product-image-container { position:relative; aspect-ratio: 4/3; background:#f3f4f6; }
.product-image { width:100%; height:100%; object-fit:cover; }
.product-overlay { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; gap:10px; opacity:0; background: rgba(0,0,0,0.15); transition:opacity .25s ease; }
.highlighted-product-card:hover .product-overlay { opacity:1; }
.btn-product-action { width:42px; height:42px; border-radius:50%; background:#fff; color:#111827; display:flex; align-items:center; justify-content:center; text-decoration:none; }
.product-content { padding:16px; }
.product-category { color:#6b7280; font-size:12px; text-transform:uppercase; letter-spacing:.6px; }
.product-title a { color:#111827; text-decoration:none; }
.price-amount { color: var(--rogs-accent); font-weight:700; }

.brand-logos-section { padding: 48px 0; background: #fff; }
.brand-logos-container { overflow: hidden; }
.brand-logos-track { display: flex; gap: 48px; animation: scrollBrands 30s linear infinite; }
@media (max-width: 768px){ .brand-logos-track { gap: 24px; animation-duration: 40s; } }
.brand-logo-wrapper { width: 120px; height: 80px; display:flex; align-items:center; justify-content:center; filter: grayscale(100%); opacity:.8; transition: filter .25s, opacity .25s, transform .25s; }
.brand-logo-wrapper:hover { filter: grayscale(0%); opacity:1; transform: scale(1.05); }
@keyframes scrollBrands { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.testimonials-section { padding: 56px 0; background: var(--rogs-bg);} 
.testimonials-container { overflow:hidden; }
.testimonials-track { display:flex; gap: 24px; animation: slideTestimonials 24s linear infinite; }
@media (max-width: 768px){ .testimonials-track { gap: 16px; animation-duration: 32s; } }
.testimonial-card { background:#fff; border-radius:16px; box-shadow: 0 8px 24px rgba(0,0,0,.06); padding:20px; width: 360px; }
@keyframes slideTestimonials { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Contact CTA Section - Yeni Tasarım */
.contact-cta-section { 
	padding: 100px 0 0 0; 
	background: linear-gradient(135deg, var(--rogs-primary) 0%, var(--rogs-accent) 50%, var(--rogs-primary) 100%); 
	color: #fff; 
	position: relative;
	overflow: hidden;
	margin-bottom: 0;
}

.contact-cta-content {
	position: relative;
	z-index: 2;
	padding-bottom: 60px;
}

.cta-background-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') repeat;
	opacity: 0.3;
}

.cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
	backdrop-filter: blur(10px);
}

.cta-title {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
	background: linear-gradient(45deg, #ffffff, #f8fafc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cta-subtitle {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 30px;
	opacity: 0.9;
}

.cta-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 20px;
}

.cta-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
}

.cta-feature i {
	color: #fbbf24;
	font-size: 18px;
	width: 20px;
}

.cta-feature span {
	font-weight: 500;
	font-size: 15px;
}

.cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.btn-cta-primary { 
	background: #fff; 
	color: var(--rogs-accent); 
	border-color: #fff;
	padding: 16px 32px;
	font-weight: 700;
	font-size: 16px;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	width: 100%;
	max-width: 280px;
}

.btn-cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
	background: #f8fafc;
	color: var(--rogs-primary);
}

.btn-cta-secondary { 
	border-color: rgba(255, 255, 255, 0.8); 
	color: #fff;
	padding: 16px 32px;
	font-weight: 600;
	font-size: 16px;
	border-radius: 12px;
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	width: 100%;
	max-width: 280px;
}

.btn-cta-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: #fff;
	color: #fff;
	transform: translateY(-3px);
}

.cta-contact-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	margin-top: 10px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	opacity: 0.9;
}

.contact-item i {
	color: #fbbf24;
	width: 16px;
	text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
	.cta-features {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	
	.cta-title {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.contact-cta-section {
		padding: 80px 0 0 0;
	}
	
	.contact-cta-content {
		padding-bottom: 40px;
	}
	
	.cta-title {
		font-size: 1.75rem;
	}
	
	.cta-subtitle {
		font-size: 1rem;
	}
	
	.cta-buttons {
		margin-top: 30px;
	}
}

.section-title { font-weight: 800; color:#111827; }
.section-subtitle { color:#6b7280; }

.slider-scroll-indicator { position:absolute; left: 50%; transform: translateX(-50%); bottom: 24px; color:#fff; text-align:center; }
.navbar-toggler{ border-color: rgba(0,64,128,0.25); }
.navbar-toggler .navbar-toggler-icon{ filter: invert(22%) sepia(10%) saturate(3551%) hue-rotate(177deg) brightness(92%) contrast(102%); }
.scroll-mouse { width: 24px; height: 38px; border: 2px solid #fff; border-radius: 16px; margin: 0 auto 8px; position:relative; }
.scroll-wheel { width: 4px; height: 8px; background:#fff; border-radius:2px; position:absolute; left:50%; top:8px; transform:translateX(-50%); animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 0%{ opacity:0; transform: translate(-50%, 0);} 50%{ opacity:1; transform: translate(-50%, 8px);} 100%{ opacity:0; transform: translate(-50%, 14px);} }

/* Modern Slider Redesign */
.modern-slider { 
	overflow: hidden; 
	position: relative;
}

.modern-slider .carousel, 
.modern-slider .carousel-item { 
	height: 80vh; 
}

/* Enhanced Overlay */
.slider-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.slider-overlay-gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 64, 128, 0.8) 0%, rgba(0, 86, 179, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
	z-index: 2;
}

/* Content Wrapper */
.slider-content-wrapper {
	position: relative;
	z-index: 3;
	padding: 60px 120px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider-content {
	max-width: 600px;
}

/* Badge */
.slider-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(15px);
	border: 2px solid rgba(255, 255, 255, 0.4);
	padding: 10px 20px;
	border-radius: 50px;
	color: white;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 24px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Typography */
.slider-title {
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1.1;
	color: white;
	margin-bottom: 20px;
	background: linear-gradient(45deg, #ffffff, #f8fafc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.slider-subtitle {
	font-size: 1.25rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 20px;
	font-weight: 400;
}

.slider-description {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 30px;
}

/* Features */
.slider-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 40px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	font-weight: 500;
}

.feature-item i {
	color: #fbbf24;
	font-size: 16px;
	width: 20px;
	flex-shrink: 0;
}

/* Buttons */
.slider-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	position: relative;
	z-index: 10;
}

.btn-slider-primary {
	background: white;
	color: var(--rogs-primary);
	border: 2px solid white;
	padding: 16px 32px;
	font-weight: 700;
	font-size: 16px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
	text-decoration: none;
	position: relative;
	z-index: 10;
	cursor: pointer;
	pointer-events: auto;
}

.btn-slider-primary:hover {
	background: transparent;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-slider-secondary {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.8);
	padding: 16px 32px;
	font-weight: 600;
	font-size: 16px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
	text-decoration: none;
	backdrop-filter: blur(10px);
}

.btn-slider-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: white;
	transform: translateY(-3px);
	color: white;
}

/* Visual Section */
.slider-visual-section {
	position: relative;
	z-index: 3;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 40px;
}

/* Stats */
.slider-stats {
	display: flex;
	gap: 40px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 30px;
}

.stat-item {
	text-align: center;
	color: white;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 8px;
	background: linear-gradient(135deg, #004080, #0056b3);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	font-size: 14px;
	font-weight: 500;
	opacity: 0.9;
	white-space: nowrap;
}

/* Enhanced Controls */
.modern-slider .carousel-indicators { 
	position: absolute;
	left: 50%; 
	transform: translateX(-50%); 
	bottom: 30px; 
	margin: 0;
	justify-content: center;
	z-index: 4;
}

.modern-slider .carousel-indicators button { 
	width: 12px; 
	height: 12px; 
	border-radius: 50%; 
	border: 2px solid rgba(255,255,255,0.6); 
	background: transparent; 
	transition: all 0.3s ease;
}

.modern-slider .carousel-indicators .active { 
	background: #fbbf24; 
	border-color: #fbbf24;
	transform: scale(1.2);
}

.carousel-control-prev, 
.carousel-control-next { 
	width: 60px; 
	height: 60px; 
	border-radius: 50%; 
	background: rgba(255,255,255,0.15); 
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255,255,255,0.3); 
	top: 50%; 
	transform: translateY(-50%); 
	opacity: 0.8; 
	transition: all 0.3s ease;
	z-index: 4;
}

.carousel-control-prev:hover, 
.carousel-control-next:hover { 
	opacity: 1; 
	background: rgba(255,255,255,0.25); 
	transform: translateY(-50%) scale(1.1); 
}

.modern-slider video { 
	position: absolute; 
	inset: 0; 
	width: 100%; 
	height: 100%; 
	object-fit: cover; 
}

/* Responsive Design */
@media (max-width: 992px) {
	.slider-content-wrapper {
		padding: 50px 80px;
	}
	
	.slider-title {
		font-size: 2.8rem;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	}
	
	.slider-subtitle {
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	}
	
	.slider-features {
		background: rgba(0, 0, 0, 0.2);
		padding: 15px;
		border-radius: 12px;
		backdrop-filter: blur(8px);
	}
	
	.slider-stats {
		gap: 25px;
		padding: 25px;
		background: rgba(0, 0, 0, 0.3);
		backdrop-filter: blur(12px);
	}
	
	.stat-number {
		font-size: 2.2rem;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
	}
	
	.stat-label {
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
	}
}

@media (max-width: 768px) {
	.modern-slider .carousel,
	.modern-slider .carousel-item {
		height: 100vh;
	}
	
	.row.no-gutters {
		flex-direction: column;
	}
	
	.slider-content-wrapper {
		padding: 40px 40px 20px 40px;
		height: auto;
		min-height: 60vh;
	}
	
	.slider-overlay-gradient {
		background: linear-gradient(180deg, rgba(0, 64, 128, 0.85) 0%, rgba(0, 86, 179, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%);
	}
	
	.slider-title {
		font-size: 2.2rem;
		margin-bottom: 16px;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	}
	
	.slider-subtitle {
		font-size: 1.1rem;
		line-height: 1.5;
		margin-bottom: 20px;
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	}
	
	.slider-features {
		margin-bottom: 30px;
		background: rgba(0, 0, 0, 0.3);
		padding: 20px;
		border-radius: 15px;
		backdrop-filter: blur(10px);
	}
	
	.feature-item {
		padding: 8px 0;
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	}
	
	.feature-item i {
		color: #fbbf24;
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	}
	
	.slider-buttons {
		flex-direction: column;
		gap: 12px;
	}
	
	.btn-slider-primary,
	.btn-slider-secondary {
		justify-content: center;
		width: 100%;
		padding: 18px 24px;
		font-size: 16px;
		font-weight: 700;
		text-shadow: none;
	}
	
	.btn-slider-primary {
		background: white;
		color: var(--rogs-primary);
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	}
	
	.btn-slider-secondary {
		background: rgba(255, 255, 255, 0.15);
		backdrop-filter: blur(10px);
		border-color: rgba(255, 255, 255, 0.8);
	}
	
	.slider-visual-section {
		padding: 20px;
		height: auto;
		min-height: 40vh;
		align-items: center;
		justify-content: center;
	}
	
	.slider-visual-section {
		padding: 0 15px;
	}
	
	.slider-stats {
		flex-direction: row;
		gap: 8px;
		padding: 12px;
		background: rgba(0, 0, 0, 0.4);
		backdrop-filter: blur(15px);
		margin: 0 auto;
		max-width: 100%;
		width: 100%;
		justify-content: space-between;
		box-sizing: border-box;
	}
	
	.stat-item {
		flex: 1 1 0;
		text-align: center;
		min-width: 0;
		padding: 0 5px;
	}
	
	.stat-number {
		font-size: 1.4rem;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
		line-height: 1.2;
	}
	
	.stat-label {
		font-size: 9px;
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
		white-space: normal;
		line-height: 1.2;
		overflow-wrap: break-word;
		word-break: break-word;
	}
}
/* Ensure content above media */
.modern-slider .carousel-item > .container { position: absolute; inset:0; z-index: 2; }

/* Minimal Navbar improvements */
.modern-navbar { background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.06); }
.modern-navbar { position: sticky; top: 0; z-index: 1040; transition: all .3s ease; }
.modern-navbar.navbar-scrolled { background: rgba(255,255,255,0.96); box-shadow: 0 6px 24px rgba(0,0,0,0.08); padding-top: 6px; padding-bottom: 6px; }
.navbar-brand span { font-weight: 800; color: #0f172a; letter-spacing: .2px; }
.navbar-nav .nav-link { font-weight:600; color:#1f2937; }
.navbar-nav .nav-link:hover { color: var(--rogs-accent); }
@media (min-width: 992px){
	.navbar-nav .nav-link { position: relative; }
	.navbar-nav .nav-link::after { content:''; position:absolute; left:10px; right:10px; bottom:6px; height:2px; background: var(--rogs-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
	.navbar-nav .nav-link:hover::after { transform: scaleX(1); }
}
@media (min-width: 992px){
	.navbar .dropdown:hover>.dropdown-menu{ display:block; margin-top:0; }
}

/* Footer minimal */
.modern-footer { background: #0f172a; color:#94a3b8; }
.modern-footer a { color:#cbd5e1; text-decoration:none; }
.modern-footer a:hover { color:#fff; }

/* Back to top button */
#backToTop { position: fixed; right: 16px; bottom: 16px; width: 44px; height: 44px; border-radius: 50%; background: var(--rogs-accent); color:#fff; border:none; display:none; align-items:center; justify-content:center; box-shadow: 0 10px 24px rgba(0,86,179,0.35); z-index: 1040; }
#backToTop:hover{ transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,86,179,0.45); }

.slider-bg-img{ position:absolute; inset:0; width:100%; height:80vh; object-fit:cover; object-position:center; z-index:0; }

/* Modern Why Choose Us Section */
.modern-why-choose-section {
	padding: 120px 0;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
	position: relative;
	overflow: hidden;
}

.modern-why-choose-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="whyChoosePattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23004080" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23whyChoosePattern)"/></svg>');
	pointer-events: none;
	z-index: 0;
}

.modern-why-choose-section .container {
	position: relative;
	z-index: 1;
}

/* Features Grid */
.modern-features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 80px;
	margin-bottom: 80px;
}

.feature-card {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 24px;
	padding: 40px 32px;
	text-align: center;
	position: relative;
	box-shadow: 0 20px 40px rgba(0, 64, 128, 0.08);
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(0, 64, 128, 0.05);
	backdrop-filter: blur(20px);
}

.feature-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 32px 64px rgba(0, 64, 128, 0.15);
	border-color: rgba(0, 64, 128, 0.1);
}

.feature-icon-wrapper {
	position: relative;
	margin-bottom: 24px;
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--rogs-primary), var(--rogs-accent));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	position: relative;
	box-shadow: 0 12px 30px rgba(0, 64, 128, 0.25);
	transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 16px 40px rgba(0, 64, 128, 0.35);
}

.feature-icon i {
	font-size: 32px;
	color: white;
	transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
	transform: scale(1.1);
}

.feature-title {
	font-size: 20px;
	font-weight: 700;
	color: #1a202c;
	margin-bottom: 16px;
	line-height: 1.3;
}

.feature-description {
	font-size: 15px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* Statistics Section */
.modern-stats-section {
	margin-top: 80px;
	margin-bottom: 80px;
	text-align: center;
	display: flex;
	justify-content: center;
	width: 100%;
}

.stats-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	max-width: 900px;
	width: 100%;
	margin: 0 auto !important;
	padding: 0 20px;
	justify-content: center;
}

.stat-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 48px 40px;
	text-align: center;
	position: relative;
	box-shadow: 0 16px 32px rgba(0, 64, 128, 0.08);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(0, 64, 128, 0.06);
	backdrop-filter: blur(15px);
}

.stat-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 24px 48px rgba(0, 64, 128, 0.12);
}

.stat-icon {
	width: 80px;
	height: 80px;
	background: rgba(0, 64, 128, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
	background: var(--rogs-primary);
	transform: scale(1.1);
}

.stat-icon i {
	font-size: 32px;
	color: var(--rogs-primary);
	transition: color 0.3s ease;
}

.stat-card:hover .stat-icon i {
	color: white;
}

.stat-number {
	font-size: 48px;
	font-weight: 800;
	color: var(--rogs-primary);
	margin-bottom: 12px;
	line-height: 1;
}

.stat-label {
	font-size: 16px;
	font-weight: 600;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* CTA Section */
.why-choose-cta {
	background: linear-gradient(135deg, var(--rogs-primary), var(--rogs-accent));
	border-radius: 24px;
	padding: 60px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-top: 80px;
}

.why-choose-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaPattern)"/></svg>');
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta-title {
	font-size: 28px;
	font-weight: 700;
	color: white;
	margin-bottom: 16px;
	line-height: 1.3;
}

.cta-description {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 32px;
	line-height: 1.6;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-buttons .btn {
	padding: 16px 32px;
	font-weight: 700;
	border-radius: 50px;
	font-size: 16px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cta-buttons .btn-primary {
	background: white;
	color: var(--rogs-primary);
	border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
	background: transparent;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-outline-primary {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline-primary:hover {
	background: white;
	color: var(--rogs-primary);
	border-color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
	.modern-features-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-top: 60px;
		margin-bottom: 60px;
	}
	
	.stats-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	
	.modern-why-choose-section {
		padding: 80px 0;
	}
}

@media (max-width: 768px) {
	.stats-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.feature-card {
		padding: 32px 24px;
	}
	
	.feature-icon {
		width: 70px;
		height: 70px;
	}
	
	.feature-icon i {
		font-size: 28px;
	}
	
	.feature-title {
		font-size: 18px;
	}
	
	.cta-title {
		font-size: 24px;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.cta-buttons .btn {
		padding: 14px 28px;
		font-size: 15px;
	}
}

@media (max-width: 576px) {
	.stats-container {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.feature-card {
		padding: 28px 20px;
	}
	
	.stat-card {
		padding: 24px 16px;
	}
	
	.stat-number {
		font-size: 28px;
	}
	
	.why-choose-cta {
		padding: 40px 24px;
		margin-top: 60px;
	}
	
	.cta-title {
		font-size: 20px;
	}
	
	.cta-description {
		font-size: 14px;
	}
	
	.modern-why-choose-section {
		padding: 60px 0;
	}
}

/* Modern Testimonials Section */
.modern-testimonials-section {
	padding: 120px 0;
	background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f8fafc 100%);
	position: relative;
	overflow: hidden;
}

.modern-testimonials-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonialPattern" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M12.5 0L12.5 25M0 12.5L25 12.5" stroke="%23004080" stroke-width="0.3" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonialPattern)"/></svg>');
	pointer-events: none;
	z-index: 0;
}

.modern-testimonials-section .container {
	position: relative;
	z-index: 1;
}

/* Testimonials Grid */
.modern-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 80px;
	margin-bottom: 80px;
}

.modern-testimonial-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 24px;
	padding: 40px 32px;
	position: relative;
	box-shadow: 0 20px 40px rgba(0, 64, 128, 0.08);
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(0, 64, 128, 0.05);
	backdrop-filter: blur(20px);
	overflow: hidden;
}

.modern-testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--rogs-primary), var(--rogs-accent));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.modern-testimonial-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 32px 64px rgba(0, 64, 128, 0.15);
}

.modern-testimonial-card:hover::before {
	transform: scaleX(1);
}

.testimonial-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.quote-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--rogs-primary), var(--rogs-accent));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
}

.testimonial-rating {
	display: flex;
	gap: 4px;
}

.testimonial-rating .fa-star {
	color: #e5e7eb;
	font-size: 16px;
	transition: color 0.2s ease;
}

.testimonial-rating .fa-star.filled {
	color: #fbbf24;
}

.testimonial-text {
	font-size: 16px;
	line-height: 1.6;
	color: #374151;
	margin-bottom: 24px;
	font-style: italic;
}

.testimonial-footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.author-info {
	display: flex;
	align-items: center;
	gap: 16px;
}

.author-avatar img,
.avatar-placeholder {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.avatar-placeholder {
	background: linear-gradient(135deg, var(--rogs-primary), var(--rogs-accent));
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 18px;
}

.author-name {
	font-size: 16px;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 4px;
}

.author-position {
	font-size: 14px;
	color: var(--rogs-primary);
	font-weight: 600;
	display: block;
}

.author-company {
	font-size: 13px;
	color: #6b7280;
	display: block;
}

.testimonial-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(34, 197, 94, 0.1);
	color: #16a34a;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

/* Testimonials Carousel */
.testimonials-carousel-container {
	margin-top: 60px;
}

.testimonials-carousel-track {
	display: flex;
	gap: 20px;
	animation: scroll-testimonials 30s linear infinite;
}

.mini-testimonial-card {
	background: white;
	border-radius: 16px;
	padding: 20px;
	min-width: 300px;
	box-shadow: 0 8px 25px rgba(0, 64, 128, 0.08);
	border: 1px solid rgba(0, 64, 128, 0.05);
}

.mini-rating {
	display: flex;
	gap: 2px;
	margin-bottom: 12px;
}

.mini-rating .fa-star {
	color: #e5e7eb;
	font-size: 14px;
}

.mini-rating .fa-star.filled {
	color: #fbbf24;
}

.mini-testimonial-text {
	font-size: 14px;
	line-height: 1.5;
	color: #374151;
	margin-bottom: 12px;
	font-style: italic;
}

.mini-author {
	font-size: 13px;
}

.mini-author strong {
	color: #1f2937;
	display: block;
}

.mini-author small {
	color: #6b7280;
}

/* Testimonials CTA */
.testimonials-cta {
	background: linear-gradient(135deg, #004080 0%, #0056b3 100%);
	border-radius: 20px;
	padding: 40px;
	text-align: center;
	margin-top: 80px;
	color: white;
	position: relative;
	overflow: hidden;
}

.testimonials-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') repeat;
	opacity: 0.3;
}

.testimonials-cta-content {
	position: relative;
	z-index: 2;
}

.testimonials-cta-content h4 {
	font-size: 24px;
	font-weight: 700;
	color: white;
	margin-bottom: 12px;
}

.testimonials-cta-content p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 24px;
}

.testimonials-cta .btn {
	font-weight: 600;
	border-width: 2px;
	border-color: white;
	color: white;
	background: transparent;
	position: relative;
	z-index: 3;
}

.testimonials-cta .btn:hover {
	background: white;
	border-color: white;
	color: var(--rogs-primary);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Modern Brands Section */
.modern-brands-section {
	padding: 120px 0;
	background: linear-gradient(135deg, #fafbfc 0%, #ffffff 50%, #f8fafc 100%);
	position: relative;
	overflow: hidden;
}

.modern-brands-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="brandsPattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23004080" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23brandsPattern)"/></svg>');
	pointer-events: none;
	z-index: 0;
}

.modern-brands-section .container {
	position: relative;
	z-index: 1;
}

/* Featured Partners Grid */
.featured-partners-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 80px;
	margin-bottom: 80px;
}

.featured-partner-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: white;
	box-shadow: 0 15px 35px rgba(0, 64, 128, 0.08);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(0, 64, 128, 0.05);
}

.featured-partner-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0, 64, 128, 0.15);
}

.partner-logo-container {
	padding: 40px 30px;
	background: #fafbfc;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 150px;
}

.partner-logo {
	max-width: 100%;
	max-height: 80px;
	object-fit: contain;
	filter: grayscale(100%);
	transition: all 0.3s ease;
}

.featured-partner-card:hover .partner-logo {
	filter: grayscale(0%);
	transform: scale(1.05);
}

.partner-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, var(--rogs-primary), var(--rogs-accent));
	color: white;
	padding: 20px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.featured-partner-card:hover .partner-overlay {
	transform: translateY(0);
}

.partner-name {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

.partner-description {
	font-size: 14px;
	opacity: 0.9;
	margin-bottom: 12px;
}

.partnership-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, 0.2);
	padding: 6px 12px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 600;
}

/* All Partners Carousel */
.all-partners-carousel {
	margin-top: 80px;
}

.carousel-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.carousel-title {
	font-size: 24px;
	font-weight: 700;
	color: #1f2937;
}

.carousel-controls {
	display: flex;
	gap: 10px;
}

.carousel-control {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(0, 64, 128, 0.2);
	background: white;
	color: var(--rogs-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	cursor: pointer;
}

.carousel-control:hover {
	background: var(--rogs-primary);
	color: white;
	transform: scale(1.1);
}

.partners-carousel-container {
	overflow: hidden;
	border-radius: 16px;
	background: white;
	box-shadow: 0 10px 30px rgba(0, 64, 128, 0.08);
	padding: 30px 0;
}

.partners-carousel-track {
	display: flex;
	gap: 40px;
	animation: scroll-partners 25s linear infinite;
}

.partner-carousel-item {
	min-width: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.partner-logo-wrapper {
	position: relative;
	padding: 20px;
	text-align: center;
}

.carousel-partner-logo {
	max-width: 150px;
	max-height: 75px;
	object-fit: contain;
	filter: grayscale(100%);
	transition: all 0.3s ease;
}

.partner-logo-wrapper:hover .carousel-partner-logo {
	filter: grayscale(0%);
	transform: scale(1.1);
}

.logo-hover-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--rogs-primary);
	color: white;
	padding: 8px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s ease;
}

.partner-logo-wrapper:hover .logo-hover-overlay {
	opacity: 1;
	transform: translateY(0);
}

/* Partnership CTA */
.partnership-cta {
	background: linear-gradient(135deg, var(--rogs-primary), var(--rogs-accent));
	border-radius: 24px;
	padding: 50px 40px;
	text-align: center;
	margin-top: 80px;
	position: relative;
	overflow: hidden;
}

.partnership-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="partnershipPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23partnershipPattern)"/></svg>');
	pointer-events: none;
}

.partnership-cta-content {
	position: relative;
	z-index: 1;
}

.partnership-cta .cta-icon {
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	font-size: 32px;
	color: white;
}

.partnership-cta .cta-title {
	font-size: 28px;
	font-weight: 700;
	color: white;
	margin-bottom: 16px;
}

.partnership-cta .cta-description {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 32px;
}

.partnership-cta .btn {
	background: white;
	color: var(--rogs-primary);
	border: none;
	padding: 16px 32px;
	font-weight: 700;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.partnership-cta .btn:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes scroll-testimonials {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes scroll-partners {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Responsive Design */
@media (max-width: 992px) {
	.modern-testimonials-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-top: 60px;
		margin-bottom: 60px;
	}
	
	.featured-partners-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.modern-testimonials-section,
	.modern-brands-section {
		padding: 80px 0;
	}
}

@media (max-width: 768px) {
	.modern-testimonial-card {
		padding: 32px 24px;
	}
	
	.featured-partners-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.carousel-header {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
	
	.testimonials-cta,
	.partnership-cta {
		padding: 40px 24px;
	}
}

@media (max-width: 576px) {
	.modern-testimonials-section,
	.modern-brands-section {
		padding: 60px 0;
	}
	
	.testimonial-header {
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
	}
	
	.testimonial-footer {
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
	}
	
	.partnership-cta .cta-title {
		font-size: 22px;
	}
}

/* Modern Featured Products Section */
.modern-featured-products-section {
	padding: 120px 0;
	background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #f3f4f6 100%);
	position: relative;
	overflow: hidden;
}

.modern-featured-products-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="featuredProductsPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23004080" opacity="0.03"/><circle cx="5" cy="5" r="0.5" fill="%23004080" opacity="0.02"/><circle cx="25" cy="25" r="0.5" fill="%23004080" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23featuredProductsPattern)"/></svg>');
	pointer-events: none;
	z-index: 0;
}

.modern-featured-products-section .container {
	position: relative;
	z-index: 1;
}

/* Products Grid */
.modern-products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-top: 80px;
	margin-bottom: 80px;
}

.modern-product-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 20px 40px rgba(0, 64, 128, 0.08);
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(0, 64, 128, 0.06);
}

.modern-product-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 30px 60px rgba(0, 64, 128, 0.15);
	border-color: rgba(0, 64, 128, 0.1);
}

.product-card-inner {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
}

/* Featured Badge */
.product-featured-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	color: white;
	padding: 8px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 6px;
	z-index: 3;
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.product-featured-badge i {
	font-size: 10px;
}

/* Product Image */
.product-image-wrapper {
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: #f8f9fa;
}

.product-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.modern-product-card:hover .product-card-image {
	transform: scale(1.1);
}

.product-image-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modern-product-card:hover .product-image-overlay {
	opacity: 1;
}

.product-overlay-actions {
	display: flex;
	gap: 12px;
}

.product-overlay-btn {
	width: 48px;
	height: 48px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--rogs-primary);
	text-decoration: none;
	transition: all 0.3s ease;
	transform: translateY(20px);
}

.modern-product-card:hover .product-overlay-btn {
	transform: translateY(0);
}

.product-overlay-btn:nth-child(1) {
	transition-delay: 0.1s;
}

.product-overlay-btn:nth-child(2) {
	transition-delay: 0.2s;
}

.product-overlay-btn:nth-child(3) {
	transition-delay: 0.3s;
}

.product-overlay-btn:hover {
	background: var(--rogs-primary);
	color: white;
	transform: translateY(0) scale(1.1);
}

.product-overlay-btn.btn-view:hover {
	background: #3b82f6;
}

.product-overlay-btn.btn-cart:hover {
	background: #16a34a;
}

.product-overlay-btn.btn-quote:hover {
	background: #f59e0b;
}

/* Stock Badge */
.product-stock-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 6px 10px;
	border-radius: 15px;
	font-size: 11px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 4px;
	z-index: 3;
}

.product-stock-badge.in-stock {
	background: rgba(34, 197, 94, 0.1);
	color: #16a34a;
	border: 1px solid rgba(34, 197, 94, 0.2);
}

.product-stock-badge.out-of-stock {
	background: rgba(249, 115, 22, 0.1);
	color: #ea580c;
	border: 1px solid rgba(249, 115, 22, 0.2);
}

/* Product Content */
.product-card-content {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.product-category-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(0, 64, 128, 0.1);
	color: var(--rogs-primary);
	padding: 6px 12px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 600;
	width: fit-content;
	margin-bottom: 12px;
}

.product-card-title {
	font-size: 18px;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 12px;
	line-height: 1.3;
}

.product-card-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.product-card-title a:hover {
	color: var(--rogs-primary);
}

.product-card-description {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.5;
	margin-bottom: 16px;
	flex: 1;
}

/* Product Features */
.product-features {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.product-feature {
	display: flex;
	align-items: center;
	gap: 6px;
	background: #f8f9fa;
	padding: 6px 10px;
	border-radius: 12px;
	font-size: 12px;
	color: #374151;
}

.product-feature i {
	color: var(--rogs-primary);
	font-size: 10px;
}

/* Price Section */
.product-price-section {
	margin-bottom: 20px;
}

.product-price {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.price-old {
	color: #9ca3af;
	text-decoration: line-through;
	font-size: 14px;
}

.price-current {
	color: var(--rogs-primary);
	font-size: 20px;
	font-weight: 800;
}

.price-discount {
	background: #dc2626;
	color: white;
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 700;
}

.price-on-request {
	color: #6b7280;
	font-size: 16px;
	font-weight: 600;
	font-style: italic;
}

/* Action Buttons */
.product-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 15px;
	width: 100%;
}

.btn-product-action {
	padding: 16px 24px;
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	border-radius: 12px;
	font-size: 14px;
	transition: all 0.3s ease;
	text-align: center;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	min-height: 50px;
	width: 100%;
}

/* Sepete Ekle butonu */
.btn-add-to-cart {
	background: linear-gradient(135deg, #004080, #0056b3);
	color: white;
	border-color: #004080;
	padding: 20px 32px;
	font-size: 15px;
	font-weight: 700;
	min-height: 60px;
	width: 100%;
	box-shadow: 0 4px 15px rgba(0, 64, 128, 0.2);
}

.btn-add-to-cart:hover {
	background: linear-gradient(135deg, #003366, #004080);
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 64, 128, 0.5);
	color: white;
	text-decoration: none;
}

/* Fiyat Al butonu */
.btn-get-quote {
	background: transparent;
	color: #004080;
	border-color: #004080;
	padding: 20px 32px;
	font-size: 15px;
	font-weight: 700;
	min-height: 60px;
	width: 100%;
	box-shadow: 0 4px 15px rgba(0, 64, 128, 0.1);
}

.btn-get-quote:hover {
	background: #004080;
	color: white;
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 64, 128, 0.4);
	text-decoration: none;
}

.btn-product-action:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 64, 128, 0.2);
}

.btn-product-action:active {
	transform: translateY(-1px);
}

/* Featured Products CTA */
.featured-products-cta {
	background: linear-gradient(135deg, #004080 0%, #0056b3 100%);
	border-radius: 24px;
	padding: 50px 40px;
	text-align: center;
	margin-top: 80px;
	position: relative;
	overflow: hidden;
	color: white;
}

.featured-products-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50"><defs><pattern id="ctaPattern" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23ctaPattern)"/></svg>') repeat;
	opacity: 0.4;
	pointer-events: none;
}

.products-cta-content {
	position: relative;
	z-index: 2;
}

.products-cta-content .cta-title {
	font-size: 28px;
	font-weight: 700;
	color: white;
	margin-bottom: 16px;
}

.products-cta-content .cta-description {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 32px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.products-cta-content .btn {
	padding: 16px 32px;
	font-weight: 700;
	border-radius: 50px;
	font-size: 16px;
	transition: all 0.3s ease;
	background: white;
	color: var(--rogs-primary);
	border-color: white;
	position: relative;
	z-index: 3;
}

.products-cta-content .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 0.95);
	color: var(--rogs-primary);
}

/* Responsive Design */
@media (min-width: 1400px) {
	.modern-products-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}
}

@media (max-width: 1200px) {
	.modern-products-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

@media (max-width: 992px) {
	.modern-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		margin-top: 60px;
		margin-bottom: 60px;
	}
	
	.modern-featured-products-section {
		padding: 80px 0;
	}
	
	.product-card-content {
		padding: 20px;
	}
}

@media (max-width: 768px) {
	.modern-products-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.product-card-title {
		font-size: 16px;
	}
	
	.price-current {
		font-size: 18px;
	}
	
	.featured-products-cta {
		padding: 40px 24px;
	}
	
	.products-cta-content .cta-title {
		font-size: 24px;
	}
	
	/* Mobile'da overlay butonları her zaman görünür yap */
	.product-image-overlay {
		opacity: 1;
		background: rgba(0, 0, 0, 0.5);
	}
	
	.product-overlay-btn {
		transform: translateY(0);
		width: 40px;
		height: 40px;
	}
	
	.btn-product-action {
		padding: 18px 24px;
		font-size: 14px;
		min-height: 56px;
	}
}

@media (max-width: 576px) {
	.modern-featured-products-section {
		padding: 60px 0;
	}
	
	.product-card-content {
		padding: 16px;
	}
	
	.product-features {
		gap: 8px;
	}
	
	.product-feature {
		font-size: 11px;
		padding: 4px 8px;
	}
	
	.btn-product-action {
		padding: 10px 14px;
		font-size: 13px;
	}
	
	.products-cta-content .cta-title {
		font-size: 20px;
	}
	
	.products-cta-content .cta-description {
		font-size: 14px;
	}
}

/* Modern About Section */
.modern-about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.modern-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23004080" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
    z-index: 0;
}

.modern-about-section .container {
    position: relative;
    z-index: 1;
}

.about-content {
    padding-right: 3rem;
}

.about-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 64, 128, 0.2);
}

.about-content .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--rogs-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content .section-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 3rem;
}

.about-features {
    margin-bottom: 3rem;
}

.about-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 64, 128, 0.08);
    border: 1px solid rgba(0, 64, 128, 0.05);
    transition: all 0.3s ease;
}

.about-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 64, 128, 0.15);
}

.about-features .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-features .feature-text h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--rogs-primary);
    margin-bottom: 0.5rem;
}

.about-features .feature-text p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-actions .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-actions .btn:hover {
    transform: translateY(-2px);
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 64, 128, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-stats-overlay {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 64, 128, 0.15);
}

.about-stats-overlay .stat-card {
    text-align: center;
    padding: 0 1rem;
}

.about-stats-overlay .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rogs-primary);
    line-height: 1;
}

.about-stats-overlay .stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Blog Section */
.modern-blog-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.modern-blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="blog-grid" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23004080" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23blog-grid)"/></svg>');
    pointer-events: none;
    z-index: 0;
}

.modern-blog-section .container {
    position: relative;
    z-index: 1;
}

.modern-blog-section .section-header {
    margin-bottom: 4rem;
}

.modern-blog-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 64, 128, 0.2);
}

.modern-blog-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--rogs-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.modern-blog-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.modern-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.modern-blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 64, 128, 0.08);
    border: 1px solid rgba(0, 64, 128, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: translateY(0);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.modern-blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 64, 128, 0.02) 0%, rgba(0, 86, 179, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.modern-blog-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 100px rgba(0, 64, 128, 0.25);
    border-color: rgba(0, 64, 128, 0.15);
}

.modern-blog-card:hover::before {
    opacity: 1;
}

.blog-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px 20px 0 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-blog-card:hover .blog-card-image img {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.05);
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 64, 128, 0.85) 0%, rgba(0, 86, 179, 0.7) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.modern-blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem;
    border-radius: 12px;
    color: var(--rogs-primary);
}

.blog-card-date .date-icon {
    font-size: 1.2rem;
}

.blog-card-date .date-content {
    text-align: center;
}

.blog-card-date .date-day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.blog-card-date .date-month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.blog-card-category {
    background: rgba(255, 255, 255, 0.9);
    color: var(--rogs-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
    font-size: 0.9rem;
    color: #666;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 64, 128, 0.08);
    background: linear-gradient(90deg, transparent 0%, rgba(0, 64, 128, 0.02) 50%, transparent 100%);
    border-radius: 8px;
    margin: 0 -0.5rem 1.8rem -0.5rem;
    padding: 1rem 0.5rem;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-meta i {
    color: var(--rogs-primary);
    font-size: 1rem;
    width: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.blog-card-meta span:hover i {
    transform: scale(1.2);
    color: var(--rogs-accent);
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    color: var(--rogs-primary);
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 0.5rem;
}

.blog-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.blog-card-title:hover::after {
    width: 80px;
}

.blog-card-title a {
    color: var(--rogs-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--rogs-accent);
    text-decoration: none;
    transform: translateX(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0, 64, 128, 0.1);
}

.blog-card-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    background: linear-gradient(135deg, rgba(0, 64, 128, 0.02) 0%, transparent 100%);
    padding: 1rem;
    border-radius: 12px;
    border-left: 3px solid var(--rogs-primary);
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 64, 128, 0.08);
    background: linear-gradient(90deg, transparent 0%, rgba(0, 64, 128, 0.02) 50%, transparent 100%);
    border-radius: 8px;
    margin: 0 -0.5rem -0.5rem -0.5rem;
    padding: 1.5rem 0.5rem 0.5rem 0.5rem;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rogs-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 64, 128, 0.05) 0%, rgba(0, 86, 179, 0.03) 100%);
    border: 1px solid rgba(0, 64, 128, 0.1);
}

.btn-read-more:hover {
    color: var(--rogs-accent);
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(0, 64, 128, 0.1) 0%, rgba(0, 86, 179, 0.08) 100%);
    border-color: rgba(0, 64, 128, 0.2);
    box-shadow: 0 4px 12px rgba(0, 64, 128, 0.15);
}

.blog-card-stats {
    display: flex;
    gap: 1rem;
}

.blog-card-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    background: rgba(0, 64, 128, 0.03);
    border: 1px solid rgba(0, 64, 128, 0.05);
    transition: all 0.3s ease;
}

.blog-card-stats .stat-item:hover {
    background: rgba(0, 64, 128, 0.08);
    border-color: rgba(0, 64, 128, 0.1);
    transform: translateY(-2px);
}

.blog-card-stats .stat-item i {
    color: var(--rogs-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-card-stats .stat-item:hover i {
    color: var(--rogs-accent);
    transform: scale(1.1);
}

.blog-section-footer {
    margin-top: 4rem;
}

.blog-cta {
    background: linear-gradient(135deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
    color: white;
    padding: 3.5rem;
    border-radius: 28px;
    box-shadow: 0 15px 50px rgba(0, 64, 128, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.blog-cta > * {
    position: relative;
    z-index: 2;
}

.blog-cta > * {
    position: relative;
    z-index: 2;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.blog-cta h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-cta .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    background: white;
    color: var(--rogs-primary);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.blog-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: var(--rogs-primary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .modern-about-section {
        padding: 80px 0;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .about-content .section-title {
        font-size: 2.5rem;
    }
    
    .about-stats-overlay {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .modern-blog-section {
        padding: 80px 0;
    }
    
    .modern-blog-section .section-title {
        font-size: 2.5rem;
    }
    
    .modern-blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-content .section-title {
        font-size: 2rem;
    }
    
    .about-features .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .about-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-stats-overlay {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modern-blog-section .section-title {
        font-size: 2rem;
    }
    
    .modern-blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-card-content {
        padding: 1.5rem;
    }
    
    .blog-card-image {
        height: 220px;
    }
    
    .blog-cta {
        padding: 2rem;
    }
    
    .blog-cta h4 {
        font-size: 1.5rem;
    }
    
    .blog-card-title {
        font-size: 1.3rem;
    }
    
    .blog-card-meta {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }
    
    .blog-card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .btn-read-more {
        justify-content: center;
        width: 100%;
    }
    
    .blog-card-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modern-about-section {
        padding: 60px 0;
    }
    
    .about-content .section-title {
        font-size: 1.8rem;
    }
    
    .about-content .section-description {
        font-size: 1rem;
    }
    
    .about-features .feature-item {
        padding: 1rem;
    }
    
    .about-features .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .modern-blog-section {
        padding: 60px 0;
    }
    
    .modern-blog-section .section-title {
        font-size: 1.8rem;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-card-content {
        padding: 1.25rem;
    }
    
    .blog-cta {
        padding: 1.5rem;
    }
}

/* Extra Small Devices - Mobile Stats Fix */
@media (max-width: 576px) {
	.slider-visual-section {
		display: flex !important;
		justify-content: center !important;
		padding: 0 10px !important;
	}
	
	.slider-stats {
		flex-direction: column !important;
		gap: 10px !important;
		padding: 15px !important;
		max-width: 100% !important;
		width: 100% !important;
		margin: 0 auto !important;
		box-sizing: border-box !important;
	}
	
	.slider-stats .stat-item {
		padding: 8px 5px !important;
		min-width: 0 !important;
		width: 100% !important;
	}
	
	.slider-stats .stat-number {
		font-size: 1.5rem !important;
		line-height: 1.2 !important;
	}
	
	.slider-stats .stat-label {
		font-size: 11px !important;
		white-space: normal !important;
		line-height: 1.3 !important;
	}
}

@media (max-width: 480px) {
	.slider-stats {
		padding: 12px !important;
		gap: 8px !important;
	}
	
	.slider-stats .stat-number {
		font-size: 1.3rem !important;
	}
	
	.slider-stats .stat-label {
		font-size: 10px !important;
	}
}



 
 