/* ========================================
   MOBİL DÜZELTMELER — Buriciye Turizm
   ======================================== */
* { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================
   BURİCİYE TURİZM - BİLGİ SAYFALARI CSS
   ============================================ */

/* Hero */
.bilgi-hero {
    background: linear-gradient(rgba(26, 107, 122, 0.88), rgba(10, 50, 60, 0.92)),
                url('images/umre-rehberi-semersah.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 90px 30px;
}

.bilgi-hero h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.bilgi-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    font-size: 0.85rem;
    color: #888;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #1a6b7a;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb i { font-size: 0.7rem; color: #bbb; }

/* Main Layout */
.bilgi-section {
    padding: 70px 0 80px;
    background: #f8f9fa;
}

.bilgi-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

/* Content */
.bilgi-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.07);
    padding: 50px;
}

.bilgi-content h3 {
    color: #1a6b7a;
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0b400;
    display: inline-block;
}

.bilgi-content h3:first-child { margin-top: 0; }

.bilgi-content p {
    color: #555;
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 1rem;
}

.bilgi-content ul, .bilgi-content ol {
    margin: 0 0 20px 0;
    padding-left: 0;
    list-style: none;
}

.bilgi-content ul li, .bilgi-content ol li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: #555;
    line-height: 1.7;
    font-size: 0.97rem;
    border-bottom: 1px solid #f5f5f5;
}

.bilgi-content ul li:last-child, .bilgi-content ol li:last-child {
    border-bottom: none;
}

.bilgi-content ul li i {
    color: #1a6b7a;
    font-size: 0.9rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.bilgi-content ol {
    counter-reset: step;
}

.bilgi-content ol li {
    counter-increment: step;
    align-items: flex-start;
}

.bilgi-content ol li::before {
    content: counter(step);
    background: #1a6b7a;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Info Box */
.info-highlight {
    background: linear-gradient(135deg, rgba(26, 107, 122, 0.07), rgba(240, 180, 0, 0.08));
    border-left: 4px solid #f0b400;
    padding: 20px 24px;
    border-radius: 0 10px 10px 0;
    margin: 25px 0;
}

.info-highlight p {
    margin: 0;
    color: #444;
    font-style: italic;
}

/* Step Cards */
.adim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.adim-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 22px 20px;
    border-top: 3px solid #1a6b7a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.adim-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.adim-card .step-num {
    display: inline-flex;
    width: 34px;
    height: 34px;
    background: #1a6b7a;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.adim-card h4 {
    color: #1a6b7a;
    font-size: 1rem;
    margin-bottom: 8px;
}

.adim-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Sidebar */
.bilgi-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.07);
    overflow: hidden;
}

.sidebar-box-header {
    background: #1a6b7a;
    color: white;
    padding: 18px 22px;
}

.sidebar-box-header h4 {
    color: white;
    font-size: 1.05rem;
    margin: 0;
}

.sidebar-box-body {
    padding: 20px;
}

.sidebar-box-body p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.sidebar-box-body .btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: #f0b400;
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s;
}

.sidebar-box-body .btn:hover { background: #d8a200; }

.sidebar-box-body .btn-wa {
    background: #25D366;
    margin-top: 10px;
}

.sidebar-box-body .btn-wa:hover { background: #20ba5a; }

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid #f5f5f5;
    transition: color 0.2s, padding-left 0.2s;
}

.quick-links li:last-child a { border-bottom: none; }

.quick-links li a:hover { color: #1a6b7a; padding-left: 5px; }

.quick-links li a i { color: #1a6b7a; font-size: 0.85rem; width: 16px; }

/* Evrak Table */
.evrak-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.evrak-table th {
    background: #1a6b7a;
    color: white;
    padding: 14px 16px;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
}

.evrak-table td {
    padding: 12px 16px;
    color: #555;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.evrak-table tr:last-child td { border-bottom: none; }

.evrak-table tr:nth-child(even) td { background: #fafafa; }

.evrak-table td:first-child {
    font-weight: 600;
    color: #1a6b7a;
    white-space: nowrap;
}

/* Yetkililerimiz */
.yetkili-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.yetkili-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.yetkili-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.yetkili-foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a6b7a, #2a8fa0);
    margin: 30px auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    border: 4px solid rgba(240,180,0,0.4);
}

.yetkili-card h3 {
    color: #1a6b7a;
    font-size: 1.15rem;
    margin-bottom: 5px;
    padding: 0 20px;
}

.yetkili-unvan {
    color: #f0b400;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.yetkili-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 20px;
    margin-bottom: 20px;
}

.yetkili-iletisim {
    background: #f8f9fa;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.yetkili-iletisim a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1a6b7a;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 12px;
    border: 1.5px solid #1a6b7a;
    border-radius: 20px;
    transition: all 0.2s;
}

.yetkili-iletisim a:hover {
    background: #1a6b7a;
    color: white;
}

.yetkili-iletisim a.wa {
    border-color: #25D366;
    color: #25D366;
}

.yetkili-iletisim a.wa:hover {
    background: #25D366;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .bilgi-layout {
        grid-template-columns: 1fr;
    }

    .bilgi-sidebar {
        position: static;
    }

    .adim-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bilgi-hero h2 { font-size: 2rem; }

    .bilgi-content {
        padding: 30px 20px;
    }

    .bilgi-section { padding: 50px 0 60px; }

    .yetkili-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .evrak-table { font-size: 0.85rem; }
    .evrak-table th, .evrak-table td { padding: 10px 12px; }
}