/**
 * Sidebar Theme - HAK Kimya
 */

/* ==================== CSS Değişkenleri ==================== */
:root {
    --primary-color: #141d45;
    --primary-light: #2c5282;
    --primary-dark: #152a45;
    --secondary-color: #007aff;
    --accent-color: #f59e0b;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a2e;
    --border-color: #e5e7eb;
    --menu-hover-color: #007aff;

    --sidebar-width: 400px;
    --wave-top-width: 200px;
    --wave-middle-width: 90px;
    --wave-bottom-width: 200px;
    --logo-size: 130px;
    --logo-top: 50px;
    --logo-left: 130px;
    --menu-icon-top: 175px;
    --menu-icon-left: 130px;

    --transition-speed: 0.3s;
    --font-family: "Teko", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ==================== Base Styles ==================== */
body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== Sol Dalga Alanı ==================== */
.sidebar-wave-container {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--wave-top-width);
    height: 100vh;
    z-index: 1000;
    pointer-events: none;
}

.wave-svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--wave-top-width);
}

.wave-svg path {
    fill: var(--primary-color);
}

.wave-stroke {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--wave-top-width);
    pointer-events: none;
}

/* Logo */
.wave-logo {
    position: absolute;
    top: var(--logo-top);
    left: var(--logo-left);
    width: var(--logo-size);
    height: var(--logo-size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    z-index: 1010;
    overflow: hidden;
    padding: 10px;
}

.wave-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hamburger Menü Butonu */
.wave-menu-btn {
    position: absolute;
    top: var(--menu-icon-top);
    left: var(--menu-icon-left);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    pointer-events: auto;
    z-index: 1010;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-speed) ease;
}

.wave-menu-btn:hover {
    transform: scale(1.1);
}

.wave-menu-btn span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition-speed) ease;
}

/* ==================== Sidebar Menü ==================== */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: all var(--transition-speed) ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
	position: fixed;
	top: 0;
	left: 0px;
	width: var(--sidebar-width);
	height: 100vh;
	background: var(--white);
	z-index: 999;
	transform: translateX(-100%);
	transition: transform var(--transition-speed) ease;
	box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	padding-top: 150px;
	padding-left: calc(var(--wave-middle-width) + 20px);
}
.sidebar-menu.active {
	transform: translateX(var(--wave-middle-width));
}

.sidebar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px;
    overflow-y: auto;
}

.sidebar-nav {
    flex: 1;
}

.sidebar-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu-item {
    margin-bottom: 5px;
}

.sidebar-menu-item>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: all var(--transition-speed) ease;
}

.sidebar-menu-item>a:hover,
.sidebar-menu-item.active>a {
    background: var(--light-bg);
    color: var(--menu-hover-color);
}

.sidebar-menu-item .submenu-arrow {
    font-size: 12px;
    transition: transform var(--transition-speed) ease;
}

.sidebar-menu-item.submenu-open .submenu-arrow {
    transform: rotate(90deg);
}

.sidebar-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease;
    padding-left: 15px;
    list-style: none;
    margin: 0;
}

.sidebar-submenu li {
    list-style: none;
}

.sidebar-menu-item.submenu-open .sidebar-submenu {
    max-height: 300px;
}

.sidebar-submenu li a {
    display: block;
    padding: 8px 16px;
    color: var(--text-light);
    font-size: 14px;
}

