/* ==================== */
/* Tarifler - Modern & Şık */
/* ==================== */

/* Hero */
.tarifler-hero {
    position: relative;
    z-index: 2;
    padding: 140px 0 80px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.tarifler-hero-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.tarifler-hero .container {
    position: relative;
    z-index: 1;
}

.tarifler-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.tarifler-hero-badge i {
    opacity: 0.9;
}

.tarifler-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.tarifler-subtitle {
    font-size: 1.15rem;
    opacity: 0.92;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.5;
}

/* List section */
.tarifler-list-section {
    position: relative;
    z-index: 2;
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 50%, var(--cream) 100%);
}

.tarifler-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-accent {
    display: block;
    width: 48px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 0 auto 16px;
}

.tarifler-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--dark);
    margin-bottom: 8px;
}

.tarifler-section-desc {
    font-size: 1rem;
    color: var(--gray);
}

.tarifler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    align-items: stretch;
}

/* Tarif cards - modern */
.tarif-card {
    display: flex;
    flex-direction: column;
    min-height: 460px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    position: relative;
    border: 1px solid rgba(74, 124, 89, 0.08);
}

.tarif-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(74, 124, 89, 0.12);
    border-color: rgba(74, 124, 89, 0.15);
}

.tarif-card-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    overflow: hidden;
}

.tarif-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 46, 26, 0.15) 100%);
    pointer-events: none;
}

.tarif-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tarif-card:hover .tarif-card-image img {
    transform: scale(1.05);
}

.tarif-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.tarif-card-image .tarif-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 3.5rem;
    opacity: 0.5;
}

.tarif-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 26px 26px;
}

.tarif-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    line-height: 1.3;
}

.tarif-card-meta {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tarif-card-meta::before {
    content: '';
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
}

.tarif-card-desc {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tarif-card-toggle {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.08) 0%, rgba(74, 124, 89, 0.04) 100%);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(74, 124, 89, 0.25);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.tarif-card-toggle:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.tarif-card-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Empty state */
.tarif-yok {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px 24px;
    background: var(--white);
    border-radius: 24px;
    border: 2px dashed var(--gray-light);
}

.tarif-yok-icon {
    font-size: 3rem;
    color: var(--gray-light);
    margin-bottom: 16px;
}

.tarif-yok-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.tarif-yok-desc {
    font-size: 0.95rem;
    color: var(--gray);
}

/* Tarif detay modal */
.tarif-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.tarif-modal.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.tarif-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 46, 26, 0.5);
    cursor: pointer;
}

.tarif-modal-box {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow: auto;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    transform: scale(0.96);
    transition: transform 0.3s ease;
}

.tarif-modal.open .tarif-modal-box {
    transform: scale(1);
}

.tarif-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.tarif-modal-close:hover {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.tarif-modal-content {
    padding: 0 0 32px;
}

.tarif-modal-image-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    overflow: hidden;
    margin-bottom: 24px;
}

.tarif-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tarif-modal-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 3rem;
    opacity: 0.5;
}

.tarif-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 24px 8px;
    line-height: 1.3;
}

.tarif-modal-meta {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0 24px 16px;
}

.tarif-modal-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.55;
    margin: 0 24px 24px;
}

.tarif-modal-section {
    margin: 0 24px 20px;
}

.tarif-modal-section h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.tarif-modal-section ul,
.tarif-modal-section ol {
    margin-left: 1.2em;
    margin-bottom: 0;
}

.tarif-modal-section li {
    margin-bottom: 6px;
    line-height: 1.5;
}

/* Admin Panel - Ana sitedeki floating label stilini geçersiz kıl */
.tarif-form .form-group label {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    padding: 0 !important;
    pointer-events: auto !important;
    background: transparent !important;
}

.tarif-form .form-group input:focus + label,
.tarif-form .form-group input:not(:placeholder-shown) + label,
.tarif-form .form-group textarea:focus + label,
.tarif-form .form-group textarea:not(:placeholder-shown) + label,
.tarif-form .form-group select:focus + label,
.tarif-form .form-group select:valid + label {
    top: auto !important;
    font-size: 0.875rem !important;
    color: var(--dark) !important;
}

/* Admin Panel */
.admin-panel-wrap {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
    background: var(--cream-dark);
}

