/* Homepage Featured Products Section */
.home-products-section {
    padding: 100px 0;
    background: #ffffff;
}

.home-products-section .related-title {
    font-size: 38px;
    font-weight: 900;
    color: #222;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.home-products-section .related-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 5px;
    background: #0e82b0;
    border-radius: 2px;
}

.home-products-section .related-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-top: 30px;
    margin-bottom: 70px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.home-urun-box {
    background: #fff;
    border-radius: 5px;
    padding: 25px;
    border: 1px solid #f2f4f6;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.home-urun-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(14, 130, 176, 0.15);
    border-color: #d1d5db;
}

.home-urun-img {
    width: 100%;
    aspect-ratio: 10 / 8;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 20px;
    background: #f8fbfc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home-urun-img img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.home-urun-box:hover .home-urun-img img {
    transform: scale(1.1);
}

/* Hover Icon Overlay */
.home-hover-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #0e82b0;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(14, 130, 176, 0.3);
}

.home-urun-img:hover .home-hover-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.home-urun-box .cat-label {
    font-size: 13px;
    font-weight: 600;
    color: #0e82b0;
    margin-bottom: 4px;
}

.home-urun-box .product-name {
    font-size: 17px;
    font-weight: 900;
    color: #232d37;
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
}

.home-urun-box .product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-urun-box:hover .product-name a {
    color: #0e82b0;
}

@media (max-width: 1199px) {
    .home-products-grid { grid-template-columns: repeat(3, 1fr); }
    .home-products-section .related-subtitle { width: 85%; }
}
@media (max-width: 991px) {
    .home-products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .home-products-section { padding: 70px 0; }
}
@media (max-width: 575px) {
    .home-products-grid { grid-template-columns: 1fr; }
    .home-products-section .related-subtitle { width: 100%; font-size: 16px; }
    .home-products-section .related-title { font-size: 28px; }
}

/* Modernized Ara Section with Hover Zoom */
.ara {
    width: calc(100% - 6%);
    position: relative;
    display: block;
    margin: 60px 3%;
    border-radius: 5px;
    overflow: hidden;
    padding: 100px 0px;
    background-color: #0c1524;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 1; /* Gerekli katman düzeni */
}

/* Arkaplan Görseli ve Smooth Zoom */
.ara::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('../img/ara.jpg') no-repeat center center;
    background-size: cover;
    z-index: -2;
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ara:hover::after {
    transform: scale(1.08);
}

/* Okunabilirliği Artırılmış Koyu Gradyan Kaplama */
.ara::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: linear-gradient(90deg, rgba(7, 30, 46, 0.95) 0%, rgba(14, 130, 176, 0.6) 100%);
    z-index: -1;
}

.ara .container {
    position: relative;
    z-index: 2;
}

.ara h4 {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.3;
}

.ara p {
    display: block;
    color: #f8fbfc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.ara p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .ara {
        padding: 70px 0px;
    }
}

@media (max-width: 767px) {
    .ara {
        padding: 50px 0px;
        margin: 40px 3%;
    }
    .ara h4 {
        font-size: 28px;
    }
}

/* Nedenler Section - Original Design Maintained */
.nedenler {
	position: relative;
	display: block;
	padding: 50px 0px 120px 0px;
}

.neden {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.neden:hover {
	transform: translateY(-8px);
}

.neden .num {
	display: block;
	position: absolute;
	height: 200px;
	width: 150px;
	text-align: left;
	line-height: 200px;
	font-size: 200px;
	z-index: -1;
	color: #0e82b0;
	opacity: 0.04;
	font-weight: 900;
	top: -80px;
	left: -100px;
	letter-spacing: -20px;
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.neden:hover .num {
	opacity: 0.08;
	transform: scale(1.05) translate(10px, -5px);
}

.neden .baslik {
	display: block;
	font-size: 24px;
	line-height: 1;
	font-weight: 800;
	color: #515151;
	padding-right: 30%;
	margin-bottom: 10px;
	transition: color 0.3s ease;
}

.neden:hover .baslik {
	color: #0e82b0;
}

.neden p {
	font-size: 16px;
	line-height: 1.4;
	display: block;
	font-weight: 400;
	color: #515151;
}