.sidebar-submenu li a:hover {
    color: var(--menu-hover-color);
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.sidebar-social {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.sidebar-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 14px;
    transition: all var(--transition-speed) ease;
}

.sidebar-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.sidebar-copyright {
    font-size: 12px;
    color: var(--text-muted);
}

/* Body States */
body.sidebar-open {
    overflow: hidden;
}

/* ==================== Main Content ==================== */
.main-content {
    min-height: 100vh;
}

/* ==================== Section Genel ==================== */
.section-padding {
    padding: 80px 20px;
    padding-left: calc(var(--wave-top-width) + 30px);
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* ==================== Hero Section ==================== */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Swiper */
.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-swiper .swiper-slide picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-swiper .swiper-slide .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-swiper .swiper-slide .hero-overlay {
    z-index: 1;
}

.hero-swiper .swiper-slide .hero-content {
    z-index: 2;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 20px;
    max-width: 800px;
    margin-left: 100px;
}

.hero-section .hero-title {
    font-family: "Truculenta", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px #002956;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-section .hero-subtitle {
    font-size: 1.5rem;
    font-family: "Truculenta", sans-serif;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
     text-shadow: 1px 1px 3px #002956;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-swiper .swiper-slide-active .hero-subtitle {
    opacity: 0.95;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all var(--transition-speed) ease;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-swiper .swiper-slide-active .btn-hero {
    opacity: 1;
}

.btn-hero:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    padding-left: calc(var(--wave-top-width) + 20px);
    pointer-events: none;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
    /* background: var(--secondary-color); */
    /* border-color: var(--secondary-color); */
    /* color: var(--primary-dark); */
    border-color: var(--menu-hover-color);
    color: var(--menu-hover-color);
    transform: scale(1.1);
}

/* Hero Slider Pagination */
.hero-pagination {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 1;
    transition: all var(--transition-speed) ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    width: 35px;
    border-radius: 6px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 10;
}

.hero-scroll span {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==================== About Section ==================== */
.about-section .about-image {
    position: relative;
}

.about-section .about-image img {
    box-shadow: var(--box-shadow);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.experience-badge .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 20px;
}

/* ==================== Product Slider Navigation ==================== */
.slider-area.featuredProductsSlider {
    position: relative;
}

/* Ürün kartlarındaki alt ok butonunu gizle */
.featuredProductsSlider .service-card .link-btn {
    display: none;
}

/* Products Slider Wrapper */
.products-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.products-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 16px;
}

.products-slider-nav:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.products-slider-prev {
    left: 0;
}

.products-slider-next {
    right: 0;
}

@media (max-width: 767px) {
    .products-slider-wrapper {
        padding: 0 40px;
    }
    .products-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .products-slider-wrapper {
        padding: 0 30px;
    }
    .products-slider-nav {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

.product-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 18px;
}

.product-slider-nav:hover {
    background: var(--primary-color);
    color: #fff;
}

.product-slider-prev {
    left: -25px;
}

.product-slider-next {
    right: -25px;
}

@media (max-width: 1400px) {
    .product-slider-prev {
        left: 10px;
    }
    .product-slider-next {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .product-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .product-slider-prev {
        left: 5px;
    }
    .product-slider-next {
        right: 5px;
    }
}

/* ==================== Products Section ==================== */
.products-section {
    background: var(--light-bg);
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    position: relative;
}

.product-card:hover {
    transform: scale(0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ef4444;
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.product-card:hover .product-image img {
    transform: scale(1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 95, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

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

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-title a {
    color: var(--text-color);
}

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

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

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 14px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* ==================== Categories Section ==================== */
.category-card {
    display: block;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--box-shadow);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.category-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.category-count {
    font-size: 14px;
    opacity: 0.8;
}

/* ==================== Services Section ==================== */
.services-section {
    background: var(--primary-color);
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-dark);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    color: var(--white);
}

.service-link {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 14px;
}

.service-link:hover {
    color: var(--white);
}

/* ==================== Blog Section ==================== */
.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-color);
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
}

.blog-link:hover {
    color: var(--secondary-color);
}

/* ==================== CTA Section - Eski Stil ==================== */
.cta-section {
    position: relative;
    background: #141d45;
    padding: 80px 20px;
    padding-left: calc(var(--wave-top-width) + 30px);
    overflow: hidden;
}

/* 3 sütunun yüksekliklerini eşitle */
.cta-section .row {
    align-items: stretch;
}

.cta-section .row>[class*="col-"] {
    display: flex;
    align-items: center;
}

/* Sol - Büyük Sayı Görseli (Eski tema stili - background-clip: text) */
.cta-big-number {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.cta-number-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    text-align: center;
}

/* Sayı metni - içinde resim görünür */
.cta-number-text {
    font-family: var(--font-family);
    font-size: 480px;
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: .02em;
    color: transparent;
    /* Resmi geniş tut ki paralaks scroll edilebilsin */
    background-size: 250% auto;
    background-position: 50% center;
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.3));
    cursor: pointer;
}

/* Hover efekti artık JavaScript ile kontrol ediliyor */

/* Alt başlık (Yıllık Tecrübe) */
.cta-number-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #c9a961;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: -50px;
    transition: color 0.3s ease;
}

.cta-number-link:hover .cta-number-subtitle {
    color: #fff;
}

/* Orta - İçerik */
.cta-middle-content {
    max-width: 320px;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.cta-middle-content .cta-title {
    font-family: var(--font-family);
    font-size: 48px;
    font-weight: 300;
    padding-left: 30px;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative;
}

.cta-middle-content .cta-title::before {
    position: absolute;
    content: '';
    top: 8%;
    left: 0;
    height: 78%;
    width: 4px;
    background: #b5a067;
}


.cta-middle-content .cta-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
}

.cta-middle-content .btn-cta {
    display: inline-block;
    padding: 18px 40px;
    background: #c9a961;
    color: #141d45;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-middle-content .btn-cta:hover {
    background: #fff;
    color: #141d45;
}

/* Sağ - 2x2 Grid Sayaçlar */
.cta-counters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    height: 100%;
    align-content: center;
}

.cta-counter-item {
    text-align: center;
    padding: 25px;
}

/* Tüm border'ları varsayılan olarak kaldır */
.cta-counter-item {
    border: none;
}

/* ========== 1 ELEMAN VARSA ========== */
/* Border yok, sadece ortalanmış */
.cta-counter-item:first-child:nth-last-child(1) {
    text-align: center;
}

/* ========== 2 ELEMAN VARSA ========== */
/* 1. item: sağ border */
.cta-counter-item:first-child:nth-last-child(2) {
    border-right: 1px solid #c9a961;
}

/* ========== 3 ELEMAN VARSA ========== */
/* 1. item: sağ border + alt border */
.cta-counter-item:first-child:nth-last-child(3) {
    border-right: 1px solid #c9a961;
    border-bottom: 1px solid #c9a961;
}

/* 2. item: alt border */
.cta-counter-item:first-child:nth-last-child(3)~.cta-counter-item:nth-child(2) {
    border-bottom: 1px solid #c9a961;
}

/* ========== 4 ELEMAN VARSA ========== */
/* 1. item: sağ border + alt border */
.cta-counter-item:first-child:nth-last-child(4) {
    border-right: 1px solid #c9a961;
    border-bottom: 1px solid #c9a961;
}

/* 2. item: alt border */
.cta-counter-item:first-child:nth-last-child(4)~.cta-counter-item:nth-child(2) {
    border-bottom: 1px solid #c9a961;
}

/* 3. item: sağ border */
.cta-counter-item:first-child:nth-last-child(4)~.cta-counter-item:nth-child(3) {
    border-right: 1px solid #c9a961;
}

.cta-counter-item .counter-number {
    font-size: 110px;
    line-height: 0.8;
    font-weight: 300;
    letter-spacing: .025em;
    text-transform: uppercase;
    color: var(--white);
    font-family: var(--font-family);
}

.cta-counter-item .counter-number .symbol {
    font-size: 50px;
}

.cta-counter-item .counter-title {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* CTA Section Responsive */
@media (max-width: 1199px) {
    .cta-number-text {
        font-size: 320px;
    }

    .cta-counter-item .counter-number {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .cta-section {
        padding: 60px 20px;
        padding-left: calc(var(--wave-top-width) + 20px);
    }

    .cta-number-text {
        font-size: 240px;
    }

    .cta-middle-content {
        padding-left: 20px;
        margin-top: 30px;
        border-left-width: 3px;
    }

    .cta-counters-grid {
        margin-top: 40px;
    }

    .cta-counter-item .counter-number {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 40px 15px;
        padding-left: calc(var(--wave-top-width) + 15px);
    }

    .cta-number-text {
        font-size: 240px;
    }

    .cta-number-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
        margin-top: 0;
    }

    .cta-middle-content {
        border-left: none;
        padding-left: 0;
        text-align: center;
        margin-top: 30px;
    }

    .cta-middle-content .cta-title {
        font-size: 24px;
    }

    .cta-counters-grid {
        margin-top: 30px;
    }

    .cta-counter-item {
        padding: 15px;
    }

    .cta-counter-item .counter-number {
        font-size: 40px;
    }

    .cta-counter-item .counter-title {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .cta-number-text {
        font-size: 200px;
    }

    .cta-middle-content .cta-title {
        font-size: 30px;
        text-align: left;
    }

    .cta-counter-item {
        padding: 12px;
    }

    .cta-counter-item .counter-number {
        font-size: 36px;
    }

    .cta-counter-item .counter-number .symbol {
        font-size: 28px;
    }
}

/* ==================== Footer ==================== */
.site-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding-left: var(--wave-top-width);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 60px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-speed) ease;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.footer-widget h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all var(--transition-speed) ease;
}

.footer-links a:hover {
    color: #1e3a5f;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact li i {
    color: #fff;
    width: 20px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright, .developer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.developer a {
    color: var(--secondary-color);
}

/* ==================== Responsive ==================== */
@media (max-width: 1200px) {
    :root {
        --wave-top-width: 180px;
        --wave-middle-width: 80px;
        --logo-size: 90px;
        --logo-top: 50px;
        --logo-left: 115px;
        --menu-icon-top: 160px;
        --menu-icon-left: 115px;
    }
}

@media (max-width: 991px) {
    :root {
        --wave-top-width: 150px;
        --wave-middle-width: 70px;
        --logo-size: 80px;
        --logo-top: 45px;
        --logo-left: 95px;
        --menu-icon-top: 140px;
        --menu-icon-left: 95px;
        --sidebar-width: 320px;
    }

    .hero-section .hero-title {
        font-size: 2.5rem;
    }

    .hero-section .hero-content {
        margin-left: 70px;
    }

    .section-title {
        font-size: 2rem;
    }

    .experience-badge {
        right: 0;
        bottom: -10px;
    }

    /* Footer - tablette sol padding azalt */
    .site-footer {
        padding-left: 0;
    }

    .footer-main {
        padding: 50px 0 30px;
    }

    .footer-bottom .row {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 5px;
    }
}

@media (max-width: 767px) {
    :root {
        --mobile-header-height: 70px;
        --mobile-wave-curve: 20px;
        --logo-size: 66px;
        --sidebar-width: 100%;
    }

    /* ===== MOBİL: Wave üstte yatay header (iç bükey) - SVG kullanarak ===== */
    .sidebar-wave-container {
        width: 100%;
        height: calc(var(--mobile-header-height) + var(--mobile-wave-curve));
        top: 0;
        left: 0;
        right: 0;
        background: url('/assets/images/yay.svg') no-repeat center top;
        background-size: 100% 100%;
        clip-path: none;
        overflow: visible;
    }

    /* SVG kullandığımız için ::after gerekmiyor */
    .sidebar-wave-container::after {
        display: none;
    }

    .wave-svg,
    .wave-stroke {
        display: none;
    }

    /* Logo - solda, orta noktası yay üzerinde */
    .wave-logo {
        top: auto;
        bottom: var(--mobile-wave-curve);
        left: 15px;
        transform: translateY(50%);
        width: var(--logo-size);
        height: var(--logo-size);
        /* background: #fff; */
        border-radius: 50%;
        /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); */
        z-index: 1020;
    }

    /* Hamburger menü - sağda, orta noktası yay üzerinde */
    .wave-menu-btn {
        top: auto;
        bottom: var(--mobile-wave-curve);
        left: auto;
        right: 15px;
        transform: translateY(50%);
        width: 45px;
        height: 45px;
    }

    /* İçerik alanları - header + logo taşması için boşluk */
    .section-padding {
        padding: 60px 15px;
        padding-top: calc(var(--mobile-header-height) + var(--logo-size) / 2 + 20px);
        padding-left: 15px;
    }

    /* Hero section */
    .hero-section {
        padding-top: calc(var(--mobile-header-height) + var(--logo-size) / 2);
    }

    .hero-section .hero-title {
        font-size: 2rem;
    }

    .hero-section .hero-content {
        margin-left: 0;
        padding: 15px;
    }

    /* Hero Slider Responsive */
    .hero-slider-nav {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .hero-pagination {
        bottom: 70px;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 25px;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 15px;
        padding-top: calc(var(--mobile-header-height) + var(--logo-size) / 2 + 20px);
        min-height: auto;
    }

    .cta-main-counter {
        width: 180px;
        height: 180px;
        margin-bottom: 40px;
    }

    .cta-main-counter .counter {
        font-size: 3.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-stats {
        gap: 20px;
    }

    .cta-stat-item {
        padding-right: 20px;
    }

    .cta-stat-item .counter {
        font-size: 2rem;
    }

    .cta-stat-item .counter-suffix {
        font-size: 1.5rem;
    }

    .cta-clients {
        margin-top: 40px;
        padding-top: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    /* Sidebar menü - mobilde yukarıdan aşağı açılır */
    .sidebar-menu {
        left: 0;
        right: 0;
        top: calc(var(--mobile-header-height) + var(--logo-size) / 2);
        width: 100%;
        height: auto;
        max-height: calc(100vh - var(--mobile-header-height) - var(--logo-size) / 2);
        padding: 30px 20px;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.3s ease;
    }

    .sidebar-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    /* Footer */
    .site-footer {
        padding-left: 0;
    }

    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-main .row.g-4 {
        gap: 0 !important;
    }

    .footer-main .row > [class*="col-"] {
        padding-bottom: 25px;
        margin-bottom: 0;
    }

    .footer-about {
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 15px;
    }

    .footer-logo img {
        max-height: 50px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-widget h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-contact li {
        gap: 10px;
        margin-bottom: 10px;
        font-size: 13px;
        word-break: break-word;
    }

    .footer-bottom {
        padding: 15px 0;
        text-align: center;
    }

    .footer-bottom .col-md-6 {
        text-align: center !important;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 5px;
    }

    .copyright, .developer {
        font-size: 12px;
    }

    /* Page header breadcrumb */
    .page-header {
        padding-top: calc(var(--mobile-header-height) + var(--logo-size) / 2 + 20px);
    }
}

@media (max-width: 480px) {
    :root {
        --mobile-header-height: 60px;
        --mobile-wave-curve: 15px;
        --logo-size: 100px;
    }

    .wave-menu-btn {
        width: 38px;
        height: 38px;
    }

    .wave-menu-btn span {
        width: 18px;
        height: 2px;
    }

    .section-padding {
        padding: 50px 12px;
        padding-top: calc(var(--mobile-header-height) + var(--logo-size) / 2 + 25px);
    }

    .hero-section {
        padding-top: calc(var(--mobile-header-height) + var(--logo-size) / 2);
    }

    .hero-section .hero-title {
        font-size: 1.5rem;
    }

    .hero-section .hero-content {
        margin-left: 0;
        padding: 10px;
    }

    /* Hero Slider - Mobilde okları gizle */
    .hero-slider-nav {
        display: none;
    }

    .hero-pagination {
        bottom: 60px;
        gap: 8px;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 40px 10px;
        padding-top: calc(var(--mobile-header-height) + var(--logo-size) / 2 + 25px);
    }

    .sidebar-menu {
        top: calc(var(--mobile-header-height) - var(--logo-size) / 2);
        max-height: calc(100vh - var(--mobile-header-height) - var(--logo-size) / 2);
    }

    .page-header {
        padding-top: calc(var(--mobile-header-height) + var(--logo-size) / 2 + 25px);
    }

    .cta-main-counter {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
    }

    .cta-main-counter .counter {
        font-size: 3rem;
    }

    .cta-main-counter .counter-label {
        font-size: 0.85rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 15px;
    }

    .cta-stats {
        flex-direction: column;
        gap: 15px;
    }

    .cta-stat-item {
        padding-right: 0;
        padding-bottom: 15px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
    }

    .cta-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .client-logo img {
        max-height: 35px;
    }

    .site-footer {
        padding-left: 0;
        padding-right: 0;
    }

    .footer-main {
        padding: 30px 0 15px;
    }

    .footer-main .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-main .row > [class*="col-"] {
        padding-bottom: 20px;
    }

    .footer-logo img {
        max-height: 40px;
    }

    .footer-logo-text {
        font-size: 20px;
    }

    .footer-about p {
        font-size: 13px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .footer-widget h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-links li {
        margin-bottom: 6px;
    }

    .footer-contact li {
        font-size: 12px;
    }

    .footer-bottom {
        padding: 12px 0;
    }

    .footer-bottom .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .copyright, .developer {
        font-size: 11px;
    }

    .page-header {
        padding-top: calc(var(--mobile-header-height) + 30px);
    }
}

/* ==================== Material Parallax ==================== */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.material-parallax {
    position: absolute;
    top: 0;
    left: -1px;
    right: -1px;
    bottom: 0;
    z-index: 0;
}

.material-parallax img {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    min-width: 101%;
    max-width: none;
    min-height: 101%;
    transform: translate3d(-50%, 0, 0);
    will-change: transform;
}

/* Parallax aktifken görseli göster */
.parallax-enabled .material-parallax img {
    display: block;
}

/* Mobil ve IE için fallback - background-image kullanılır */
.parallax-fallback .material-parallax {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.parallax-fallback .material-parallax img {
    display: none !important;
}

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

/* Parallax overlay seçenekleri */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.parallax-overlay-dark {
    background: rgba(0, 0, 0, 0.5);
}

.parallax-overlay-primary {
    background: rgba(30, 58, 95, 0.85);
}

.parallax-overlay-gradient {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%);
}

/* ==================== WOW Animations ==================== */
/* Base animation class */
.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.fast {
    animation-duration: 0.5s;
}

.animated.slow {
    animation-duration: 2s;
}

/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Fade In Down */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

/* Fade In Left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

/* Fade In Right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

/* Zoom In */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomIn;
}

/* Zoom In Up */
@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    }

    to {
        opacity: 1;
        transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    }
}

.zoomInUp {
    animation-name: zoomInUp;
}

/* Slide In Up */
@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    animation-name: slideInUp;
}

/* Slide In Down */
@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    animation-name: slideInDown;
}

/* Slide In Left */
@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    animation-name: slideInLeft;
}