.admin-panel {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px 48px 48px;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-light);
}

.admin-panel h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--dark);
}

.admin-panel h2 i {
    margin-right: 10px;
    color: var(--primary);
}

.admin-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

.admin-back:hover {
    color: var(--primary-dark);
}

.form-section {
    margin-bottom: 32px;
}

.form-section h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section h3 i {
    color: var(--primary);
    font-size: 1rem;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 14px;
}

.form-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-row-2 {
    grid-template-columns: 1fr 1fr;
}

.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-gorsel-row {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.form-group label {
    order: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    order: 2;
}

.form-group-full {
    margin-bottom: 0;
}

.form-row .form-group {
    margin-bottom: 0;
}

.tarif-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.tarif-form label .required {
    color: #c00;
}

.tarif-form input[type="text"],
.tarif-form input[type="url"],
.tarif-form select,
.tarif-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.tarif-form textarea {
    min-height: 120px;
    resize: vertical;
}

.tarif-form select {
    cursor: pointer;
    background: var(--white);
}

.tarif-form input:focus,
.tarif-form select:focus,
.tarif-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.15);
}

.form-group-upload {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-upload label {
    margin-bottom: 0;
}

.upload-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-file {
    font-size: 0.875rem;
    padding: 10px 0;
    width: 100%;
}

.input-file::file-selector-button {
    padding: 10px 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    margin-right: 12px;
}

.input-file::file-selector-button:hover {
    background: var(--primary-dark);
}

.file-name {
    font-size: 0.85rem;
    color: var(--gray);
    display: block;
    margin-top: 4px;
}

.gorsel-onizleme {
    margin-top: 16px;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    background: var(--cream-dark);
    border: 1px dashed var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gorsel-onizleme img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.onizleme-placeholder {
    color: var(--gray);
    font-size: 0.9rem;
}

.onizleme-placeholder i {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
    opacity: 0.5;
}

.form-actions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-light);
}

.btn-submit {
    padding: 14px 28px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .tarifler-hero {
        padding: 120px 0 60px;
    }

    .tarifler-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tarifler-section-header {
        margin-bottom: 36px;
    }

    .tarifler-list-section {
        padding: 56px 0 72px;
    }

    .admin-panel {
        padding: 24px;
        border-radius: 20px;
    }

    .form-row-2,
    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .form-gorsel-row {
        grid-template-columns: 1fr;
    }

    .admin-panel-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================ */
/* Tarif kartı linkleri (modal yerine ayrı sayfa) */
/* ============================================ */
.tarif-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}
.tarif-card-title a:hover {
    color: var(--primary);
}
.tarif-card-image {
    display: block;
}
a.tarif-card-toggle {
    text-decoration: none;
}
a.tarif-card-toggle:hover i {
    transform: translateX(3px);
}

/* ============================================ */
/* TEK TARİF (BLOG) SAYFASI - tarif.php */
/* ============================================ */
.tarif-detail-hero {
    position: relative;
    padding: 130px 0 50px;
    background: var(--gradient-primary);
    color: var(--white);
    overflow: hidden;
}

.tarif-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 22px;
    opacity: 0.95;
}
.tarif-breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}
.tarif-breadcrumb a:hover { opacity: 1; }
.tarif-breadcrumb i { font-size: 0.6rem; opacity: 0.6; }
.tarif-breadcrumb span { font-weight: 600; }

.tarif-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

.tarif-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--white);
}

.tarif-detail-lead {
    font-size: 1.12rem;
    line-height: 1.6;
    opacity: 0.94;
    max-width: 720px;
}

.tarif-detail-meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    padding: 0;
}
.tarif-detail-meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
}
.tarif-detail-meta i { opacity: 0.85; }

.tarif-detail-body {
    max-width: 860px;
    padding-top: 0;
    padding-bottom: 80px;
}

.tarif-detail-image {
    margin: -45px 0 36px;
    position: relative;
    z-index: 3;
}
.tarif-detail-image img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.tarif-detail-content {
    font-size: 1.06rem;
    line-height: 1.8;
    color: var(--dark-light);
    margin-bottom: 40px;
}
.tarif-detail-content p { margin-bottom: 18px; }

