﻿
:root {
    --background: #141422;
    --renk: #fadd18;
    --mavi: #2c3958;
    --accent-color: #9f9267;
}

.cs_logo_bg_shape::before{
    background-color:var(--background);
}
.cs_logo_bg_shape{
    color:var(--background);
}
.cs_about.cs_style_1 .cs_about_thumbnail_wrapper{
    padding-right:15px;
}
.cs_post.cs_style_1 .cs_post_date {
    width: 160px;
}
.cs_post.cs_style_1 .cs_post_date::after {
    width: 21%;
}
.cs_card.cs_style_1:hover .cs_card_icon {
    background-color: var(--heading-color);
}

.stats-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* SVG wave background */
.wave-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stats-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 100px 60px;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 160px;
    animation: fadeUp 0.6s ease both;
}

    .stat-item:nth-child(1) {
        animation-delay: 0.0s;
    }

    .stat-item:nth-child(2) {
        animation-delay: 0.15s;
    }

    .stat-item:nth-child(3) {
        animation-delay: 0.30s;
    }

    .stat-item:nth-child(4) {
        animation-delay: 0.45s;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(13, 61, 64, 0.30);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

    .icon-circle:hover {
        transform: translateY(-5px) scale(1.06);
        box-shadow: 0 16px 36px rgba(13, 61, 64, 0.40);
    }

    .icon-circle svg {
        width: 40px;
        height: 40px;
        fill: none;
        stroke: #ffffff;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--background);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--background);
    text-align: center;
    letter-spacing: 0.3px;
}

/* Divider lines between items */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background: #e0e8e8;
}

.stats-container {
    position: relative;
}
.ss-section {
    background: linear-gradient(135deg, #f5ede8 0%, #f0e8e0 40%, #ede8f0 70%, #f5e8e4 100%);
}

.ss-bg-gradient {
    background: radial-gradient(ellipse at 80% 50%, rgba(249,115,22,0.06) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(13,79,82,0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.ss-section .container {
    position: relative;
    z-index: 1;
}

/* ── LABEL ── */
.ss-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
}

.ss-label-line {
    display: block;
    width: 36px;
    height: 1.5px;
    background: #aaa;
    border-radius: 2px;
}

/* ── TITLE ── */
.ss-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #0d4f52;
    line-height: 1.25;
}

/* ── IMAGE ── */
.ss-img-wrap {
    width: 300px;
    height: 210px;
    max-width: 100%;
}

.ss-img-box {
    width: 260px;
    height: 200px;
}

.ss-img {
    object-fit: cover;
}

/* ── BADGE ── */
.ss-badge {
    background: rgba(15, 35, 50, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 18px 22px;
    min-width: 110px;
}

.ss-badge-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
}

.ss-badge-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
}

/* ── FAQ ITEM ── */
.ss-faq-item {
    background: #fff;
    border-radius: 50px;
    padding: 16px 18px 16px 26px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, transform 0.2s ease, border-radius 0.25s ease;
}

    .ss-faq-item:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
    }

    .ss-faq-item.ss-open {
        border-radius: 16px;
    }

.ss-faq-top {
    width: 100%;
}

.ss-faq-item.ss-open .ss-faq-top {
    padding-bottom: 12px;
}

.ss-faq-q {
    font-size: 0.96rem;
    font-weight: 700;
    color: #0d4f52;
    line-height: 1.4;
}

.ss-faq-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #0d4f52;
    color: #fff;
    transition: transform 0.3s ease, background-color 0.2s ease;
    flex-shrink: 0;
}

.ss-faq-item.ss-open .ss-faq-btn {
    transform: rotate(90deg);
    background-color: #1a7a7f;
}

.ss-faq-answer {
    display: none;
    font-size: 0.88rem;
    color: #667080;
    line-height: 1.75;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    padding-bottom: 4px;
}

.ss-faq-item.ss-open .ss-faq-answer {
    display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
    .ss-img-wrap {
        width: 100%;
        height: auto;
    }

    .ss-img-box {
        width: 100%;
        height: 200px;
    }
}
.cs_tyres_shape {
    max-width: 300px;
}
.cs_tyres_shape img{
    filter: grayscale(1);
}
.cs_accent_bg_light {
    background: rgb(20 20 34 / 15%);
}
.cs_post.cs_style_1 .cs_post_date::after{
    background-color:var(--background)
}
.cs_logo_wrap{
    margin-top:0;
    
}
.cs_site_branding{
    padding:10px 5px;
}
.cs_site_header.cs_style_1 .cs_top_header_left{
    padding-left:0;
}