﻿/* ================================
   SERVICES PAGE STYLES
   Hizmetlerimiz Sayfaları
   ================================ */

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/images/pattern-overlay.png') repeat;
        opacity: 0.1;
    }

    .page-header h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }

        .page-header h1 i {
            margin-right: 15px;
            color: #FFD700;
        }

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

    .breadcrumb-nav a {
        color: rgba(255,255,255,0.9);
        text-decoration: none;
        transition: color 0.3s;
    }

        .breadcrumb-nav a:hover {
            color: white;
            text-decoration: underline;
        }

    .breadcrumb-nav span {
        color: rgba(255,255,255,0.6);
    }

/* ===== SERVICES OVERVIEW SECTION ===== */
.services-overview-section {
    padding: 80px 0;
}

/* Ana Hizmetler Grid */
.main-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 100px;
}

.service-main-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .service-main-card:hover {
        box-shadow: 0 10px 50px rgba(0,0,0,0.15);
        transform: translateY(-5px);
    }

.service-main-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

    .service-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.service-main-card:hover .service-main-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8), rgba(46, 125, 50, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-main-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 5rem;
    color: white;
}

.service-main-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .service-main-content h2 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .service-main-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 30px;
    }

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .service-features li {
        padding: 10px 0;
        font-size: 1rem;
        color: #666;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .service-features li i {
            color: #4CAF50;
            font-size: 1.2rem;
        }

.service-main-content .btn {
    align-self: flex-start;
}

/* Ek Hizmetler */
.additional-services {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

    .section-title.text-center {
        text-align: center;
    }

.additional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.additional-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

    .additional-card:hover {
        border-top-color: #4CAF50;
        transform: translateY(-8px);
        box-shadow: 0 8px 30px rgba(76, 175, 80, 0.2);
    }

    .additional-card i {
        font-size: 3rem;
        color: #4CAF50;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }

    .additional-card:hover i {
        transform: scale(1.2);
        color: #2E7D32;
    }

    .additional-card h4 {
        font-size: 1.3rem;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .additional-card p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
    }

/* CTA Section */
.services-cta {
    text-align: center;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    padding: 60px 40px;
    border-radius: 20px;
    color: white;
}

    .services-cta h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .services-cta p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        opacity: 0.95;
    }

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: #4CAF50;
}

    .btn-primary:hover {
        background: #f8f9fa;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

.btn-success {
    background: #25D366;
    color: white;
}

    .btn-success:hover {
        background: #1EBE57;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }

/* ===== SERVICE DETAIL SECTION ===== */
.service-detail-section {
    padding: 80px 0;
}

.service-hero {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-bottom: 60px;
}

    .service-hero img {
        width: 100%;
        height: auto;
        display: block;
    }

.service-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

    .service-intro h2 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 30px;
        font-weight: 700;
    }

    .service-intro p {
        font-size: 1.15rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 20px;
    }

/* Hizmet Detay Kartları */
.service-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.service-detail-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

    .service-detail-card:hover {
        border-left-color: #4CAF50;
        transform: translateX(5px);
        box-shadow: 0 8px 35px rgba(76, 175, 80, 0.15);
    }

.detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-detail-card:hover .detail-icon {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.service-detail-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
}

    .service-detail-card ul li {
        padding: 8px 0;
        font-size: 0.95rem;
        color: #666;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

        .service-detail-card ul li i {
            color: #4CAF50;
            font-size: 1rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

/* Neden Biz Section */
.why-choose-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 80px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-item {
    text-align: center;
}

    .why-item i {
        font-size: 3rem;
        color: #4CAF50;
        margin-bottom: 20px;
        display: block;
    }

    .why-item h4 {
        font-size: 1.2rem;
        color: #2c3e50;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .why-item p {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.5;
    }

/* Bakım İpuçları */
.care-tips {
    margin-bottom: 80px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tip-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

    .tip-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(76, 175, 80, 0.15);
    }

.tip-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #FFD700);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.tip-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 30px 0 15px;
    font-weight: 600;
}

.tip-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Özel Günler */
.special-occasions {
    margin-bottom: 80px;
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.occasion-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .occasion-card:hover {
        border-color: #4CAF50;
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
    }

    .occasion-card i {
        font-size: 3rem;
        color: #4CAF50;
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }

    .occasion-card:hover i {
        transform: scale(1.2);
        color: #2E7D32;
    }

    .occasion-card h4 {
        font-size: 1.1rem;
        color: #2c3e50;
        font-weight: 600;
    }

/* Service CTA */
.service-cta {
    text-align: center;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    padding: 60px 40px;
    border-radius: 20px;
    color: white;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .service-main-card {
        grid-template-columns: 1fr;
    }

    .service-main-image {
        min-height: 300px;
    }

    .service-main-content {
        padding: 40px;
    }

    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-details-grid {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .tips-grid,
    .occasions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .services-overview-section,
    .service-detail-section {
        padding: 60px 0;
    }

    .service-main-content h2,
    .service-intro h2,
    .section-title {
        font-size: 1.8rem;
    }

    .service-main-content {
        padding: 30px;
    }

    .additional-grid,
    .occasions-grid {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .services-cta h2,
    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .service-detail-card {
        padding: 30px 25px;
    }

    .detail-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .service-detail-card h3 {
        font-size: 1.5rem;
    }

    .tip-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