/* Slide In Right */
@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    animation-name: slideInRight;
}

/* Bounce In */
@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    animation-name: bounceIn;
}

/* Pulse */
@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    animation-name: pulse;
}

/* Fade Out (sayfa geçişleri için) */
@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOut {
    animation-name: fadeOut;
}

/* ==================== Counter Animation ==================== */
.counter-box {
    text-align: center;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.counter-number .counter {
    display: inline-block;
}

.counter-suffix {
    font-size: 2rem;
    margin-left: 2px;
}

.counter-prefix {
    font-size: 2rem;
    margin-right: 2px;
}

.counter-label {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-top: 10px;
    font-weight: 500;
}

/* ==================== Progress Bar Animation ==================== */
.progress-linear {
    margin-bottom: 20px;
}

.progress-linear-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 500;
}

.progress-linear-body {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-linear-bar {
    height: 100%;
    width: 0;
    background: var(--secondary-color);
    border-radius: 4px;
    transition: width 1.5s ease-out;
}

.progress-linear.animated .progress-linear-bar {
    /* width değeri JS ile ayarlanır */
}

/* ==================== Eski Tema Uyumluluk Stilleri ==================== */
/* Özel HTML bölümleri için gerekli stiller */

/* Section boyutları */
.section {
    position: relative;
}

.section-xl {
    padding: 10px 0;
}

.section-lg-0 {
    padding: 0;
}

/* Arka plan renkleri */
.bg-gray-4 {
    background-color: #f5f5f5;
}

/* Box Form - Parallax üzerindeki beyaz kutu */
.box-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 35px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.box-form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.box-icon-leah-text {
    font-size: 15px;
    line-height: 1.8;
    color: #6c757d;
    font-style: italic;
}

/* Section inset - özel margin/padding */
.section-inset-custom-6 {
    padding: 30px 0;
    width: 80%;
}

/* Overflow hidden - animasyon için */
.oh-desktop {
    overflow: hidden;
}

/* Parallax content için ek stiller */
.parallax-container .parallax-content {
    position: relative;
    z-index: 2;
}

/* Parallax bölümünde section-xl padding'i */
.parallax-container.section-xl,
.parallax-container .section-xl {
    padding: 100px 0;
}

/* Responsive */
@media (max-width: 991px) {
    .section-xl {
        padding: 70px 0;
    }

    .box-form {
        padding: 30px 25px;
    }

    .box-form-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .section-xl {
        padding: 50px 0;
    }

    .box-form {
        padding: 25px 20px;
        margin: 0 15px;
    }

    .box-form-title {
        font-size: 20px;
    }

    .d-none.d-lg-block {
        display: none !important;
    }
}

/* ==================== PAGE HEADER & BREADCRUMB ==================== */
/* Tüm alt sayfalarda kullanılan ortak page header */
.page-header {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
}

.page-header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 79, 183, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header-content {
    text-align: center;
    color: #fff;
}

.page-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #007aff;
}

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-nav span.current {
    color: #007aff;
}

