/* Hizmetler sayfası — görsel kartlar (ikon yok) */
.service-page-section {
    background: #f7f5f2;
}

.service-page-section .sec-title.centred h2 {
    font-size: 36px;
    font-weight: 800;
    color: #2d4b41;
}

.service-page-section .sec-title.centred .text {
    max-width: 720px;
    margin: 12px auto 0;
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.service-page-section .service-card {
    height: 100%;
    margin-bottom: 30px;
}

.service-page-section .service-card .card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(28, 25, 35, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-page-section .service-card:hover .card-inner {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(28, 25, 35, 0.14);
}

.service-page-section .service-card .card-image {
    position: relative;
    display: block;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #e8e4df;
}

.service-page-section .service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-page-section .service-card:hover .card-image img {
    transform: scale(1.06);
}

.service-page-section .service-card .card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(28, 25, 35, 0.25) 100%);
    pointer-events: none;
}

.service-page-section .service-card .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px 28px 28px;
}

.service-page-section .service-card .card-body h4 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
    color: #2d4b41;
}

.service-page-section .service-card .card-body h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-page-section .service-card:hover .card-body h4 a {
    color: #b5a264;
}

.service-page-section .service-card .card-body p {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.65;
    color: #6b6b6b;
    flex: 1;
}

.service-page-section .service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #2d4b41;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, gap 0.2s ease;
}

.service-page-section .service-card .card-link:hover {
    background: #b5a264;
    color: #fff;
    gap: 12px;
}

.service-page-section .service-card .card-link i {
    font-size: 12px;
}

@media only screen and (max-width: 767px) {
    .service-page-section .sec-title.centred h2 {
        font-size: 28px;
    }

    .service-page-section .service-card .card-body {
        padding: 22px 20px 24px;
    }
}

/* Hizmet detay — içerik + yan panel */
.service-detail-section .service-detail-cover {
    margin-bottom: 30px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(28, 25, 35, 0.1);
}

.service-detail-section .service-detail-cover img {
    width: 100%;
    display: block;
}

.service-detail-section .content-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: #2d4b41;
    margin-bottom: 16px;
}

.service-detail-section .content-box .bold-text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Diğer Hizmetler */
.service-nav-widget {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(28, 25, 35, 0.08);
    margin-bottom: 24px;
}

.service-nav-widget .widget-title {
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0ede8;
    font-size: 20px;
    font-weight: 700;
    color: #2d4b41;
}

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

.service-nav-list li {
    margin-bottom: 10px;
}

.service-nav-list li:last-child {
    margin-bottom: 0;
}

.service-nav-list li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f9f8f6;
    border: 1px solid #ece8e3;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-nav-list li a:hover {
    background: #fff;
    border-color: #d9cfc4;
    box-shadow: 0 4px 14px rgba(28, 25, 35, 0.06);
    color: #2d4b41;
}

.service-nav-list li.is-active a {
    background: #f4f7f5;
    border-color: #2d4b41;
    color: #2d4b41;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(45, 75, 65, 0.12);
}

.service-nav-list .nav-thumb {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: #e8e4df;
}

.service-nav-list .nav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-nav-list .nav-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.45;
}

/* Teklif Al kutusu */
.service-cta-widget .cta-box {
    background: linear-gradient(135deg, #2d4b41 0%, #1b3022 100%);
    border-radius: 14px;
    padding: 28px 24px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(28, 25, 35, 0.15);
}

.service-cta-widget .cta-box h4 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.service-cta-widget .cta-box p {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
}

.service-cta-widget .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #2d4b41;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, gap 0.2s ease;
}

.service-cta-widget .cta-btn:hover {
    background: #b5a264;
    color: #fff;
    gap: 12px;
}

@media only screen and (max-width: 991px) {
    .service-sidebar {
        margin-top: 40px;
    }
}
