﻿
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    /*padding-top: 100px;*/ /* NAVBAR yüksekliğine göre ayarla */
}

.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    padding-top: 100px;
}

.left {
    flex: 1;
    min-width: 300px;
    padding: 60px 50px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .left h2 {
        font-size: 50px;
        color: #023a51;
        margin-bottom: 10px;
    }

    .left p {
        font-size: 21px;
        color: #444;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .left ul {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
    }

        .left ul li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            font-size: 1rem;
        }

            .left ul li::before {
                content: '✔';
                position: absolute;
                left: 0;
                color: #2cbc63;
            }

.quote-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    background-color: #2cbc63;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    width: fit-content;
}

    .quote-btn:hover {
        background-color: #00ddbb;
    }

.trustpilot {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #333;
}

.stars img {
    width: 100px;
}

.right {
    flex: 1;
    min-width: 400px;
    min-height: 800px;
    background: url('/assets/images/resources/beyaz-esya2.png') no-repeat center center;
    background-size: cover;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left, .right {
        width: 100%;
        text-align: center;
        padding: 40px 20px;
    }

    .quote-btn {
        margin: 0 auto;
    }
}


.van-info-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.van-info-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 500px;
}

    .van-info-images img {
        width: 100%;
        border-radius: 16px;
        object-fit: cover;
        aspect-ratio: 1/1;
    }

.van-info-text {
    max-width: 550px;
}

    .van-info-text h2 {
        font-size: 2rem; /* büyük puntolu */
        font-weight: 700; /* kalın */
        color: #023a51; /* koyu, dikkat çekici */
        margin-bottom: 20px;
    }

    .van-info-text p {
        font-size: 1rem; /* daha küçük */
        font-weight: 400; /* normal */
        color: #555; /* daha açık gri */
        line-height: 1.6; /* okunabilirlik için */
        margin-bottom: 0;
    }

.coverage-section {
    background-color: #023a51; /* koyu mor zemin */
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

    .coverage-section h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: #ccc;
    }

    .coverage-section p.lead {
        font-size: 1.1rem;
        color: #ccc;
        max-width: 800px;
        margin: 0 auto 50px;
    }

.coverage-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.coverage-card {
    background-color: #fff;
    color: #000;
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.3s ease;
}

    .coverage-card:hover {
        transform: translateY(-5px);
    }

    .coverage-card .icon {
        width: 48px;
        height: 48px;
        background-color: #3d2f99;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

        .coverage-card .icon img {
            width: 24px;
            height: 24px;
        }

    .coverage-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #023a51; /* koyu renk */
        margin-bottom: 10px;
    }

    .coverage-card p {
        font-size: 0.95rem;
        font-weight: 400;
        color: #555; /* daha açık gri */
        line-height: 1.6;
        margin: 0;
    }

.info-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 40px 20px;
    text-align: center;
}

    .info-section h2 {
        font-size: 2.2rem;
        margin-bottom: 50px;
        color: #111827;
    }

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .info-item .icon {
        width: 26px; /* sabit genişlik */
        height: 26px; /* sabit yükseklik */
        min-width: 26px; /* daralmayı engeller */
        background-color: #00f5cc;
        border-radius: 50%;
        color: #fff;
        font-weight: bold;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0; /* yazıya göre küçülmesin */
    }


.info-item-content {
    font-size: 1rem;
    color: #333;
}

    .info-item-content strong {
        color: #000;
    }

.faq-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 40px 20px;
}

    .faq-section h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 40px;
    }

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-title {
    cursor: pointer;
    padding: 20px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-family: 'Inter', sans-serif;
}

    .accordion-title:hover {
        background-color: #f9f9f9;
    }

.accordion-content {
    display: none;
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.accordion-title::after {
    content: "▾";
    transition: transform 0.3s;
}

.accordion-item.active .accordion-title::after {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    display: block;
}

.reviews-section {
    background-color: #2ebd63;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

    .reviews-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #fff;
    }

    .reviews-section p.subtitle {
        color: #fff;
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto 60px;
    }

.review-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-bottom: 60px;
}

.review-box {
    max-width: 320px;
    text-align: left;
}

.quote-icon {
    font-size: 24px;
    color: #00f5cc;
    margin-bottom: 20px;
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 5px 10px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 25px;
}

.review-name {
    font-size: 0.95rem;
    color: #fff;
}

.trustpilot-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 1rem;
    color: #fff;
}

.trustpilot-stars {
    display: flex;
    gap: 4px;
}

    .trustpilot-stars img {
        height: 18px;
    }

.review-box {
    text-align: center;
}

.product-hero {
    /* SOLDAN SAĞA PREMIUM YEŞİL GRADIENT */
    background: linear-gradient(90deg, #cdd5d1 0%, #c5f5d7 30%, #7ab18e 65%, #2ebd63 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}
    .product-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
        radial-gradient( circle at 15% 20%, rgba(255,255,255,0.18), rgba(255,255,255,0.00) 45% ),
        radial-gradient( circle at 85% 75%, rgba(0,0,0,0.28), rgba(0,0,0,0.00) 55% ),
        linear-gradient( 180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 35%, rgba(0,0,0,0.10) 100% );
        pointer-events: none;
    }
.product-hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.product-hero-image {
    flex: 1;
    min-width: 320px;
    text-align: center;
}

    .product-hero-image img {
        max-height: 920px; /* taşmayı keser */
        height: auto;
        object-fit: contain;
    }

/* SAĞ TARAF YAZILAR */
.product-hero-content {
    flex: 1;
    min-width: 340px;
    color: #f4fff9;
}

    .product-hero-content h2 {
        font-size: 2.6rem;
        font-weight: 800;
        margin-bottom: 10px;
        color: #ffffff; /* başlık net beyaz */
    }

    .product-hero-content h4 {
        font-size: 1.1rem;
        margin-bottom: 28px; /* 35 → 28 */
        color: #dff7ea; /* yumuşak açık yeşil */
        font-weight: 500;
    }

/* BİLGİ KUTULARI */
.hero-feature {
    background: rgba(255,255,255,0.15);
    border-left: 4px solid #ffffff;
    padding: 16px 20px; /* biraz sıkı */
    border-radius: 12px;
    margin-bottom: 14px; /* 18 → 14 */
}

    /* ROZET */
    .hero-feature span {
        display: inline-block;
        background-color: #ffffff;
        color: #2ebd63;
        font-weight: 700;
        font-size: 0.85rem;
        padding: 6px 14px;
        border-radius: 20px;
        margin-bottom: 10px;
    }

    /* AÇIKLAMA */
    .hero-feature p {
        margin: 10px 0 0 0;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #fff!important;
    }
    .product-image-collage {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 420px;
}

.product-image-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* ANA GÖRSEL */
.collage-main {
    width: 100%;
    height: 100%;
}

/* SAĞDAKİ KÜÇÜKLER */
.collage-side {
    position: absolute;
    width: 170px;
    height: 120px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

/* ÜST KÜÇÜK */
.collage-side.top {
    top: -30px;
    right: -40px;
}

/* ALT KÜÇÜK */
.collage-side.bottom {
    bottom: -30px;
    right: -20px;
}
