/* Hizmet İçerik Alanı Stilleri */
.service-content {
    padding: 4rem 0;
}

.content-frame {
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 25px 70px rgba(0,0,0,0.07), 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.content-frame:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,0.12), 0 10px 35px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* Görsel Alanı */
.service-image {
    height: 450px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.content-frame:hover .service-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    z-index: 2;
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(26,95,122,0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 3;
    transition: all 0.3s ease;
}

.content-frame:hover .floating-badge {
    background: rgba(26,95,122,1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Açıklama Alanı */
.service-description {
    position: relative;
    padding: 2.5rem 3rem;
    background: white;
    z-index: 3;
}

.description-inner {
    position: relative;
}

.service-title {
    font-weight: 700;
    color: #1a5f7a;
    position: relative;
    display: inline-block;
}

.service-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1a5f7a 0%, rgba(33, 209, 10, 0.6) 100%);
}

.lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
}

p {
    color: #555;
    line-height: 1.7;
}


/* Responsive Ayarlar */
@media (max-width: 768px) {
    .service-description {
        padding: 2rem;
    }
    
    .service-image {
        height: 350px;
    }
    
}

@media (max-width: 576px) {
    .service-description {
        padding: 1.5rem;
    }
    
    .service-image {
        height: 280px;
    }
}

/* Hizmet Kartları Stilleri */
.hizmetlerimiz-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(26, 95, 122, 0.1);
    aspect-ratio: 4/5;
}

.hizmetlerimiz-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(45deg, rgba(26, 95, 122, 0.1), rgba(26, 95, 122, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hizmetlerimiz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.hizmetlerimiz-card:hover::before {
    background: linear-gradient(45deg, rgba(26, 95, 122, 0.2), rgba(26, 95, 122, 0.1));
}

.hizmetlerimiz-card-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 75%;
}

.hizmetlerimiz-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.hizmetlerimiz-card:hover .hizmetlerimiz-card-img img {
    transform: scale(1.1);
}

.hizmetlerimiz-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.hizmetlerimiz-card:hover .hizmetlerimiz-card-overlay {
    opacity: 1;
}

.hizmetlerimiz-card-link .hizmetlerimiz-link-btn {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: #fff;
    color: #333;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.hizmetlerimiz-card-link .hizmetlerimiz-link-btn:hover {
    background: #1a5f7a;
    color: #fff;
}

.hizmetlerimiz-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
    z-index: 1;
}

.hizmetlerimiz-card-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.hizmetlerimiz-card-title a {
    color: #1a5f7a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hizmetlerimiz-card-title a:hover {
    color: #333;
}

.hizmetlerimiz-card-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 72px;
}

/* Başlık Alanı Stilleri */
.title-area {
    margin-bottom: 50px;
}

.sub-title {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.sub-title i {
    font-size: 12px;
    margin: 0 5px;
    color: #1a5f7a;
}

.sec-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
}

.sec-text {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Sayfalama Stilleri */
.pagination-wrap {
    margin-top: 50px;
}

.pagination {
    gap: 5px;
}

.page-link {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    border-radius: 50%;
    color: #333;
    border: none;
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-item.active .page-link {
    background: #1a5f7a;
    color: #fff;
}

.page-link:hover {
    background: #1a5f7a;
    color: #fff;
}

/* Responsive Ayarlar */
@media (max-width: 991px) {
    .hizmetlerimiz-card-img {
        padding-top: 75%;
    }
    
    .sec-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hizmetlerimiz-card-img {
        padding-top: 75%;
    }
    
    .sec-title {
        font-size: 28px;
    }
    
    .hizmetlerimiz-card-title {
        font-size: 18px;
        min-height: 44px;
    }
}

@media (max-width: 575px) {
    .hizmetlerimiz-card-img {
        padding-top: 75%;
    }
    
    .sec-title {
        font-size: 24px;
    }
    
    .hizmetlerimiz-card-content {
        padding: 20px;
    }
}

/* Buton Stilleri */
.theme-btn.style-3 {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: #1a5f7a;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 20px;
}

.theme-btn.style-3:hover {
    background: #333;
    transform: translateY(-2px);
}

.theme-btn.style-3 .btn-text {
    margin-right: 10px;
}

.theme-btn.style-3 .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.theme-btn.style-3:hover .btn-icon {
    background: rgba(255,255,255,0.2);
    transform: translateX(3px);
}

.theme-btn.style-3 .btn-icon i {
    font-size: 12px;
    color: #fff;
}