/* Bu dosya, ana "style.css" dosyasından sonra çağrılmalıdır. */

/* GENEL YAPILANDIRMA */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* BAŞLIK VURGULARI */
.center-text {
    text-align: center;
}

/* ANA HAREKETE GEÇİRİCİ ÇAĞRI BUTONU (CTA) */
.cta-button {
    display: inline-block;
    /* Yüksek görünürlük için kırmızı renk */
    background-color: #dc3545 !important;
    color: white !important;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700 !important;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif !important;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #c82333 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* İKİNCİL BUTONLAR (Katalog vb. - yeşil tonu korundu) */
.cta-button.secondary { 
    background-color: #28a745 !important;
}
.cta-button.secondary:hover {
    background-color: #1e7e34 !important;
}

/* HİPER PAKET VURGUSU - DAHA ÇOK DİKKAT ÇEKEN STİL */
.hyper-highlight {
    background-color: #ffc107 !important; /* Parlak Sarı */
    color: #333 !important;
    border: 2px solid #ff9900;
    padding: 10px;
    border-radius: 5px;
    font-weight: 800;
    display: inline-block;
}

/* PAKET LİSTESİ DÜZENİ (Üçlü Sütun) */
.package-list {
    list-style: none;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.package-list li {
    flex-basis: calc(33.33% - 20px);
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    min-width: 250px;
    text-align: left;
}

.package-list h3 {
    /* Başlık rengini şablonun ana rengiyle (sarımsı altın) uyumlu hale getirir. */
    color: #daa106 !important;
    font-family: 'Oswald', sans-serif;
    margin-top: 0;
    text-align: center;
}

/* RANDEVU VE İLETİŞİM BÖLÜMÜ VURGUSU */
#randevu-al {
    text-align: center;
    margin: 40px 0;
    /* Şablonun ana rengiyle uyumlu kesik çizgi */
    border: 3px dashed #daa106; 
    padding: 25px;
    border-radius: 15px;
    background-color: #fffaf0;
}

#randevu-al h2 {
    color: #323232;
}

/* TABLOLARDAKİ SÜTUN GENİŞLİKLERİ VE TEMİZ GÖRÜNÜM */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.price-table th, .price-table td {
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
}

.price-table th {
    background-color: #f2f2f2;
    color: #323232;
    font-family: 'Oswald', sans-serif;
}

/* MOBİL UYUM */
@media (max-width: 767px) {
    .package-list {
        flex-direction: column;
        gap: 0;
    }

    .package-list li {
        min-width: unset;
        flex-basis: 100%;
        margin-bottom: 15px;
    }
}

/* Önceki marketing-styles.css içeriğinin altına ekleyin */

/* GOOGLE YORUMLARI STİLİ */
#google-reviews {
    padding: 30px;
    background-color: #f0f0f0; /* Açık gri arka plan */
    border-radius: 10px;
}
.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.review-card {
    flex-basis: calc(33.33% - 20px); /* Üçlü sütun düzeni */
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-width: 280px;
}
.review-card strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
    color: #333;
}
.star-rating {
    color: #fbbc05; /* Google'ın sarı yıldız rengi */
    font-size: 1.2em;
    margin-bottom: 10px;
    display: block;
}
.review-text {
    font-style: italic;
    color: #555;
    line-height: 1.5;
}

/* SSS (FAQ) STİLİ */
.faq-list details {
    margin-bottom: 15px;
    border: 1px solid #e9e9e9;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    transition: box-shadow 0.3s;
}
.faq-list details:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.faq-list summary {
    font-weight: 700;
    cursor: pointer;
    color: #004d99; /* Kurumsal Mavi */
    font-family: 'Oswald', sans-serif;
    padding: 5px 0;
}
.faq-list p {
    padding-top: 10px;
    border-top: 1px dashed #eee;
    margin-top: 10px;
    color: #666;
}

@media (max-width: 992px) {
    .review-card {
        flex-basis: calc(50% - 10px);
    }
}
@media (max-width: 600px) {
    .review-card {
        flex-basis: 100%;
    }
}