.tarif-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 44px;
}
@media (max-width: 768px) {
    .tarif-detail-grid { grid-template-columns: 1fr; }
}

.tarif-detail-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.tarif-detail-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tarif-detail-card h2 i { color: var(--primary); font-size: 1.1rem; }

.tarif-detail-malzemeler ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tarif-detail-malzemeler li {
    position: relative;
    padding: 10px 0 10px 26px;
    border-bottom: 1px dashed var(--gray-light);
    color: var(--dark-light);
    font-size: 0.98rem;
}
.tarif-detail-malzemeler li:last-child { border-bottom: none; }
.tarif-detail-malzemeler li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 18px;
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
}

.tarif-detail-yapilis ol {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0;
}
.tarif-detail-yapilis li {
    counter-increment: step;
    position: relative;
    padding: 4px 0 22px 52px;
    color: var(--dark-light);
    font-size: 1rem;
    line-height: 1.65;
}
.tarif-detail-yapilis li:last-child { padding-bottom: 0; }
.tarif-detail-yapilis li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.tarif-detail-cta {
    background: var(--cream-dark);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 36px;
}
.tarif-cta-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.tarif-cta-icon {
    font-size: 2.4rem;
    color: var(--primary);
    flex-shrink: 0;
}
.tarif-cta-text { flex: 1; min-width: 220px; }
.tarif-cta-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 6px;
}
.tarif-cta-text p { color: var(--gray); font-size: 0.95rem; }

.tarif-detail-back {
    text-align: center;
}
.tarif-detail-back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid rgba(74, 124, 89, 0.25);
    border-radius: 12px;
    transition: var(--transition);
}
.tarif-detail-back a:hover {
    background: var(--primary);
    color: var(--white);
}

/* 404 */
.tarif-404 {
    text-align: center;
    padding: 80px 20px;
    color: var(--white);
}
.tarif-404-icon { font-size: 3.5rem; opacity: 0.85; margin-bottom: 20px; }
.tarif-404 h1 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 12px; }
.tarif-404 p { opacity: 0.9; margin-bottom: 26px; }

@media (max-width: 768px) {
    .tarif-detail-hero { padding: 110px 0 40px; }
    .tarif-detail-image { margin-top: -30px; }
    .tarif-detail-card { padding: 22px; }
}

/* ============================================ */
/* SEO İÇERİK SAYFASI - hatay-zeytinyagi.php */
/* ============================================ */
.seo-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 600;
    color: var(--dark);
    margin: 36px 0 14px;
    line-height: 1.25;
}
.seo-content p {
    margin-bottom: 16px;
}
.seo-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.seo-content strong { color: var(--dark); font-weight: 600; }

.seo-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.seo-list li {
    position: relative;
    padding: 8px 0 8px 30px;
    color: var(--dark-light);
    line-height: 1.6;
}
.seo-list li::before {
    content: '\f336';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--primary);
    font-size: 0.85rem;
}

/* SSS Akordeon */
.seo-faq {
    margin: 44px 0;
}
.seo-faq > h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}
.seo-faq-item {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: var(--white);
    overflow: hidden;
}
.seo-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.seo-faq-item summary::-webkit-details-marker { display: none; }
.seo-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}
.seo-faq-item[open] summary::after { transform: rotate(180deg); }
.seo-faq-item p {
    padding: 0 22px 20px;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

/* İç linkler */
.seo-internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 36px 0 10px;
}
.seo-internal-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--cream-dark);
    color: var(--dark);
    border: 1px solid var(--accent);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.seo-internal-links a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.seo-internal-links a i { color: var(--primary); }
.seo-internal-links a:hover i { color: var(--white); }

/* ============================================ */
/* MODERN + TAM RESPONSIVE KATMAN (v2) */
/* ============================================ */

/* Hero'larda yumuşak hareketli gradyan küreler */
.tarifler-hero,
.tarif-detail-hero,
.seo-page .tarif-detail-hero {
    position: relative;
    isolation: isolate;
}
.tarifler-hero::before,
.tarif-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(420px circle at 12% 20%, rgba(255,255,255,0.12) 0%, transparent 60%),
        radial-gradient(520px circle at 88% 85%, rgba(168,144,120,0.18) 0%, transparent 60%);
    animation: heroFloat 14s ease-in-out infinite alternate;
}
@keyframes heroFloat {
    0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.9; }
    100% { transform: translate3d(0, -14px, 0) scale(1.06); opacity: 1; }
}

