/**
 * İcon Emlak - Evimi Satmak İstiyorum Sayfası CSS
 */

/* Genel Sayfa Yapısı */
.page-content {
    /* İçeriği biraz daha daraltabiliriz */
}

/* Hero Alanı İyileştirmeleri */
.page-title-section.bg-light {
    background-color: var(--light-color) !important;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-title-section h1 {
    font-size: 2.8rem; /* Biraz daha büyük başlık */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-title-section .lead {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto 30px auto; /* Butondan önce daha fazla boşluk */
}

.page-title-section .btn-primary {
    padding: 15px 40px; /* Daha belirgin buton */
    font-size: 1.1rem;
}

/* İçerik Bölümü Genel */
.sell-content .section-padding {
    padding: 80px 0; /* Section padding'i biraz azaltabiliriz */
}

.sell-content .section-title {
    margin-bottom: 50px;
}

/* Neden Biz? Bölümü */
.why-us-section .feature-box {
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.why-us-section .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.why-us-section .feature-box .icon i {
    /* İkon rengini belki ikincil renk yapabiliriz? */
    color: var(--secondary-color);
}

.why-us-section .feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Değerleme Formu */
.valuation-form-section .section-title {
    margin-bottom: 20px;
}

.valuation-form {
    border: 1px solid var(--border-color);
}

.valuation-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.valuation-form .form-control,
.valuation-form .form-select {
    padding: 0.8rem 1rem;
    border-color: var(--border-color);
}

.valuation-form .btn-secondary {
    padding: 12px 35px;
    font-size: 1.1rem;
}

/* SSS Bölümü */
.faq-section .accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden; /* Köşelerin düzgün görünmesi için */
}

.faq-section .accordion-button {
    font-weight: 600;
    color: var(--primary-color);
    background-color: #fff;
    padding: 1.2rem 1.5rem;
    box-shadow: none; /* Bootstrap gölgesini kaldır */
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.faq-section .accordion-button::after {
    /* İkonu değiştirebilir veya renklendirebiliriz */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231c3c6b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 1.5rem;
    background-color: #fff;
}

/* Müşteri Yorumları Bölümü */
.testimonials-section.section-padding {
    padding: 60px 0;
}

.testimonials-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-section .section-title h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonials-section .section-title p {
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-section .testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonials-section .testimonial-card:hover {
    box-shadow: var(--hover-shadow);
}

.testimonials-section .testimonial-rating {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonials-section .testimonial-content p {
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.testimonials-section .testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonials-section .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonials-section .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-section .author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonials-section .author-info span {
    color: #777;
    font-size: 14px;
}

.testimonials-section .testimonial-video {
    margin-top: 20px;
    text-align: center;
}

.testimonials-section .video-btn {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonials-section .video-btn i {
    margin-right: 8px;
    font-size: 14px;
}

.testimonials-section .video-btn:hover {
    color: var(--secondary-color);
}

.testimonials-section .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

/* Başarı Hikayeleri ve E-kitap (Placeholder Stilleri) */
.success-stories-section .alert,
.lead-magnet-section form {
    /* Daha az belirgin hale getirelim */
}

.lead-magnet-section .form-control-lg {
    padding: 0.8rem 1rem;
}

.lead-magnet-section .btn-lg {
    padding: 0.8rem 1rem;
}

/* Genel İyileştirmeler */
.border-bottom {
    border-color: var(--border-color) !important;
}

.shadow-sm {
    box-shadow: var(--box-shadow) !important;
} 