/* ===================================
   Uniq Türkiye - Services Sayfası CSS (services.css)
   =================================== */
/*** 
====================================================================
Page Title
====================================================================
***/

.page-title {
    position: relative;
    background-repeat: no-repeat;
    background-position: center 45%;
    background-size: cover;
    padding: 150px 0 150px;
    min-height: 250px;
}

@media only screen and (max-width: 767px) {
.page-title {
    padding: 70px 0 60px;
}
}
/*
.page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #131313;
    opacity: 0.7;
    content: "";
}
*/
.page-title .title-outer {
    text-align: center;
}

.page-title .title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 17px;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeInUp 1s ease 0.3s forwards;
}

@keyframes titleFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media only screen and (max-width: 767px) {
.page-title .title {
    font-size: 54px;
    margin-bottom: 10px;
}
}

.page-title .text {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.05em;
    max-width: 520px;
}

.page-breadcrumb {
    position: relative;
    margin-top: 5px;
}

.page-breadcrumb li {
    position: relative;
    display: inline-block;
    margin-right: 4px;
    padding-right: 4px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
}

.page-breadcrumb li a {
    color: #4A7BC0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.page-breadcrumb li a:hover {
    color: #ffffff;
}

/* ==========================================================
   Hizmetler Sayfası - Service Cards (Görselli Versiyon)
   ========================================================== */

.services-section {
    padding: 80px 0;
    background-color: #f9fafc;
}

.sec-title {
    margin-bottom: 50px;
}

.sec-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #000000;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: contentFadeInUp 0.8s ease 0.5s forwards;
}

.sec-title p {
    font-family: 'Montserrat', sans-serif;
    color: #9e9e9e;
    font-size: 1rem;
    font-weight: 100;
    max-width: 650px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: contentFadeInUp 0.8s ease 0.7s forwards;
}

/* Kart yapısı */
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
}

.service-card:nth-child(1) {
    animation: contentFadeInUp 0.8s ease 0.9s forwards;
}

.service-card:nth-child(2) {
    animation: contentFadeInUp 0.8s ease 1.1s forwards;
}

.service-card:nth-child(3) {
    animation: contentFadeInUp 0.8s ease 1.3s forwards;
}

.service-card:nth-child(4) {
    animation: contentFadeInUp 0.8s ease 1.5s forwards;
}

.service-card:nth-child(5) {
    animation: contentFadeInUp 0.8s ease 1.7s forwards;
}

.service-card:nth-child(6) {
    animation: contentFadeInUp 0.8s ease 1.9s forwards;
}

.service-card:nth-child(7) {
    animation: contentFadeInUp 0.8s ease 2.1s forwards;
}

.service-card:nth-child(8) {
    animation: contentFadeInUp 0.8s ease 2.3s forwards;
}

.service-card:nth-child(9) {
    animation: contentFadeInUp 0.8s ease 2.5s forwards;
}

@keyframes contentFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Görsel kısmı */
.service-card .service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Metin alanı */
.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #000000;
    font-weight: 500;
    margin-bottom: 12px;
}

.service-content p {
    font-family: 'Montserrat', sans-serif;
    color: #9e9e9e;
    font-size: 1rem;
    font-weight: 100;
    margin-bottom: 20px;
}

/* Buton */
.service-theme-btn {
    display: inline-block;
    background: #4A7BC0;
    color: #fff;
    padding: 10px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.service-theme-btn:hover {
    background: #6B8FCC;
    transform: translateY(-2px);
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 20px;
    }

    .sec-title h2 {
        font-size: 1.6rem;
    }

    .service-card .service-image img {
        height: 200px;
    }

    .service-content {
        padding: 20px;
    }
}

/* ===================================
   Service Detail Page Styles
   =================================== */

.service-detail-section {
    background: #fff;
    padding: 80px 0;
}

.service-detail-content {
    margin-bottom: 3rem;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
    opacity: 0;
    transform: translateY(20px);
    animation: contentFadeInUp 0.8s ease 0.5s forwards;
}

.service-description {
    opacity: 0;
    transform: translateY(20px);
    animation: contentFadeInUp 0.8s ease 0.7s forwards;
}

.service-features {
    opacity: 0;
    transform: translateY(20px);
    animation: contentFadeInUp 0.8s ease 0.9s forwards;
}

.service-benefits {
    opacity: 0;
    transform: translateY(20px);
    animation: contentFadeInUp 0.8s ease 1.1s forwards;
}

.benefit-item {
    opacity: 0;
    transform: translateY(15px);
}

.benefit-item:nth-child(1) {
    animation: contentFadeInUp 0.6s ease 1.3s forwards;
}

.benefit-item:nth-child(2) {
    animation: contentFadeInUp 0.6s ease 1.5s forwards;
}

.benefit-item:nth-child(3) {
    animation: contentFadeInUp 0.6s ease 1.7s forwards;
}

.benefit-item:nth-child(4) {
    animation: contentFadeInUp 0.6s ease 1.9s forwards;
}

.benefit-item:nth-child(5) {
    animation: contentFadeInUp 0.6s ease 2.1s forwards;
}

.benefit-item:nth-child(6) {
    animation: contentFadeInUp 0.6s ease 2.3s forwards;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4A7BC0, #6B8FCC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: #fff;
}

.service-info h2 {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
}

.service-description {
    margin-bottom: 2.5rem;
}

.service-description p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 1rem;
    color: #9e9e9e;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 2.5rem;
}

.service-features h3 {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #4A7BC0, #6B8FCC);
    border-radius: 2px;
}


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

.features-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 100;
    color: #9e9e9e;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateX(-20px);
}

.features-list li:nth-child(1) {
    animation: contentFadeInLeft 0.6s ease 1.1s forwards;
}

.features-list li:nth-child(2) {
    animation: contentFadeInLeft 0.6s ease 1.3s forwards;
}

.features-list li:nth-child(3) {
    animation: contentFadeInLeft 0.6s ease 1.5s forwards;
}

.features-list li:nth-child(4) {
    animation: contentFadeInLeft 0.6s ease 1.7s forwards;
}

.features-list li:nth-child(5) {
    animation: contentFadeInLeft 0.6s ease 1.9s forwards;
}

.features-list li:nth-child(6) {
    animation: contentFadeInLeft 0.6s ease 2.1s forwards;
}

@keyframes contentFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 20px;
    height: 20px;
    background: #4A7BC0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.service-benefits h3 {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-benefits h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #4A7BC0, #6B8FCC);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.benefit-item i {
    color: #4A7BC0;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 1rem;
    color: #9e9e9e;
}

/* Responsive Design for Service Detail */
@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-detail-section .auto-container {
        padding: 0 20px;
    }
    
    .service-icon-large {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .service-info h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .service-detail-section {
        padding: 60px 0;
    }

    .service-detail-section .auto-container {
        padding: 0 16px;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-large i {
        font-size: 2rem;
    }
    
    .service-info h2 {
        font-size: 1.6rem;
    }
    
    .service-description p {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }

}