/* Tarif kartları sayfa açılınca yumuşak yukarı belirir */
@keyframes cardReveal {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.tarifler-grid .tarif-card {
    animation: cardReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.tarifler-grid .tarif-card:nth-child(2) { animation-delay: 0.06s; }
.tarifler-grid .tarif-card:nth-child(3) { animation-delay: 0.12s; }
.tarifler-grid .tarif-card:nth-child(4) { animation-delay: 0.18s; }
.tarifler-grid .tarif-card:nth-child(5) { animation-delay: 0.24s; }
.tarifler-grid .tarif-card:nth-child(6) { animation-delay: 0.30s; }
.tarifler-grid .tarif-card:nth-child(n+7) { animation-delay: 0.36s; }

/* Kartlarda üst kenar gradyan vurgusu (hover) */
.tarif-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}
.tarif-card:hover::before { transform: scaleX(1); }

/* "Tarifi Görüntüle" butonu modern gradyan hover */
a.tarif-card-toggle:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(74, 124, 89, 0.25);
}

/* Detay kartlarına yumuşak cam hissi */
.tarif-detail-card {
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tarif-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Hareket hassasiyeti olanlar için animasyonları kapat */
@media (prefers-reduced-motion: reduce) {
    .tarifler-hero::before, .tarif-detail-hero::before,
    .tarifler-grid .tarif-card { animation: none !important; }
}

/* ---------------- 480px ve altı: telefon ince ayar ---------------- */
@media (max-width: 480px) {
    .tarifler-hero { padding: 110px 0 48px; }
    .tarifler-title { font-size: clamp(1.9rem, 8vw, 2.4rem); }
    .tarifler-subtitle { font-size: 1rem; padding: 0 6px; }
    .tarifler-hero-badge { font-size: 0.8rem; padding: 8px 16px; }

    .tarifler-list-section { padding: 44px 0 60px; }
    .tarifler-grid { gap: 20px; }
    .tarif-card { min-height: 0; border-radius: 20px; }
    .tarif-card-image { height: 200px; }
    .tarif-card-body { padding: 22px 20px 20px; }
    .tarif-card-title { font-size: 1.25rem; }

    /* Tarif detay */
    .tarif-detail-hero { padding: 100px 0 36px; }
    .tarif-detail-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
    .tarif-detail-lead { font-size: 1rem; }
    .tarif-detail-meta { gap: 8px; }
    .tarif-detail-meta li { font-size: 0.82rem; padding: 8px 14px; }
    .tarif-detail-image { margin: -24px 0 28px; }
    .tarif-detail-image img { max-height: 280px; border-radius: var(--radius); }
    .tarif-detail-card { padding: 20px; border-radius: var(--radius); }
    .tarif-detail-card h2 { font-size: 1.2rem; }
    .tarif-detail-yapilis li { padding-left: 46px; font-size: 0.95rem; }
    .tarif-detail-yapilis li::before { width: 30px; height: 30px; font-size: 0.82rem; }

    /* CTA dikey */
    .tarif-cta-inner { flex-direction: column; text-align: center; gap: 16px; }
    .tarif-cta-text { min-width: 0; }
    .tarif-cta-inner .btn { width: 100%; justify-content: center; }

    /* SEO sayfası */
    .seo-content { font-size: 1rem; }
    .seo-content h2 { font-size: 1.3rem; margin-top: 28px; }
    .seo-internal-links a { flex: 1 1 100%; justify-content: center; }
    .seo-faq-item summary { padding: 15px 16px; font-size: 0.95rem; }
    .seo-faq-item p { padding: 0 16px 16px; }

    /* Breadcrumb sığsın */
    .tarif-breadcrumb { font-size: 0.78rem; gap: 6px; }
}

/* Çok dar ekran: yatay taşmayı kesin engelle */
@media (max-width: 360px) {
    .tarif-detail-meta { flex-direction: column; align-items: flex-start; }
    .tarif-detail-meta li { width: 100%; }
}