.breadcrumb-nav i {
    font-size: 10px;
}

/* ==================== SHARE BUTTONS ==================== */
/* Blog ve ürün detay sayfalarında paylaşım butonları */
.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #000;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* ==================== PAGINATION ==================== */
/* Blog ve ürün listelerinde sayfalama */
.pagination-wrapper {
    margin-top: 40px;
}

.pagination .page-link {
    border: none;
    padding: 10px 16px;
    margin: 0 3px;
    border-radius: 8px;
    color: #666;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: #1e3a5f;
    color: #fff;
}

.pagination .page-item.active .page-link {
    background: #1e3a5f;
    color: #fff;
}

/* ==================== EMPTY STATE ==================== */
/* Boş içerik durumu */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #f8f9fa;
    border-radius: 16px;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h4 {
    color: #333;
    margin-bottom: 10px;
}

.empty-state p {
    color: #666;
}

/* ==================== BLOG STYLES ==================== */
/* Blog kart stilleri */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: #1e3a5f;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 50px;
    z-index: 2;
}

.blog-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 60px;
    padding: 10px;
    background: #007aff;
    color: #1e3a5f;
    text-align: center;
    border-radius: 10px;
    z-index: 2;
}

.blog-date .day {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #999;
}

.blog-meta i {
    margin-right: 5px;
    color: #1e3a5f;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: #1e3a5f;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #007aff;
}

