/* ===================================================
   PRACTICE PAGES - SHARED STYLES
   Aydın & Aydın Hukuk Bürosu
   =================================================== */

/* --- PRACTICE HERO --- */
.practice-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    padding-top: 180px;
}

@media (max-width: 768px) {
    .practice-hero {
        padding-top: 200px;
    }
}

.practice-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.practice-hero-icon {
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.12;
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.practice-hero:hover .practice-hero-icon {
    opacity: 0.18;
}

.practice-hero-content {
    position: relative;
    z-index: 1;
}

/* --- BREADCRUMB --- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--accent);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.breadcrumb span {
    color: var(--text-muted);
}

/* --- HERO BADGE --- */
.practice-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

/* --- HERO TITLE & DESC --- */
.practice-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.practice-hero-title span {
    color: var(--accent);
}

.practice-hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.practice-hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- INFO CARDS GRID --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    padding: 2rem 1.5rem;
    transition: var(--transition-smooth);
}

.info-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: background 0.3s ease;
}

.info-card:hover .info-card-icon {
    background: rgba(212, 175, 55, 0.18);
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- CONTENT LAYOUT --- */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* --- CONTENT PROSE --- */
.content-prose h2 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.content-prose h2:first-child {
    margin-top: 0;
}

.content-prose p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.content-prose ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.content-prose ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.content-prose ul li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

/* --- SIDEBAR --- */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.sidebar-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.5rem 0.6rem;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.sidebar-list li a:hover {
    color: var(--accent);
    background: rgba(212, 175, 55, 0.06);
    padding-left: 1rem;
}

.sidebar-list li a i {
    color: var(--accent);
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.sidebar-list li a:hover i {
    transform: translateX(3px);
}

.sidebar-cta {
    background: var(--gradient-gold);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
}

.sidebar-cta h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.sidebar-cta p {
    color: rgba(10, 17, 40, 0.75);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sidebar-cta .btn-dark {
    display: block;
    background: var(--primary);
    color: var(--accent);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    text-align: center;
    letter-spacing: 0.05em;
}

.sidebar-cta .btn-dark:hover {
    background: #0d1836;
    transform: translateY(-2px);
}

/* --- PROCESS STEPS --- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    counter-reset: step-counter;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    position: relative;
    counter-increment: step-counter;
    transition: var(--transition-smooth);
}

.process-step:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
}

.process-step::before {
    content: counter(step-counter, decimal-leading-zero);
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.12);
    position: absolute;
    top: 1rem;
    right: 1rem;
    line-height: 1;
}

.process-step-icon {
    width: 55px;
    height: 55px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin: 0 auto 1rem;
    transition: background 0.3s ease;
}

.process-step:hover .process-step-icon {
    background: rgba(212, 175, 55, 0.18);
}

.process-step h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- COMPARISON GRID (Aile/Boşanma) --- */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.comparison-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.comparison-card:hover {
    transform: translateY(-4px);
}

.comparison-card.gold-border {
    border-color: rgba(212, 175, 55, 0.4);
}

.comparison-card h3 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.comparison-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.comparison-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.comparison-card ul li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

/* --- STATS ROW (İş Hukuku) --- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.stat-box:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
}

.stat-box .stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
}

.stat-box .stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
    line-height: 1.4;
}

/* --- ALERT BANNER (İş Hukuku) --- */
.tazminat-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.tazminat-banner i {
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.tazminat-banner h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.tazminat-banner p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- TWO COLUMN LIST (Gayrimenkul) --- */
.two-col-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 2rem;
    list-style: none;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .two-col-list {
        grid-template-columns: 1fr;
    }
}

.two-col-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.two-col-list li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

/* --- ICRA FLOW TIMELINE (İcra Hukuku) --- */
.icra-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.icra-flow::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.icra-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.icra-step-num {
    width: 46px;
    height: 46px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.icra-step-text h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.icra-step-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* --- MIRAS TOPIC CARDS (Miras Hukuku) --- */
.miras-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 600px) {
    .miras-cards {
        grid-template-columns: 1fr;
    }
}

.miras-topic-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    padding: 1.8rem;
    transition: var(--transition-smooth);
}

.miras-topic-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
}

.miras-topic-card h3 {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.miras-topic-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* --- HEIR TABLE (Miras Hukuku) --- */
.heir-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.heir-table th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    text-align: left;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
}

.heir-table td {
    padding: 0.8rem 1rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.heir-table tr:last-child td {
    border-bottom: none;
}

.heir-table tr:hover td {
    background: rgba(212, 175, 55, 0.03);
}

/* --- PREMIUM STYLED LIST --- */
.content-prose ul.premium-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin: 1.8rem 0;
}

.content-prose ul.premium-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--accent);
    padding: 1.2rem 1.5rem;
    border-radius: var(--border-radius-sm);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    transition: var(--transition-smooth);
}

.content-prose ul.premium-list li:hover {
    background: rgba(212, 175, 55, 0.03);
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateX(4px);
}

.content-prose ul.premium-list li i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.content-prose ul.premium-list li:hover i {
    transform: scale(1.15);
}

.content-prose ul.premium-list li strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
    font-family: var(--font-serif);
}
