/* Testimonial Section Styles */
.testimonial-section {
    background-color: #fff;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.testimonial-content {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-header {
    display: flex;
    gap: 2rem;
    margin: 0;
}

.testimonial-avatar {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 1px solid #000;
    box-shadow: 4px 4px 0 0 rgba(0,0,0,1);
}

.testimonial-text {
    text-align: left;
    flex: 1;
    max-width: 800px;
}

.quote {
    font-size: 1rem;
    line-height: 1.5;
    color: #000;
}

.quote-mark {
    font-size: 2.5rem;
    line-height: 0;
    position: relative;
    top: 16px;
    margin-right: 4px;
}

.quote .highlight {
    color: #ae5a00;
    font-weight: 600;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.quote .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 25px;
    opacity: 0.3;
    z-index: -1;
}

.author {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.built-info {
    text-align: center;
    font-size: 16px;
    color: #000000;
    position: relative;

    justify-content: center;
    margin: 2rem 0;
    width: fit-content;
    padding-left: 64px;
    font-style: italic;
}

.arrow-down {
width: 32px;
    height: 32px;
    transform: rotate(270deg) scale(1);
    fill: #000000;
    position: absolute;
    left: 75px;
    margin-top: -40px;
}

.built-link {
    font-style: italic;
    text-decoration: underline;
    color: #0000b6;
    font-weight: 300;
    margin: 0 4px;
}

.built-link:hover {
    font-style: italic;
    color: #090083;
    text-decoration: underline;
    opacity: 0.8;
}

.macbook-container {
    position: relative;
    width: 100%;
    margin-top: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin: 2rem 0 0;
}

.macbook-frame {
    width: 100%;
    height: auto;
    display: block;
}

.screen-content {
    position: absolute;
    top: 2.5%;
    left: 12.5%;
    width: 74.5%;
    height: 74%;
    overflow: hidden;
    border-radius: 20px;
    background-color: #000;
}

.screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.quote-container {
    position: relative;
    padding-top: 0.5rem;
}

.quote-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 2rem; /* 32px */
    height: 2rem; /* 32px */
    color: #000;
    opacity: 0.8;
}

.quote-text {
    margin: 0;
    line-height: 1.5;
    font-size: 1.5rem;
}

.quote-text .highlight {
    font-weight: 500;
    position: relative;
    display: inline;
    z-index: 1;
    font-size: 1.4rem;
    background-color: rgb(254, 249, 195);
}

.quote-text .comma {
    color: #000;
    display: inline;
    font-weight: normal;
    margin-right: 0.25rem;
}

.quote-text .regular-text {
    color: #000;
    display: block;
    font-weight: normal;
    margin-top: 0.75rem;
}

.quote-text .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 25px;
    background-color: rgb(254, 249, 195);
    opacity: 0.3;
    z-index: -1;
}

.author {
    font-size: 1rem;
    color: #202020;
    font-style: italic;
    margin-top: 1rem;
}

.text-muted {
    font-size: 1rem;
    color: #252525;
    font-weight: 300;
}

.check-icon {
    color: #28a745;
    font-size: 1rem;
}

.lead.text-muted {

    color: #000 !important;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Testimonials Avatars */
.testimonials-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-avatars img {
    width: 48px;
    height: 48px;
    border: 2px solid #fff;
    margin-left: -18px;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.testimonials-avatars img:first-child {
    margin-left: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.testimonials-avatars img:hover {
    transform: translateY(-2px);
    z-index: 2;
}

/* Mobil Responsive DÃ¼zenlemeler */
@media (max-width: 768px) {
    .testimonial-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .testimonial-avatar {
        width: 120px;
        height: 120px;
        margin: 0;
        place-self: center;
    }

    .testimonial-text {
        text-align: left;
        width: 100%;
    }

    .quote-text {
        font-size: 1rem;
        line-height: 1.4;
    }

    .quote-text .highlight {
        font-size: 1.1rem;
        background-color: rgb(254, 249, 195);
        padding: 0 4px;
    }

    .quote-text .second-line {
        font-size: 0.95rem;
    }

    .author {
        font-size: 0.9rem;
        margin-top: 0.75rem;
    }

    .built-info {
        padding-left: 0;
        margin-left: 32px;
        position: relative;
    }

    .arrow-down {
        position: absolute;
        left: 22px;
        top: 50%;
        transform: translateY(-50%) rotate(270deg) scale(0.8);
    }
} 