.blog-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e3a5f;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #007aff;
    gap: 12px;
}

/* Blog Detail */
.blog-post-detail {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.post-meta i {
    margin-right: 5px;
    color: #1e3a5f;
}

.post-category {
    display: inline-block;
    padding: 5px 15px;
    background: #e8f4f8;
    color: #1e3a5f;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.post-category:hover {
    background: #1e3a5f;
    color: #fff;
}

.post-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 25px;
    line-height: 1.3;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-gallery {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.post-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-gallery .swiper-button-prev,
.post-gallery .swiper-button-next {
    color: #fff;
    background: rgba(30, 58, 95, 0.8);
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.post-gallery .swiper-button-prev:after,
.post-gallery .swiper-button-next:after {
    font-size: 18px;
}

.post-gallery .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.post-gallery .swiper-pagination-bullet-active {
    background: #007aff;
    opacity: 1;
}

.post-content {
    line-height: 1.9;
    color: #444;
    font-size: 16px;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    color: #1e3a5f;
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.post-content ul,
.post-content ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content blockquote {
    border-left: 4px solid #007aff;
    padding: 20px 25px;
    margin: 25px 0;
    background: #f8f9fa;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #555;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.post-share span {
    color: #666;
    font-weight: 500;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #007aff;
}

.search-form {
    display: flex;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    overflow: hidden;
}

.search-form input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    outline: none;
}

.search-form button {
    background: #1e3a5f;
    color: #fff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-form button:hover {
    background: #007aff;
    color: #1e3a5f;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s;
}

.recent-post-item:hover {
    background: #f8f9fa;
}

.recent-post-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
    transition: color 0.3s;
}

.recent-post-item:hover h5 {
    color: #1e3a5f;
}

.recent-post-date {
    font-size: 12px;
    color: #999;
}

.recent-post-date i {
    margin-right: 5px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid #f0f0f0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #666;
    transition: all 0.3s;
}

.category-list a:hover,
.category-list li.active a {
    color: #1e3a5f;
    padding-left: 10px;
}

.cat-count {
    background: #f0f0f0;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
    transition: all 0.3s;
}

.category-list a:hover .cat-count,
.category-list li.active .cat-count {
    background: #1e3a5f;
    color: #fff;
}

/* ==================== PRODUCT STYLES ==================== */
/* Product Card */
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: scale(0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: #007aff;
    color: #1e3a5f;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    z-index: 2;
    text-transform: uppercase;
}

.product-card .product-image {
    position: relative;
    width: 100%;
    height: 281px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 95, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-card .product-info {
    padding: 20px;
}

.product-card .product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-card .product-title a {
    color: #1e3a5f;
    transition: color 0.3s ease;
}

.product-card .product-title a:hover {
    color: #007aff;
}

.product-card .product-category {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.product-card .product-description {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

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

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

.product-price .current-price {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
}

/* Filter Tabs */
.filter-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.filter-tabs-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    padding: 10px 24px;
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-tab:hover {
    border-color: #1e3a5f;
    color: #1e3a5f;
}

.filter-tab.active {
    background: #1e3a5f;
    border-color: #1e3a5f;
    color: #fff;
}

/* Search Info */
.search-info {
    text-align: center;
    color: #666;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 20px;
}

.gallery-main-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #f8f9fa;
}

.gallery-main-wrapper #galleryMainImg {
    width: 100%;
    height: 450px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.gallery-zoom-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(30, 58, 95, 0.8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
    z-index: 10;
}

.gallery-zoom-btn:hover {
    background: #007aff;
    color: #fff;
    transform: scale(1.1);
}

.gallery-nav-prev,
.gallery-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(30, 58, 95, 0.8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.gallery-nav-prev {
    left: 15px;
}

.gallery-nav-next {
    right: 15px;
}

.gallery-nav-prev:hover,
.gallery-nav-next:hover {
    background: #007aff;
    color: #1e3a5f;
}

.gallery-thumbs-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.gallery-thumb-nav {
    width: 35px;
    height: 35px;
    border: none;
    background: #e9ecef;
    color: #333;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.gallery-thumb-nav:hover:not(:disabled) {
    background: #1e3a5f;
    color: #fff;
}

.gallery-thumb-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-thumbs-track {
    flex: 1;
    overflow: hidden;
}

.gallery-thumbs-scroll {
    display: flex;
    gap: 10px;
    transition: transform 0.3s ease;
}

.gallery-thumb-item {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb-item:hover,
.gallery-thumb-item.active {
    border-color: #1e3a5f;
}

.product-single-image img {
    width: 100%;
    border-radius: 16px;
}

.no-image-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 16px;
    color: #999;
}

.no-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
}

/* Product Info Detail */
.product-info-detail {
    padding-left: 20px;
}

.product-category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #e8f4f8;
    color: #1e3a5f;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.product-category-badge:hover {
    background: #1e3a5f;
    color: #fff;
}

.product-info-detail .product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.product-sku {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.product-sku i {
    color: #1e3a5f;
    margin-right: 5px;
}

.product-short-desc {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #007aff;
    border-radius: 0 12px 12px 0;
    margin-bottom: 25px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.product-description {
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.product-description h2,
.product-description h3,
.product-description h4 {
    color: #1e3a5f;
    margin-top: 25px;
    margin-bottom: 15px;
}

.product-description ul,
.product-description ol {
    padding-left: 20px;
}

.product-description li {
    margin-bottom: 8px;
}

/* Product Files */
.product-files h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.files-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #333;
    transition: all 0.3s;
}

.file-item:hover {
    background: #1e3a5f;
    color: #fff;
}

.file-item i:first-child {
    font-size: 20px;
    margin-right: 12px;
    color: #1e3a5f;
}

.file-item:hover i:first-child {
    color: #007aff;
}

.file-item span {
    flex: 1;
}

.file-item i:last-child {
    opacity: 0;
    transition: opacity 0.3s;
}

.file-item:hover i:last-child {
    opacity: 1;
}

/* Product Share */
.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
    margin-top: 25px;
}

.product-share span {
    color: #666;
    font-weight: 500;
}

/* Product Tabs */
.product-tabs .nav-tabs {
    border-bottom: 2px solid #e9ecef;
    gap: 5px;
}

.product-tabs .nav-link {
    border: none;
    color: #666;
    font-weight: 600;
    padding: 15px 25px;
    background: transparent;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.product-tabs .nav-link:hover {
    color: #1e3a5f;
}

.product-tabs .nav-link.active {
    color: #1e3a5f;
    border-bottom-color: #007aff;
}

.product-tabs .nav-link i {
    margin-right: 8px;
}

.product-tabs .tab-content {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 0 0 16px 16px;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.document-card {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.document-card:hover {
    border-color: #1e3a5f;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    color: inherit;
}

.document-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1e3a5f;
    margin-right: 15px;
}

.document-icon .fa-file-pdf {
    color: #dc3545;
}

.document-icon .fa-file-word {
    color: #2b579a;
}

.document-icon .fa-file-excel {
    color: #217346;
}

.document-info {
    flex: 1;
}

.document-name {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.document-meta {
    font-size: 12px;
    color: #999;
}

.document-download {
    color: #ccc;
    font-size: 18px;
    transition: color 0.3s;
}

.document-card:hover .document-download {
    color: #1e3a5f;
}

/* ==================== RESPONSIVE - PAGE COMPONENTS ==================== */
@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
        margin-top: 30px;
    }

    .product-info-detail {
        padding-left: 0;
        margin-top: 30px;
    }

    .gallery-main-wrapper #galleryMainImg {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .page-header {
        height: 200px;
    }

    .page-header-content h1 {
        font-size: 1.5rem;
    }

    .blog-post-detail {
        padding: 20px;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .post-meta {
        gap: 10px;
    }

    .post-gallery img {
        height: 250px;
    }

    .post-share,
    .product-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .blog-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .product-info-detail .product-title {
        font-size: 1.5rem;
    }

    .gallery-main-wrapper #galleryMainImg {
        height: 280px;
    }

    .product-tabs .nav-link {
        padding: 12px 15px;
        font-size: 14px;
    }

    .product-tabs .tab-content {
        padding: 20px;
    }

    .filter-tabs-wrapper {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .filter-tab {
        padding: 8px 18px;
        font-size: 14px;
    }
}

/* Küçük ekranlarda tek ürün olduğunda ortalama */
@media (max-width: 575px) {

    .products-page .row.g-4,
    .products-section .row,
    .related-products .row {
        justify-content: center;
    }

    .products-page .row.g-4>[class*="col-"],
    .products-section .row>[class*="col-"],
    .related-products .row>[class*="col-"] {
        display: flex;
        justify-content: center;
    }

    .products-page .product-card,
    .products-section .product-card,
    .related-products .product-card {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .product-card .product-image {
        margin: 0 auto;
    }
}

.site-footer {
 	background: #0096d0;
	color: var(--white);
	padding-left: var(--wave-top-width);
}
.site-footer {
    background-image: url("/uploads/footer/footer-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Footer mobil override - dosya sonundaki padding-left'i ezme */
@media (max-width: 991px) {
    .site-footer {
        padding-left: 0;
    }
}